Annotation of parser3/ChangeLog, revision 1.128
1.128 ! moko 1: 2019-12-08 moko
! 2:
! 3: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
! 4: process grammar under Unix.
! 5:
! 6: 2019-12-07 moko
! 7:
! 8: * tests/389.html: For Windows XP. :)
! 9:
! 10: * tests/388-sql.html: Windows compatibility added
! 11:
! 12: 2019-12-06 moko
! 13:
! 14: * src/targets/cgi/parser3.C: warning war
! 15:
! 16: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
! 17: == sizeof(CORD)) to avoid aligning bugs in future
! 18:
! 19: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
! 20: XML_STATIC
! 21:
! 22: * src/include/pa_request.h: StackItem() not required
! 23:
! 24: * src/include/pa_stack.h: warning war
! 25:
! 26: * src/include/pa_config_includes.h: GCC warning silenced
! 27:
! 28: * src/include/pa_memory.h: warning war: the program should also
! 29: define 'void operator delete [](void*, std::size_t)'
! 30: [-Wsized-deallocation]
! 31:
! 32: * src/types/: pa_vregex.h, pa_vtable.h: warning war
! 33:
! 34: * src/classes/string.C: not reqired cast removed
! 35:
! 36: * src/classes/string.C: not reqired cast removed
! 37:
! 38: 2019-12-05 moko
! 39:
! 40: * src/lib/sdbm/pa_file_io.C: warning war
! 41:
! 42: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
! 43: enum Language : size_t - required for VS2015+ to make
! 44: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
! 45: without it (related to feature #1198)
! 46:
! 47: 2019-12-04 moko
! 48:
! 49: * src/main/pa_base64.C: unsigned char -> uchar
! 50:
! 51: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
! 52: as other libs
! 53:
! 54: * src/include/pa_version.h: +amd64
! 55:
! 56: 2019-12-03 moko
! 57:
! 58: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
! 59: release
! 60:
! 61: * src/include/pa_config_includes.h: warning war
! 62:
! 63: * src/classes/image.C: warning war
! 64:
! 65: * src/main/pa_globals.C: x64 libs support
! 66:
! 67: * src/include/pa_config_includes.h: warning war
! 68:
! 69: * src/types/pa_method.h: warning war
! 70:
1.127 moko 71: 2019-11-28 moko
72:
73: * src/classes/math.C: vs2003 compatibility + warning war
74:
75: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
76: libxml2-2.9.9 (related to feature #1136)
77:
78: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
79: typecast for more compatibility (related to feature #1136)
80:
81: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
82: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
83: feature #1136)
84:
85: 2019-11-26 moko
86:
87: * src/main/: compile_tools.C, compile_tools.h: invalid assert
88: removed (it was failing in $$var case), condition added
89:
1.126 moko 90: 2019-11-25 moko
91:
92: * tests/: 397.html, 399.html, results/141.processed,
93: results/399.processed: base64 options tested
94:
95: * src/: classes/math.C, main/pa_http.C: base64 options used
96:
97: * src/main/pa_base64.C: base64 encode rewritten, base64 options
98: implemented (feature #986)
99:
100: * src/main/pa_cache_managers.C: whitespace
101:
102: * tests/: 397.html, 399.html, results/399.processed: tests for
103: ^base64 encode options added (related to feature #986)
104:
105: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
106: pa_base64_encode(file) removed - more memory, but faster and less
107: code (related fo feature #986)
108:
109: 2019-11-24 moko
110:
111: * tests/: 155.html, results/155.processed: limit and offset in
112: ^table::load[] now supported, thus test added
113:
114: * src/: classes/file.C, classes/table.C, include/pa_common.h,
115: main/pa_common.C: optimization: offset and limit options parsing
116: moved inside file_load.
117:
118: 2019-11-23 moko
119:
120: * src/: classes/file.C, classes/op.C, include/pa_common.h,
121: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
122: optimization: file_read replaced with simplified file_read_binary
123:
124: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
125: types/pa_vform.C: whitespace
126:
127: * src/: include/pa_common.h, main/pa_common.C: never used params
128: removed
129:
130: 2019-11-21 moko
131:
132: * tests/: 193.html, results/193.processed, results/389.processed:
133: test results updated as now base64 does not discard tail without
134: padding (related to feature #986)
135:
136: 2019-11-20 moko
137:
138: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
139: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
140: pa_base64_decode (related to feature #986)
141:
142: * tests/398.html: tests for base64 decode added (related to feature
143: #986)
144:
145: * src/main/pa_base64.C: base64_decode rewritten - padding option
146: support, padding inside base 64 supported (related to feature
147: #096)
148:
149: 2019-11-19 moko
150:
151: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
152: FreeBSD 12
153:
1.125 moko 154: 2019-11-16 moko
155:
156: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
157: support added, step support removed (related to #986)
158:
159: 2019-11-15 moko
160:
161: * src/classes/math.C: using log since log2 is not present on
162: FreeBSD < 8.4 (related to feature #1177)
163:
164: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
165: pa_base64_size extracted and used for files as well (related to
166: feature 986)
167:
168: 2019-11-14 moko
169:
170: * tests/: 397.html, results/397.processed: + content check
171:
172: * tests/: 141.html, results/141.processed: make test resuls more
173: readable
174:
175: * tests/: 397.html, results/193.processed, results/397.processed:
176: test results updated after \x00 character was disabled in
177: math:convert string mode (related to feature #1177)
178:
179: * src/classes/: math.C, string.C: \\x00 character disabled while
180: converting to string (as in base64, related to feature #1177)
181:
182: * src/classes/file.C: more correct arguments separation
183:
184: * src/: classes/file.C, classes/math.C, classes/string.C,
185: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
186: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
187: options added, but not yet implemented (related to feature #986)
188:
189: * src/classes/math.C: whitespace
190:
191: 2019-11-13 moko
192:
193: * tests/: 397.html, results/397.processed: +tainting test (related
194: to feature #1177)
195:
196: * src/classes/math.C: as we now produce not only digits, result
197: should be tainted (related to feature #1177)
198:
199: * src/main/pa_base64.C: whitespace
200:
201: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
202: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
203: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
204: implementation moved from pa_common.h and pa_common.C
205:
206: 2019-11-12 moko
207:
208: * tests/: 275.html, results/275.processed: out of range test fixed,
209: as ^math:convert now supports arbitrary precision
210:
211: 2019-11-11 moko
212:
213: * tests/results/389.processed: uctualized error message
214:
215: * tests/: 389.html, 397.html, results/397.processed: tests for
216: ^math:convert added (related to feature #1177)
217:
218: * src/classes/math.C: ^math:convert now supports arbitrary
219: precision, alphabet support added (implements feature #1177)
220:
1.124 moko 221: 2019-11-06 moko
222:
223: * tests/: 181.html, results/181.processed: entities usage added,
224: more entites load tests (related to bug #842 discussion)
225:
226: 2019-11-05 moko
227:
228: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
229: call from xmlFileOpen if http://localhost/<file> was not found
230: (related to bug #842)
231:
232: * src/main/pa_xml_io.C: rename
233:
234: * src/main/pa_xml_io.C: +MemoryStream constructor
235:
236: * src/main/pa_xml_io.C: whitespace
237:
1.123 moko 238: 2019-10-31 moko
239:
240: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
241: XML_PARSE_NOENT) added to fix entities load, (related to feature
242: #1181)
243:
1.122 moko 244: 2019-10-25 moko
245:
246: * tests/: 388-sql.html, results/388-sql.processed: more multiple
247: queries tests
248:
249: 2019-10-24 moko
250:
251: * tests/: 388-sql.html, results/388-sql.processed: support for
252: pgsql driver test
253:
254: * tests/: 388-sql.html, results/388-sql.processed:
255: multi_statements=1 now tested, mysql test now supported
256: (connection must be specified in [parser3] section in .my.cnf)
257: related to issues #1195 and #1194
258:
1.121 moko 259: 2019-09-11 moko
260:
261: * src/classes/int.C: whitespace
262:
263: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
264: exception test
265:
266: * tests/results/388-sql.processed: sql queries now shown (related
267: to feature #1196)
268:
269: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
270: with old parser versions.
271:
272: * src/: classes/file.C, classes/hash.C, classes/string.C,
273: classes/table.C, classes/void.C, include/pa_sql_connection.h,
274: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
275: instead of connect string in query_event_handlers exceptions
276: (implements feature #1196)
277:
1.120 moko 278: 2019-09-06 moko
279:
280: * tests/388-sql.html: mysql compat
281:
282: * src/: classes/hash.C, classes/string.C, classes/table.C,
283: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
284: sql_ variables declaration moved to pa_common.h
285:
1.116 moko 286: 2019-01-15 moko
287:
288: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
289: logically sorted
290:
291: 2018-12-27 moko
292:
293: * src/include/pa_config_includes.h: warning war:
294: -Wdeprecated-register added for C++ 17
295:
296: 2018-10-15 moko
297:
298: * configure.ac: FreeBSD 11.2 can be build with ./configure
299: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
300: --with-xml=/usr/local/
301:
302: 2018-09-24 moko
303:
304: * tests/: 396.html, 396.tiff, results/396.processed: test for
305: ^image::measure[] now supports tiff added (related to feature
306: #1188)
307:
308: * src/classes/image.C: ^image::measure[] now supports tiff
309: (implements feature #1188)
310:
311: 2018-09-20 moko
312:
313: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
314: files measure added (related to ticket #1188)
315:
316: * src/classes/image.C: measure of bmp files implemented (related to
317: ticket #1188)
318:
319: 2018-09-18 moko
320:
321: * tests/: 394-curl.html, results/394-curl.processed,
322: results/auto.p: test for bug #1187 (max_file_size check for head
323: requests) added
324:
325: 2018-08-24 moko
326:
327: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
328: response content-length check is required (fixes bug #1187)
329:
330: 2018-05-11 moko
331:
332: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
333: $.append(bool) ] option added (related to feature #919)
334:
335: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
336: from misha@ patch (implements feature #919)
337:
338: 2018-03-22 moko
339:
340: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
341: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
342: with 128kb buffer. Now works at least 12 times faster. :) May be
343: Windows-only problem.
344:
345: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
346: build fix)
347:
348: 2018-02-03 moko
349:
350: * src/main/execute.C: removes irrelevant lines from exception stack
351: trace when exceptions occurs in assigment (fixes bug #1165)
352:
353: * tests/: 393.html, results/393.processed: test for behavour after
354: "Property can not be created, already exists field with that
355: name" exception removed (related to feature #1183)
356:
357: * src/types/pa_vclass.C: "Property can not be created, already
358: exists field with that name" exception removed (implements
359: feature #1183)
360:
361: 2018-01-19 moko
362:
363: * src/classes/string.C: whitespace
364:
365: * src/classes/string.C: whitespace
366:
367: * tests/: 392.html, results/392.processed: test for
368: ^regex::create[$regex] added (related to feature #1135)
369:
370: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
371: ^regex::create[$regex] added (implements feature #1135)
372:
373: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
374: commented define added (related to feature #1157)
375:
376: 2018-01-17 moko
377:
378: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
379:
380: 2018-01-15 moko
381:
382: * tests/: 390.html, results/390.processed: real path replaced by
383: stub
384:
385: * tests/: 391.html, results/391.processed: test for feature #1181
386: (XML_PARSE_HUGE exception) added
387:
388: 2018-01-11 moko
389:
390: * bin/auto.p.dist.in: sqlite3 -> libsqlite3
391:
392: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
393: XML_PARSE_HUGE option passed by default (implements feature
394: #1181)
395:
396: * src/classes/string.C: whitespace
397:
398: 2017-12-10 moko
399:
400: * tests/: 389.html, 390.html, results/389.processed,
401: results/390.processed: image code coverage tests added (related
402: to feature #1125)
403:
404: 2017-12-08 moko
405:
406: * tests/: 346-curl.html, 388-sql.html, 389.html,
407: results/346-curl.processed, results/388-sql.processed,
408: results/389.processed: more code coverage tests
409:
410: * tests/: 264.html, results/264.processed: code coverage for
411: ^file::exec[]
412:
413: 2017-12-07 moko
414:
415: * tests/: 174.html, 388-sql.html, 389.html,
416: results/388-sql.processed, results/389.processed,
417: results/174.processed: more coverage tests
418:
419: * src/classes/math.C: exception text actualized
420:
421: 2017-12-06 moko
422:
423: * tests/388-sql.html: $SQL can be here
424:
425: * tests/results/auto.p: $SQL not required here
426:
427: * tests/: 388-sql.html, 389.html, Makefile,
428: results/388-sql.processed, results/389.processed, results/auto.p:
429: code coverage tests for sql (using sqlite) and int/double/bool
430: added (related to feature #1125)
431:
432: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
433: lib/json/json.vcproj, lib/md5/md5.vcproj,
434: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
435: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
436: targets/apache/ApacheModuleParser3Core.vcproj,
437: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
438: types/types.vcproj: gc\include no longer required
439:
440: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
441: required
442:
443: * src/: classes/Makefile.am, classes/table.C,
444: include/pa_config_includes.h, include/pa_string.h,
445: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
446: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
447: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
448: targets/apache/Makefile.am, targets/cgi/Makefile.am,
449: types/Makefile.am: to be sure that our version of gc.h/cord.h is
450: used, we now include it directly
451:
452: 2017-12-04 moko
453:
454: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
455: memcached/memcached.vcproj, punycode/punycode.vcproj,
456: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
457: where required
458:
459: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
460: now can be used to trace memory allocations
461:
462: * src/: classes/table.C, include/pa_config_includes.h,
463: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
464: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
465: method removes, libcord also can work without libgc
466:
467: * src/classes/json.C: pa_gc_malloc_atomic should not be used
468:
469: 2017-11-29 moko
470:
471: * src/classes/curl.C: no exception if some of ^curl:info[] elements
472: are not present (related to feature #1173)
473:
474: * tests/346-curl.html: test updated to test curl content-length bug
475: (related to feature #1173)
476:
477: * tests/results/346-curl.processed: more test for content-length
478: curl bug (related to feature #1173)
479:
480: * tests/results/346-curl.processed: test results updated after
481: #1173 implemented
482:
483: 2017-11-28 moko
484:
485: * src/classes/curl.C: another libcurl Content-length bug walkaround
486: (related to feature #1173)
487:
488: 2017-11-27 moko
489:
490: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
491: $.http_version[version string] added (implements feature #1173),
492: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
493: where $post(true) bug existed.
494:
495: 2017-11-18 moko
496:
497: * src/include/pa_memory.h: warning war (related to feature #1170)
498:
499: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
500: feature #1170)
501:
502: 2017-11-17 moko
503:
504: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
505: std::basic_stringstream used in ^table.csv-string[] is compatible
506: with delete usage check only under Debian 9 (related to feature
507: #1170)
508:
509: 2017-11-16 moko
510:
511: * src/: classes/curl.C, classes/hash.C, classes/json.C,
512: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
513: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
514: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
515: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
516: types/pa_vxdoc.h: regular new/delete no longer used in our code,
517: stubs defend from accidental use (implements feature #1170)
518:
519: 2017-06-24 moko
520:
521: * configure.ac: minor fix: thanks to alx@
522:
1.115 moko 523: 2017-05-29 moko
524:
525: * src/types/pa_vmail.C: mail headers are now correctly truncated -
526: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
527: added to avoid cutting of UTF-8 chars (fixed bug #123)
528:
529: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
530: ignored, =?UTF-8?Q?= should start in case of leading space
531: (related to bug #123)
532:
533: * buildall: echo -n -> printf for OS X. :)
534:
535: 2017-05-25 moko
536:
537: * tests/: 288.html, results/288.processed: test updated afted
538: setting $o.prop without setter exception removed (related to
539: feature #1157)
540:
541: * src/types/pa_vclass.C: no more "this property has no setter
542: method" when setting $o.prop without setter (implements feature
543: #1157)
544:
545: * buildall: echo \c -> echo -n for FreeBSD
546:
547: * configure, configure.ac, src/include/pa_config_auto.h.in,
548: src/types/pa_vdouble.h: isfinite now checked in configure
549:
550: * compile, config.guess, config.sub, depcomp, install-sh, missing:
551: upgraded to automake 1.15
552:
553: 2017-05-23 moko
554:
555: * src/types/pa_vdouble.h: finite returned where isfinite not
556: defined
557:
558: 2017-05-22 moko
559:
560: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
561:
562: * buildall: extern CFLAGS setting support
563:
564: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
565:
566: * buildall: http -> https
567:
568: * buildall: gc-7.2f -> gc-7.6.0
569:
570: 2017-05-20 moko
571:
572: * buildall: https, pcre, xml, xslt updated to current versions
573: (related to feature #1136)
574:
575: 2017-05-19 moko
576:
577: * tests/097.html: after parser.ru moved to https
578:
579: 2017-05-17 moko
580:
581: * tests/results/: 175.processed, 372.processed: tests resuls
582: updated after lintian spelling typos fixed (related to bug #1156)
583:
584: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
585: classes/string.C, classes/table.C, main/pa_charset.C,
586: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
587: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
588: lintian reported by Sergey B Kirpichev (fixes bug #1156)
589:
590: * tests/results/096.processed: +XMP
591:
592: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
593: $.xmp(true) options tested (test for feature #1154)
594:
595: * src/classes/image.C: ^image:measure[] options $.exif(false)
596: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
597: fetched by default! (implements feature #1154)
598:
599: 2017-05-16 moko
600:
601: * tests/: 256.html, results/256.processed: ^json:string[$image] now
602: allowed (related to feature #1154)
603:
604: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
605: initial XMP implementation - without options and transcode
606: (related to feature #1154)
607:
608: 2017-05-12 moko
609:
610: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
611: image: exif moved to ffields, skipped in ^image.html[] where
612: iterators now used (preparation for feature #1154)
613:
614: 2017-05-05 moko
615:
616: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
617: results/387.processed: test for circular class inheritance check
618: added (related to bug #1150)
619:
620: * src/types/pa_vstateless_class.C: circular class inheritance check
621: added (fixes endless add_derived bug #1150)
622:
623: 2017-05-04 moko
624:
625: * tests/: 386.html, results/386.processed: test for
626: $table.value(number) added (related to feature #1152)
627:
628: * src/types/pa_vtable.C: table put_element: column value must be
629: string - > column value must be string compatible to allow
630: $t.value(1) (implements feature #1152)
631:
632: 2017-05-03 moko
633:
634: * src/main/pa_request.C: $use[$method] is not possible, reverting
635: (related to feature #1151)
636:
637: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
638: not possible, removing test (related to feature #1151)
639:
640: * src/: main/pa_request.C, types/pa_vstateless_class.h:
641: get_element_method added and used to allow $use[$method] and
642: $autouse[$method] (implements feature 1151)
643:
644: * tests/: 386.html, 386.p, results/386.processed: test for @use in
645: variable added (related to feature #1151)
646:
647: * tests/results/226.processed: actualized after ^try-catch used
648:
649: * tests/: 226.html, 385.html, results/385.processed: test for
650: @autouse in variable added
651:
652: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
653:
1.114 moko 654: 2017-02-27 moko
655:
656: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
657:
1.113 moko 658: 2017-02-20 moko
659:
660: * operators.txt: actualization + beauty
661:
662: 2017-02-16 moko
663:
664: * tests/: 384.html, results/384.processed: test for
665: ^reflection:mixin[; $.name[] ] option added (related to feature
666: #1089)
667:
668: * tests/: 384.html, results/384.processed: test for
669: ^reflection:mixin[] added (related to feature #1089)
670:
671: * src/types/pa_value.h: warning war: virtual ~Value() added
672:
1.112 moko 673: 2017-02-15 moko
674:
675: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
676: fixed
677:
678: * tests/: 320.html, results/320.processed: $.reverse(true/false)
679: test added (related to feature #1069)
680:
681: * src/: classes/reflection.C, types/pa_vstateless_class.h:
682: compilation without HASH_ORDER fixed
683:
684: * src/: classes/reflection.C, include/pa_hash.h:
685: $.reverse(true/false) added to ^reflection:methods[] (related to
686: feature #1069)
687:
688: 2017-02-14 moko
689:
690: * tests/: 152.html, results/152.processed: test for $._default hash
691: added (related to bug #1131)
692:
693: * tests/: 277.html, results/277.processed: test for hash with only
694: $._default is now defined (related to bug #1131)
695:
696: * src/types/pa_vhash.h: hash with only $._default is now defined
697: (fixed bug #1131)
698:
699: 2017-02-13 moko
700:
701: * tests/cat-windows.sh: cat-windows added (cygwin required)
702:
703: * tests/: 171.html, 264.html, 286.html, 370.html,
704: results/320.processed, results/375.processed, results/auto.p:
705: cat-windows.sh support added
706:
707: * tests/375.html: Windows support
708:
709: * tests/270.html: documented
710:
711: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
712: (not backslashes) even under Windows (broke test 270)
713:
714: 2017-02-12 moko
715:
716: * tests/: descript.ion, todo.txt: cleanup
717:
718: 2017-02-09 moko
719:
720: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
721: run_tests.cmd: Windows compatibility
722:
723: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
724: incorrectly (GMT) if parser is called from cygwin
725:
1.111 moko 726: 2017-02-08 moko
727:
1.112 moko 728: * operators.txt: actualization 15% completed
729:
730: * operators.txt: cp1251 -> utf-8
731:
732: * NEWS, README: minor update
733:
734: * src/include/pa_config_includes.h: warning war continues
735:
736: * src/: include/pa_config_includes.h, include/pa_memory.h,
737: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
738: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
739: gcc 6.x issues fixed
740:
1.111 moko 741: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
742: classes/classes.h, classes/curl.C, classes/date.C,
743: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
744: classes/hashfile.C, classes/image.C, classes/inet.C,
745: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
746: classes/memcached.C, classes/memory.C, classes/op.C,
747: classes/reflection.C, classes/regex.C, classes/response.C,
748: classes/string.C, classes/table.C, classes/void.C,
749: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
750: include/pa_array.h, include/pa_cache_managers.h,
751: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
752: include/pa_config_fixed.h, include/pa_config_includes.h,
753: include/pa_dictionary.h, include/pa_dir.h,
754: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
755: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
756: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
757: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
758: include/pa_request_charsets.h, include/pa_request_info.h,
759: include/pa_sapi.h, include/pa_socks.h,
760: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
761: include/pa_stack.h, include/pa_string.h,
762: include/pa_stylesheet_connection.h,
763: include/pa_stylesheet_manager.h, include/pa_symbols.h,
764: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
765: include/pa_uue.h, include/pa_xml_exception.h,
766: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
767: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
768: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
769: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
770: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
771: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
772: main/compile.tab.C, main/compile.y, main/compile_tools.C,
773: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
774: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
775: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
776: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
777: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
778: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
779: main/pa_string.C, main/pa_stylesheet_connection.C,
780: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
781: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
782: main/untaint.C, sql/pa_sql_driver.h,
783: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
784: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
785: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
786: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
787: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
788: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
789: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
790: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
791: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
792: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
793: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
794: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
795: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
796: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
797: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
798: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
799: types/pa_vmemcached.h, types/pa_vmemory.h,
800: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
801: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
802: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
803: types/pa_vresponse.C, types/pa_vresponse.h,
804: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
805: types/pa_vstateless_object.h, types/pa_vstatus.C,
806: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
807: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
808: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
809: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
810: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
811: 2015->2017
812:
1.110 moko 813: 2017-02-07 moko
814:
815: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
816:
817: 2017-02-06 moko
818:
819: * src/main/pa_common.C: minor fixes, whitespace
820:
821: * src/: classes/curl.C, classes/file.C, classes/image.C,
822: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
823: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
824: now used (implements feature #1081)
825:
826: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
827:
828: 2017-02-01 moko
829:
830: * src/include/pa_request.h: cleanup
831:
832: 2017-01-30 moko
833:
834: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
835:
836: 2017-01-29 moko
837:
838: * tests/: 383.html, results/383.processed: test for
839: ^reflection:stack[] added (related to feature #1052)
840:
841: * src/classes/reflection.C: else added
842:
843: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
844: $.max_file_lock_wait added (implements feature #1128)
845:
846: 2017-01-28 moko
847:
848: * tests/: 379-curl.html, results/379-curl.processed: curl empty
849: body and other cases tests added (related to featue #1014)
850:
851: * src/classes/curl.C: bug if response is empty fixed (related to
852: feature #1014)
853:
854: 2017-01-27 moko
855:
856: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
857: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
858: added (implements feature #1052)
859:
860: 2017-01-25 moko
861:
862: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
863: method test added
864:
865: 2017-01-23 moko
866:
867: * src/classes/reflection.C: optimization: options->get replaced by
868: hash iterator
869:
870: * tests/: 381.html, results/381.processed: now -> fixed date
871:
872: * src/main/pa_request.C: warning war
873:
874: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
875: 5Mb (fixes bug #1058)
876:
877: * src/classes/curl.C: warning war
878:
879: * tests/: 381.html, results/381.processed: tests for ^json:string
880: $.one-line(true) option added (related to feature #1124)
881:
882: * src/: classes/json.C, types/pa_value.h: $json-string
883: $.one-line(true|false) options is now supported (implements
884: feature #1124)
885:
886: * tests/: 380.html, results/380.processed: test for modified
887: $.max_file_size added (related to bug #1014)
888:
889: * tests/: 379.html, results/auto.p: tests for rewritten http file
890: load added (related to bug #1014)
891:
892: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
893: main/pa_common.C, main/pa_http.C: check_file_size added and used
894: in curl / file load from disk and http, http file load rewritten
895: (related to bug #1014)
896:
897: 2017-01-18 moko
898:
899: * tests/: 378.html, results/378.processed: tests for ^result[]
900: added (related to feature #66)
901:
902: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
903: Method::CO_WITHOUT_FRAME as frame still added in expression
904: (related to feature #66)
905:
906: 2017-01-17 moko
907:
908: * tests/: 377.html, results/377.processed: test for different
909: combinations of breaks in body and delimiter (related to bug
910: #1077)
911:
912: * tests/: 376.html, results/376.processed: many ^break[] tests
913: added (related to bug #1077)
914:
915: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
916: passed to native method" exception added to avoid bugs due to
917: WRITE_EXPR_RESULT skipped and native methods execution continues
918: after ^break[] (related to bug #1077)
919:
920: 2017-01-14 moko
921:
922: * tests/: 330.html, results/330.processed: test results updated
923: after ^break[] bugs where fixed (related to bug #1077)
924:
925: * tests/: 329.html, results/329.processed: test results updated
926: after ^break[] bugs where fixed (related to bug #1077)
927:
928: * tests/results/320.processed: ^return[] added
929:
930: 2017-01-13 moko
931:
932: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
933: classes/table.C, include/pa_request.h, main/execute.C,
934: main/pa_request.C, targets/cgi/parser3.C,
935: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
936: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
937: checked after each possible process/execute call (fixes bug
938: #1077)
939:
940: 2016-12-29 moko
941:
942: * src/main/pa_common.C: warning war
943:
944: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
945: include/pa_types.h, main/pa_request.C, main/pa_string.C:
946: pa_file_size_limit added, ^math:random fixed for upper limit and
947: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
948: (related to feature #1014)
949:
950: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
951: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
952: (related to feature #1014)
953:
954: 2016-12-28 moko
955:
956: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
957: warning war
958:
959: 2016-12-26 moko
960:
961: * tests/: 341.html, results/341.processed: test for
962: ^table.hash[id;;$.type[string]] added (related to feature #1057)
963:
964: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
965: (related to feature #1057)
966:
967: * src/types/pa_vdate.C: warning war continues...
968:
969: * src/: classes/date.C, classes/image.C, classes/table.C,
970: include/pa_config_includes.h, types/pa_vfile.C: warning war
971:
972: * src/lib/gd/gifio.C: warning war / cleanup
973:
974: * src/lib/json/pa_json.C: warning war
975:
976: * src/classes/hash.C: warning war
977:
978: * src/types/pa_vfile.C: warning war
979:
980: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
981: -Wall warning war continues
982:
983: * configure.ac: --with-build-warnings actualized
984:
985: 2016-12-25 moko
986:
987: * src/main/pa_exec.C: -wAll warning war
988:
989: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
990: -wAll warning war
991:
992: * src/: include/pa_common.h, include/pa_sapi.h,
993: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
994: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
995: -wAll warning war
996:
997: 2016-12-23 moko
998:
999: * src/lib/ltdl/Makefile.am: extra dist added
1000:
1001: * tests/results/344.processed: test result updated after $file.text
1002: prefetched in ^hash::create[$file] (related to feature #1075)
1003:
1004: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
1005: ^hash::create[$file] (related to feature #1075)
1006:
1007: 2016-12-22 moko
1008:
1009: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
1010: main/pa_request.C, main/pa_stylesheet_connection.C,
1011: types/pa_vfile.C: file_stat now return 64-bit size (implements
1012: #1014 under 32-bit unix versions)
1013:
1014: 2016-12-21 moko
1015:
1016: * tests/: 375.html, results/375.processed: test for exec returning
1017: stated file added (related to feature #1119)
1018:
1019: * src/classes/file.C: load should not return file with null body
1020: (fixes bug #1119)
1021:
1022: 2016-12-14 moko
1023:
1024: * tests/: 374.html, results/374.processed: test for $method.name
1025: added (related to feature #1117) plus method returning junction
1026: test
1027:
1028: 2016-12-13 moko
1029:
1030: * src/: include/pa_symbols.h, main/pa_symbols.C,
1031: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
1032: (implements feature #1117)
1033:
1034: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
1035: HEAD and TRACE can't have body (implements feature #1116)
1036:
1037: 2016-12-09 moko
1038:
1039: * tests/: 373.html, results/373.processed: tests for
1040: ^reflection:tainting added (related to feature #1098)
1041:
1042: * src/classes/reflection.C: ^reflection:tainting arguments order
1043: change (related to feature #1098)
1044:
1045: 2016-12-06 moko
1046:
1047: * src/: classes/reflection.C, include/pa_string.h,
1048: main/pa_string.C: ^reflection:tainting[$string] added (implements
1049: feature #1098)
1050:
1051: 2016-12-05 moko
1052:
1053: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
1054: (fixes bug #1114)
1055:
1056: 2016-12-04 moko
1057:
1058: * tests/: 206.html, results/206.processed: negative zero (0/-1)
1059: check added
1060:
1061: 2016-12-03 moko
1062:
1063: * tests/: 346-curl.html, results/346-curl.processed: test modified
1064: to test value.as_hash() usage
1065:
1066: * src/classes/curl.C: value.as_hash() used for correct hash
1067: processing
1068:
1069: * src/classes/reflection.C: exceptions texts fixes
1070:
1071: 2016-12-02 moko
1072:
1073: * tests/: 372.html, results/372.processed: tests for
1074: ^reflection:create[ $.class[name] $.constructor[name]
1075: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
1076: feature #1094)
1077:
1078: * src/types/pa_vmethod_frame.h: comment added: params should be
1079: declared outside of *_FRAME_ACTION as MethodParams destructor
1080: will be called in ~VNativeMethodFrame
1081:
1082: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
1083: ] minor fix
1084:
1085: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
1086: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
1087: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
1088: now supported (implements feature #1094) value::as_hash added
1089: (and should be used everywhere)
1090:
1091: * src/classes/reflection.C: cleanup
1092:
1093: 2016-12-01 moko
1094:
1095: * tests/: 356.html, results/356.processed: test for method
1096: junctions class name added to the resulting hash added (related
1097: to feature #1068)
1098:
1099: * src/classes/reflection.C: for method junctions class name added
1100: to the resulting hash (related to feature #1068)
1101:
1102: 2016-11-30 moko
1103:
1104: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
1105: exception (related to bug #1113)
1106:
1107: * src/types/pa_vhashfile.C: whitespace
1108:
1109: * src/main/pa_os.C: errno now returned as it should (fixes bug
1110: #1113)
1111:
1112: * tests/results/: 175.processed, 192.processed, 224.processed,
1113: 229.processed, 239.processed, 244.processed, 246.processed,
1114: 314.processed, 352.processed: tests results updated after method
1115: call exceptions improved as method now keeps its name
1116:
1117: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
1118: types/pa_vmethod_frame.h: method call exceptions improved as
1119: method now keeps its name
1120:
1121: * tests/: 224.html, 239.html, results/224.processed,
1122: results/239.processed: tests and tests results updated after
1123: Request::construct exception changed
1124:
1125: * src/: classes/reflection.C, main/execute.C: Request::construct
1126: exception optimized
1127:
1128: * tests/: 371.html, results/371.processed: test for
1129: WWrapper.get_element call in $.name.key[value] code added
1130: (related to feature #1091)
1131:
1132: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
1133: in $.name.key[value] code (related to feature #1091)
1134:
1135: 2016-11-29 moko
1136:
1137: * src/classes/op.C: VS warning war
1138:
1139: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
1140: C4239: nonstandard extension used : 'return' : conversion from
1141: 'Value' to 'Value &' (related to feature #1020)
1142:
1143: * src/: main/execute.C, types/pa_vmethod_frame.h,
1144: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
1145: used : 'return' : conversion from 'Value' to 'Value &' (related
1146: to feature #1020)
1147:
1148: * src/main/execute.C: VS warning war
1149:
1150: * src/targets/cgi/parser3.C: VS compatibility fix
1151:
1152: * src/include/pa_request.h: VS warning war
1153:
1154: * tests/: 370.html, results/370.processed: test for ^file::exec[
1155: ... $.stdin[$binary_file] ] added (related to bug #1044)
1156:
1157: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
1158: include/pa_string.h, main/pa_exec.C: pa_exec now supports
1159: $.stdin[$binary_file] (fixes bug #1044)
1160:
1161: 2016-11-28 moko
1162:
1163: * src/main/pa_exec.C: whitespace
1164:
1165: * src/main/pa_request.C: whitespace
1166:
1167: * tests/: 369.html, results/369.processed: test for
1168: $response:status usage added (related to feature #1099)
1169:
1170: * src/targets/cgi/parser3.C: HTTP response code used as exit status
1171: if < 100 (implements feature #1099)
1172:
1173: * src/targets/cgi/parser3.C: whitespace
1174:
1175: * src/targets/cgi/parser3.C: whitespace
1176:
1177: * tests/: 368.html, results/368.processed: test updated after
1178: ^reflection:filename[$method] added (related to feature #1053)
1179:
1180: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
1181: main/compile.y, main/execute.C, main/pa_request.C,
1182: types/pa_vclass.h: filename -> filespec,
1183: ^reflection:filename[$method] added (related to feature #1053)
1184:
1185: 2016-11-27 moko
1186:
1187: * tests/: 368.html, results/368.processed: test for
1188: reflection:filename[$class or object] added (related to feature
1189: #1053)
1190:
1191: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
1192: types/pa_vstateless_class.h: ^reflection:filename[$class or
1193: object] added (implements feature #1053)
1194:
1195: 2016-11-26 moko
1196:
1197: * src/: include/pa_request_info.h,
1198: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
1199: remove_absolute_uri -> strip_absolute_uri
1200:
1201: 2016-11-25 moko
1202:
1203: * src/: include/pa_request_info.h,
1204: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
1205: request_info.remove_absolute_uri added to remove possible
1206: http://site.name/ from $request:uri (implements feature #1112)
1207:
1208: 2016-11-24 moko
1209:
1210: * tests/: 367-curl.html, results/367-curl.processed: test for
1211: previous request headers clearing after redirect added (related
1212: to bug #1109)
1213:
1214: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
1215: response headers from previous requests are now cleared, only
1216: last request headers are collected (fixes bug #1109)
1217:
1218: * tests/results/: 266.processed, 321.processed, 356.processed:
1219: tests results updated as method name now added to the resulting
1220: hash for new syntax only (Imp1 compatimility fixed, related to
1221: feature #1068)
1222:
1223: * src/classes/reflection.C: method name now added to the resulting
1224: hash for new syntax only (Imp1 compatimility fixed, related to
1225: feature #1068)
1226:
1227: * tests/results/366.processed: test for native and parser
1228: implementation of ^use[] logic (related to feature #1074)
1229:
1230: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
1231: for native and parser implementation of ^use[] logic (related to
1232: feature #1074)
1233:
1234: 2016-11-23 moko
1235:
1236: * src/: classes/op.C, include/pa_request.h, main/compile.y,
1237: main/pa_request.C: @USE file now implemented as ^use[file;
1238: $.origin[origin_file] ] (implements feature #1074)
1239:
1.109 moko 1240: 2016-11-21 moko
1241:
1.110 moko 1242: * tests/: 365.html, results/365.processed: test for $caller bugs in
1243: 3.4.4 and $caller.method now tested (related to feature #1110)
1244:
1245: * tests/: 364.html, results/364.processed: $caller usage in
1246: different contexts now tested (related to feature #1110)
1247:
1248: * src/types/types.vcproj: +pa_vcaller_wrapper.h
1249:
1250: * src/types/Makefile.am: pa_vcaller_wrapper.h added
1251:
1.109 moko 1252: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
1253: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
1254: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
1255: used (implements feature #1110)
1256:
1257: 2016-11-20 moko
1258:
1259: * src/types/pa_vdouble.h: whitespace
1260:
1261: 2016-11-11 moko
1262:
1263: * tests/: 363.html, results/363.processed: more tests for feature
1264: #1091 (how parser methods work in expression context)
1265:
1266: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
1267: expressions strings are now written as strings, not values by
1268: write_as_string (related to feature #1091)
1269:
1270: * src/classes/op.C: to make more correct behavour in expression
1271: context
1272:
1273: 2016-11-07 moko
1274:
1275: * tests/: 362.html, results/362.processed: test for
1276: xsltParseStylesheetDoc caching as xsl modification after it added
1277: (related to bug #1108)
1278:
1279: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
1280: result now cached as xdoc is modified after it (fixes bug #1108)
1281:
1282: 2016-11-06 moko
1283:
1284: * src/types/pa_vxdoc.h: whitespace
1285:
1286: 2016-11-05 moko
1287:
1288: * src/types/pa_vmethod_frame.h: cleanup
1289:
1290: 2016-11-03 moko
1291:
1292: * tests/results/244.processed: more correct exception after method
1293: frames separation
1294:
1295: * src/types/pa_vmethod_frame.h: minor optimizaion
1296:
1297: * src/types/pa_method.h: optimization: params_count added
1298:
1299: * src/: classes/json.C, classes/op.C, classes/reflection.C,
1300: include/pa_request.h, main/execute.C, main/pa_request.C,
1301: types/pa_value.C, types/pa_vmethod_frame.C,
1302: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
1303: VMethodFrame now divided into VNativeMethodFrame,
1304: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
1305: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
1306: and used (related to feature #1104)
1307:
1308: 2016-11-02 moko
1309:
1310: * src/: classes/bool.C, classes/curl.C, classes/date.C,
1311: classes/double.C, classes/file.C, classes/hash.C,
1312: classes/hashfile.C, classes/image.C, classes/inet.C,
1313: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1314: classes/memcached.C, classes/op.C, classes/reflection.C,
1315: classes/regex.C, classes/string.C, classes/table.C,
1316: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
1317: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
1318: r.write (implements feature #1091)
1319:
1320: * src/main/execute.C: cleanup (related to feature #1104)
1321:
1322: * src/: include/pa_request.h, main/execute.C,
1323: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
1324: added, in_expression removed (implements feature #1104)
1325:
1326: 2016-10-31 moko
1327:
1328: * src/types/pa_value.C: whitespace
1329:
1330: 2016-10-28 moko
1331:
1332: * tests/results/244.processed: updated after error reporting fixed
1333: in pa_wcontext.C
1334:
1335: * src/types/pa_wcontext.C: error reporting fixed
1336:
1337: * src/types/pa_wcontext.h: whitespace
1338:
1339: * src/classes/image.C: not fully readed entries are no longer
1340: processed (fixes bug #1106)
1341:
1342: 2016-10-26 moko
1343:
1344: * src/classes/image.C: whitespace
1345:
1346: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
1347: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
1348: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
1349: longer required (related to feature #1091)
1350:
1351: * tests/results/: 264.processed, 350.processed: test results update
1352: reverted (whitespace optimization) after write_no_lang removed :)
1353: (related to feature #1091)
1354:
1355: * src/: classes/file.C, classes/hash.C, classes/op.C,
1356: classes/string.C, classes/table.C, classes/void.C,
1357: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
1358: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
1359: equal write_pass_lang (related to feature #1091)
1360:
1361: * tests/results/: 264.processed, 350.processed: test results
1362: updated (whitespace optimization) after write_assign_lang removed
1363: (related to feature #1091)
1364:
1365: * tests/: 361.html, results/361.processed: test for non-string
1366: ^untaint added (related to feature #1091)
1367:
1368: * src/: classes/curl.C, classes/date.C, classes/file.C,
1369: classes/hash.C, classes/op.C, classes/string.C,
1370: include/pa_request.h, main/execute.C: optimization:
1371: write_assign_lang removed as not required (first part of feature
1372: #1091 implementation)
1373:
1.108 moko 1374: 2016-10-12 moko
1375:
1376: * tests/: 360.html, results/360.processed: more test code (related
1377: to feature #1104)
1378:
1379: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
1380: include/pa_request.h, main/compile.y, main/execute.C: opcode
1381: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
1382: WContext is next task (implements feature #1104)
1383:
1384: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
1385: / CO_WITHOUT_WCONTEXT
1386:
1387: * tests/: 360.html, results/360.processed: test for in expression
1388: state (related to feature #1104)
1389:
1390: 2016-10-11 moko
1391:
1392: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
1393:
1394: * src/classes/op.C: default value removed from initializer
1395:
1396: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
1397:
1398: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
1399:
1400: 2016-10-10 moko
1401:
1402: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
1403: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
1404: to feature #42)
1405:
1406: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
1407: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
1408:
1409: 2016-10-08 moko
1410:
1411: * src/classes/double.C: whitespace
1412:
1413: 2016-10-07 moko
1414:
1415: * src/types/pa_vmethod_frame.h: reorder
1416:
1417: 2016-10-06 moko
1418:
1419: * src/classes/date.C: typo
1420:
1421: * src/types/pa_vmethod_frame.h: whitespace + cleanup
1422:
1423: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
1424: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
1425: types/pa_vmethod_frame.h: params.get now returns Value&, not
1426: Value*
1427:
1428: * src/types/pa_vmethod_frame.C: params.get should return Value&.
1429:
1430: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
1431: removed; first as_* code rewrite
1432:
1433: 2016-10-05 moko
1434:
1435: * src/include/pa_request.h: whitespace
1436:
1437: * tests/: 359.html, results/359.processed: test for VCodeFrame and
1438: intercept_string added (related to feature #1097)
1439:
1440: * src/: classes/image.C, classes/op.C, classes/table.C,
1441: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
1442: optimization: intercept_string removed (implements feature #1097)
1443:
1444: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
1445:
1446: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
1447: from VCodeFrame and WWrapper as not required
1448:
1449: 2016-10-04 moko
1450:
1451: * src/: classes/curl.C, classes/date.C, classes/double.C,
1452: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
1453: classes/int.C, classes/json.C, classes/op.C,
1454: classes/reflection.C, classes/string.C, classes/table.C,
1455: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
1456: proces_to_value -> process after StringOrValue removed (related
1457: to feature #1020)
1458:
1459: * src/classes/form.C: whitespace
1460:
1461: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
1462:
1463: * tests/: 357.html, 358.html, results/357.processed,
1464: results/358.processed, results/auto.p: test for @conf
1465: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
1466:
1467: 2016-10-03 moko
1468:
1469: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
1470: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
1471: supported (implements feature #42)
1472:
1473: * src/types/pa_vregex.h: no reason for VRegex to be
1474: is_evaluated_expr
1475:
1476: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
1477: (implements feature #1095)
1478:
1479: 2016-10-01 moko
1480:
1481: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
1482: false by default (related to feature #1089)
1483:
1484: 2016-09-30 moko
1485:
1486: * src/types/pa_wcontext.h: cleanup
1487:
1488: 2016-09-29 moko
1489:
1490: * src/main/execute.C: whitespace
1491:
1492: * src/include/pa_request.h: whitespace
1493:
1494: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
1495: classes/op.C, classes/table.C, include/pa_request.h,
1496: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
1497: types/pa_vobject.C, types/pa_wcontext.h: optimization:
1498: StringOrValue removed as it just slows down and adds complexity
1499: (implements feature #1020)
1500:
1501: 2016-09-28 moko
1502:
1503: * tests/: 356.html, results/266.processed, results/321.processed,
1504: results/356.processed: tests updated after name was added to
1505: method_info hash, test for ^reflection:method_info[junction]
1506: added (related to feature #1068)
1507:
1508: * src/classes/reflection.C: ^reflection:method_info[junction] now
1509: supported, method name added to the resulting hash (implements
1510: feature #1068)
1511:
1512: * tests/: 276.html, results/276.processed: more tests for
1513: ^reflection:delete[]
1514:
1515: * src/classes/reflection.C: fixed bug then ^reflection:delete
1516: didn't work on class and could damage native objects (like file)
1517:
1518: 2016-09-26 moko
1519:
1520: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
1521: results/345.processed, results/346-curl.processed,
1522: results/347-curl.processed, results/348.processed: numbers added
1523: to simplify diff analysis
1524:
1525: * tests/: 352.html, results/352.processed: test result updated as
1526: method name used
1527:
1528: * src/classes/reflection.C: method name used
1529:
1530: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
1531: its name
1532:
1533: * src/types/pa_method.h: whitespace
1534:
1535: * src/classes/reflection.C: both method and field with one name can
1536: exist.
1537:
1538: * src/classes/reflection.C: ^reflection:mixin added (implements
1539: feature #1089)
1540:
1541: * tests/: 355.html, results/355.processed: property appears in
1542: derived class if added in base test added
1543:
1544: * src/types/pa_vstateless_class.h: get_method declaration +
1545: whitespace
1546:
1547: * tests/: 354.html, results/354.processed: nice test from method
1548: and property with one name in class added
1549:
1550: 2016-09-23 moko
1551:
1552: * src/classes/reflection.C: ^reflection:method usage documented
1553:
1554: 2016-09-22 moko
1555:
1556: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
1557: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
1558: compile warning and GPF occures on VS2003 (related to feature
1559: #1087)
1560:
1561: * tests/: 350.html, results/350.processed: test added for
1562: $.encloser[] support in ^table::create (related to feature #11)
1563:
1564: * src/classes/table.C: another minor fix (related to feature #11)
1565:
1.107 moko 1566: 2016-09-21 moko
1567:
1568: * src/include/pa_config_fixed.h: vs2015 compilation fixes
1569:
1570: * src/: classes/curl.C, classes/file.C, classes/hash.C,
1571: classes/json.C, classes/string.C, classes/table.C,
1572: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
1573: main/pa_common.C, main/pa_http.C, main/pa_request.C,
1574: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
1575: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
1576: pa_charsets, vs2015 warning war
1577:
1578: * src/classes/table.C: vs2015 warning war
1579:
1580: * src/types/pa_vdate.C: vs2015 warning war
1581:
1582: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
1583:
1584: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
1585: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
1586:
1587: * src/main/pa_common.C: vs2015 compilation fixes
1588:
1589: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
1590: vs2015 compilation fixes
1591:
1592: * src/main/pa_charset.C: vs2015 warning war
1593:
1594: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
1595:
1596: * src/main/pa_charset.C: vs2015 warning war
1597:
1598: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
1599:
1600: * src/types/pa_vdate.C: vs2015 compilation fix
1601:
1602: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
1603:
1604: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
1605: VS2015 compilation fixes
1606:
1607: * src/classes/table.C: minor fix (related to feature #11)
1608:
1609: * tests/results/282.processed: no longer skipping extra enclosers
1610: (related to feature #11)
1611:
1612: * src/classes/table.C: minor fix + no longer skipping extra
1613: enclosers (related to feature #11)
1614:
1615: * src/classes/table.C: minor optimization (related to feature #11)
1616:
1617: * src/classes/table.C: minor fix and optimization (related to
1618: feature #11)
1619:
1620: 2016-09-20 moko
1621:
1622: * tests/: 353.html, results/353.processed: test for
1623: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
1624: added (related to bug #1090)
1625:
1626: * src/main/compile.y: PC.cclass->is_vars_local() check added for
1627: one_big_piece (fixes bug #1090)
1628:
1629: * tests/: 229.html, results/229.processed: code coverage tests
1630:
1631: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
1632: body) was called
1633:
1634: * src/classes/op.C: whitespace
1635:
1636: * tests/: 323.html, results/323.processed: test for code junction
1637: should not be returned by ^reflection:class, ^reflection:base
1638:
1639: * src/classes/reflection.C: bugfix: code junction should not be
1640: returned by ^reflection:class, ^reflection:base
1641:
1642: * tests/: 323.html, 352.html, results/352.processed: no more
1643: exception for ^reflection:method[class;no-such-method] (related
1644: to feature #1087)
1645:
1646: * src/classes/reflection.C:
1647: ^reflection:method[class;no-such-method] : exception -> void
1648: (related to feature #1087)
1649:
1650: * src/include/pa_request.h: request::write_value added to allow
1651: write value without convertion (related to issue #1091)
1652:
1653: 2016-09-19 moko
1654:
1655: * src/main/pa_random.C: windows build fix
1656:
1657: * src/types/pa_vhash.h: warning war
1658:
1659: 2016-09-14 moko
1660:
1661: * tests/: 352.html, 552.html, results/352.processed,
1662: results/552.processed: test for ^reflection:method[] extension
1663: added (related to feature #1087)
1664:
1665: * tests/: 552.html, results/552.processed: test for
1666: ^reflection:method[] extension added (related to feature #1087)
1667:
1668: * src/classes/reflection.C: compatibility issue fixed, VClass
1669: dynamic_cast check added (related to feature #1087)
1670:
1671: * tests/: 351.html, results/351.processed: test for @auto[]
1672: inheritance bug diring ^process[] added (related to bug #1088)
1673:
1674: * src/: classes/op.C, main/pa_request.C,
1675: types/pa_vstateless_class.C: set_method now checks for @auto[] to
1676: disable it inheritance during ^process (fixes bug #1088)
1677:
1678: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
1679: added (implements feature #1087)
1680:
1681: 2016-09-13 moko
1682:
1683: * tests/: 349.html, results/auto.p: test for objects prototyping
1684: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
1685: to feature #1086)
1686:
1687: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
1688: types/pa_vobject.C: objects now are not class instances, but have
1689: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
1690: in @conf (implements feature #1086)
1691:
1692: 2016-09-08 moko
1693:
1694: * src/: classes/file.C, classes/mail.C, classes/string.C,
1695: classes/table.C, main/pa_http.C, main/pa_string.C,
1696: include/pa_string.h: cleanup: string::split limit argument
1697: removed as no longer required, pos_after no longer reference
1698: (related to feature #11)
1699:
1700: * src/classes/table.C, tests/results/348.processed: now exception
1701: is rised when invalid option is passed to ^table::create[]
1702:
1703: * tests/: 282.cfg, 282.html, results/282.processed: more code
1704: coverage tests
1705:
1706: * tests/: 348.html, results/348.processed: code coverage tests
1707: added
1708:
1709: * tests/: 348.html, results/348.processed: generic ^table::create[]
1710: tests
1711:
1712: * tests/: 035.html, results/035.processed, results/272.processed:
1713: tests updated after $.encloser[] support for ^table::create
1714: implementation (related to feature #11)
1715:
1716: * src/classes/table.C: $.encloser[] support for ^table::create
1717: finally added (implements feature #11)
1718:
1719: 2016-09-07 moko
1720:
1721: * src/include/pa_string.h: added StringSplitHelper as friend
1722: (related to feature #11)
1723:
1724: * src/include/pa_string.h: body and langs now protected, not
1725: private to allow inheritance (related to feature #11)
1726:
1727: * src/classes/table.C: lsplit optimized before cloning for
1728: ^table::create with $.encloser[] (related to feature #11)
1729:
1730: * src/classes/table.C: optimizaion: TableControlChars.separators
1731: added and used (related to feature #11)
1732:
1733: * src/classes/table.C: spelling:
1734:
1735: TableSeparators -> TableControlChars column -> separator
1736: separators -> control_chars
1737:
1738: 2016-09-06 moko
1739:
1740: * src/main/pa_string.C: whitespace
1741:
1742: * src/main/pa_string.C: whitespace
1743:
1744: 2016-09-01 moko
1745:
1746: * tests/: 347-curl.html, results/347-curl.processed: to make tests
1747: results OS-independent
1748:
1749: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
1750: compiler (related to feature #1042)
1751:
1752: 2016-08-15 moko
1753:
1754: * src/include/pa_string.h: whitespace
1755:
1756: * src/classes/table.C: whitespace
1757:
1.106 moko 1758: 2016-08-05 moko
1759:
1760: * tests/: 344.html, results/344.processed: test for
1761: ^hash::create[$file] added (related to feature #1075)
1762:
1763: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
1764: supported (implements feature #1075)
1765:
1766: 2016-08-04 moko
1767:
1768: * tests/: 341.html, results/341.processed: more code coverage tests
1769:
1770: * tests/: 346-curl.html, results/346-curl.processed: more code
1771: coverage tests for curl
1772:
1773: * tests/: 346-curl.html, results/346-curl.processed: more code
1774: coverage tests for curl
1775:
1776: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
1777: results/223.processed: code coverage tests: $.form[ $.table[] ]
1778: test added
1779:
1780: * tests/: 223-curl.html, results/223-curl.processed: more code
1781: coverage tests for curl
1782:
1783: 2016-08-03 moko
1784:
1785: * src/classes/curl.C: dlink(curl_library) now called not once, but
1786: until it will be loaded, allowing to find existing library.
1787:
1788: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
1789: results/347-curl.processed: more code coverage tests for curl
1790:
1791: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
1792: results/339-curl.processed, results/346-curl.processed: curl
1793: functionality tests
1794:
1795: 2016-08-02 moko
1796:
1797: * tests/: 339.html, results/339.processed: test for tables in
1798: ^file:load[] and ^curl:load[] (commented) added (related to
1799: feature #1042)
1800:
1801: * tests/: 345.html, results/345.processed: code coverage tests for
1802: file class
1803:
1804: * tests/: 344.html, results/344.processed: code coverage tests
1805:
1806: * tests/: 344.html, results/344.processed: mdate removed from
1807: output
1808:
1809: * src/classes/file.C: minor bugfix: is_text should be taked from
1810: fcontent.is_text_mode() if not set (related to feature #1061)
1811:
1812: * tests/: 344.html, results/344.processed: more tests
1813:
1814: * tests/: 343.html, 344.html, results/343.processed,
1815: results/344.processed: tests for ^file::create[ $.from-charset
1816: and $.to-charset ] (related to feature #1061)
1817:
1818: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
1819: aset_text_mode argument optimized
1820:
1821: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
1822: checkBOM now used in detect_binary_content (related to feature
1823: #1061)
1824:
1825: * src/main/pa_request.C: load_charset no longer required to_upper
1826:
1827: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
1828: preserves original file mode (if no $.mode specified)
1829:
1830: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
1831: ^file::create now supports $.from-charset[] and $.to-charset
1832: options (implements feature #1061), automatic transcode is done
1833: if text file is created from binary file and charset is detected.
1834:
1835: 2016-07-30 moko
1836:
1837: * src/classes/table.C: ^t.hash[..;] now supported (related to
1838: feature #1057)
1839:
1840: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
1841: added (related to feature #1057)
1842:
1843: * tests/: 286.html, results/286.processed: code tests coverage
1844:
1845: 2016-07-29 moko
1846:
1847: * src/classes/table.C: table size should be checked inside menu and
1848: foreach (related to feature #858)
1849:
1850: * src/: classes/curl.C, classes/file.C, classes/string.C,
1851: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
1852: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
1853: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
1854: charsets.get now does str_upper inside (related to feature #1061)
1855:
1856: * tests/: 342.html, results/342.processed: more code coverage tests
1857:
1858: * tests/: 342.html, outputs/342.processed: table menu code coverage
1859: + foreach test added (related to feature #858)
1860:
1861: * tests/: 341.html, results/341.processed: tests for
1862: ^table.hash[]{code} added + code coverage tests (related to
1863: feature #1057)
1864:
1865: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
1866: value} support (implements feature #1057)
1867:
1868: * src/classes/table.C: whitespace
1869:
1870: 2016-07-28 moko
1871:
1872: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
1873: from URL, if not specified query string removed from url-based
1874: filenames in ^curl:load[] and ^file::load[] (related to feature
1875: #1042)
1876:
1877: 2016-07-27 moko
1878:
1879: * tests/: 340.html, results/340.processed: test for
1880: transcode_text_result=false added (related to issue #1042)
1881:
1882: 2016-07-26 moko
1883:
1884: * src/types/pa_vfile.C: file name should not be empty (if file path
1885: is folder and ends with /) (related to feature #1042)
1886:
1887: * src/main/pa_http.C: whitespace optimizaion
1888:
1889: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
1890: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
1891: multiple headers, ^file::load supports headers transcoding
1892: (implements feature #1042)
1893:
1894: 2016-07-25 moko
1895:
1896: * src/include/pa_common.h: PA_DEFAULT added
1897:
1898: 2016-07-22 moko
1899:
1900: * tests/: 338.html, results/338.processed: test for
1901: $date.field(value) added (related to feature #1066)
1902:
1903: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
1904: $date.field(value) now supported for y/m/d/h/m/s (implements
1905: feature #1066)
1906:
1.105 moko 1907: 2016-07-21 moko
1908:
1909: * src/: classes/file.C, classes/image.C, include/pa_common.h,
1910: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
1911: arguments removed; image.C - absolute path shown in exception
1912: (implements feature #1071)
1913:
1914: * tests/: 235.html, results/235.processed: test and test result
1915: updated after static boundary in mail and Errors-To: mail header
1916: removed (related to feature #1047)
1917:
1918: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
1919: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
1920: used, static boundary in mail removed, Errors-To: mail header
1921: removed (implements feature #1047)
1922:
1923: 2016-07-20 moko
1924:
1925: * src/: classes/reflection.C, types/pa_vstateless_class.h:
1926: equest.classes(): Value -> VStateless_class, part 3 (related to
1927: issue #1051)
1928:
1929: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
1930: request.classes(): Value -> VStateless_class, part 2 (related to
1931: issue #1051)
1932:
1933: * tests/results/: 224.processed, 323.processed: classes without
1934: methods should not be methoded (related to issue #1051)
1935:
1936: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
1937: main/compile_tools.h, main/pa_request.C: request.classes(): Value
1938: -> VStateless_class, part 1 (related to issue #1051)
1939:
1940: * tests/: 337.html, results/337.processed: test for
1941: ^reflection:fields_reference[] and VHashReference class added
1942: (related to feature #1072)
1943:
1944: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
1945: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
1946: and VHashReference added, allowing ^reflection:fields_reference[]
1947: implementation (closes feature #1072)
1948:
1949: 2016-07-19 moko
1950:
1951: * tests/: 323.html, results/323.processed: we want to see
1952: "methoded"
1953:
1954: * tests/: 336.html, results/336.processed: test for $BASE:property
1955: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
1956: #1059)
1957:
1958: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
1959: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
1960: somebody_entered_some_class, $BASE:property works again,
1961: ^BASE:method[] bugs fixed (fixes bug #1059)
1962:
1963: 2016-07-14 moko
1964:
1965: * tests/: 335.html, results/335.processed: test for feature #1055
1966: added
1967:
1968: * src/classes/hash.C: bugfix: $._default was not copied if empty
1969: feature: ^hash.contains[_default] added (implements feature
1970: #1055)
1971:
1972: 2016-07-13 moko
1973:
1974: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
1975: should not call @autouse (http://www.parser.ru/forum/?id=83480)
1976:
1977: 2016-07-05 moko
1978:
1979: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
1980: in ^hash.foreach (related to feature #1073)
1981:
1982: 2016-07-04 moko
1983:
1984: * tests/: 134.html, 281.html, results/134.processed,
1985: results/281.processed: tests updated after hash blocking removed
1986: (related to feature #1073)
1987:
1988: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
1989: no longer blocks on change during foreach (implements feature
1990: #1073)
1991:
1992: 2016-06-17 moko
1993:
1994: * tests/: 330.html, results/330.processed: try exception source
1995: test added (related to bug in #1062)
1996:
1997: * tests/: 334.html, results/334.processed: Exception stack trace
1998: test added (related to bug in $1062)
1999:
2000: * src/classes/op.C: Exception trace now correctly restored and
2001: errors reported (related to bug #1062)
2002:
1.104 moko 2003: 2016-05-25 moko
2004:
2005: * src/main/compile.y: minor cleanup + beauty
2006:
2007: 2016-05-24 moko
2008:
2009: * tests/: 333.html, results/333.processed: more exceptions testing
2010:
2011: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
2012: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
2013: features #1056, #1026)
2014:
2015: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
2016: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
2017: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
2018: (implements feature #1056)
2019:
2020: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2021: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
2022: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
2023: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
2024: feature #1026)
2025:
2026: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
2027: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
2028: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
2029: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
2030: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
2031: feature #1026)
2032:
2033: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2034: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
2035: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
2036: SYMBOLS_CACHING define implemented (related to feature #1026)
2037:
2038: * src/main/main.vcproj: + ps_symbols
2039:
2040: * src/: include/Makefile.am, include/pa_string.h,
2041: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
2042: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
2043: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2044: types/pa_vstateless_class.C: initial implementation for symbols
2045: cache (related to feature #1026)
2046:
2047: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
2048:
2049: * src/main/pa_globals.C: minor cleanup
2050:
2051: 2016-05-19 moko
2052:
2053: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
2054: (related to feature #1046)
2055:
2056: * tests/: 331.html, results/331.processed: test for
2057: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
2058: (related to feature #1051)
2059:
2060: * src/main/compile.y:
2061: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
2062: (implements feature #1054)
2063:
2064: 2016-05-18 moko
2065:
2066: * src/types/pa_vtable.C, tests/results/324.processed: no more
2067: "column not found" exception for ^table.no-such-method[] (related
2068: to feature #1046)
2069:
2070: * tests/: 261.html, results/261.processed: test added and updated
2071: after feature #1046 implementation
2072:
2073: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
2074: types/pa_vvoid.h: $string.anything works for whitespace strings,
2075: ^string.contains added for hash compatibility, $string.method no
2076: longer returns stting method (implements feature #1046)
2077:
2078: 2016-05-12 moko
2079:
2080: * src/classes/curl.C: content-type response header no longer
2081: ignored (fixes issue #1045)
2082:
2083: * tests/: 330.html, results/330.processed: test for incomplete
2084: finally execution when break occures added (related to issue
2085: #1077)
2086:
2087: * src/classes/op.C: bugfix: Request::skip reset is called before
2088: executing catch and finally code (fixes issue #1062)
2089:
2090: 2016-05-11 moko
2091:
2092: * tests/: 329.html, results/329.processed: test for invalid
2093: ^break[] behavour added (bug #1077)
2094:
2095: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
2096:
2097: 2016-04-24 moko
2098:
2099: * src/types/pa_vstateless_class.h: warning war
2100:
2101: 2016-04-17 moko
2102:
2103: * tests/: 328.html, results/328.processed: test for
2104: ^break(condition) and ^continue(condition) (related to feature
2105: #1063)
2106:
2107: * src/classes/op.C: ^break(condition) and ^continue(condition)
2108: implemented (feature #1063)
2109:
2110: 2016-04-12 moko
2111:
2112: * tests/results/280.processed: ordered hash now used for class
2113: methods and properties (test results updated for feature #1069)
2114:
2115: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
2116: to xdoc.C as under FreeBSD it was inited after and inheritance
2117: failed (related to issue #1051)
2118:
2119: * tests/: 320.html, results/320.processed: xdoc and xnode methods
2120: are printed to check inheritance (related to feature #1051)
2121:
1.103 moko 2122: 2016-04-09 moko
2123:
2124: * tests/results/320.processed: ordered hash now used for class
2125: methods and properties (test results updated for feature #1069)
2126:
2127: * src/types/pa_vstateless_class.h: ordered hash now used for class
2128: methods and properties (implements feature #1069)
2129:
2130: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
2131: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
2132: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
2133: feature #1051)
2134:
2135: 2016-04-07 moko
2136:
2137: * src/main/execute.C: returned Value in .CLASS case for VJunction
2138: (related to feature #1051)
2139:
2140: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
2141: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
2142: string constants deduplication (related to feature #1051)
2143:
2144: * tests/results/224.processed: test result updated (related to
2145: feature #1051)
2146:
2147: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
2148: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
2149: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
2150: types/pa_vstatus.h: classes hash now contains only
2151: VStateless_class derived objects, .CLASS is also allways
2152: VStateless_class derived object (related to feature #1051).
2153:
2154: 2016-04-06 moko
2155:
2156: * tests/results/323.processed: test result updated after feature
2157: #1051 implementation
2158:
2159: * src/: classes/classes.h, classes/op.C, classes/response.C,
2160: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2161: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
2162: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
2163: types/pa_vresponse.C, types/pa_vresponse.h,
2164: types/pa_vstateless_class.h: base -> methoded_donor for static
2165: classes, type() moved from VStateless_class to VClass and
2166: Methoded (implements feature #1051)
2167:
2168: 2016-04-04 moko
2169:
2170: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
2171: beauty: put_class added (related to feature #1051)
2172:
2173: 2016-04-01 moko
2174:
2175: * tests/results/: 175.processed, 192.processed, 224.processed,
2176: 229.processed, 244.processed, 246.processed, 316.processed: test
2177: results updated as class.type() removed from error messages, only
2178: type() left (related to feature #1051)
2179:
2180: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
2181: classes/op.C, classes/reflection.C, main/compile.y,
2182: main/compile_tools.h, main/execute.C, main/pa_request.C,
2183: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
2184: types/pa_vmethod_frame.h, types/pa_vobject.h,
2185: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
2186: from VStateless_class, type() is used instead (related to feature
2187: #1051)
2188:
2189: * src/classes/mail.C: old logic restored.
2190:
2191: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2192: classes/classes.h, classes/curl.C, classes/date.C,
2193: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2194: classes/hashfile.C, classes/image.C, classes/inet.C,
2195: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2196: classes/memcached.C, classes/memory.C, classes/reflection.C,
2197: classes/regex.C, classes/response.C, classes/string.C,
2198: classes/table.C, classes/xdoc.C, classes/xnode.C,
2199: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
2200: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
2201: feature #1051)
2202:
2203: 2016-03-30 moko
2204:
2205: * tests/: 327.html, results/224.processed, results/327.processed:
2206: test for TZ specification in ^date::create[], TZ is kept during
2207: ^date::create[$dt] (related to feature #1048)
2208:
2209: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
2210: ^date::create[], TZ is kept during ^date::create[$dt] (implements
2211: feature #1048)
2212:
2213: 2016-03-29 moko
2214:
2215: * tests/: 315.html, results/315.processed: test for timezone format
2216: +HHmm added (related to feature #1065)
2217:
2218: * src/classes/date.C: timezone format +HHmm now supported
2219: (implements feature #1065)
2220:
2221: 2016-03-28 moko
2222:
2223: * tests/: 202.html, results/131.processed, results/202.processed,
2224: results/224.processed, results/256.processed,
2225: results/315.processed: test results updated after %.2d now
2226: default for hours offset in iso-string (was %2d), test for
2227: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
2228: added (related to feature #1065)
2229:
2230: 2016-03-27 moko
2231:
2232: * src/types/pa_vdate.C: '+' sign for zero offset (related to
2233: feature #1065)
2234:
2235: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
2236: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
2237: added (implements feature #1065)
2238:
2239: 2016-03-24 moko
2240:
2241: * tests/: 202.html, results/202.processed: test $date.week added
2242: (related to bug #1067)
2243:
2244: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
2245: date (fix for bug #1067)
2246:
2247: 2016-03-10 moko
2248:
2249: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
2250:
1.102 moko 2251: 2015-12-07 moko
2252:
2253: * tests/: 326.html, results/326.processed: test for .CLASS &
2254: .CLASS_NAME optimization added (related to feature #844)
2255:
2256: 2015-11-17 moko
2257:
2258: * tests/: 323.html, results/323.processed: order added
2259:
2260: * tests/: 325.html, results/325.processed: double range test added
2261: (related to bug #1049)
2262:
2263: 2015-11-16 moko
2264:
2265: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
2266: added to disallow NaN and Infinity (fixes bug #1049)
2267:
2268: 2015-11-11 moko
2269:
2270: * tests/324.html: parser 3.4.3 execution support added (related to
2271: feature #1017)
2272:
2273: * tests/: 324.html, results/324.processed: test for
2274: GET_ELEMENT4CALL feature added (feature #1017)
2275:
1.101 moko 2276: 2015-10-29 moko
2277:
2278: * operators.txt: updated for 3.4.4
2279:
2280: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
2281:
2282: * src/main/pa_exec.C: get_exit_status implemented for Windows
2283: (related to bug #1043)
2284:
2285: 2015-10-28 moko
2286:
2287: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
2288: hangup during ^file::exec (fixes bug #1043)
2289:
1.100 moko 2290: 2015-10-27 moko
2291:
2292: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
2293:
1.99 moko 2294: 2015-10-26 moko
2295:
1.100 moko 2296: * tests/322.html, src/classes/reflection.C: arguments reorder
2297: (related to issue #1041)
2298:
2299: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
2300: Copyright year updated
2301:
1.99 moko 2302: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
2303: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
2304: classes/form.C, classes/hash.C, classes/hashfile.C,
2305: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
2306: classes/mail.C, classes/math.C, classes/memcached.C,
2307: classes/memory.C, classes/op.C, classes/reflection.C,
2308: classes/regex.C, classes/response.C, classes/string.C,
2309: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
2310: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
2311: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2312: include/pa_config_fixed.h, include/pa_config_includes.h,
2313: include/pa_dictionary.h, include/pa_dir.h,
2314: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2315: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2316: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2317: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2318: include/pa_request_charsets.h, include/pa_request_info.h,
2319: include/pa_sapi.h, include/pa_socks.h,
2320: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2321: include/pa_stack.h, include/pa_string.h,
2322: include/pa_stylesheet_connection.h,
2323: include/pa_stylesheet_manager.h, include/pa_table.h,
2324: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
2325: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
2326: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
2327: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
2328: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
2329: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
2330: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
2331: main/compile.y, main/compile_tools.C, main/compile_tools.h,
2332: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
2333: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
2334: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
2335: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
2336: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2337: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2338: main/pa_string.C, main/pa_stylesheet_connection.C,
2339: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
2340: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
2341: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
2342: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
2343: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
2344: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
2345: targets/isapi/parser3isapi.C, types/pa_junction.h,
2346: types/pa_method.h, types/pa_property.h, types/pa_value.C,
2347: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
2348: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
2349: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
2350: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
2351: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
2352: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
2353: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
2354: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
2355: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
2356: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
2357: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
2358: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2359: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2360: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2361: types/pa_vresponse.C, types/pa_vresponse.h,
2362: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2363: types/pa_vstateless_object.h, types/pa_vstatus.C,
2364: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2365: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2366: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2367: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2368: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
2369:
2370: * src/targets/cgi/parser3.C: year updated
2371:
2372: * src/classes/reflection.C: VS2003 compatibility fixed (related to
2373: issue #1041)
2374:
2375: * tests/: 323.html, results/323.processed: test for base classes
2376: added
2377:
2378: * tests/: 261.html, results/261.processed: updated after better
2379: error reporting done for $string.key exception
2380:
2381: * src/types/pa_vstring.h: better error report for $string.key
2382: exception
2383:
2384: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
2385: copied as VObject::get_element4call to remove extra virtual call
2386:
2387: * tests/: 322.html, results/322.processed: test for
2388: ^reflection:is[] added (related to feature #1041)
2389:
2390: * src/classes/reflection.C: ^reflection:is empty value is void
2391: (related to feature #1041)
2392:
2393: * src/classes/reflection.C:
2394: ^reflection:is[class_name|code|method;[context;]element_name]
2395: added (implements feature #1041)
2396:
2397: 2015-10-24 moko
2398:
2399: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
2400:
1.98 moko 2401: 2015-10-22 moko
2402:
2403: * tests/: 321.html, results/321.processed: test for
2404: ^reflection:method_info[] file detection added
2405:
2406: * tests/: 320.html, results/320.processed: test for
2407: ^reflection:class_by_name[class_name] added (related to feature
2408: #993)
2409:
2410: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
2411: added (implements feature #993)
2412:
2413: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
2414: (related to feature #1017)
2415:
2416: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
2417: added (related to issue #1039)
2418:
2419: * src/main/pa_request.C: ^throw origin fixed (related to feature
2420: #1039)
2421:
2422: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
2423: for VDate
2424:
2425: * tests/results/182.processed: updated after feature #1038
2426: implemented
2427:
2428: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
2429: compile-time exception origin added (test for feature #1039)
2430:
2431: * src/: include/pa_request.h, main/compile.C, main/compile.y,
2432: main/pa_request.C: exception unification: compile-time exceptions
2433: now have origin, @USE origins also tracked (implements feature
2434: #1039)
2435:
2436: 2015-10-20 moko
2437:
2438: * src/main/pa_request.C: cleanup
2439:
2440: 2015-10-15 moko
2441:
2442: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
2443:
2444: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
2445: types/pa_vtable.C: new feature: no more $table.method and
2446: $hash.method, aliases for _at, _count, _key (related to feature
2447: #1017)
2448:
1.97 moko 2449: 2015-10-14 moko
2450:
1.98 moko 2451: * tests/: 317.html, results/317.processed: test for
2452: ^string.unescape[] added (related to feature #120)
2453:
1.97 moko 2454: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
2455: defined" bug (described in issue #1036)
2456:
2457: * tests/: 247.html, results/247.processed: test for checkBOM added
2458: (test for bug #1037)
2459:
2460: * src/: include/pa_charsets.h, main/pa_charsets.C,
2461: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
2462: it's not enforced, skips BOM signature if it complies charset
2463: (fixes bug #1037)
2464:
2465: 2015-10-13 moko
2466:
2467: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
2468: linking
2469:
2470: * src/classes/inet.C: vs2003 compilation fix
2471:
2472: * src/classes/math.C: warning war
2473:
2474: * src/lib/punycode/pa_punycode.c: warning war
2475:
2476: 2015-10-12 moko
2477:
2478: * src/lib/punycode/pa_punycode.c: warning war
2479:
2480: * parser3.sln: moved parser3 first, to make it default startup
2481: project
2482:
2483: * buildall: parser "mirror" now used for external libs sources
2484: (implements feature #1036)
2485:
2486: * buildall: most external libs are updated to their current
2487: versions (related to feature #1036)
2488:
2489: * src/classes/image.C: more tags added
2490:
2491: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
2492:
2493: 2015-10-11 moko
2494:
2495: * src/classes/curl.C: minor optimization (related to feature #1035)
2496:
2497: 2015-10-09 moko
2498:
2499: * src/classes/curl.C: pa_strdup added for strings from curl
2500: (related to feature #1035)
2501:
2502: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
2503: ULLONG_MAX definition
2504:
2505: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
2506: (implements feature #1035)
2507:
2508: * src/main/pa_charset.C: String::Body(String::C) used
2509:
2510: * src/main/pa_charset.C: exceptions unified
2511:
2512: * src/: include/pa_charset.h, main/pa_charset.C: declarations
2513: unified
2514:
2515: * src/: classes/file.C, classes/image.C, classes/mail.C,
2516: classes/op.C, classes/xdoc.C, classes/xnode.C,
2517: include/pa_string.h, main/pa_request.C, main/pa_string.C,
2518: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
2519: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
2520: String::Body(String::C) constructor added (related to bug #957)
2521:
2522: * src/classes/file.C: minor optimization
2523:
2524: * src/include/pa_hash.h: hash.get(char*) added, to minimize
2525: Cord(char*) autocreation (related to bug #957)
2526:
2527: * src/: classes/string.C, main/untaint.C: minor optimizations
2528:
2529: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
2530: String(char*, Lang, length) removed, String(C(), Lang) used
2531: instead (related to bug #957)
2532:
2533: 2015-10-08 moko
2534:
2535: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
2536: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
2537: main/untaint.C: Now char * is converted to CORD only using
2538: AS_CORD() to check for empty cord bug (fixes bug #957)
2539:
2540: * src/include/pa_hash.h: fixed compilation without
2541: HASH_CODE_CACHING
2542:
2543: * src/classes/string.C:
2544: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
2545: feature #120)
2546:
2547: * src/main/pa_common.C: reduce js flags checks count (related to
2548: feature #120)
2549:
1.96 moko 2550: 2015-10-07 moko
2551:
2552: * tests/: 275.html, results/275.processed: test modified after
2553: unsigned long long int support implemented (feature #1034)
2554:
2555: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
2556: pa_atoul added for unsigned long long int support
2557:
2558: 2015-10-06 moko
2559:
2560: * src/types/pa_vdate.C: INT_MAX used
2561:
2562: 2015-10-03 moko
2563:
2564: * tests/: 302.html, results/302.processed: test for bug #1023
2565: (\u2028, \u2029 escaping) added
2566:
2567: * src/main/untaint.C: \u2028, \u2029 are now escaped in
2568: json:string[] (fixes bug #1023)
2569:
2570: 2015-09-29 moko
2571:
2572: * tests/305.html: try-catch added for OS without ipv6 support
2573:
2574: * src/lib/json/pa_json.C: more unique prefixes for Solaris
2575: compilation
2576:
2577: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
2578: main/execute.C, types/pa_value.h, types/pa_vhash.h,
2579: types/pa_vtable.C, types/pa_vtable.h: get_element4call
2580: implemented to distinguish ^hash.method from $hash.field
2581: (implements feature #1017)
2582:
2583: * src/lib/punycode/pa_punycode.c: warning war
2584:
2585: * src/include/pa_config_includes.h: warning war
2586:
2587: * src/include/pa_config_includes.h: pragma warning actualized a bit
2588:
2589: * src/include/pa_config_includes.h: warning war
2590:
2591: * src/include/pa_hash.h: clang compilation fix
2592:
2593: 2015-09-27 moko
2594:
2595: * src/main/compile.tab.C: Bison 3 is now default
2596:
2597: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
2598:
2599: 2015-09-25 moko
2600:
2601: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
2602: works with undefined HASH_ORDER (related to feature #196)
2603:
2604: 2015-09-24 moko
2605:
2606: * tests/: 027.html, results/027.processed: test modified to test
2607: ^hash.sort (feature #196)
2608:
2609: * src/: classes/hash.C, include/pa_hash.h:
2610: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
2611: added (implements feature #196)
2612:
2613: * tests/: 316.html, results/316.processed: Added test for bug #1025
2614: (exception handling in non-cached ^cache), plus for "it does not
2615: have logical value" and "$exception.handled value must be either
2616: boolean or string 'cache'" exceptions.
2617:
2618: * src/classes/op.C: ^cache: exceptions now handled in non-cached
2619: code (fixes bug #1025)
2620:
1.95 moko 2621: 2015-09-23 moko
2622:
2623: * src/classes/table.C: warning war
2624:
2625: * src/: classes/math.C, types/pa_vcookie.C: warning war
2626:
2627: * src/classes/file.C: warning war
2628:
2629: * src/: include/pa_table.h, main/pa_table.C: warning war
2630:
2631: * src/: main/pa_request.C, classes/date.C: warning war
2632:
2633: * src/: types/pa_vdate.C, classes/op.C: warning war
2634:
2635: * tests/: 122.html, results/122.processed: win sync: to remove
2636: differences with OS that doesn't keep timezone change history
2637:
2638: * src/types/pa_vdate.C: tzset() should be called in Windows after
2639: TZ change (related to feature #36)
2640:
2641: * tests/: 075.html, results/075.processed: win sync: to remove
2642: differences with OS that doesn't keep timezone change history
2643:
2644: * tests/: 315.html, results/315.processed: win sync: to remove
2645: differences with OS that doesn't keep timezone change history
2646:
2647: * tests/: 256.html, results/256.processed: win sync: to remove
2648: differences with OS that doesn't keep timezone change history
2649:
2650: * tests/: 124.html, results/124.processed: win results sync: to
2651: avoid hitting time change hole.
2652:
2653: * src/types/pa_vdate.C: static returned. :)
2654:
2655: 2015-09-22 moko
2656:
2657: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
2658:
2659: * tests/results/131.processed: more tests for feature #1032
2660:
2661: * src/classes/date.C: minor fix related to feature #1032
2662:
2663: * operators.txt: ISO date creation documented (related to feature
2664: #1032)
2665:
2666: * operators.txt: iso-string documented (related to feature #1032)
2667:
2668: * tests/: 315.html, results/315.processed: more tests added
2669: (related to feature #1032)
2670:
2671: * tests/: 131.html, results/131.processed: date range checks
2672: updated (related to feature #36)
2673:
2674: * tests/: 315.html, results/057.processed, results/315.processed:
2675: test added for ISO date support (related to issue #315)
2676:
2677: * src/classes/date.C: more readable exceptions in date creation
2678: (related to ticket #1032)
2679:
2680: 2015-09-18 moko
2681:
2682: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
2683: added (related to issue #1032)
2684:
2685: * tests/results/256.processed, src/classes/json.C: iso-string
2686: documented (related to issue #1032)
2687:
2688: * tests/: 256.html, results/256.processed: ISO date check added
2689: (related to issue #1032)
2690:
2691: * tests/: 057.html, results/057.processed, results/224.processed:
2692: tests results updated after ISO date support implemented (related
2693: to feature #1032)
2694:
2695: * src/: classes/date.C, classes/image.C, types/pa_value.h,
2696: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
2697: ^date::create[string] constructor formalized, ^date.iso-string[]
2698: added (implements feature #1032)
2699:
2700: 2015-09-05 moko
2701:
2702: * operators.txt: actualized
2703:
2704: * operators.txt: date changes documented (related to ticket #36)
2705:
2706: 2015-09-04 moko
2707:
2708: * src/types/pa_vdate.C: warning war
2709:
2710: * src/: classes/op.C, types/pa_vhashfile.C: warning war
2711:
2712: 2015-09-03 moko
2713:
2714: * tests/results/096.processed: test result updated for 0..9999 year
2715: date range support (related to feature #36)
2716:
2717: * tests/: 314.html, results/314.processed: test for
2718: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
2719: bug #1031)
2720:
2721: * src/classes/string.C: Static calls fixed for ^string:base64[],
2722: ^string:idna[], ^string:js-escape[] (closes bug #1031)
2723:
1.116 moko 2724: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
2725: configure.in -> configure.ac
1.95 moko 2726:
1.116 moko 2727: * configure, configure.in, src/include/pa_config_auto.h.in: more
2728: correct timezone check for FreeBSD Warning war: configure.in ->
2729: configure.ac
1.95 moko 2730:
2731: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 2732: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
2733: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
2734: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
2735: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
2736: src/main/Makefile.am, src/targets/apache/Makefile.am,
2737: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 2738: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
2739: check added
2740:
2741: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
2742:
2743: * tests/results/: 124.processed, 224.processed: test resuls updated
2744: for new date implementation (related to feature #36)
2745:
2746: * src/: classes/date.C, classes/image.C, include/pa_common.h,
2747: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
2748: types/pa_vdate.h: new double date implementation with internal
2749: support for extended 0..9999 year range, default timezone support
2750: (related to feature #36)
2751:
2752: 2015-08-28 moko
2753:
2754: * src/types/pa_vmail.C: fixed $mail:received.date calculations
2755: (fixes bug #1030)
2756:
2757: 2015-08-21 moko
2758:
2759: * src/classes/inet.C: snprintf size "bug" commented
2760:
2761: * src/main/pa_common.C: snprintf comments updated
2762:
2763: 2015-08-16 moko
2764:
2765: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
2766:
2767: 2015-08-11 moko
2768:
2769: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
2770: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
2771: can be null (fixes bug #1029)
2772:
2773: 2015-08-06 moko
2774:
1.116 moko 2775: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
2776: pa_vdate.C added
1.95 moko 2777:
2778: 2015-08-05 moko
2779:
2780: * tests/: 313.html, results/313.processed: test for
2781: ^table.count[columns] and ^table.flip[] with nameless tables
2782: (feature #1003)
2783:
2784: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
2785: max_cell added, now ^table.count[columns] and ^table.flip[] works
2786: correctly for nameless tables (implements feature #1003)
2787:
2788: 2015-08-03 moko
2789:
2790: * tests/312.html: test for ^table.append[$hash] and
2791: ^table.insert[$hash] added (related to feature #1028)
2792:
2793: * src/classes/table.C: ^table.append[$hash] and
2794: ^table.insert[$hash] now supported (implements feature #1028)
2795:
2796: * tests/: 312.html, results/312.processed: test row copy in
2797: ^table.hash[; $.type[table] ] added (related to feature #1016)
2798:
2799: * src/classes/table.C: row copy now created in ^table.hash[;
2800: $.type[table] ] (related to feature #1016)
2801:
2802: 2015-07-29 moko
2803:
2804: * tests/: 312.html, results/312.processed: test for ^table.delete[]
2805: added (related to feature #1016)
2806:
2807: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
2808: ^table.delete[] added to delete current row (related to feature
2809: 1016)
2810:
2811: 2015-07-28 moko
2812:
2813: * tests/: 312.html, results/312.processed: test for
2814: $table.column[value] and ^table.insert{row} (related to feature
2815: #1016)
2816:
2817: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
2818: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
2819: ^table.insert{row} are now implemented (feature #1016)
2820:
2821: * src/include/pa_array.h: Optimization: bool reverse removed from
2822: append(), insert() added, memmove arguments order in remove()
2823: fixed (related to feature #1016)
2824:
2825: 2015-07-23 moko
2826:
2827: * src/classes/json.C: tainted json and empty json exception added
2828: (implements feature #1015)
2829:
2830: * tests/: 311.html, results/311.processed: empty json and tainted
2831: json exception test added (related to issue #1015)
2832:
2833: 2015-07-22 moko
2834:
2835: * tests/: 311.html, results/311.processed: test for UTF-8
2836: processing added
2837:
2838: * tests/: 311.html, results/311.processed: test for
2839: json_exception_with_source added (related to issue #394)
2840:
2841: * src/classes/json.C: json_exception_with_source added (implements
2842: feature #394)
2843:
2844: 2015-06-29 moko
2845:
2846: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
2847: directories are now correctly determined if _d_type == DT_UNKNOWN
2848: (closes bug #1027)
2849:
2850: 2015-06-10 moko
2851:
2852: * src/types/pa_vxnode.h: extern "C" not requred and causes build
2853: error if libxml has LIBXML_ICU_ENABLED.
2854:
2855: 2015-06-04 moko
2856:
2857: * tests/099.html: ups, reverting
2858:
2859: * tests/: 099.html, 309.html, 310.html, results/309.processed,
2860: results/310.processed: tests for $response:body[ $.file[] ] and
2861: $response:last-modified added
2862:
2863: * src/main/pa_request.C: last-modified check fixed
2864:
2865: 2015-06-03 moko
2866:
2867: * tests/: 204.html, 205.html, 293.html, results/204.processed,
2868: results/205.processed, results/293.processed: $response:headers
2869: logging added (tests for feature #1007)
2870:
2871: * src/: include/pa_common.h, include/pa_request.h,
2872: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
2873: $response:headers are now in uppercase (closes feature #1007)
2874:
2875: 2015-06-02 moko
2876:
2877: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
2878: build errors reverted for clang compatibility
2879:
2880: 2015-06-01 moko
2881:
2882: * src/include/pa_memory.h: -pedantic build errors fixed
2883:
2884: * src/classes/math.C: -pedantic build error fixed
2885:
2886: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
2887:
2888: 2015-05-31 moko
2889:
2890: * src/classes/table.C: USE_STRINGSTREAM optimized
2891:
2892: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
2893: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
2894: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
2895: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
2896: types/pa_vxnode.h: warning war (-pedantic flag)
2897:
2898: 2015-05-28 moko
2899:
2900: * tests/: 308.html, results/308.processed: test for
2901: ^table::create[$t;], etc work added (related to bug #975)
2902:
2903: * src/classes/table.C: check_option_param removed,
2904: ^table::create[$t;], etc now works (fixes bug #975)
2905:
2906: 2015-05-27 moko
2907:
2908: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
2909: (Debian jessie) fixed (closes issue #1024)
2910:
2911: * tests/Makefile: sort added as in Debian jessie list become
2912: unsorted
2913:
2914: 2015-05-18 moko
2915:
2916: * tests/: 201.html, results/201.processed: test for
2917: ^string.trim[what] feature #1022
2918:
2919: * src/classes/string.C: ^string.trim[what] now supported,
2920: implements feature #1022
2921:
2922: 2015-05-17 moko
2923:
2924: * tests/results/185.processed: test result updated as feature #1021
2925: implemented (left/right accept negative parameter)
2926:
2927: * src/classes/string.C: left/right now accept negative parameter
2928: (implements feature #1021)
2929:
2930: 2015-05-08 moko
2931:
2932: * src/classes/math.C: isalnum -> pa_isalnum
2933:
2934: * src/main/execute.C: optimization in getter-junction processing
2935: (related to issue #997)
2936:
2937: 2015-05-07 moko
2938:
2939: * tests/: 307.html, results/307.processed: test for issue #997
2940: added
2941:
2942: * src/main/execute.C: process_getter result now checked if junction
2943: returned (closes issue #997)
2944:
2945: * tests/: 305.html, results/305.processed: sort added to ignore
2946: different order
2947:
2948: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
2949: assignment (closes issue #994)
2950:
2951: * tests/: 306.html, results/306.processed: test for issue #994
2952: added
2953:
2954: * tests/: 303.html, results/303.processed: two more errors tested
2955:
2956: 2015-05-06 moko
2957:
2958: * tests/: 305.html, results/305.processed: test for name2ip &
2959: ip2name added (related to feature #992)
2960:
2961: * tests/: 303.html, 304.html, results/303.processed,
2962: results/304.processed: tests for idna conversion added (related
2963: to issue #849)
2964:
2965: 2015-05-02 moko
2966:
2967: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
2968: implemented
2969:
2970: 2015-04-30 moko
2971:
2972: * src/main/pa_http.C: idna_host added, related to issue #849
2973:
2974: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
2975: (related to issue #849)
2976:
2977: 2015-04-24 moko
2978:
2979: * src/types/pa_vjunction.C: warning war
2980:
2981: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
2982: unification
2983:
2984: * src/lib/punycode/pa_idna.c: warning war
2985:
2986: 2015-04-22 moko
2987:
2988: * src/main/main.vcproj: punycode include path added
2989:
2990: * src/lib/punycode/pa_idna.c: windows compile error fixed
2991:
2992: * src/lib/punycode/pa_idna.c: warning war
2993:
2994: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
2995: project file added
2996:
2997: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
2998:
2999: * src/include/pa_memory.h: warning war
3000:
3001: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
3002: ^string:idna[xn--...], ^string.idna[] - idna conversion support
3003: implemented (related to feature #849)
3004:
3005: * configure.in, src/main/Makefile.am,
3006: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
3007: libpunycode added in Unix
3008:
3009: 2015-04-21 moko
3010:
3011: * configure.in: large files support
3012:
3013: 2015-04-15 moko
3014:
3015: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
3016: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
3017: pa_punycode.h: initial version for punycode/idna support library
3018: (ticket #849)
3019:
3020: 2015-04-08 moko
3021:
3022: * src/: classes/curl.C, classes/date.C, classes/file.C,
3023: classes/image.C, classes/mail.C, classes/reflection.C,
3024: classes/string.C, classes/xnode.C, include/pa_request.h,
3025: include/pa_string.h, include/pa_stylesheet_connection.h,
3026: main/compile.y, main/compile_tools.h, main/execute.C,
3027: main/pa_common.C, main/pa_request.C, main/pa_string.C,
3028: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
3029: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
3030: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
3031: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
3032: clang compiler warnings (closes issue #1018)
3033:
3034: * src/include/pa_string.h: String::Body comparation operators with
3035: char * added (related to issue #958)
3036:
3037: 2015-04-07 moko
3038:
3039: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
3040: pa_malloc/pa_free to remove system malloc/free usage (related to
3041: issue #1018)
3042:
3043: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
3044: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
3045: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
3046: main/pa_http.C, main/pa_request.C, main/pa_string.C,
3047: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
3048: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
3049: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
3050: malloc/strdup/free replaced with pa_ version and checks for
3051: accidental use of non-pa_ version added (related to issue #1018)
3052:
3053: 2015-04-03 moko
3054:
3055: * buildall: pcre-8.33 -> pcre-8.36
3056:
3057: * src/: main/compile.y, classes/form.C, classes/mail.C,
3058: classes/op.C, classes/string.C, main/compile.tab.C,
3059: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
3060: main/pa_sql_driver_manager.C, types/pa_vfile.C,
3061: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
3062: ticket #958)
3063:
3064: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
3065: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3066: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
3067: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
3068: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
3069: $request:headers, $request:method added (implements feature
3070: #1007)
3071:
3072: 2015-03-17 misha
3073:
3074: * tests/302.html: - test for
3075: ^json:string[...;$._default[method-name]]
3076:
3077: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
3078: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
3079: option $._default[method-name] is specified in ^json:string[], a
3080: method with specified name will be called for classes/objects
3081: serialization ( new feature: #982 )
3082:
3083: 2015-03-16 misha
3084:
3085: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
3086: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
3087: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
3088: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
3089: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
3090: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
3091: types/pa_vmemory.h, types/pa_vmethod_frame.C,
3092: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
3093: types/pa_vrequest.h, types/pa_vstateless_class.C,
3094: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3095: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
3096: $var.CLASS_NAME now have special opcodes. This can be switched
3097: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
3098: on pa_opcode.h ( new feature: #844 )
3099:
3100: 2015-03-15 misha
3101:
3102: * tests/075.html: - test for $response:header[]
3103:
3104: * src/types/pa_vresponse.C: - $response:header[] deletes header
3105: that was set earlie ( new feature: #1001 )
3106:
3107: 2015-03-12 misha
3108:
3109: * tests/246.html: - more tests for ^hash._at[]
3110:
3111: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
3112: accepts second param [key|value|hash] ( new feature: #1012 )
3113:
3114: 2015-03-09 moko
3115:
3116: * src/types/pa_vmail.C: exception for everything but
3117: $mail:received, closes issue #1011
3118:
3119: 2015-02-20 moko
3120:
3121: * tests/: 275.html, results/275.processed: hex detection in
3122: pa_atoui fix test (closes issue #1010)
3123:
3124: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
3125: issue #1010)
3126:
3127: 2015-02-17 moko
3128:
3129: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
3130: tainted.
3131:
3132: 2015-02-03 misha
3133:
3134: * tests/301.html: - test for ^json:string($double) causes
3135: exception. bugfix: #1008
3136:
3137: * src/classes/json.C: - ^json:string($double) causes exception.
3138: bugfix: #1008
3139:
3140: * tests/014.html: - updated for work with ^hash.delete[]
3141:
3142: 2015-01-12 misha
3143:
3144: * src/: classes/form.C, include/pa_common.h,
3145: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
3146: types/pa_vform.h: - supports body with PUT method as well ( new
3147: feature: #1006 )
3148:
3149: * src/classes/file.C: - warnings war
3150:
3151: 2015-01-11 misha
3152:
3153: * tests/300.html: - test for ^hash.delete[] is added
3154:
3155: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
3156: feature: #989 ) - tiny optimization in intersects
3157:
3158: 2015-01-06 moko
3159:
3160: * src/types/pa_vmail.C: file names transcode added, to and cc added
3161: with transcode, attachments detection fixed
3162:
3163: * src/main/pa_request.C: filling mail received after cgi/auto.p
3164: load to allow charset switch (related to issue #996)
3165:
3166: 2014-12-31 moko
3167:
3168: * src/types/pa_vmail.C: from and subject now transcoded if not
3169: UTF-8 source charset (fixes issue 996)
3170:
3171: * src/main/pa_exception.C: fixed string from stack bug (closes
3172: issue #1000)
3173:
3174: 2014-12-11 misha
3175:
3176: * src/types/pa_vhashfile.C: - check if key is not empty before
3177: access ( bug fix: #1005 )
3178:
3179: 2014-11-13 misha
3180:
3181: * src/main/compile.y: - PC.append does not reset to false while
3182: creating a new class. bugfix: #990
3183:
3184: * tests/299.html: - test for creation class after working with
3185: partial class (create+append)
3186:
3187: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
3188: #995
3189:
3190: * tests/232.html: - test for @get[def] added
3191:
3192: 2014-10-12 moko
3193:
3194: * src/lib/pcre/pcre_internal.vcproj: correct path
3195:
3196: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
3197: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
3198: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
3199: targets/apache/ApacheModuleParser3.vcproj,
3200: targets/apache/ApacheModuleParser3Core.vcproj,
3201: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
3202: types/types.vcproj: project GUID inserted in *.vcproj for correct
3203: conversion in newer VS versions
3204:
3205: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
3206: pcre_internal.vcproj added
3207:
3208: 2014-08-28 moko
3209:
3210: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
3211: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
3212: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
3213:
3214: 2014-06-30 misha
3215:
3216: * tests/298.html: - tests for ^reflection:def[class;className]
3217: added
3218:
3219: * src/classes/reflection.C: - ^reflection:def[class;className]
3220: added ( new feature: #918 )
3221:
3222: 2014-06-29 misha
3223:
3224: * src/classes/table.C: - ^table::create[unsupported data] -
3225: exception comment changed to "body must be table or code" ( bug
3226: fix: #951 )
3227:
3228: * tests/: 261.html, results/261.processed: - tests for
3229: ^json:string[...;$.void[null|string]] added
3230:
3231: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
3232: option $.void[string|null] added to ^json:string[...] ( new
3233: feature: #952 )
3234:
3235: 2014-06-28 moko
3236:
3237: * src/classes/curl.C: $.charset now processed before other curl
3238: options (closes issue #980)
3239:
3240: 2014-05-23 misha
3241:
3242: * src/classes/json.C: - bug fix: #987
3243:
3244: 2014-05-04 misha
3245:
3246: * tests/: 253.html, 253_json.txt: - test for
3247: ^json:parse[$.int(false)] is added
3248:
3249: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
3250: default true). The option is similar to $.double(bool) but for
3251: integers.
3252:
3253: 2014-05-01 moko
3254:
3255: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
3256: #12 )
3257:
3258: 2014-04-16 moko
3259:
3260: * src/main/pa_http.C: response-charset option should finally work
3261: now (fix for issue #867)
3262:
3263: * src/main/pa_http.C: response-charset option should work now (fix
3264: for issue #867)
3265:
3266: 2014-03-07 moko
3267:
3268: * buildall: libgc moved
3269:
3270: * buildall: libgc moved
3271:
3272: 2013-12-29 moko
3273:
3274: * src/classes/string.C: ^string:js-unescape result now tainted,
3275: closes issue #966
3276:
3277: * tests/: 186.html, results/186.processed: ^string:js-unescape
3278: result now tainted, issue #966
3279:
3280: 2013-12-03 moko
3281:
3282: * src/: classes/memcached.C, types/pa_vmemcached.C,
3283: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
3284: option was added for http://www.parser.ru/forum/?id=79343
3285:
3286: * src/classes/file.C: bugfix for
3287: http://www.parser.ru/forum/?id=79337
3288:
3289: 2013-11-05 moko
3290:
3291: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
3292:
3293: * src/main/pa_globals.C: spelling fixed
3294:
3295: 2013-10-29 moko
3296:
3297: * src/lib/json/json.vcproj: json.c -> pa_json.C
3298:
3299: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
3300: #892
3301:
3302: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
3303: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
3304: exceptions to be thrown thougth json library), related to issue
3305: #892
3306:
3307: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
3308: related to issue #896
3309:
3310: 2013-10-24 moko
3311:
3312: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
3313:
3314: 2013-10-23 moko
3315:
3316: * README: actualization
3317:
3318: 2013-10-22 moko
3319:
3320: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
3321: compatibility patch from Sergey Kirpichev
3322:
3323: * tests/: 297.html, results/297.processed: non-working getter fix
3324: test for issue #948
3325:
3326: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
3327: called when saving value of $match variable in ^string.match[] to
3328: increase compatibility (related to issue #948).
3329:
3330: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
3331: usage optimization
3332:
3333: 2013-10-21 moko
3334:
3335: * tests/: 182.html, results/182.processed: local path removed for
3336: compatibility
3337:
3338: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
3339: results/244.processed, results/253.processed,
3340: results/254.processed, results/275.processed,
3341: results/281.processed: try_catch -> try-catch
3342:
3343: * tests/: 288.html, 294.html, 296.html, results/288.processed,
3344: results/294.processed, results/296.processed: try_catch ->
3345: try-catch
3346:
3347: 2013-10-20 moko
3348:
3349: * tests/: 296.html, results/296.processed: test for xsl exception
3350: for issue #938 added.
3351:
3352: * src/: include/pa_xml_exception.h,
3353: main/pa_stylesheet_connection.C: forgotten to be replaced
3354: XmlException is now replaced (once again closes issue #938)
3355:
3356: 2013-10-19 misha
3357:
3358: * bin/auto.p.dist.in: - more mime-types are added
3359:
3360: 2013-10-18 moko
3361:
3362: * buildall: disable clock_gettime detection to avoid librt linking
3363: (which in turn depends on libpthread), related to issue #943
3364:
3365: 2013-10-18 misha
3366:
3367: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
3368: lib/smtp/smtp.vcproj, main/main.vcproj,
3369: targets/apache/ApacheModuleParser3Core.vcproj,
3370: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
3371: types/types.vcproj: - new locations for libxml2 includes where
3372: added to vcproj files
3373:
3374: 2013-10-18 moko
3375:
3376: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
3377: fix
3378:
3379: * tests/: 295.html, results/295.processed: test for issue #948
3380: updated
3381:
3382: * src/classes/table.C: hopefully last lost part for issue #948 fix.
3383: :)
3384:
3385: * tests/: 295.html, results/295.processed: test for issue #948
3386: added
3387:
3388: * src/: classes/hash.C, classes/string.C, classes/table.C,
3389: include/pa_request.h, types/pa_method.h: for getters and setters
3390: to be executed request.put_element should be called, not
3391: context.put_element (fixes issue #948)
3392:
3393: 2013-10-17 moko
3394:
3395: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
3396: LIBXML2_NEW_BUFFER check (closes issue #943)
3397:
3398: * buildall: libxml 2.9.1 build is broken --without-reader.
3399:
3400: 2013-10-16 moko
3401:
3402: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
3403:
3404: * tests/: 294.html, results/294.processed: test for issue #938
3405:
3406: * src/: classes/xdoc.C, classes/xnode.C,
3407: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
3408: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
3409:
3410: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
3411: libxslt-1.1.26 -> libxslt-1.1.28
3412:
3413: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
3414: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
3415: to '?', related to issue #938
3416:
3417: 2013-10-15 moko
3418:
3419: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
3420: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
3421: minor optimizations (closes issue #896)
3422:
3423: * tests/results/: 292.processed, 293.processed: results updated to
3424: comply with issue #896
3425:
3426: * tests/: 292.html, 293.html, results/292.processed,
3427: results/293.processed: tests for json escaping
3428:
3429: 2013-10-14 moko
3430:
3431: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
3432: and cleanup, code moved from .h to .C, no changes in code
3433:
3434: 2013-10-12 moko
3435:
3436: * tests/results/119.processed: updated test result commited
3437:
3438: * tests/: 291.html, results/291.processed: test for issue #894
3439: added
3440:
3441: * src/types/pa_wcontext.h: base methods call support function
3442: get_somebody_entered_some_class should not be true forever, as
3443: wcontext can have many get_elements calls (fixes issue #894)
3444:
3445: 2013-10-11 moko
3446:
3447: * tests/: 290.html, results/290.processed: test for junction GPF
3448: issue #942 added
3449:
3450: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
3451: to native method fixed (closes issue #942)
3452:
3453: * tests/: 158.html, results/158.processed: test for csv-string[]
3454: added
3455:
3456: * src/classes/table.C: minor fixes for table.csv-string[] (closes
3457: feature #907)
3458:
3459: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
3460: feature #907)
3461:
3462: 2013-10-09 moko
3463:
3464: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
3465: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
3466: types/pa_vstateless_class.C: GET_default, SET_default now works
3467: properly not only in objects, but in classes as well (closes
3468: issue #903)
3469:
3470: * tests/: 289.html, results/289.processed: GET/SET_default now
3471: works in classes, not only objects, test case added, related to
3472: issue #903
3473:
3474: * tests/: 288.html, results/288.processed: test for endless
3475: recursion bug added (related to issue #903)
3476:
3477: 2013-10-05 moko
3478:
3479: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
3480: classes/table.C, main/execute.C, types/pa_method.h,
3481: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
3482: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
3483: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
3484: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
3485: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
3486: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
3487: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
3488: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
3489: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
3490: optimization: put_element no longer has "bool areplace" argument,
3491: related to issue #903
3492:
3493: 2013-10-03 moko
3494:
3495: * tests/results/182.processed: result for $.replace(false) test
3496: commited
3497:
3498: * src/classes/date.C: ^date::create(number) processed correctly
3499: (fixes issue #901)
3500:
3501: * src/classes/image.C: as_no_junction removed, as param can be
3502: expression (closes issue #931)
3503:
3504: * tests/233.html: test for issue #931 added
3505:
3506: 2013-10-02 moko
3507:
3508: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
3509: modified, test for $.replace(false) added
3510:
3511: * src/main/compile_tools.h: forgotten class replace returned. :)
3512:
3513: 2013-09-30 moko
3514:
3515: * tests/: 141.html, results/141.processed: md5 tainting test added
3516:
3517: * src/: classes/op.C, include/pa_request.h, main/compile.y,
3518: main/compile_tools.h, main/pa_request.C: allow_class_replace
3519: implemented; $.replace option added to ^process and ^use
3520:
3521: 2013-08-27 moko
3522:
3523: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
3524: cstr_to_string_body_untaint should be called with charsets for
3525: possible uri language and connection for possible sql language.
3526: related to issue #857
3527:
3528: * buildall: and -> or fixed
3529:
3530: 2013-08-26 moko
3531:
3532: * buildall: prepare_ functions logic changed to support
3533: gc-7.2d.tar.gz extracting to gc-7.2 directory
3534:
3535: 2013-08-23 moko
3536:
3537: * src/include/pa_config_fixed.h: gc and xml libs are now linked
3538: statically
3539:
3540: 2013-08-22 moko
3541:
3542: * src/classes/string.C: String::Empty used (related to issue #912)
3543: append_know_length removed (related to old GPF bug)
3544:
3545: 2013-08-21 moko
3546:
3547: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
3548:
3549: * src/classes/math.C: ^math:digest[...;$file] support added
3550: (related to ticket #857
3551:
3552: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
3553: implemented
3554:
3555: * src/types/pa_vhashfile.h: warning war
3556:
3557: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
3558: include/pa_request.h, main/pa_request.C, types/pa_value.h:
3559: anti_endless_json_string_recoursion removed from request;
3560: json_string_recoursion added to json_options; $.indent[indent
3561: value] now supported and passed within recoursion closes feature
3562: #937
3563:
3564: * tests/: 287.html, results/287.processed: test for feature #937
3565:
3566: 2013-07-31 moko
3567:
3568: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
3569: compilation having #define _S
3570:
3571: * src/main/pa_globals.C: cleanup
3572:
3573: 2013-07-30 moko
3574:
3575: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
3576: main/pa_common.C: vs2003 warning war
3577:
3578: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
3579:
3580: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
3581:
3582: * src/lib/md5/pa_sha2.c: warning war
3583:
3584: 2013-07-29 moko
3585:
3586: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
3587: patches from github
3588:
3589: * src/: classes/bool.C, classes/double.C, classes/int.C,
3590: classes/memcached.C, include/pa_config_includes.h,
3591: types/pa_vfile.C, types/pa_vfile.h: warning war
3592:
3593: * src/lib/json/json.vcproj: C++ -> C
3594:
3595: * src/lib/json/: json.c, pa_json.C: C++ warning revert
3596:
3597: * src/lib/json/: json.c, pa_json.C: windows compatibility
3598:
3599: * src/lib/json/: json.c, pa_json.C: windows compatibility
3600:
3601: * src/lib/json/: json.c, pa_json.C: warning war
3602:
3603: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
3604:
3605: * src/include/pa_config_fixed.h: uint16_t added
3606:
3607: * configure.in: uint16_t check added
3608:
3609: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 3610: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
3611: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
3612: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
3613: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 3614:
3615: 2013-07-25 moko
3616:
3617: * parser3.sln: dependencies added
3618:
3619: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
3620: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
3621: module support
3622:
3623: * src/targets/apache/mod_parser3_core.C: win32 cleanup
3624:
3625: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
3626:
3627: 2013-07-23 moko
3628:
3629: * src/: include/pa_memory.h, main/pa_memory.C: non-working
3630: PA_DEBUG_GC_MEMORY removed
3631:
3632: * src/: main/pa_globals.C, targets/cgi/parser3.C:
3633: PA_DEBUG_DISABLE_GC compilation fix
3634:
3635: * src/: classes/op.C, classes/table.C, include/pa_request.h,
3636: main/pa_request.C: outdated RESOURCES_DEBUG removed
3637:
3638: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
3639: garbage cleanup
3640:
3641: * src/main/pa_common.C: warning war
3642:
3643: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
3644:
3645: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
3646: minor cleanup
3647:
3648: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
3649: uses cygwin, not WIN32 implementation
3650:
3651: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
3652: able to exec shell scripts
3653:
3654: * src/classes/math.C: ifdef WIN32 cleanup
3655:
3656: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
3657:
3658: * bin/auto.p.dist.in: libpq.so -> libpq.
3659:
3660: * src/classes/curl.C: LT_MODULE_EXT used
3661:
3662: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
3663:
3664: 2013-07-22 moko
3665:
3666: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
3667: includes fix
3668:
3669: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
3670:
3671: * configure.in, src/include/pa_config_includes.h,
3672: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
3673: src/main/pa_exec.C: includes cleanup
3674:
3675: * src/targets/cgi/parser3.C: 2012->2013
3676:
3677: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
3678:
3679: * configure.in, src/include/pa_config_includes.h,
3680: src/include/pa_http.h, src/lib/json/JSON_parser.h,
3681: src/main/pa_random.C, src/main/pa_socks.C,
3682: src/types/pa_vstatus.C: cygwin support cleanup
3683:
3684: * configure.in: dirent.h check added
3685:
3686: * src/: include/pa_config_includes.h, include/pa_dir.h,
3687: main/pa_dir.C: includes cleanup, dirent.h check added filePath
3688: not copied
3689:
3690: 2013-07-21 moko
3691:
3692: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
3693:
3694: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
3695: parser3.vcproj: unused getopt.h / getopt.c removed
3696:
3697: * operators.txt, src/classes/file.C, tests/022.html,
3698: tests/results/022.processed: ^file:list[path][$.filter[regexp]
3699: $.stat(true)] usage commented
3700:
3701: * configure.in, src/classes/file.C, src/include/pa_dir.h,
3702: src/main/pa_dir.C: ^file:list[] now has dir column and when
3703: $.stat(true) it has size/*date columns modified patch from misha@
3704: that closes issue #914.
3705:
3706: * src/: include/pa_config_includes.h, main/pa_globals.C:
3707: PA_RELEASE_ASSERTS removed
3708:
3709: * src/lib/md5/pa_md5c.c: minor cleanup
3710:
3711: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
3712: localeconv()->decimal_point usage remoed (related to issue #934)
3713:
3714: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
3715: cordprnt.c removed
3716:
3717: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
3718: pa-include/pa_errno.h, pa-include/pa_file_io.h,
3719: pa-include/pa_strings.h: includes cleanup
3720:
3721: * src/lib/md5/pa_md5c.c: headers cleanup
3722:
3723: 2013-07-20 moko
3724:
3725: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
3726: cleanup
3727:
3728: 2013-07-19 moko
3729:
3730: * src/classes/math.C: extern "C" added for crypt
3731:
3732: 2013-07-18 moko
3733:
3734: * src/classes/math.C: fix redhat7.2 build
3735:
3736: 2013-07-17 moko
3737:
3738: * configure.in, src/include/pa_config_includes.h,
3739: src/include/pa_config_fixed.h: headers actualized (inttypes.h
3740: added for uint8/32/64_t)
3741:
3742: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
3743: pa_config_includes.h used for uint32/64_t
3744:
3745: 2013-07-16 moko
3746:
3747: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
3748: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
3749: war
3750:
3751: * src/main/compile.tab.C: compile.y was updated
3752:
3753: * src/main/compile.y: warning war
3754:
3755: * src/: include/pa_exception.h, main/pa_exception.C,
3756: main/pa_xml_exception.C: warning war
3757:
3758: * src/: include/pa_common.h, main/pa_common.C: warning war
3759:
3760: * configure.in: beauty :)
3761:
3762: * tests/: 141.html, results/141.processed: sha256/512 added
3763:
3764: 2013-07-13 moko
3765:
3766: * src/lib/md5/md5.vcproj: sha2 added
3767:
3768: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
3769: classes/math.C: sha2 support (sha256/sha512 digest)
3770:
3771: 2013-07-08 moko
3772:
3773: * src/classes/image.C: directory read or other read problem message
3774: fixed (related to issue #933)
3775:
3776: 2013-07-07 moko
3777:
3778: * bin/auto.p.dist.in: windows-1251 commented to remove auto.p
3779: dependense from $charsetsdir directory existance and content (and
3780: UTF-8 is default allready)
3781:
3782: * AUTHORS: + misha + moko. :)
3783:
3784: 2013-07-06 moko
3785:
3786: * src/: classes/curl.C, include/pa_globals.h,
3787: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
3788: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
3789: for lt_dlinit to be called once and lt_dlexit called at right
3790: place (related to issue #925)
3791:
3792: 2013-07-04 moko
3793:
3794: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
3795: VString::as_vfile now uses vfile.set_binary_string to avoid
3796: content-type to be set, as it brokes badly designed logic in
3797: response output. This hopefully finishes issue #928.
3798:
3799: * tests/results/: 256.processed, 286.processed: file now displayed
3800: as name, size, mode, content-type
3801:
3802: * src/main/pa_common.C: read error now reported cottectly (fixes
3803: issue #933
3804:
3805: 2013-06-28 moko
3806:
3807: * tests/: 286.html, results/286.processed: test extended
3808:
3809: * tests/: 286.html, results/286.processed: Test for issue #928
3810: added. it tests default content-type change.
3811:
3812: * src/types/pa_vfile.C: closes issue #928 - default content-type
3813: now updated
3814:
3815: 2013-06-25 moko
3816:
3817: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
3818: content-type for text/binary files without name added;
3819: ^file::create[$f;...] options now works properly and $f
3820: properties are default (fixes issue #928)
3821:
3822: 2013-05-16 misha
3823:
3824: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
3825: added
3826:
3827: * src/main/pa_table.C: - a tiny memory optimisation while creating
3828: table if specified limit is bigger than source rows count
3829:
3830: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
3831: added ( new feature: #858 )
3832:
3833: 2013-04-29 moko
3834:
3835: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
3836: $.ipresolve(0|1|2) added (closes issue #891)
3837:
3838: * src/lib/curl/curl.h: CURL_IPRESOLVE added
3839:
3840: 2013-04-24 moko
3841:
3842: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
3843: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
3844: types/pa_vmemcached.h: ^memcache.release[] added, calls
3845: memcached_quit (refs #893)
3846:
3847: 2013-04-22 moko
3848:
3849: * src/: include/pa_string.h, main/pa_common.C: no more double
3850: slashes in file path (fixes bug #872)
3851:
3852: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
3853: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
3854: #739)
3855:
3856: * tests/results/266.processed: $.max_params added (feature #915)
3857:
3858: * src/: include/pa_common.h, main/pa_http.C: response-charset
3859: option added to file::load (closes issue #867)
3860:
3861: 2013-04-20 misha
3862:
3863: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
3864: commited
3865:
3866: 2013-03-15 misha
3867:
3868: * src/classes/: hash.C, table.C: - Optimisation: do not create
3869: multiple empty strings while ::sql. uae String::Empty instead
3870:
3871: 2013-03-14 misha
3872:
3873: * src/classes/reflection.C: - for user classes
3874: ^reflection:method_info[] returns $.max_params and $.extra_param
3875: with $.call_type if they available ( new feature: #915 )
3876:
3877: * src/classes/file.C: - ^file:delete[] now supports an option
3878: $.exception(false) that suppress any exception while deleting
3879: file ( new feature: #916 )
3880:
3881: * src/classes/curl.C: - parsing cookies after curl:load now should
3882: work :)
3883:
3884: 2013-03-12 misha
3885:
3886: * src/types/pa_vfile.C: - if specified file_name is empty string
3887: set default name for the file
3888:
3889: 2013-03-11 misha
3890:
3891: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
3892: also available in $f.cookies
3893:
3894: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
3895: moved to a separate method
3896:
3897: 2013-03-10 moko
3898:
3899: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
3900: added
3901:
3902: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
3903: removed (declared by autoconf)
3904:
3905: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
3906: uint32_t define
3907:
3908: 2013-03-10 misha
3909:
3910: * src/classes/file.C: ^file:delete and ^file:move now support
3911: option $.keep-empty-dirs(true) ( new feature: #884 )
3912:
3913: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
3914: empty dirs is added
3915:
3916: 2013-03-10 moko
3917:
3918: * src/classes/: bool.C, double.C, int.C: default can be present,
3919: but default check removed from ^int/double/bool.int/double/bool
3920: for string.int/double/bool compatibility (related to issue #913)
3921:
3922: * src/classes/string.C: ^string.int/dobule/bool no longer
3923: internally throws exception if default is present (closes issue
3924: #913)
3925:
3926: 2013-03-09 misha
3927:
3928: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
3929: optimisations ( #845 )
3930:
3931: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
3932:
3933: 2013-03-08 moko
3934:
3935: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
3936: creates correct table (fixes issue #910)
3937:
3938: * src/classes/op.C: r.connection() -> r.connection(false) to allow
3939: use outside of 'connect' operator (fixes issue #911)
3940:
3941: * tests/results/: 096.processed, 122.processed: test results
3942: updated as doubles now printed with 15 significant digits, not 5
3943: (fixes issue #882)
3944:
3945: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
3946: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
3947:
3948: 2013-02-21 moko
3949:
3950: * src/classes/table.C: _locate_name_value does not check arguments
3951: count, so we check it in advance (fixes issue #905)
3952:
3953: 2012-10-23 moko
3954:
3955: * buildall: old shell for and echo compatibility (for six)
3956:
3957: 2012-10-19 moko
3958:
3959: * buildall: --strip added --disable-safe-mode listed in usage
3960:
3961: 2012-10-17 misha
3962:
3963: * src/classes/op.C: - apply-taint should not throw "outside
3964: connect" exception with sql lang now
3965:
3966: 2012-10-17 moko
3967:
3968: * src/main/pa_request.C: bugfix: safe mode should be inited for
3969: each request (for apache module)
3970:
3971: 2012-09-26 moko
3972:
3973: * src/doc/doxygen.cfg: png -> svg
3974:
3975: 2012-09-25 moko
3976:
3977: * tests/: 141.html, results/141.processed: md5 hmac added, long key
3978: test added
3979:
3980: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
3981: double use when key is long
3982:
3983: 2012-09-16 moko
3984:
3985: * src/classes/math.C: Format -> Method Encode -> Format
3986:
3987: * tests/: 141.html, results/141.processed: math:digest hmac test
3988: added
3989:
3990: 2012-09-14 moko
3991:
3992: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
3993: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
3994: implementation added
3995:
3996: 2012-09-12 moko
3997:
3998: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
3999: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
4000: targets.dox and string.dox slightly actualized
4001:
4002: 2012-08-31 moko
4003:
4004: * ChangeLog: now generated with patched cvs2cl.pl
4005:
4006: 2012-07-29 moko
4007:
4008: * tests/285.html, src/main/execute.C, tests/results/285.processed:
4009: result should be pushed after VMethodFrame destructor is called,
4010: as it deletes junctions from stack params (fixes issue #868)
4011:
4012: 2012-07-23 moko
4013:
4014: * INSTALL, README: buildall script usage documented, other outdated
4015: info updated.
4016:
4017: * buildall-with-xml, buildall-without-xml: replaced by buildall
4018:
4019: 2012-07-21 moko
4020:
4021: * buildall: glib does not compile when threads are disabled...
4022:
4023: * src/types/pa_vmail.C: g_assertion fixes for empty input
4024:
4025: * src/types/pa_vmail.C: yet another fix (strange GPF on object
4026: unref, can't unref nested objects)
4027:
4028: * src/types/pa_vmail.C: another check added
4029:
4030: 2012-07-19 moko
4031:
4032: * buildall: usage added
4033:
4034: * buildall: new buildall script that unites buildall-with-xml,
4035: buildall-without-xml, --with-apache and --with-mailreceive
4036:
4037: * configure.in: support for static gmime and dynamic glib linking.
4038: fixes for FreeBSD
4039:
4040: 2012-07-17 moko
4041:
4042: * configure.in: --with-mailreceive replaced
4043: --with-static-mailreceive and --with-shared-mailreceive pathlink
4044: removed
4045:
4046: 2012-07-16 moko
4047:
4048: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
4049: capitalized, content now decoded and text content converted to
4050: $request:charset. all properties are accessed by functions, this
4051: ready for dynamic load.
4052:
4053: 2012-06-28 moko
4054:
1.116 moko 4055: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
4056: 32 bit
1.95 moko 4057:
4058: 2012-06-27 moko
4059:
4060: * buildall-with-xml, buildall-without-xml: fetch requires -p for
4061: passive ftp
4062:
4063: * src/lib/ltdl/ltdl.vcproj: release build fixed
4064:
4065: * configure.in: 3.4.2 RC -> 3.4.2
4066:
4067: 2012-06-22 moko
4068:
4069: * src/types/pa_vfile.C: returned empty mode to stated files (issue
4070: #815)
4071:
4072: * tests/: 284.html, results/284.processed: output options test
4073: (feature #265)
4074:
4075: 2012-06-22 misha
4076:
4077: * tests/215.html: - little changes
4078:
4079: 2012-06-21 moko
4080:
4081: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
4082: types/pa_vxdoc.h: output_options returned and used (bugfix for
4083: feature #265)
4084:
4085: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
4086: breaks long .*, default 10M restored. (issue #216)
4087:
4088: * tests/: 283.html, results/283.processed: test for issue #815
4089: added
4090:
4091: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
4092: again, cstrm not required.
4093:
4094: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
4095: Win32 and broken FreeBSD (issue #45)
4096:
4097: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
4098:
4099: * src/main/pa_string.C: warnings war
4100:
4101: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
4102: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
4103: main/pa_socks.C, targets/apache/pa_threads.C,
4104: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4105: types/pa_vstatus.C: compilation under cygwin fixed
4106:
4107: 2012-06-19 moko
4108:
4109: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
4110: Windows fixed
4111:
4112: * parser3.sln: removed antique pcre_ctype
4113:
4114: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
4115:
4116: * src/include/pa_config_fixed.h: undefined reference to
4117: __imp__pcre_* fix for Windows
4118:
4119: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 4120: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
4121: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
4122: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
4123: define fixed
1.95 moko 4124:
4125: 2012-06-18 moko
4126:
4127: * src/classes/memcached.C: flush -> clear
4128:
4129: * src/classes/memcached.C: memcached does not support quotes even
4130: in server name
4131:
4132: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4133: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
4134: called on open to check servers existance. $.key(true) syntax
4135: now supported
4136:
4137: 2012-06-17 moko
4138:
4139: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
4140: cleanup
4141:
4142: * src/classes/table.C, tests/282.cfg, tests/282.html,
4143: tests/results/282.processed: encloser at the EOF bug fixed,
4144: incorrectly enclosed data now processed more logicaly (fixes
4145: #339)
4146:
4147: 2012-06-15 moko
4148:
4149: * buildall-without-xml: sync with buildall-with-xml
4150:
4151: * buildall-with-xml: download auto-detected between fetch and curl
4152:
4153: * configure.in: --with-gc and --with-pcre now also processed
4154: correctly
4155:
1.116 moko 4156: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
4157: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
4158: should be run on rol1 using automake / aclocal (GNU automake)
4159: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 4160:
4161: * configure.in: new PARSER_VERSION logic
4162:
4163: * src/include/pa_version.h: new pa_version.h logic
4164:
4165: * src/: classes/curl.C, classes/file.C, classes/image.C,
4166: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
4167: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
4168: feols_normalized -> fis_text_content set_binary added
4169:
4170: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
4171:
4172: 2012-06-15 misha
4173:
4174: * src/: classes/curl.C, classes/file.C, classes/image.C,
4175: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
4176: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
4177: ^file::create[text;content] EOLs in content now is normalized. (
4178: new feature: #815 )
4179:
4180: 2012-06-15 moko
4181:
4182: * configure.in: --disable-version-update added to disable version
4183: update with host information (for debian package) whitespace
4184: optimized
4185:
4186: * configure.in: version changed to 3.4.2 RC no-pic added for
4187: libtool
4188:
4189: * src/include/pa_version.h: Nice pa_version.h default. Please keep
4190: it.
4191:
4192: 2012-06-14 moko
4193:
4194: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
4195: tests/results/281.processed: "hash flocked" error removed for
4196: safe operations like ^h._count[] ( new feature: #335 )
4197:
1.116 moko 4198: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 4199:
4200: * buildall-with-xml, buildall-without-xml: --with-static -> --with
4201:
4202: * configure.in: --with-static/shared xml replaced with --with-xml,
4203: xml compilation check added
4204:
4205: * configure.in: --with-static/shared-gc, --with-static-pcre are
4206: replaced with --with-gc and --with-pcre test for pcre linking
4207: added
4208:
4209: 2012-06-13 moko
4210:
4211: * configure.in: apxs2 check optimized
4212:
4213: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
4214: .la, includes optimized
4215:
4216: * buildall-with-xml: --with-pic looks better for -fPIC
4217:
4218: * configure.in: switched to convenience library in static linking
4219:
4220: * src/targets/apache/Makefile.am: switched to convenience library
4221: usage to avoid libtool warnings
4222:
4223: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
4224: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
4225: smtp/Makefile.am: switched to convenience library usage
4226:
4227: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
4228:
4229: * src/targets/apache/Makefile.am: updated for libtool usage
4230:
4231: * bin/auto.p.dist.in: .cfg removed from charset names.
4232:
4233: * buildall-without-xml: --with-included-ltdl added
4234:
4235: * buildall-without-xml: sync with buildall-with-xml
4236:
4237: * buildall-with-xml: --with-included-ltdl added $cflags added for
4238: -fPIC for x64 $download added for wget success check added
4239:
4240: * buildall-without-xml: --with-dynamic-stdcpp removed
4241:
4242: * configure.in: disable-static returned
4243:
4244: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
4245: LIBTOOLFLAGS
4246:
4247: 2012-06-12 moko
4248:
4249: * configure.in, src/targets/cgi/Makefile.am: disable-static not
4250: compatible with LIBTOOLFLAGS for unknown reasons
4251:
4252: * buildall-with-xml: --with-dynamic-stdcpp removed
4253:
4254: * configure.in: static/dynamic -lstdc++ linking option removed
4255: apxs2 check added
4256:
4257: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
4258: option removed
4259:
4260: 2012-06-10 moko
4261:
4262: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
4263: added
4264:
4265: * src/targets/cgi/pp3.cmd: old PAF stuff
4266:
1.116 moko 4267: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
4268: beauty
1.95 moko 4269:
4270: * depcomp: from libtool 2.4.2
4271:
4272: * configure.in: ltdl directory removed, it has correct Makefile.in
4273:
4274: 2012-06-09 moko
4275:
1.116 moko 4276: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
4277: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 4278: autogenerated files updated after libtool update
4279:
1.116 moko 4280: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
4281: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 4282: config_auto.h.in, config_fixed.h, configure, configure.ac,
4283: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
4284: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
4285: config/compile, config/config.guess, config/config.sub,
4286: config/depcomp, config/install-sh, config/ltmain.sh,
4287: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
4288: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
4289: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
4290: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
4291: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
4292: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
4293: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
4294: m4/lt~obsolete.m4: libtool updated to version 2.4.2
4295:
4296: * configure.in: preparation for new libtool
4297:
4298: * configure.in: Some beauty added :)
4299:
4300: * src/targets/apache/Makefile.am: := -> =
4301:
4302: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
4303: again. :)
4304:
4305: * src/include/pa_config_includes.h, configure.in: limits.h added,
4306: previously was taken from pcre_internal.h. :)
4307:
4308: * src/lib/pcre/Makefile.am: config.h returned
4309:
4310: * src/lib/pcre/config.h: still need this. :)
4311:
4312: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
4313:
4314: * configure.in: --with-charsets removed; --with-mysql-client & co
4315: removed
4316:
4317: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
4318: now in parser tree, no need to copy
4319:
4320: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
4321: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
4322: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
4323: debian/patches/101_pcre.patch - local copy of pcre_internal.h
4324: extracts now used old trash removed
4325:
4326: * bin/auto.p.dist.in: all charsets are listed, utf-8 by default,
4327: rare charsets/drivers are commented, sql driver quessing removed
4328: (debian/patches/103_auto_p.patch)
4329:
4330: * etc/parser3.charsets/Makefile.am: charsets now in share
4331: (debian/patches/104_automake.patch) + all charsets are copied
4332:
4333: * buildall-with-xml, buildall-without-xml: curl option removed +
4334: extra arguments now supported
4335:
4336: 2012-06-08 misha
4337:
4338: * src/classes/table.C: - one params.as_hash usage was rolled back:
4339: the 2nd option in ^table.hash[] could be hash or table so
4340: .as_hash will throw an exception when table option is specified
4341:
4342: * src/: classes/curl.C, classes/file.C, classes/hash.C,
4343: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
4344: classes/table.C, classes/void.C, classes/xdoc.C,
4345: include/pa_exception.h, types/pa_vmethod_frame.C,
4346: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
4347: and improved (whitespaces are allowed as empty options) -
4348: MethodParams::as_table is added - above methods are used for
4349: parsing methods' options ( new feature: #9 )
4350:
4351: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
4352: to vclass. now class fields can be accessible as a hash:
4353: $h[^hash::create[$asd:CLASS]]
4354:
4355: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
4356: have get_fields method so their fields can be accessed with
4357: ^reflection:fields[...] & ^reflection:field[...]
4358:
4359: 2012-06-06 misha
4360:
4361: * tests/280.html: - tests for
4362: ^reflection:method[obj-or-class;method],
4363: ^reflection:field[obj-or-class;field] and
4364: ^reflection:fields[obj-or-class] are added
4365:
4366: 2012-06-05 misha
4367:
4368: * src/classes/reflection.C: - ^reflection:method[class or
4369: object;method name] and ^reflection:field[class or object;field
4370: name] are added
4371:
4372: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
4373: is used
4374:
4375: * src/types/pa_method.h: - Method::as_vjunction method is added
4376:
4377: 2012-06-05 moko
4378:
1.116 moko 4379: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 4380:
4381: * src/classes/memcached.C: flish ttl fixed
4382:
4383: 2012-06-04 moko
4384:
4385: * src/classes/json.C, src/classes/op.C, tests/279.html,
4386: tests/results/279.processed: ^json:parse[] now supports $.taint
4387: option (new feature #833)
4388:
4389: 2012-06-04 misha
4390:
4391: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
4392: - search_stop method was moved from pa_vcookie.C to pa_common.C
4393:
4394: 2012-06-03 misha
4395:
4396: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
4397: cookies are parced and stored into $.cookies ( new feature: #31 )
4398:
4399: 2012-05-30 misha
4400:
4401: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
4402: incomplete class into a scope while @USE is found
4403:
4404: * src/main/compile.y: - add incomplete class into a scope while
4405: @USE and @CLASS instructions are found ( bugfix: #838 )
4406:
4407: 2012-05-30 moko
4408:
4409: * src/types/pa_vclass.C, tests/278.html,
4410: tests/results/278.processed: removed "property has no getter
4411: method" exception when GET_DEFAULT present (fixes #269)
4412:
4413: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
4414: $._default
4415:
4416: 2012-05-29 moko
4417:
4418: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
4419: uninitialized values usage (new feature: #154)
4420:
4421: 2012-05-28 moko
4422:
4423: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
4424: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
4425: src/types/pa_vdate.h, src/types/pa_vdouble.h,
4426: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
4427: src/types/pa_vobject.C, src/types/pa_vobject.h,
4428: src/types/pa_vstring.h, src/types/pa_vtable.C,
4429: tests/results/277.processed, src/types/pa_vtable.h,
4430: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
4431: ^json:string[$o; $.default[$method]] implemented for VObject (new
4432: feature #803)
4433:
4434: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
4435: tests/results/277.processed: json numbers are now treated as
4436: double ( new feature: #834 )
4437:
4438: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
4439: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
4440: added for out of range checks, zero division in vint/vdouble
4441: check added ( fixes #832 )
4442:
4443: * tests/: 275.html, results/275.processed: tests for pa_atoui added
4444: ( fixes #832 )
4445:
4446: 2012-05-28 misha
4447:
4448: * buildall-with-xml: - --without-lzma option is added to libxml2
4449: configure
4450:
4451: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
4452: added - tests for unsupported values for options $.file, $.table
4453: and $.date are added
4454:
4455: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
4456: accepts "stat" $.file[] option's value in addition to existed
4457: "text" and "base64" ( new feature: #835 )
4458:
4459: * tests/276.html: - test for
4460: ^reflection:delete[$object-or-class;field-name]
4461:
4462: * src/classes/reflection.C: -
4463: ^reflection:delete[$object-or-class;field-name] is added ( new
4464: feature: #268 )
4465:
4466: 2012-05-27 misha
4467:
4468: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
4469:
4470: 2012-05-24 misha
4471:
4472: * src/include/pa_common.h: - method lastposafter was removed
4473:
4474: * src/classes/file.C: - use strrpbrk & rskipchars instead of
4475: lastposafter - ^file:dirname[] & Co proper handle windows file
4476: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
4477: work as *nix commands
4478:
4479: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
4480:
4481: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
4482: rskipchars were added
4483:
4484: * tests/270.html: - more tests for ^file:find[]
4485:
4486: * tests/065.html: - more tests for ^file:dirname[] & Co
4487:
4488: * src/include/pa_version.h: - must be "win32" here. it is
4489: auto-generated on *nix
4490:
4491: 2012-05-24 moko
4492:
4493: * src/classes/math.C: ^math:convert[] now supports uint32 and
4494: throws overflow exception ( new feature: #830 )
4495:
4496: * tests/: 275.html, results/275.processed: test for ^math:convert[]
4497: uint32 support and overflow added ( new feature: #830 )
4498:
4499: 2012-05-23 moko
4500:
4501: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
4502: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
4503: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
4504: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
4505: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
4506: types/pa_vregex.h, types/pa_vstateless_class.C,
4507: types/pa_vstateless_class.h, types/pa_vstring.h,
4508: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
4509: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
4510: "return string as-is" removed from as_expr_result. ( new feature:
4511: #831 )
4512:
4513: * tests/results/244.processed: test changed after bug #782 fix
4514: commited
4515:
4516: * tests/results/229.processed: test results for bug #782 commited
4517:
4518: * tests/: 254.html, results/254.processed: uid now just compared,
4519: not printed. :)
4520:
4521: 2012-05-20 moko
4522:
4523: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
4524: feature: #341 )
4525:
4526: * tests/: 254.html, results/254.processed: test for
4527: ^reflection:uid[] added
4528:
4529: * tests/: 254.html, results/254.processed: test for
4530: ^reflection:uid[$obj] added
4531:
4532: 2012-05-17 misha
4533:
4534: * src/main/untaint.C: - do not replace ' char by _26 while
4535: exploding filespec-tainting ( new feature: #829 )
4536:
4537: 2012-05-12 moko
4538:
4539: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
4540: not.
4541:
4542: 2012-05-08 moko
4543:
4544: * src/types/pa_vmethod_frame.h: bug #782 fixed
4545:
4546: * tests/229.html: test for bug #782
4547:
4548: * tests/results/259.processed, src/main/pa_request.C,
4549: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
4550: src/types/pa_vstring.h, src/types/pa_vvoid.C,
4551: src/types/pa_vvoid.h: feature #154 - first empty param now
4552: string; defined locals are empty strings; $STRICT-VARS(true)
4553: added
4554:
4555: 2012-04-27 moko
4556:
1.116 moko 4557: * src/targets/apache/Makefile.am:
1.95 moko 4558: ../../lib/memcached/libmemcached.a added
4559:
4560: 2012-04-27 misha
4561:
4562: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
4563: ( #827 )
4564:
4565: 2012-04-25 moko
4566:
4567: * src/: classes/json.C, classes/memcached.C,
4568: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
4569: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
4570: implemented.
4571:
4572: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
4573:
4574: 2012-04-23 moko
4575:
4576: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4577: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4578: types/pa_vmemcached.h: open allows options hash for new
4579: memcached(options) function
4580:
4581: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
4582: not appended
4583:
4584: 2012-04-21 moko
4585:
4586: * src/classes/curl.C: '' added. :)
4587:
4588: * src/classes/classes.vcproj: new curl.h location
4589:
4590: * src/classes/curl.C: verbose output redirection from stderr to
4591: file curl option added
4592:
4593: 2012-04-20 moko
4594:
4595: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
4596: contains what we need from curl, #ifdef HAVE_CURL removed
4597:
1.116 moko 4598: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 4599: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 4600: src/lib/Makefile.am, src/lib/curl/Makefile.am,
4601: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 4602: configure option
4603:
4604: 2012-04-19 moko
4605:
4606: * src/: classes/double.C, classes/inet.C, classes/int.C,
4607: classes/string.C, lib/gc/include/gc_allocator.h,
4608: types/pa_vform.C: PVS-Studio detected errors fixes, unused
4609: options from sql_result_string removed. (closes issue #468)
4610:
4611: * src/types/pa_vmemcached.C: empty string fix
4612:
4613: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
4614: pa_vstring.C, pa_vstring.h: serialization helpers moved to
4615: pa_vmemcached.C
4616:
4617: 2012-04-18 moko
4618:
4619: * src/targets/apache/mod_parser3.c: "Parser3 module requires
4620: apache2-mpm-prefork" error displayed in threaded mpm.
4621:
4622: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
4623: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
4624: installed (issue #354)
4625:
4626: 2012-04-16 moko
4627:
4628: * src/types/pa_vmemcached.C: call to memcached_result_create and
4629: memcached_result_free removed
4630:
4631: 2012-04-14 moko
4632:
4633: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
4634:
4635: * src/types/pa_vmemcached.C: check_key added and used
4636:
4637: 2012-04-13 moko
4638:
4639: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
4640: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
4641: Serialization_data now added and used, VString now serialized
4642: with languages into memcached.
4643:
4644: 2012-03-28 moko
4645:
4646: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
4647: lib/memcached/pa_memcached.h: result lengths added
4648:
4649: 2012-03-27 moko
4650:
4651: * src/types/pa_vmemcached.C: strdup added
4652:
4653: 2012-03-24 moko
4654:
4655: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4656: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4657: types/pa_vmemcached.h: memcached: mget, flush, fttl added
4658:
4659: 2012-03-20 moko
4660:
1.116 moko 4661: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 4662:
4663: * src/targets/cgi/Makefile.am: cleanup
4664:
4665: * src/: types/Makefile.am, types/pa_vmemcached.C,
4666: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
4667:
4668: * src/: classes/Makefile.am, classes/memcached.C,
4669: lib/memcached/Makefile.am, lib/memcached/constants.h,
4670: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
4671: lib/memcached/types.h, lib/Makefile.am: memcached initial
4672:
4673: 2012-03-16 moko
4674:
4675: * src/main/execute.C: ident now works under Linux + ident displays
4676: filenames (closes issue #818)
4677:
1.116 moko 4678: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 4679: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
4680: pa_vmethod_frame_local.h removed
4681:
4682: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
4683: classes/classes.h, classes/curl.C, classes/date.C,
4684: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
4685: classes/hashfile.C, classes/image.C, classes/inet.C,
4686: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
4687: classes/memory.C, classes/op.C, classes/reflection.C,
4688: classes/regex.C, classes/response.C, classes/string.C,
4689: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
4690: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
4691: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
4692: include/pa_config_fixed.h, include/pa_config_includes.h,
4693: include/pa_dictionary.h, include/pa_dir.h,
4694: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
4695: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
4696: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
4697: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
4698: include/pa_request_charsets.h, include/pa_request_info.h,
4699: include/pa_sapi.h, include/pa_socks.h,
4700: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
4701: include/pa_stack.h, include/pa_string.h,
4702: include/pa_stylesheet_connection.h,
4703: include/pa_stylesheet_manager.h, include/pa_table.h,
4704: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
4705: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
4706: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
4707: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
4708: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
4709: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
4710: main/compile.tab.C, main/compile.y, main/compile_tools.C,
4711: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
4712: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
4713: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
4714: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
4715: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
4716: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
4717: main/pa_string.C, main/pa_stylesheet_connection.C,
4718: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
4719: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
4720: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
4721: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
4722: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
4723: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
4724: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4725: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
4726: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
4727: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
4728: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
4729: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
4730: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4731: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
4732: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
4733: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
4734: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
4735: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
4736: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4737: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
4738: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
4739: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
4740: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
4741: types/pa_vresponse.h, types/pa_vstateless_class.C,
4742: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4743: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
4744: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
4745: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
4746: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
4747: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
4748: ident now works under Linux + ident displays filenames (closes
4749: issue #818) Copyright updated
4750:
4751: 2012-03-13 moko
4752:
4753: * src/main/pa_string.C: compilation fix for feature #741
4754:
4755: 2012-03-09 misha
4756:
4757: * tests/193.html: - tests for ^string:base64[encoded] are updated
4758:
4759: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
4760: now detects invalid base64 chars in the middle of encoded stricg
4761: ( new feature: #55 )
4762:
4763: * src/include/pa_exception.h: - new exception type for base64
4764: decoding is added
4765:
4766: 2012-03-06 misha
4767:
4768: * tests/274.html: - tests for ^date::today[] and
4769: ^date.sql-string[datetime|date|time] are added
4770:
4771: * src/classes/date.C: - constructor ^date::today[] is added ( new
4772: feature: #811 ) - ^date.sql-string[] now can accept one param --
4773: strings "datetime", "date" or "time" - comments tidying up
4774:
4775: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
4776: date and time
4777:
4778: 2012-03-03 misha
4779:
4780: * tests/193.html: - tests for
4781: ^string:base64[encoded;$.strict(true)] are added
4782:
4783: * tests/results/auto.p: - try-catch operator is added
4784:
4785: * src/: classes/file.C, classes/string.C, include/pa_common.h,
4786: main/pa_common.C: - $.strict(true|false) option is added to
4787: base64 decode methods ( new feature: #55 )
4788:
4789: * src/main/pa_common.C: - base64 decode memory usage was decreased
4790: ( new feature: #819 )
4791:
4792: 2012-02-28 moko
4793:
4794: * src/classes/hash.C: ident test
4795:
4796: 2012-02-27 misha
4797:
4798: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
4799:
4800: 2012-01-08 misha
4801:
4802: * tests/273.html: - tests for ^string.replace[from;to] are added
4803:
4804: * src/: classes/string.C, include/pa_dictionary.h,
4805: main/pa_dictionary.C, main/pa_string.C: -
4806: ^string.replace[from;to] is added ( new feature: #741 ) -
4807: ^string.replace[one subst here] is slightly optimized
4808:
4809: 2011-12-07 misha
4810:
4811: * src/classes/table.C: - $t[^table::create{$empty}] now creates
4812: named table with one empty column ( bugfix: #63 )
4813:
4814: 2011-11-30 misha
4815:
4816: * src/classes/json.C: - it's possible to set user's method for
4817: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
4818: #763 )
4819:
4820: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
4821:
4822: 2011-11-23 misha
4823:
4824: * src/: classes/curl.C, classes/file.C, classes/image.C,
4825: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
4826: types/pa_vfile.h, types/pa_vform.C: - constructor
4827: ^file::create[mode;filename;content[;options]] now accepts binary
4828: mode and file-content - new constructor's format:
4829: ^file::create[string-or-file-content[;$.name[filename]
4830: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
4831: feature: #65 )
4832:
4833: * src/: include/pa_request.h, main/pa_request.C: - new method
4834: mime_type_of(const String*) is added
4835:
4836: * src/include/pa_exception.h: - new exception constant
4837: FILE_NAME_MUST_BE_SPECIFIED is added
4838:
4839: * src/classes/table.C: - bug with negative offset transformed into
4840: a feature. it means pointing to a row from the end of the table (
4841: new feature: #810 )
4842:
4843: 2011-11-19 misha
4844:
4845: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
4846: â ìåòîäå _select ( new feature: #810 )
4847:
4848: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
4849: options were specified together is simplified
4850:
4851: 2011-11-12 misha
4852:
4853: * src/main/pa_request.C: - forgotten fix for escaping filename in
4854: HTTP content-disposition header (a part of bug #361 )
4855:
4856: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
4857: checks for ancestors' classes as well ( new feature: #456 )
4858:
4859: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
4860: "without cycle" now have types "parser.break" and
4861: "parser.continue" instead of "parser.runtime" ( new feature: #799
4862: )
4863:
4864: 2011-11-11 misha
4865:
4866: * tests/results/: 099.processed, 100.processed, 205.processed,
4867: 237.processed: - since bug #361 was fixed the content of filename
4868: in HTTP headers is quoted
4869:
4870: * tests/results/270.processed: - result for test 270
4871:
4872: * tests/: 065.html, results/065.processed: - more tests for
4873: ^file:basename[] & Co were added
4874:
4875: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
4876:
4877: * tests/270.html: - tests for ^file:find[] are added
4878:
4879: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
4880: using option $.charset. option $.engoding is still supported but
4881: these options can not be specified together
4882:
4883: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
4884: comparation charset name with string "UTF-8" ( bugfix: #759 )
4885:
4886: 2011-10-11 misha
4887:
4888: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
4889: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
4890: #622)
4891:
4892: 2011-09-30 misha
4893:
4894: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
4895: exception "saving stat-ed file" ( bugfix: #395 )
4896:
4897: 2011-05-30 misha
4898:
4899: * src/classes/string.C: - fixed bug which was added with
4900: params.as_hash into string:sql
4901:
4902: 2011-05-29 misha
4903:
4904: * src/types/pa_value.C: - filename in content-disposition header
4905: must be quoted ( bugfix: #361 )
4906:
4907: 2011-05-27 misha
4908:
4909: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
4910: created file
4911:
4912: * src/classes/: hash.C, mail.C: - little tunning with get_hash
4913: usage
4914:
4915: * src/include/pa_exception.h: - one more string for exception was
4916: added
4917:
4918: 2011-05-25 misha
4919:
4920: * tests/269.html: - tests for checking input params in some dom
4921: methods
4922:
4923: * src/classes/: xdoc.C, xnode.C: - validation of some input params
4924: was added. it isn't possible not wo create xdoc with invalid
4925: tagName. ( bugfix: #160 )
4926:
4927: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
4928: string "data must be string" was mover from pa_exception.h to
4929: pa_xml_exception.h
4930:
4931: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
4932: as_xmlncname, as_xmlname and as_xmlnsuri were added
4933:
4934: * src/main/pa_xml_exception.C: - XmlException accepts more options
4935:
4936: * src/include/pa_xml_exception.h: - XmlException accepts more
4937: options - XML-related exception's strings were added
4938:
4939: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
4940: output_options were removed)
4941:
4942: 2011-05-19 misha
4943:
4944: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
4945: params.as_hash is used more while parsing methods hash-options
4946:
4947: 2011-05-18 misha
4948:
4949: * operators.txt: - info about json-serialization of xdoc was added
4950:
4951: * tests/256.html: - tests for json-serialization xdoc were added
4952:
4953: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
4954:
4955: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4956: classes/json.C, classes/xdoc.C: - now json:string can serialize
4957: xdoc-objects. options (the same as ^xdoc.string[]) could be
4958: specified in $.xdoc[] ( new feature: #265 )
4959:
4960: 2011-05-15 misha
4961:
4962: * tests/268.html: - tests for ^table.count[with options] were added
4963:
4964: * src/classes/table.C: - method ^table.count[] now can accept
4965: options ( new feature: #93 ): ^table.count[column] returns number
4966: of columns for named table; ^table.count[cells] returns number of
4967: cells in the current row; ^table.count[] & ^table.count[rows]
4968: return number of rows in a table.
4969:
4970: * tests/267.html: - test for checking switch/case in boolean mode
4971: was added
4972:
4973: * src/classes/op.C: - if switch's or case's value is bool, they are
4974: compared as bool values, not as double values: new feature: #351
4975:
4976: 2011-05-06 misha
4977:
4978: * tests/242.html: - EOL before EOF was added
4979:
4980: * tests/169.html: - tests for splitting empty string and void were
4981: added
4982:
4983: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
4984: returned table with one empty cell)
4985:
4986: 2011-04-03 misha
4987:
4988: * src/include/pa_version.h, configure.in: - version in head was
4989: changed to 3.4.2b
4990:
4991: 2011-03-30 misha
4992:
4993: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
4994: as well ( new feature #294 )
4995:
4996: 2011-03-29 misha
4997:
4998: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
4999: limited to approx. 6 MB. previous limits were too big for real
5000: life. bugfix: #216
5001:
5002: 2011-03-04 moko
5003:
5004: * etc/parser3.charsets/cp866.cfg: Conforms to
5005: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
5006:
5007: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
5008: vlalek@
5009:
5010: 2011-02-22 misha
5011:
5012: * src/include/pa_charset.h, operators.txt: - some methods mustn't
5013: be under #ifdef XML or parser can't be compiled without xml
5014: support
5015:
5016: 2011-02-21 misha
5017:
1.116 moko 5018: * src/targets/apache/: Makefile.am: - mention
1.95 moko 5019: ApacheModuleParser3.vcproj was removed
5020:
5021: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
5022: removed)
5023:
5024: 2011-02-20 misha
5025:
5026: * tests/: 266.html, 266.p: - tests for checking $.inherited and
5027: $.overridden in ^reflection:method_info[...] were added
5028:
5029: * src/classes/reflection.C: - beautifying result of
5030: ^reflection:method_info[] ($.overridden/inherited)
5031:
5032: 2011-02-18 misha
5033:
5034: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
5035: and pa_isalnum instead of isalpha and isalnum - bug with
5036: redundand quoting lowercased latin chars while building email
5037: body was fixed
5038:
5039: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
5040: added (they check for latin chars only)
5041:
5042: 2011-02-16 misha
5043:
5044: * src/main/pa_charset.C: - bugfix: in some cases the calculating
5045: string size for transcoding gave too small value (should ever
5046: look for availability char in dest charset inspite of the char
5047: size)
5048:
5049: 2011-02-04 moko
5050:
5051: * tests/223.html: header values now not url-encoded (issue #195)
5052:
5053: 2011-02-01 misha
5054:
5055: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
5056:
5057: 2011-01-31 misha
5058:
5059: * src/main/pa_request.C: - throw exception if param file_name in
5060: use_file is empty
5061:
5062: 2011-01-08 moko
5063:
5064: * src/classes/curl.C: compilations errors fixed
5065:
5066: 2010-12-29 moko
5067:
5068: * tests/: 265.html, results/265.processed: test for issue #200
5069: added
5070:
5071: * src/main/pa_string.C: empty regex result check added (fixes issue
5072: #200)
5073:
5074: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
5075:
5076: * tests/results/223.processed: header values now not url-encoded
5077: (issue #195)
5078:
5079: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
5080: main/untaint.C: L_HTTP_HEADER now used in http headers values,
5081: pa_http_safe_header_name added for headers names (fixes bug #195)
5082:
5083: 2010-12-18 misha
5084:
5085: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
5086: => pa-include
5087:
5088: 2010-11-28 moko
5089:
5090: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
5091:
5092: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
5093: -> pa
5094:
5095: * configure.in: apr -> pa
5096:
5097: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
5098:
5099: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
5100: classes/Makefile.am, types/Makefile.am: apr -> pa
5101:
5102: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
5103: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
5104: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
5105: pa-include/pa_apr.h, pa-include/pa_errno.h,
5106: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
5107: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
5108: module apr name conflict resolved)
5109:
5110: 2010-11-27 misha
5111:
5112: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
5113: libbz2
5114:
5115: 2010-11-26 misha
5116:
5117: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
5118: warnings removed
5119:
5120: 2010-11-25 moko
5121:
5122: * operators.txt: $.indent(true)
5123:
5124: * operators.txt: another bugfix. :)
5125:
5126: * operators.txt: bugfix. :)
5127:
5128: * buildall-with-xml: libxml2-2.7.8 + with-apache
5129:
5130: 2010-11-24 moko
5131:
1.116 moko 5132: * configure: apxs support
1.95 moko 5133:
5134: * configure.in: apxs support -Bstatic gc removed for OS X
5135:
5136: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
5137:
5138: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
5139: THREAD_LOCAL usage
5140:
5141: * src/: classes/curl.C, include/pa_config_includes.h,
5142: main/pa_globals.C: THREAD_LOCAL defined and used
5143:
5144: 2010-11-23 moko
5145:
5146: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
5147: should be passed to pa_sleep, and only fractional part (bugfix:
5148: #188)
5149:
5150: * src/targets/apache/mod_parser3.c: 1.3 compatibility
5151:
5152: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
5153: GC_dont_gc=1, as in cgi version
5154:
5155: * src/targets/apache/mod_parser3.c: warning war
5156:
5157: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5158: pa_httpd.h: version removed, some trash removed
5159:
5160: * src/targets/apache/mod_parser3.c: version removed (we don't want
5161: to show it), warning war
5162:
5163: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5164: pa_httpd.h: parser_status_allowed removed + merge config
5165: functions removed (override is the default) + beauty
5166:
5167: * src/: include/pa_request.h, main/pa_request.C,
5168: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
5169: hide $status used in apache module removed
5170:
5171: 2010-11-18 moko
5172:
5173: * operators.txt: $.table[compact] added for ^json:string[]
5174:
5175: 2010-11-16 moko
5176:
5177: * src/targets/apache/mod_parser3.c: some cleanup done
5178:
5179: * src/main/untaint.C: bugfix: first, second String::Body argument
5180: is hashcode; second, info.fragment_begin is original, not
5181: resulting length
5182:
5183: * src/classes/file.C: new feature: $.stdin now untainted
5184:
5185: * tests/results/264.processed: new feature: $.stdin[] now untainted
5186:
5187: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
5188:
5189: * src/classes/op.C: ^apply-taint[] method added
5190:
5191: * tests/: 264.html, results/264.processed: ^apply-taint[] test
5192: added; $.stdin untaint test added
5193:
5194: 2010-11-15 moko
5195:
5196: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
5197: removed
5198:
5199: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5200: pa_httpd.h: 2x2 calculated under apache2. :)
5201:
5202: 2010-11-13 moko
5203:
5204: * src/targets/apache/mod_parser3.c: initial changes to build module
5205: with apache 2.x includes
5206:
5207: * src/targets/apache/: Makefile.am, mod_parser3.c,
5208: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
5209: united apache 1.3 / apache 2.x DSO module
5210:
5211: 2010-11-09 moko
5212:
5213: * src/types/pa_method.h: check added to dissallow @method[name;*]
5214: syntax
5215:
5216: * tests/: 263.html, results/263.processed: test from method[*args]
5217: added
5218:
5219: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
5220: number of params can now be passed to a method declared with *arg
5221:
5222: 2010-11-06 moko
5223:
5224: * src/classes/table.C: formating fixed. :)
5225:
5226: * src/classes/table.C: closes #4: ^table.select now supports
5227: $.limit(), $.offset, $.reverse() options
5228:
5229: * tests/: 262.html, results/262.processed: test for ^table:select
5230: with options added (feature #4)
5231:
5232: * src/include/pa_array.h: remove function added
5233:
5234: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
5235: object in get_element/put_element, using static one.
5236:
5237: 2010-11-04 moko
5238:
5239: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
5240: options is passed
5241:
5242: * tests/: 256.html, results/256.processed: $.table[compact] feature
5243: now tested; k and p in handler now tested.
5244:
5245: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
5246: $.table[compact] feature added
5247:
5248: * src/classes/json.C: key is now passed to handler in
5249: value_json_string; ^json:string result now process tainting
5250: inside and returns clean string, related to issue #153
5251:
5252: * src/main/untaint.C: bugfix: charset can be null (in
5253: ^string:save[] as example), thus check is added
5254:
5255: 2010-10-31 moko
5256:
5257: * src/classes/string.C: error message changed (fixes issue #149)
5258:
5259: 2010-10-29 moko
5260:
5261: * src/main/pa_http.C: ":port" is now added to "Host:" header if
5262: port is not default (fixes issue #155); exception on invalid port
5263: added.
5264:
5265: * src/main/untaint.C: '*' is now not urlencoded to allow header
5266: "Accept: */*" to be passed
5267:
5268: 2010-10-28 moko
5269:
5270: * src/classes/curl.C: bugfix: detect_charset() was throwing
5271: exception on unknown charset even if response_charset was
5272: specified
5273:
5274: 2010-10-27 moko
5275:
5276: * src/classes/string.C: ^string.append removed for void
5277: compatibility
5278:
5279: 2010-10-26 moko
5280:
5281: * src/classes/json.C: libjson supports array at top level, we too
5282: (GPF fixed)
5283:
5284: 2010-10-25 moko
5285:
5286: * tests/: 253.html, results/253.processed: libjson supports array
5287: at top level, parser now supports it as well.
5288:
5289: * tests/261.html, tests/results/261.processed,
5290: src/types/pa_vstring.h: empty string is now void compatible
5291: (allows $empty.key)
5292:
5293: 2010-10-22 misha
5294:
5295: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
5296: while adding additional expires checkout)
5297:
5298: * tests/030.html: - test for session cookie was added
5299:
5300: 2010-10-21 moko
5301:
5302: * src/: classes/string.C, classes/void.C, main/execute.C,
5303: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
5304: string (feature #111)
5305:
5306: * tests/: 261.html, results/261.processed: checks void from string
5307: inheritance (feature #111)
5308:
5309: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
5310: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
5311: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
5312: now true by default
5313:
5314: 2010-10-17 moko
5315:
5316: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
5317: upload now uses binary blocks instead of L_FILE_POST tainting.
5318: (bugfix: #128)
5319:
5320: * tests/: 223.html, results/223.processed: binary file upload test
5321: added, GPF (issue #128) also checked in this test
5322:
5323: 2010-10-13 misha
5324:
5325: * tests/260.html: - test for math:convert
5326:
5327: * src/classes/math.C: - error in math:convert was fixed
5328:
5329: * operators.txt: - info about
5330: ^math:convert[number](from-base;to-base) was added
5331:
5332: * src/classes/math.C: - method
5333: ^math:convert[number](from-base;to-base) for converting number
5334: represention from one base to another was added ( new feature:
5335: #23 )
5336:
5337: 2010-10-13 moko
5338:
5339: * src/main/compile.tab.C: [] now is empty string, not void
5340:
5341: * src/main/compile.y: [] now is empty string, not void
5342:
5343: * src/types/pa_vvoid.h: void now passed as parameter
5344:
5345: * tests/: 259.html, results/259.processed: to test difference
5346: between void and empty string (see ticket #111)
5347:
5348: * tests/results/152.processed: $sEmpty[] is now empty string, not
5349: void
5350:
5351: * tests/256.html: $s[$void] is no longer empty string
5352:
5353: * tests/254.html: empty string is no longer void
5354:
5355: 2010-10-12 misha
5356:
5357: * src/types/pa_vcookie.C: - check if $.expires value can be
5358: converted to date during cookies set up ( bugfix: #104 )
5359:
5360: * tests/041.html: - more tests for ^table.locate were added
5361:
5362: * src/classes/table.C: - ^table.locate[field;value;options] didn't
5363: work ( bugfix: #129 ) - exception comment for incorrect options
5364: ^table.locate[field;value;options] was fixed
5365:
5366: 2010-10-10 moko
5367:
5368: * src/: classes/reflection.C, main/execute.C: constructor returning
5369: another object feature returned
5370:
5371: * tests/results/258.processed: test result updated as constructor
5372: returning another object feature returned
5373:
5374: * tests/: 258.html, results/258.processed: test for constructor
5375: returning another object
5376:
5377: 2010-10-08 misha
5378:
5379: * tests/257.html: - whitespaces after @METACOMMANDS and their
5380: options shouldn't cause exceptions any longer
5381:
5382: 2010-10-06 moko
5383:
5384: * src/classes/: hash.C, table.C: length from sql server is now
5385: ignored, as sql string can contain 0x00 inside (bugfix: #119)
5386:
5387: 2010-10-02 misha
5388:
5389: * operators.txt: - the X mark was removed from ^cache[file]. it is
5390: usable to delete cache file.
5391:
5392: 2010-10-02 moko
5393:
5394: * tests/: 253.html, results/253.processed: hook_key added for key
5395: checking
5396:
5397: * src/classes/json.C: null key bug fixed
5398:
5399: 2010-09-29 misha
5400:
5401: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
5402:
5403: 2010-09-25 moko
5404:
5405: * src/classes/json.C: small fixed
5406:
5407: * tests/results/: 253.processed, 255.processed: just updated
5408:
5409: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
5410: results/255.processed: charset transcode test added for
5411: json:parse
5412:
5413: 2010-09-24 moko
5414:
5415: * src/types/pa_value.h: warning war :)
5416:
5417: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
5418: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
5419: ^json:string
5420:
5421: 2010-09-22 moko
5422:
5423: * src/main/pa_charset.C: parser charset tables declare only
5424: white-space before 0x20, thus adding the missing chars
5425:
5426: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
5427: to http://unicode.org/Public/MAPPINGS/VENDORS/
5428:
5429: 2010-09-21 misha
5430:
5431: * src/main/compile.y: - some semicolons were added (VS2010 don't
5432: want to compile grammar if they are absent)
5433:
5434: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
5435:
5436: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
5437:
5438: * src/main/main.vcproj: - path to bison is changed
5439:
5440: 2010-09-21 moko
5441:
1.116 moko 5442: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
5443: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
5444: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 5445:
5446: 2010-09-20 misha
5447:
5448: * src/types/pa_vtable.C: - add EOLs while json-serializing table
5449:
5450: * src/classes/json.C: - add EOL while json-serializing hash
5451:
5452: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
5453: compilers don't like 'ES'.
5454:
5455: 2010-09-17 misha
5456:
5457: * operators.txt: - info about json class was added
5458:
5459: * src/classes/json.C: - ^json:string[object]
5460:
5461: * src/: include/pa_request.h, main/pa_request.C: - stuff for
5462: preventing infinite recursion while executing json:string was
5463: added
5464:
5465: * src/include/pa_string.h: - method append_quoted was added
5466:
5467: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
5468: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
5469: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
5470: was added to Value & Co
5471:
5472: * src/classes/date.C: - methods get_gmt_string and get_sql_string
5473: were used
5474:
5475: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
5476: were added
5477:
5478: 2010-09-10 moko
5479:
5480: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
5481: die_or_abort (backport from 3.4.1)
5482:
5483: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
5484: die_or_abort (bugfix: #106)
5485:
5486: 2010-09-09 moko
5487:
5488: * src/classes/json.C: warning war. :)
5489:
5490: 2010-09-08 misha
5491:
5492: * src/lib/json/Makefile.am: - additional include directories were
5493: added (for pa_memory.h and gc.h)
5494:
5495: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
5496: compile as C++ instead default - additional include directory was
5497: added (for gc.h)
5498:
5499: * src/types/pa_vform.C: - little code reformating
5500:
5501: * src/classes/file.C: - $.content-type option now can be specified
5502: in ^file::create ( new feature: #102 )
5503:
5504: 2010-09-08 moko
5505:
5506: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
5507: pa_malloc/pa_free
5508:
5509: 2010-09-07 moko
5510:
5511: * tests/results/254.processed: VStateless_class:put_element
5512: exception was fixed
5513:
5514: * src/types/: pa_value.h, pa_vstateless_class.h: now
5515: VStateless_class:put_element barks self.type, not this.type
5516: (bugfix: #105)
5517:
5518: 2010-09-06 moko
5519:
5520: * src/classes/reflection.C: bugfix: new String() is required for
5521: exception handling
5522:
5523: * tests/: 254.html, results/254.processed: test modified
5524:
5525: 2010-09-05 moko
5526:
5527: * tests/: 254.html, results/254.processed: ^reflection:copy test
5528: added
5529:
5530: * src/: classes/reflection.C, include/pa_request.h:
5531: ^reflection:copy implemented (new feature: #100)
5532:
5533: 2010-09-03 moko
5534:
5535: * src/lib/json/JSON_parser.C: c++ compatiblity
5536:
5537: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
5538: option testing added
5539:
5540: 2010-09-02 moko
5541:
5542: * src/classes/json.C: $.distinct[first|last|all] added
5543:
5544: 2010-09-01 moko
5545:
5546: * tests/results/253.processed: json test result
5547:
5548: * tests/: 253.html, 253_json.txt: json test added
5549:
5550: * src/classes/json.C: json.C update to actual version + hash key
5551: creation bugfix
5552:
5553: 2010-08-31 misha
5554:
5555: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
5556: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
5557: src/lib/Makefile.am, src/classes/Makefile.am,
5558: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
5559: json library was added
5560:
5561: 2010-08-30 moko
5562:
5563: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
5564: types/pa_vobject.C: cosmetic optimization in
5565: request:execute_method usage
5566:
5567: * src/: include/pa_charset.h, main/pa_charset.C: small
5568: optimization, just to decrease number of lines. :)
5569:
5570: 2010-08-27 misha
5571:
5572: * src/classes/op.C: - taint[json] was added
5573:
5574: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
5575: were added
5576:
5577: * src/main/pa_exec.C: - warning fix was rolled back.
5578:
5579: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
5580: include/pa_string.h: - taint[json] was added - escaping was
5581: slightly modified
5582:
5583: 2010-08-25 misha
5584:
5585: * src/classes/file.C: - typo in file:sql exception was fixed
5586:
5587: * src/main/pa_exec.C: - warning about declared and not used
5588: variable forced_allow was removed
5589:
5590: 2010-08-14 misha
5591:
5592: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
5593: were removed
5594:
5595: 2010-08-11 moko
5596:
5597: * tests/: 249.html, results/249.processed: default setter and
5598: anti-recursive default getter test added
5599:
5600: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
5601: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
5602: types/pa_vobject.h, types/pa_vstateless_class.C,
5603: types/pa_vstateless_class.h: default setter support +
5604: anti-recursive default getter support ( new feature: #13 )
5605:
5606: * src/include/pa_hash.h: optimization: threshold member removed
5607: from hash, reducing sizeof(hash)
5608:
5609: 2010-08-10 misha
5610:
5611: * tests/196.html: - junction-method was added to the test
5612:
5613: * tests/248.html: - ups. typo :)
5614:
5615: * tests/248.html: - test for checking .match with 4 params
5616:
5617: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
5618: 247_windows1251.txt: - test for "transcode file from utf-8 to
5619: $request:charset during loading if the BOM code is detected"
5620:
5621: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
5622: $request:charset during loading if the BOM code is detected ( new
5623: feature: #98 )
5624:
5625: 2010-08-05 misha
5626:
5627: * src/classes/image.C: - ^image.replace now can accept only 2
5628: params. in this case the whole image is affected ( new feature:
5629: #95 )
5630:
5631: 2010-08-04 misha
5632:
5633: * tests/246.html: - test tor ^hash._at[] was added
5634:
5635: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
5636: #53 )
5637:
5638: * src/include/pa_hash.h: - methods for accessing the first and the
5639: last values of ordered hash were added (first_value and
5640: last_value)
5641:
5642: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
5643: (similar to others file's methods):
5644: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
5645: #68 )
5646:
5647: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
5648:
5649: 2010-08-01 moko
5650:
5651: * src/classes/op.C: to correctly process $result[] in code, called
5652: from ^process
5653:
5654: * tests/245.html: $result in ^process[] test added
5655:
5656: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
5657: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
5658: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
5659: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
5660: caller, self) op_call(VMethodFrame &frame, bool constructing)
5661: removed, construct(class,method) added
5662:
5663: * tests/results/: 192.processed, 244.processed: request::construct
5664: added
5665:
5666: * tests/: 244.html, 245.html, results/244.processed,
5667: results/245.processed: object creation exceptions and ^process
5668: tests added
5669:
5670: 2010-07-28 misha
5671:
5672: * tests/make_tests.cmd: - win32 EOLs
5673:
5674: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
5675: tests on Win32 were added (The system timezone should be GMT+3)
5676:
5677: 2010-07-26 misha
5678:
5679: * tests/: 212.html, results/212.processed: - sizes were removed
5680: mecause they could be different on different OSs
5681:
5682: * tests/065.html: - make it "win32 friendly"
5683:
5684: 2010-07-25 misha
5685:
5686: * src/main/compile.y: - all EOLs between methods are removed during
5687: compilation ( new feature: #47 )
5688:
5689: * tests/results/149.processed: - prepare tests to trim trailing
5690: methods' EOLs
5691:
5692: * tests/149.html: - prepare tests to trim trailing methods' EOLs
5693:
5694: * tests/: results/006.processed, results/014.processed, 006.html,
5695: 014.html, 022.html: - prepare tests to trim trailing methods'
5696: EOLs
5697:
5698: * tests/: 059.html, 071.html, 149.html, results/059.processed,
5699: results/071.processed, results/022.processed: - prepare tests to
5700: trim trailing methods' EOLs
5701:
5702: * tests/: results/073.processed, results/109.processed,
5703: results/142.processed, results/144.processed,
5704: results/149.processed, 073.html, 096.html, 109.html, 142.html,
5705: 144.html: - prepare tests to trim trailing methods' EOLs
5706:
5707: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
5708: 149.html, 152.html, results/096.processed, results/107.processed,
5709: results/109.processed, results/142.processed,
5710: results/144.processed: - prepare tests to trim trailing methods'
5711: EOLs
5712:
5713: 2010-07-24 moko
5714:
5715: * tests/results/: 156.processed, 224.processed: fix for #54 changed
5716: the hash order in this test
5717:
5718: * tests/014.html: to check hash order, hash no is longer sorted
5719: before print
5720:
5721: * src/include/pa_hash.h: hash copy constructor now keeps order
5722: (bugfix: #54)
5723:
5724: 2010-07-23 moko
5725:
5726: * tests/results/224.processed: @auto[] is no longer inherited
5727:
5728: * src/types/pa_vstateless_class.C, tests/227.html,
5729: tests/results/227.processed: @auto[] is no longer inherited
5730: (bugfix: #57)
5731:
5732: 2010-07-22 misha
5733:
5734: * src/classes/table.C: - don't skip comment lines during
5735: table::load if encloser or separator is set as '#' ( new feature:
5736: #30 )
5737:
5738: * src/targets/cgi/parser3.C: - don't run as cgi if
5739: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
5740: #12 )
5741:
5742: * src/classes/file.C: - set PARSER_VARSION env before external
5743: script executing
5744:
5745: 2010-07-13 misha
5746:
5747: * tests/058.html: - test for suppressing @border was added - test
5748: for user attribute was added
5749:
5750: * tests/results/186.processed: unescaping from \uXXXX
5751:
5752: * tests/186.html: unescaping from \uXXXX
5753:
5754: * tests/: 239.html, results/239.processed: method call type
5755:
5756: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
5757: $junction_method.CLASS_NAME (+CLASS)
5758:
5759: 2010-07-07 misha
5760:
5761: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
5762: *nix
5763:
5764: 2010-07-05 misha
5765:
5766: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5767: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
5768: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
5769: comment strings "options must be hash", "options must be hash,
5770: not code" and "called with invalid option" were replaced by
5771: constatns - exception comment string "invalid option passed" was
5772: replaced by "called with invalid option" (now in different
5773: methods are the same exception comment string)
5774:
5775: * src/include/pa_exception.h: - more exception strings were defined
5776:
5777: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
5778: types/pa_vstateless_class.h: - now we can define possible
5779: method's call type ( new feature: #5 ) 1.
5780: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
5781: methods 2. @static:method[params] (only static keyword could be
5782: used here) -- for specified methods
5783:
5784: * src/main/pa_common.C: - junction points should not be deleted on
5785: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
5786: cleanup
5787:
5788: 2010-07-03 misha
5789:
5790: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
5791: results/158.processed, results/160.processed,
5792: results/161.processed, results/162.processed,
5793: results/163.processed: - prepare tests to trim trailing methods'
5794: EOLs
5795:
5796: * tests/results/169.processed: - prepare tests to trim trailing
5797: methods' EOLs
5798:
5799: * tests/results/: 168.processed, 169.processed: - prepare tests to
5800: trim trailing methods' EOLs
5801:
5802: * tests/: results/170.processed, results/167.processed,
5803: results/168.processed, results/169.processed, 167.html, 168.html,
5804: 169.html: - prepare tests to trim trailing methods' EOLs
5805:
5806: * tests/: results/170.processed, results/171.processed,
5807: results/172.processed, results/173.processed,
5808: results/174.processed, results/175.processed, 170.html, 171.html,
5809: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
5810: trailing methods' EOLs
5811:
5812: * tests/: results/176.processed, results/180.processed,
5813: results/184.processed, results/185.processed,
5814: results/191.processed, results/192.processed,
5815: results/196.processed, results/197.processed,
5816: results/198.processed, 176.html, 180.html, 184.html, 185.html,
5817: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
5818: to trim trailing methods' EOLs
5819:
5820: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
5821: results/199.processed, results/208.processed,
5822: results/209.processed, results/213.processed,
5823: results/214.processed: - prepare tests to trim trailing methods'
5824: EOLs
5825:
5826: 2010-06-29 misha
5827:
5828: * tests/: 220.html, 218.html, results/218.processed,
5829: results/215.processed, results/217.processed, 215.html, 217.html:
5830: - prepare tests to trim trailing methods' EOLs
5831:
5832: * tests/: results/224.processed, 224.html, 223.html,
5833: results/223.processed, results/220.processed: - prepare tests to
5834: trim trailing methods' EOLs
5835:
5836: * tests/results/: 226.processed, 230.processed: - prepare tests to
5837: trim trailing methods' EOLs
5838:
5839: * tests/: 229.html, results/229.processed: - prepare tests to trim
5840: trailing methods' EOLs
5841:
5842: * tests/: 232.html, 235.html, results/232.processed,
5843: results/235.processed, 226.html, 227.html, 228.html, 230.html,
5844: results/226.processed, results/227.processed,
5845: results/228.processed, results/230.processed: - prepare tests to
5846: trim trailing methods' EOLs
5847:
5848: 2010-06-16 moko
5849:
5850: * tests/: 229.html, results/229.processed: elseif now supported in
5851: ^if
5852:
5853: * src/classes/op.C: new feature: #56 elseif now supported in ^if
5854:
5855: 2010-06-03 misha
5856:
5857: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
5858: instead of memcopy for overlaped regions
5859:
5860: 2010-05-25 misha
5861:
5862: * src/main/pa_common.C: - wanring about unused vars was removed
5863:
5864: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
5865: get_method_filename was moved to execute.C
5866:
5867: 2010-05-23 misha
5868:
5869: * src/main/pa_request.C: - more accurate detection of method's file
5870:
5871: 2010-05-22 misha
5872:
5873: * src/classes/reflection.C: - bugfix: core during detection of
5874: .file if filespec isn't detected successfully
5875:
5876: 2010-05-20 misha
5877:
5878: * src/main/pa_request.C: - fix in get_method_filename
5879:
5880: * src/include/pa_request.h: - new feature: #24 -- searching
5881: included file in @USE/^use is changed. if its filespec doesn't
5882: start from '/' it will be searched in caller file directory
5883:
5884: * src/classes/reflection.C: - ^reflection:method_info returns file
5885: where the method is defined
5886:
5887: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
5888: classes/op.C: - new feature: #24 -- searching included file in
5889: @USE/^use is changed. if its filespec doesn't start from '/' it
5890: will be searched in caller file directory
5891:
5892: * src/: classes/file.C, include/pa_common.h: - method lastposafter
5893: is moved to pa_common.h
5894:
5895: 2010-05-18 misha
5896:
5897: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
5898: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
5899: cookie parser decode \uXXXX as well as %uXXXX
5900:
5901: 2010-05-17 misha
5902:
5903: * src/classes/curl.C: beauty: - unused param is removed in method
5904: _curl_version_action - some spaces were removed or replaced by
5905: tabs
5906:
5907: * src/classes/table.C: - bugfix: #72 core with empty value during
5908: ^table.hash[...;name_of_the_last_column][$.type[string]]
5909:
5910: 2010-05-16 misha
5911:
5912: * src/classes/curl.C: new: #61 more curl options were added
5913: (contributed by Sumo)
5914:
5915: 2010-04-29 pretender
5916:
5917: * src/main/pa_string.C: fixes #63 Split result from empty string
5918: now empty string.
5919:
5920: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
5921: string type.
5922:
5923: 2010-04-28 pretender
5924:
5925: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
5926: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
5927: macrodefinition removed
5928:
5929: 2010-04-19 pretender
5930:
5931: * src/main/execute.C: fixes #60 Stacktrace now contains info for
5932: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
5933:
5934: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
5935: fixes #64 Now file.missing exception generates in unsafe mode to.
5936:
5937: * src/classes/file.C: fixes #48 Now not throw "not save environment
5938: variable" exception in grpunlim version.
5939:
5940: 2010-04-05 misha
5941:
5942: * src/classes/string.C: - new feature: 4th param was added to
5943: match. if specified its value is returned in case of nothing was
5944: found
5945:
5946: 2010-04-01 misha
5947:
5948: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
5949: multiple execution of /a/b/auto.p
5950:
5951: 2010-03-19 misha
5952:
5953: * src/main/execute.C: - core in $table1.$table2 was fixed
5954:
5955: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
5956:
5957: 2010-01-27 misha
5958:
5959: * src/main/pa_common.C: - bugfix: there are no excaption.type if
5960: trying to open file by path /existing-file/non-exixting-file
5961:
5962: 2010-01-26 misha
5963:
5964: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
5965: was added (returns file)
5966:
5967: 2009-12-22 misha
5968:
5969: * src/classes/curl.C: - method 'option' was renamed to 'options' -
5970: now parser doesn't have class curl if it was built without it
5971:
5972: 2009-12-15 misha
5973:
5974: * configure.in: - little cheat with curl include dir was added
5975:
5976: 2009-12-05 misha
5977:
5978: * src/classes/curl.C: - some fixes
5979:
5980: 2009-12-04 misha
5981:
5982: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
5983: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
5984: buildall-with-xml, buildall-without-xml, configure.in: - curl
5985: class was added
5986:
5987: * src/include/pa_hash.h: - hash-iterator was added
5988:
5989: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
5990: was added to pcre
5991:
5992: 2009-11-27 misha
5993:
5994: * src/classes/image.C: - don't add @border attribute to output of
5995: ^image.html[] if it was specified by user with empty value
5996:
5997: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
5998: root element and we are trying to access .documentElement
5999:
6000: 2009-11-11 misha
6001:
6002: * src/classes/table.C: - in ^table.flip[] look at number of columns
6003: instead of number of items in first row for named tables
6004:
6005: 2009-11-10 misha
6006:
6007: * operators.txt: - info about hash-options in ^file::create was
6008: added
6009:
6010: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
6011: added
6012:
6013: 2009-11-09 misha
6014:
6015: * buildall-with-xml: - moving to libxml 2.7.6
6016:
6017: * tests/236.html: - tests for comparations cords with functions
6018: were added
6019:
6020: * src/include/pa_string.h: - optimisation: cacheing of cstr was
6021: added
6022:
6023: * src/main/pa_http.C: - little optimisation
6024:
6025: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
6026: GPF mallocs + stringstream (table.save)
6027:
6028: * src/classes/file.C: - file::create now accepts 4th param: options
6029: with $.charset
6030:
6031: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
6032: bug in cord (comparation cords with functions was buggy)
6033:
6034: 2009-11-06 misha
6035:
6036: * src/main/pa_string.C: - bugfix: calculation string.length
6037: sometimes was buggy
6038:
6039: * src/classes/string.C: - bugfix: Temp_value_element wasn't
6040: destroyed if exception occured during match/replace
6041:
6042: * src/: main/pa_charset.C, include/pa_charset.h: - method
6043: lengthUTF8Char was added
6044:
6045: * src/classes/op.C: - clean tainting lang was added for user's
6046: usage
6047:
6048: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
6049: fixed: checkouts are required after GC_MALLOC
6050:
6051: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
6052:
6053: * operators.txt: - actually, there is no ^untaint[xml] in
6054: file::create
6055:
6056: 2009-10-15 misha
6057:
6058: * tests/: 235.html, 235_attach.txt: - tests for preparing email
6059: were added
6060:
6061: * tests/234.html: - more tests for checking ^taint[uri] escaping
6062: were added
6063:
6064: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
6065: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
6066: hacking: for dealing with transcoding+^taint[uri]
6067: transcode_and_untaint was replaced by untaint_and_transcode
6068:
6069: 2009-10-13 misha
6070:
6071: * tests/: 121.html, results/121.processed: - test transcoding +
6072: url-escaping now
6073:
6074: * tests/results/auto.p: - more helpers' methods were added
6075:
6076: * src/main/pa_globals.C: - die instead of abort
6077:
6078: 2009-10-06 misha
6079:
6080: * src/main/pa_common.C: - don't allocate memory during
6081: capitalization if input string is already capitalized
6082:
6083: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
6084:
6085: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
6086: use format function because it calls malloc
6087:
6088: * src/include/pa_common.h: - more capitalized headers were added
6089:
6090: * src/main/pa_common.C: - in safe mode clear executable bits during
6091: file writing
6092:
6093: 2009-10-05 misha
6094:
6095: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
6096:
6097: 2009-10-03 misha
6098:
6099: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
6100: ^img.text[] & ^img.length[] can work in utf-8 now
6101:
6102: * src/: include/pa_charset.h, main/pa_charset.C: - class
6103: UTF8_string_iterator was added
6104:
6105: * src/classes/image.C: - respect utf-8 when calculate alphabet
6106: length
6107:
6108: * src/classes/mail.C: - check from before get message.cstr
6109:
6110: 2009-10-02 misha
6111:
6112: * tests/233.html: - test for image.font, image.length, image.text
6113: with text in utf-8 were added
6114:
6115: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
6116:
6117: * buildall-with-xml, buildall-without-xml: - comment about gc
6118: version for freebsd 4 was added
6119:
6120: 2009-10-01 misha
6121:
6122: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
6123: terminator) - read_pipe were slightly optimized
6124:
6125: 2009-09-28 misha
6126:
6127: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
6128: removed
6129:
6130: * src/types/pa_vmail.C: - forgot about space after ':'
6131:
6132: * src/types/pa_vmail.C: - escape filenames while preparing mail
6133: body - small simplifications
6134:
6135: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
6136: inout params like pa_base64
6137:
6138: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
6139: option $.debug-print(1) was added to mail:send - changes for
6140: using uue_encode which uses less memory
6141:
6142: * src/main/pa_common.C: - pa_base64_encode uses less memory now
6143:
6144: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
6145: memory now
6146:
6147: 2009-09-26 misha
6148:
6149: * src/types/pa_vmail.C: - default encoding now is base64
6150:
6151: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
6152:
6153: 2009-09-25 misha
6154:
6155: * src/types/pa_vmail.C: - capitalization of headers was added to
6156: sending mail as well
6157:
6158: * buildall-with-xml: - catalog package was removed from libxml
6159:
6160: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
6161: win32 absolute path
6162:
6163: * src/include/pa_common.h: - one more capitalized header was added
6164:
6165: 2009-09-22 misha
6166:
6167: * INSTALL: - comment about building just httpd binary while
6168: building apache module was added
6169:
6170: 2009-09-21 misha
6171:
6172: * buildall-with-xml: - moving to the latest versions of xml libs:
6173: libxml 2.7.4 and libxslt 1.1.25
6174:
6175: 2009-09-19 misha
6176:
6177: * tests/231.html: - test for encoding cookie in win-1251
6178:
6179: 2009-09-18 misha
6180:
6181: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
6182: object] were added
6183:
6184: * operators.txt: - info about method ^reflection:fields[class or
6185: object] was added
6186:
6187: * src/classes/reflection.C: - method ^reflection:fields[class or
6188: object] was added
6189:
6190: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
6191: methods get_fields were added
6192:
6193: * tests/232.html: - tests for @GET[name]
6194:
6195: * src/classes/table.C: - some changes in handling hash-options for
6196: creare, join and locate
6197:
6198: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
6199: defined with option: the type of requested value
6200:
6201: 2009-09-17 misha
6202:
6203: * tests/212.html: - tests for .pattern and .options were added
6204:
6205: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
6206: $regex.options were added
6207:
6208: 2009-09-11 misha
6209:
6210: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
6211: rewrited. it checks not just one case of sending cookies during
6212: file::load[http], but also sending headers and fields (including
6213: files)
6214:
6215: 2009-09-10 misha
6216:
6217: * src/main/untaint.C: - workaround in file-spec lang for old Macs
6218: was removed => now parser can open files with Russian 'r' in
6219: filename
6220:
6221: * src/main/untaint.C: - bugfix: client charset whould be analized
6222: while escaping cookies but now source charset
6223:
6224: * src/main/pa_http.C: - bugfix: the values of http headers didn't
6225: ^tainted[uri] so it was possible to make request with incorrect
6226: http header
6227:
6228: * src/main/pa_http.C: - capitalization of http headers during
6229: file::load[http was slightly changes - bugfix: all headers which
6230: parser sends during file::load[http should be transcoded and only
6231: then escaped
6232:
6233: * src/main/untaint.C: - a bit more comments were added
6234:
6235: * src/classes/: file.C, string.C: - types where changes (minus 2
6236: warnings)
6237:
6238: * src/include/pa_common.h: - 2 capitalized strings for making http
6239: headers during file::load[http were added
6240:
6241: 2009-09-08 misha
6242:
6243: * operators.txt: - changes in file.save and string.save were added
6244:
6245: * tests/: 230.html, 230.txt: - tests for checking options in
6246: file.save and string.save were added
6247:
6248: * src/main/pa_request.C: - http headers names, which are passed to
6249: SAPI::add_header_attribute are lowercased now (it'll be
6250: capitalized in that method)
6251:
6252: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
6253: classes/string.C: - file_write accepts Request_charsets and asked
6254: charset and cound transcode content before writing - string.save
6255: and file.save have option $.charset now
6256:
6257: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
6258: classes/xdoc.C: - file_write accepts Request_charsets and asked
6259: charset and cound transcode content before writing
6260:
6261: * src/include/pa_exception.h: - new exception comment string was
6262: defined
6263:
6264: 2009-09-07 misha
6265:
6266: * src/main/compile.y: - grammar $name\ name stops now for regex
6267: sub-pattern\s
6268:
6269: 2009-09-04 misha
6270:
6271: * src/main/pa_http.C: - capitalization of http headers during
6272: file::load[http was implemented
6273:
6274: 2009-09-03 misha
6275:
6276: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
6277: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
6278: types/pa_vmail.C, targets/cgi/parser3.C,
6279: targets/isapi/parser3isapi.C: - back to storing response http
6280: headers in lowercase - capitalize them during output
6281:
6282: 2009-08-31 misha
6283:
6284: * src/classes/table.C: - allow call with any brackets (it could be
6285: useful in methods with explict result declaration)
6286:
6287: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
6288: correctly if $request:charset==koi8-r
6289:
6290: 2009-08-30 misha
6291:
6292: * src/: include/pa_common.h, main/pa_request.C: - http headers were
6293: changed: content-type => Content-type and so on
6294:
6295: * src/classes/file.C, src/include/pa_common.h,
6296: src/include/pa_request.h, src/main/pa_http.C,
6297: src/main/pa_request.C, src/types/pa_vcookie.C,
6298: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
6299: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
6300: tests/results/002.processed, tests/results/003.processed,
6301: tests/results/004.processed, tests/results/005.processed,
6302: tests/results/006.processed, tests/results/007.processed,
6303: tests/results/008.processed, tests/results/009.processed,
6304: tests/results/010.processed, tests/results/011.processed,
6305: tests/results/012.processed, tests/results/013.processed,
6306: tests/results/014.processed, tests/results/015.processed,
6307: tests/results/016.processed, tests/results/017.processed,
6308: tests/results/018.processed, tests/results/019.processed,
6309: tests/results/020.processed, tests/results/021.processed,
6310: tests/results/022.processed, tests/results/023.processed,
6311: tests/results/024.processed, tests/results/025.processed,
6312: tests/results/026.processed, tests/results/027.processed,
6313: tests/results/028.processed, tests/results/029.processed,
6314: tests/results/030.processed, tests/results/031.processed,
6315: tests/results/032.processed, tests/results/033.processed,
6316: tests/results/034.processed, tests/results/035.processed,
6317: tests/results/036.processed, tests/results/037.processed,
6318: tests/results/038.processed, tests/results/039.processed,
6319: tests/results/040.processed, tests/results/041.processed,
6320: tests/results/042.processed, tests/results/043.processed,
6321: tests/results/044.processed, tests/results/045.processed,
6322: tests/results/046.processed, tests/results/047.processed,
6323: tests/results/048.processed, tests/results/049.processed,
6324: tests/results/050.processed, tests/results/051.processed,
6325: tests/results/052.processed, tests/results/053.processed,
6326: tests/results/054.processed, tests/results/055.processed,
6327: tests/results/056.processed, tests/results/057.processed,
6328: tests/results/058.processed, tests/results/059.processed,
6329: tests/results/060.processed, tests/results/061.processed,
6330: tests/results/062.processed, tests/results/063.processed,
6331: tests/results/064.processed, tests/results/065.processed,
6332: tests/results/066.processed, tests/results/067.processed,
6333: tests/results/068.processed, tests/results/069.processed,
6334: tests/results/070.processed, tests/results/071.processed,
6335: tests/results/072.processed, tests/results/073.processed,
6336: tests/results/074.processed, tests/results/075.processed,
6337: tests/results/076.processed, tests/results/077.processed,
6338: tests/results/078.processed, tests/results/079.processed,
6339: tests/results/080.processed, tests/results/081.processed,
6340: tests/results/082.processed, tests/results/083.processed,
6341: tests/results/084.processed, tests/results/085.processed,
6342: tests/results/086.processed, tests/results/087.processed,
6343: tests/results/088.processed, tests/results/089.processed,
6344: tests/results/090.processed, tests/results/091.processed,
6345: tests/results/092.processed, tests/results/093.processed,
6346: tests/results/094.processed, tests/results/095.processed,
6347: tests/results/096.processed, tests/results/097.processed,
6348: tests/results/098.processed, tests/results/099.processed,
6349: tests/results/100.processed, tests/results/101.processed,
6350: tests/results/102.processed, tests/results/103.processed,
6351: tests/results/104.processed, tests/results/105.processed,
6352: tests/results/106.processed, tests/results/107.processed,
6353: tests/results/108.processed, tests/results/109.processed,
6354: tests/results/110.processed, tests/results/111.processed,
6355: tests/results/112.processed, tests/results/113.processed,
6356: tests/results/114.processed, tests/results/115.processed,
6357: tests/results/116.processed, tests/results/117.processed,
6358: tests/results/118.processed, tests/results/119.processed,
6359: tests/results/120.processed, tests/results/121.processed,
6360: tests/results/122.processed, tests/results/123.processed,
6361: tests/results/124.processed, tests/results/125.processed,
6362: tests/results/126.processed, tests/results/127.processed,
6363: tests/results/128.processed, tests/results/129.processed,
6364: tests/results/130.processed, tests/results/131.processed,
6365: tests/results/132.processed, tests/results/133.processed,
6366: tests/results/134.processed, tests/results/135.processed,
6367: tests/results/136.processed, tests/results/138.processed,
6368: tests/results/139.processed, tests/results/140.processed,
6369: tests/results/141.processed, tests/results/142.processed,
6370: tests/results/143.processed, tests/results/144.processed,
6371: tests/results/145.processed, tests/results/146.processed,
6372: tests/results/147.processed, tests/results/148.processed,
6373: tests/results/149.processed, tests/results/150.processed,
6374: tests/results/151.processed, tests/results/152.processed,
6375: tests/results/153.processed, tests/results/154.processed,
6376: tests/results/155.processed, tests/results/156.processed,
6377: tests/results/157.processed, tests/results/158.processed,
6378: tests/results/159.processed, tests/results/160.processed,
6379: tests/results/161.processed, tests/results/162.processed,
6380: tests/results/163.processed, tests/results/164.processed,
6381: tests/results/165.processed, tests/results/166.processed,
6382: tests/results/167.processed, tests/results/168.processed,
6383: tests/results/169.processed, tests/results/170.processed,
6384: tests/results/171.processed, tests/results/172.processed,
6385: tests/results/173.processed, tests/results/174.processed,
6386: tests/results/175.processed, tests/results/176.processed,
6387: tests/results/177.processed, tests/results/178.processed,
6388: tests/results/179.processed, tests/results/180.processed,
6389: tests/results/181.processed, tests/results/182.processed,
6390: tests/results/183.processed, tests/results/184.processed,
6391: tests/results/185.processed, tests/results/186.processed,
6392: tests/results/187.processed, tests/results/188.processed,
6393: tests/results/189.processed, tests/results/190.processed,
6394: tests/results/191.processed, tests/results/192.processed,
6395: tests/results/193.processed, tests/results/194.processed,
6396: tests/results/195.processed, tests/results/196.processed,
6397: tests/results/197.processed, tests/results/198.processed,
6398: tests/results/199.processed, tests/results/200.processed,
6399: tests/results/201.processed, tests/results/202.processed,
6400: tests/results/203.processed, tests/results/204.processed,
6401: tests/results/205.processed, tests/results/206.processed,
6402: tests/results/207.processed, tests/results/208.processed,
6403: tests/results/209.processed, tests/results/210.processed,
6404: tests/results/211.processed, tests/results/212.processed,
6405: tests/results/213.processed, tests/results/214.processed,
6406: tests/results/215.processed, tests/results/216.processed,
6407: tests/results/217.processed, tests/results/218.processed,
6408: tests/results/219.processed, tests/results/220.processed,
6409: tests/results/221.processed, tests/results/222.processed,
6410: tests/results/223.processed, tests/results/224.processed,
6411: tests/results/225.processed, tests/results/226.processed,
6412: tests/results/227.processed, tests/results/228.processed,
6413: tests/results/229.processed: - http headers were changed:
6414: content-type => Content-type and so on
6415:
6416: 2009-08-27 misha
6417:
6418: * src/: main/pa_random.C, include/pa_random.h,
6419: targets/cgi/parser3.C: - year was updated :)
6420:
6421: 2009-08-26 misha
6422:
6423: * tests/: 224.html, 224.p: - test for creating of parser object
6424: using constructor without params - little bugfix in test
6425:
6426: * src/main/compile_tools.h: - bugfix: should't call autouse while
6427: checking existed class while processing partial option
6428:
6429: * src/classes/reflection.C: - bugfix: core when creating object
6430: with reflection and constructor doesn't have params
6431:
6432: 2009-08-24 misha
6433:
6434: * tests/229.html: - tests for checking the number of parameters
6435: were added
6436:
6437: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
6438: number of method's parameters wasn't checked correctly (the bug
6439: was introduced in 3.4.0)
6440:
6441: 2009-08-22 misha
6442:
6443: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
6444: transcoded, but tainted pieces are escaped only when
6445: content-type==url-encoding
6446:
6447: * tests/228.html: - test for checking
6448: ^file::load[http://...;$.body[]]
6449:
6450: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
6451: post charset was too early (charsets is empty at this moment)
6452:
6453: 2009-08-21 misha
6454:
6455: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
6456: main/untaint.C: - some fixes with transcode+untaint
6457:
6458: 2009-08-15 misha
6459:
6460: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
6461: was increaced to 100 (was 50)
6462:
6463: * tests/227.html: - test for checking overriding properties in
6464: static classes was added
6465:
6466: * tests/: 226.html, 226.p: - test for @autoload[] was added
6467:
6468: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
6469: main/execute.C, main/pa_request.C, classes/reflection.C: -
6470: autouse was implemented
6471:
6472: 2009-08-14 misha
6473:
6474: * src/classes/reflection.C: - outdated checkout was removed
6475:
6476: * src/classes/reflection.C: - optimization - method ^dynamical was
6477: added.
6478:
6479: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
6480: types/pa_vstateless_class.h, main/execute.C: - optimization
6481:
6482: * src/types/pa_vclass.C: - exception if base on sytem class
6483:
6484: 2009-08-12 misha
6485:
6486: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
6487: pa_vstateless_class.h: - little optimisation
6488:
6489: 2009-08-11 misha
6490:
6491: * tests/224.html: - method_params => method_info - checking for
6492: $.inherited
6493:
6494: * src/classes/reflection.C, operators.txt: - method method_params
6495: was renamed to method_info and now it returns class name, if
6496: method was defined in ancestor
6497:
6498: * tests/225.html: - tests for cheching properties in hierarhical
6499: classes were added
6500:
6501: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
6502: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6503: main/compile.y, main/execute.C, classes/classes.C: - problems
6504: with properties in new classes implementation were fixed
6505:
6506: 2009-08-10 misha
6507:
6508: * src/main/execute.C: - now constructor shouldn't be defined in
6509: class. it could be defined in parent.
6510:
6511: 2009-08-09 misha
6512:
6513: * src/classes/reflection.C: - ^reflection:methods doesn't return
6514: base's methods
6515:
6516: 2009-08-08 misha
6517:
6518: * src/: classes/classes.h, classes/date.C, classes/file.C,
6519: classes/form.C, classes/hash.C, classes/hashfile.C,
6520: classes/image.C, classes/mail.C, classes/op.C,
6521: classes/reflection.C, classes/regex.C, classes/string.C,
6522: classes/table.C, classes/xdoc.C, classes/xnode.C,
6523: classes/xnode.h, include/pa_hash.h, main/execute.C,
6524: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
6525: types/pa_method.h, types/pa_property.h, types/pa_value.C,
6526: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
6527: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
6528: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
6529: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6530: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
6531: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
6532: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
6533: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
6534: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
6535: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
6536: types/pa_vresponse.C, types/pa_vresponse.h,
6537: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6538: types/pa_vstateless_object.h, types/pa_vstatus.C,
6539: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
6540: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6541: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6542: types/pa_wwrapper.h, types/types.vcproj: - new classes
6543: implementation
6544:
6545: * buildall-with-xml, buildall-without-xml: - gc has a bug if
6546: USE_MUNMAP is used. so it is disabled as a workaround.
6547:
6548: 2009-08-05 misha
6549:
6550: * src/: main/pa_common.C, include/pa_common.h: - not needed
6551: parameter was removed
6552:
6553: * src/main/pa_http.C: - bugfix: error was during detecting
6554: content-type of file which was loaded by http
6555:
6556: 2009-08-01 misha
6557:
6558: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
6559: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
6560: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
6561: can't be disabled with defines any longer
6562:
6563: 2009-07-29 misha
6564:
6565: * src/classes/reflection.C, tests/results/224.processed: - for
6566: native methods with any call type now returned empty call_type
6567: value
6568:
6569: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
6570: classes/table.C, include/pa_hash.h, include/pa_request.h,
6571: main/pa_request.C: - break in cycles was optimized
6572:
6573: * INSTALL: - more defines were described
6574:
6575: 2009-07-28 misha
6576:
6577: * operators.txt: - some changes in information about reflection
6578: class
6579:
6580: * tests/: 224.html, 224.p: - tests for reflection class
6581:
6582: * src/classes/reflection.C: - some bugs were fixed, method classes
6583: was added, refactoring
6584:
6585: 2009-07-26 misha
6586:
6587: * src/classes/classes.vcproj: - reflection class wass added to
6588: project
6589:
6590: * operators.txt: - information about reflection class was added
6591:
6592: * src/classes/reflection.C: - class was redesigned
6593:
6594: 2009-07-24 misha
6595:
6596: * src/classes/: Makefile.am, reflection.C: - class reflection was
6597: added
6598:
6599: * src/types/pa_vstateless_class.h: - method for reflection method's
6600: in classes was added
6601:
6602: 2009-07-22 misha
6603:
6604: * src/main/compile_tools.h: - bugfix: $object.$var was
6605: over-optimized. it failed if $object1.$object2.field
6606:
6607: 2009-07-16 misha
6608:
6609: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
6610: lib/cord/cordxtra.c, lib/cord/include/cord.h,
6611: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
6612: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
6613: one more arg: length of cord
6614:
6615: 2009-07-15 misha
6616:
6617: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
6618: tainted in ^file::load[http://...;$.cookies[]]
6619:
6620: * src/classes/: op.C, regex.C, string.C: - new string with
6621: exception was used
6622:
6623: * src/include/pa_exception.h: - new string with exception was added
6624:
6625: * tests/223.html: - test for checking cookie-encoding during
6626: ^file::load[http was added
6627:
6628: * tests/: 221.html, 222.html: - tests for checking type of
6629: $table.fields.field were added
6630:
6631: * src/types/pa_vtable.C: - not used var decl was removed
6632:
6633: * src/include/pa_string.h: - use cached string length in Body::mid.
6634: it improves speed of match with brackets in pattern
6635:
6636: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
6637: outside
6638:
6639: 2009-07-14 misha
6640:
6641: * src/types/pa_vtable.C: - $table.fields.a return string even if
6642: column is empty (sometime returned void) - $table.fields was
6643: added for nameless tables
6644:
6645: * src/targets/cgi/getopt.c: - one warning resolved
6646:
6647: * src/main/pa_string.C: - potentian bug fixed
6648:
6649: * src/classes/op.C: - small optimization in taint/untaint
6650:
6651: 2009-07-13 misha
6652:
6653: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
6654: added
6655:
6656: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
6657: souldn't add the attribut to output
6658:
6659: 2009-07-11 misha
6660:
6661: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
6662: stack size was increaced to 2MB (default=1MB)
6663:
6664: 2009-07-08 misha
6665:
6666: * src/main/pa_string.C: - link to UTF-8 description was added
6667:
6668: * src/include/pa_hash.h: - hash keeps element's order in more
6669: places (ex: ._keys[])
6670:
6671: * tests/220.html: - test for checking order of elements in hash in
6672: foreach was added
6673:
6674: * tests/172.html: - small changes in printing hash
6675:
6676: * tests/129.html: - small changes in printing hash
6677:
6678: * src/: include/pa_common.h, include/pa_hash.h,
6679: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
6680: types/pa_vmethod_frame.h: - hash now keeps order of elements
6681:
6682: * tests/014.html: - small changes in printing hash
6683:
6684: 2009-07-07 misha
6685:
6686: * src/classes/op.C: - new taint language "parser-code" was added
6687:
6688: * tests/219.html: - test for auto untaint parser code in process
6689: was added
6690:
6691: * src/classes/op.C: - tainted pieces in body of process are
6692: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
6693:
6694: * src/: include/pa_string.h, main/untaint.C: - new language
6695: L_PARSER_CODE for auto-untaint in process was added
6696:
6697: * src/: classes/file.C, classes/hash.C, classes/image.C,
6698: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
6699: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
6700: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
6701: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
6702: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
6703: code cleanup
6704:
6705: 2009-07-06 misha
6706:
6707: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
6708: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
6709: deleted. taint_cstr[m] and untaint_cstr[m] should be used
6710:
6711: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
6712: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
6713: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
6714: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
6715: should be used
6716:
6717: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
6718: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
6719: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
6720: untaint_cstr[m] should be used
6721:
6722: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
6723: deleted. taint_cstr[m] and untaint_cstr[m] should be used
6724:
6725: * tests/218.html: - test for checking automatic file-spec-taint was
6726: added
6727:
6728: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
6729: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
6730: classes/file.C, classes/hash.C, classes/image.C,
6731: classes/string.C, classes/table.C, classes/void.C,
6732: classes/xdoc.C: - optimizations and simplification of
6733: string.cstr(...)
6734:
6735: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
6736: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
6737: - optimizations and simplification of string.cstr(...)
6738:
6739: 2009-07-04 misha
6740:
6741: * tests/217.html: - test for recursion detection was added
6742:
6743: * src/: types/types.vcproj, main/main.vcproj,
6744: classes/classes.vcproj, targets/cgi/parser3.vcproj,
6745: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
6746: from .vcproj
6747:
6748: * src/types/pa_wwrapper.h: - dynamic_cast was removed
6749:
6750: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
6751: uploading files and case-insensitive http-method were added
6752:
6753: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
6754: tainted pattern in ^file:list[] was added
6755:
6756: 2009-07-03 misha
6757:
6758: * src/: classes/classes.vcproj, main/main.vcproj,
6759: types/types.vcproj, targets/cgi/parser3.vcproj,
6760: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
6761: for dynamic_cast) - little options changes
6762:
6763: * src/main/pa_http.C: - file::load[http works now with uploading
6764: files _and_ changing $.charset
6765:
6766: 2009-06-29 misha
6767:
6768: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
6769: while creating pattern
6770:
6771: 2009-06-25 misha
6772:
6773: * src/classes/image.C, operators.txt: - options' names for
6774: ^image.font were changed to $.space, $.width and $spacing -
6775: default space width now == gif's width
6776:
6777: 2009-06-24 misha
6778:
6779: * tests/215.html: - tests for $file.mode were added
6780:
6781: * operators.txt: - added info about $file.mode and changes in
6782: ^image.font[
6783:
6784: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
6785: param now could be omited - third param now could be hash (with
6786: all widths options: $.space-width, $.letter-width) - it's
6787: possible to specify tracking ($.letter-space)
6788:
6789: * src/classes/file.C: - file objects now could have mode field
6790: (text|binary)
6791:
6792: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
6793:
6794: 2009-06-23 misha
6795:
6796: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
6797: trim can work with utf-8 chars now
6798:
6799: 2009-06-20 misha
6800:
6801: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
6802: was implemented
6803:
6804: * src/classes/table.C: - string length cacheing was implemented
6805:
6806: * src/include/pa_string.h: - string length cacheing was implemented
6807:
6808: 2009-06-17 misha
6809:
6810: * src/main/execute.C: - value param was removed from
6811: WContext::WContext
6812:
6813: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
6814: pa_wwrapper.h: - value param was removed from WContext::WContext
6815: - field wcontext was removed from VCodeFrame (using fparent
6816: instead)
6817:
6818: * tests/214.html: - test with hash copying
6819:
6820: 2009-06-16 misha
6821:
6822: * tests/: 062.html, results/062.processed: - evaluation hardcoded
6823: strings doesn't work in expression anymore
6824:
6825: * src/main/execute.C: - less calls for get_constructing() - little
6826: refactoring
6827:
6828: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
6829: include/pa_request.h: - less calls for get_constructing()
6830:
6831: * src/classes/: hash.C, hashfile.C: - fixed bug which was
6832: introduced with OPTIMIZE_SINGLE_STRING optimization
6833:
6834: 2009-06-14 misha
6835:
6836: * src/: classes/date.C, classes/file.C, classes/hash.C,
6837: classes/hashfile.C, classes/image.C, classes/regex.C,
6838: classes/table.C, classes/xdoc.C, classes/xnode.h,
6839: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
6840: types/pa_vstateless_class.h, main/execute.C: - create object for
6841: storing object's fields only for parser objects
6842:
6843: 2009-06-13 misha
6844:
6845: * buildall-with-xml, buildall-without-xml: - new option was added
6846: for building GC (it slightly reduces memory usage)
6847:
6848: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
6849: single string write
6850:
6851: * src/main/execute.C: - bytecode optimization of ^class:constructor
6852: - optimization of single string write
6853:
6854: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
6855: - bytecode optimization of ^class:constructor
6856:
6857: 2009-06-09 misha
6858:
6859: * src/targets/cgi/parser3.C: - type size_t was changed to int in
6860: main (better compatibility)
6861:
6862: 2009-06-08 misha
6863:
6864: * src/main/compile.y: - I've forgot to commit it :(
6865:
6866: 2009-06-07 misha
6867:
6868: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
6869: WITH_READ and WITH_ROOT
6870:
6871: * src/main/: compile.y, compile_tools.C, compile_tools.h,
6872: execute.C: - more optimizations for WITH_SELF, WITH_READ and
6873: WITH_ROOT - little refactoring
6874:
6875: 2009-06-06 misha
6876:
6877: * tests/213.html: - tests for 3rd match string-param were added
6878:
6879: * src/classes/string.C: - 3rd match param could be string now
6880:
6881: * src/main/: compile.y, compile_tools.h: - much more bytecode's
6882: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
6883: GET_OBJECT_ELEMENT
6884:
6885: 2009-06-05 misha
6886:
6887: * src/main/pa_http.C: - bugfix: content-length was not calculated
6888: if $.body was specified
6889:
6890: 2009-06-04 misha
6891:
6892: * src/classes/op.C: - optimizing write_assign_lang in connect
6893:
6894: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
6895:
6896: * src/main/execute.C: - little refactoring - optimizing
6897: write_assign_lang in taint/untaint
6898:
6899: * src/include/pa_opcode.h: - little refactoring
6900:
6901: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
6902: main/compile_tools.h, main/execute.C: - optimizations for
6903: $self.field, ^self.method, $self.field[...] and $self.field(...)
6904: were added
6905:
6906: 2009-06-03 misha
6907:
6908: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
6909:
6910: 2009-06-02 misha
6911:
6912: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
6913: include/pa_opcode.h: - refactoring in last optimizations
6914: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
6915: now but code is much easy and it is ready for further
6916: improvements.
6917:
6918: 2009-05-27 misha
6919:
6920: * src/: types/pa_junction.h, types/pa_vjunction.C,
6921: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
6922: changed in destructing junctions
6923:
6924: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
6925: String:Body
6926:
6927: 2009-05-26 misha
6928:
6929: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
6930: one method detect_charset was deleted - bug was fixed in this
6931: method (error while detecting charset in content_type withot last
6932: ';')
6933:
6934: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
6935: once
6936:
6937: 2009-05-25 misha
6938:
6939: * src/classes/file.C: - bugfix: file::exec didn't work after
6940: optimizing of helper_length
6941:
6942: 2009-05-24 misha
6943:
6944: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
6945: were added - little refactoring
6946:
6947: * src/main/execute.C: - core while printing in debug log
6948: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
6949: optimisations were added
6950:
6951: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
6952: were added
6953:
6954: 2009-05-23 misha
6955:
6956: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
6957: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
6958: CORD_cat optimization
6959:
6960: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
6961: - call constr optimisation under separate define now
6962:
6963: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
6964: in $b should be string, not void
6965:
6966: * src/main/compile.y: - little fix for rem-cut optimisation
6967:
6968: * src/: include/pa_opcode.h, main/compile_tools.C,
6969: main/compile_tools.h, main/execute.C: - optimisations for
6970: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
6971:
6972: * INSTALL: - description of some #defined were added
6973:
6974: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
6975: before 1st access (memory usage is reduced if don't access to
6976: .text field)
6977:
6978: * src/include/pa_array.h: - array grows step now not static (it
6979: reduces numbers of reallocs)
6980:
6981: 2009-05-20 misha
6982:
6983: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
6984: $.b(2), $c[d] and $.e[f] was added
6985:
6986: * src/main/: compile.y, compile_tools.C, compile_tools.h,
6987: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
6988: $.e[f] was added
6989:
6990: * src/main/execute.C: - debug printing moved in defines
6991:
6992: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
6993: and little refactoring for OP_GET_OBJECT_ELEMENT +
6994: OP_GET_OBJECT_VAR_ELEMENT optimisation
6995:
6996: 2009-05-19 misha
6997:
6998: * src/main/: compile.y, compile_tools.C, compile_tools.h,
6999: execute.C: - $a.$b & ^a.$b bytecode optimisation
7000:
7001: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
7002: ^a.$b optimisation)
7003:
7004: * src/main/compile.y: - compiler now generate new opcodes:
7005: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
7006: ^a.b - compiler now cut off ^rem{ with all content ; any number
7007: of params }
7008:
7009: * src/main/execute.C: - code for handle new opcodes
7010: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
7011:
7012: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
7013: added for LA2V and LA2S
7014:
7015: * src/include/pa_opcode.h: - new defines which can be used for
7016: disable some bytecode optimisation and new opcodes were added
7017:
7018: 2009-05-17 misha
7019:
7020: * src/lib/cord/cordxtra.c: - bugfix.
7021:
7022: * tests/212.html: - .size[] and .study_size[] were added to tests
7023:
7024: * operators.txt: - info about regex class was added
7025:
7026: * tests/212.html: - tests for regex class were added
7027:
7028: 2009-05-16 misha
7029:
7030: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
7031: gc7.1
7032:
7033: * tests/022.html: - test for ^file:list[path;] (empty second param)
7034: was added
7035:
7036: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
7037: param) should work
7038:
7039: 2009-05-15 misha
7040:
7041: * src/classes/table.C: - automatically disable stringstream usage
7042: on freebsd4
7043:
7044: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
7045: scope
7046:
7047: * tests/211.html: - test with different types of access to hash was
7048: added
7049:
7050: * tests/210.html: - test which checks for loosing tainting in
7051: hash's keys was added
7052:
7053: * tests/208.html: - some parser work added. or stime == 0 %-)
7054:
7055: * src/lib/cord/cordbscs.c: - little hack was added to cord
7056:
7057: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
7058:
7059: * src/include/pa_version.h, configure.in: - moko have made a lot of
7060: optimisations for increacing version number more dramatically :)
7061:
7062: * src/classes/date.C: - little refactoring: use constructor which
7063: accepts formated string
7064:
7065: * src/: include/pa_string.h, main/pa_string.C: - String constructor
7066: which can print formatted string was added
7067:
7068: 2009-05-14 misha
7069:
7070: * src/include/pa_string.h: - type was fixed
7071:
7072: * src/: classes/hashfile.C, classes/op.C,
7073: include/pa_cache_managers.h, include/pa_charset.h,
7074: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
7075: include/pa_request.h, include/pa_sql_driver_manager.h,
7076: include/pa_string.h, include/pa_stylesheet_manager.h,
7077: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
7078: main/pa_charsets.C, main/pa_string.C,
7079: main/pa_stylesheet_connection.C, types/pa_value.h,
7080: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7081: types/pa_vobject.C, types/pa_vstateless_class.C,
7082: types/pa_vstateless_class.h: - hash_code caching was implemented
7083: (seaches should be faster now)
7084:
7085: * src/: classes/file.C, classes/hash.C, classes/image.C,
7086: classes/string.C, classes/table.C, include/pa_string.h,
7087: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
7088: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
7089: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
7090: types/pa_vrequest.C: - String constructors don't have that stupid
7091: true/false param which means 'tainted'. they accept lang instead.
7092:
7093: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
7094: with OPTIMIZE_RESULT
7095:
7096: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
7097: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
7098:
7099: 2009-05-13 misha
7100:
7101: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
7102: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
7103: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7104: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
7105: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
7106: main/pa_common.C, main/pa_request.C, main/pa_string.C,
7107: include/pa_string.h, classes/date.C, classes/file.C,
7108: classes/hash.C, classes/image.C, classes/string.C,
7109: classes/table.C, classes/xdoc.C: - result optimisation -
7110: helper_length parameter removed from string constructors
7111:
7112: 2009-05-11 misha
7113:
7114: * tests/209.html: - tests for ^hash::create[hash] were added
7115:
7116: * tests/208.html: - tests for $status:rusage, $status:memory,
7117: ^memory:compact[] were added
7118:
7119: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
7120: log10 were added
7121:
7122: * tests/206.html: - test for try with finally was added
7123:
7124: 2009-05-10 misha
7125:
7126: * tests/205.html: - test for ^file::create[...] was added
7127:
7128: * tests/204.html: - test for ^response:clear[] was added
7129:
7130: * tests/038.html: - tests for trigonometric functions were added
7131:
7132: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
7133: added - more tests for .add, .sub, .union, .intersects and
7134: .intersections
7135:
7136: * tests/065.html: - test for ^file:dirname was added
7137:
7138: * tests/030.html: - test for $cookie:fields was added
7139:
7140: * tests/203.html: - test for ^h._keys[column name] was added
7141:
7142: * tests/201.html: - tests for .trim were added
7143:
7144: * tests/202.html: - tests for last-day,
7145: date:calendar[type](YYYY;MM;DD) were added
7146:
7147: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
7148: .offset[type](N) were added
7149:
7150: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
7151: and .pos[c](N) were added
7152:
7153: * tests/141.html: - test for math:sha1 was added
7154:
7155: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
7156:
7157: 2009-05-09 misha
7158:
7159: * src/main/compile.y: - rollback
7160:
7161: 2009-05-05 misha
7162:
7163: * src/main/pa_exec.C: - little optimisation: somewhere length() was
7164: replaced by is_empty()
7165:
7166: * src/: include/pa_string.h, main/pa_charset.C: - little
7167: optimisation: somewhere length() was replaced by is_empty()
7168:
7169: * src/classes/table.C: - little optimisation: somewhere length()
7170: was replaced by is_empty()
7171:
7172: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
7173: classes/op.C, classes/table.C, main/pa_exception.C: - little
7174: optimisation: somewhere length() was replaced by is_empty()
7175:
7176: 2009-05-04 misha
7177:
7178: * src/: types/pa_method.h, types/pa_vstateless_class.C,
7179: types/pa_vstateless_class.h, main/execute.C,
7180: include/pa_request.h, classes/hash.C, classes/op.C,
7181: classes/table.C: - more optimisations were added: some operators
7182: don't switch write context anylonger
7183:
7184: 2009-05-01 misha
7185:
7186: * src/main/compile.y: - slightly more opcode optimisations for
7187: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
7188:
7189: * src/main/execute.C: - simplifying process for getters
7190:
7191: 2009-04-30 misha
7192:
7193: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
7194:
7195: * tests/results/199.processed: - test for checking $result into
7196: ^rem was added
7197:
7198: * tests/199.html: - test for checking $result into ^rem was added
7199:
7200: * tests/: 022.html, 096.html: - þsort after :list was asses (on
7201: some OS it returns list in different order)
7202:
7203: * src/: include/pa_array.h, include/pa_request.h,
7204: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
7205: changes in stack impl - get_element() optimisation: 3rd param
7206: removed - bugfix: problems with reading empty input param -
7207: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
7208:
7209: * tests/results/198.processed: - test for reading empty local var
7210: was added
7211:
7212: * tests/198.html: - test for reading empty local var was added
7213:
7214: 2009-04-29 misha
7215:
7216: * src/main/compile.y: - bugfix: couldn't compile because
7217: OP_VALUE__GET_ELEMENT should be unde #ifdef
7218:
7219: * src/: include/pa_array.h, include/pa_opcode.h,
7220: include/pa_request.h, main/compile.y, main/execute.C,
7221: main/pa_request.C, types/pa_vmethod_frame.C,
7222: types/pa_vmethod_frame.h: - we can work without opcode
7223: OP_STORE_PARAM, so it was removed
7224:
7225: 2009-04-28 misha
7226:
7227: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
7228: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
7229: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
7230: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
7231: 4.
7232: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
7233:
7234: * src/main/compile_tools.h: - new stuff for op-codes optimisation
7235:
7236: * src/: main/pa_string.C, classes/string.C: - !length() =>
7237: is_empty()
7238:
7239: 2009-04-27 misha
7240:
7241: * src/types/pa_vregex.h: - back explicit vars initialisation
7242:
7243: 2009-04-24 misha
7244:
7245: * src/classes/string.C: - ups. typo fixed
7246:
7247: * src/main/execute.C: - more replacements '*new VBool' to
7248: 'VBool::get' - checks for ^break[], ^continue[] and
7249: parser.interrupted were optimised
7250:
7251: * src/classes/string.C: - number of params.count() calls was
7252: slightly reduced
7253:
7254: 2009-04-23 misha
7255:
7256: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
7257: make it x64 friendly
7258:
7259: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
7260: parser is x64 friendly now
7261:
7262: 2009-04-22 misha
7263:
7264: * src/types/pa_vhashfile.C: - coder friendly exception about
7265: exceeding record size was added
7266:
7267: * src/classes/file.C: - use vregex object instead of direct calls
7268: methods from pcre lib
7269:
7270: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
7271: classes/string.C: - use vregex object instead of direct calls
7272: methods from pcre lib
7273:
7274: * src/: include/pa_common.h, main/pa_common.C: - method
7275: print_pcre_exec_error_text was moved to class vregex
7276:
7277: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
7278: was added
7279:
7280: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
7281: - class vregex was added
7282:
7283: 2009-04-21 misha
7284:
7285: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
7286:
7287: * src/: types/pa_junction.h, types/pa_value.C,
7288: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
7289: types/pa_wcontext.h, main/execute.C, classes/op.C: -
7290: junction-optimisation (destructors)
7291:
7292: * src/include/pa_array.h: - free under if now
7293:
7294: 2009-04-19 misha
7295:
7296: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
7297:
7298: 2009-04-18 misha
7299:
7300: * src/include/pa_version.h:
7301: :q :
7302:
7303: CV:
7304: ----------------------------------------------------------------------
7305:
7306: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
7307: refactoring
7308:
7309: * src/: include/pa_array.h, include/pa_hash.h,
7310: types/pa_vmethod_frame.h: - destructors under #ifdef now
7311:
7312: * src/include/pa_memory.h: - define for using destructors was added
7313:
7314: * src/: types/pa_method.h, types/pa_vstateless_class.C,
7315: main/execute.C: - some junctions will be cached now
7316:
7317: * src/include/pa_hash.h: - hash destructor frees pairs now
7318:
7319: * src/include/pa_array.h: - inline was added to destructor
7320:
7321: * src/types/pa_method.h: - comment was changed
7322:
7323: 2009-04-17 misha
7324:
7325: * src/: include/pa_array.h, include/pa_hash.h,
7326: types/pa_vmethod_frame.h: - destructors were added
7327:
7328: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
7329: renamed to always_use_result
7330:
7331: * src/main/: compile.y, compile_tools.h: - rollback changes in
7332: compiler: full backward compatibility is better
7333:
7334: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
7335: result in var's hash
7336:
7337: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
7338: optimisation in method_frame
7339:
7340: * src/include/pa_array.h: - optimisation in array (allocate
7341: elements only when needed)
7342:
7343: * src/types/pa_vresponse.C: - check for $response:headers field
7344: before looking at custom fields
7345:
7346: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
7347: not needed to check existance var with name 'result' in var's
7348: hash
7349:
7350: * src/main/compile.y: - compiler was changed: now it detects
7351: writings to $result and set flag writo_to_result in method
7352:
7353: * src/classes/string.C: - little optimisation: no needed to write
7354: number with lang
7355:
7356: * src/main/pa_charset.C: - methods readChar and skipChar which is
7357: used for read utf8-strings were renamed - is_escaped was renamed
7358: to isEscaped (to the same name convention)
7359:
7360: * src/: types/pa_method.h, main/compile_tools.h: - flag
7361: write_to_result added. compiler get this info from code.
7362:
7363: 2009-04-16 misha
7364:
7365: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
7366: String only before 1st write
7367:
7368: * src/include/pa_string.h: - not needed template removed
7369:
7370: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
7371: types/pa_vjunction.C, types/pa_vproperty.C,
7372: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
7373: main/pa_request.C, classes/bool.C, classes/double.C,
7374: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
7375: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
7376: bool objects)
7377:
7378: 2009-04-15 misha
7379:
7380: * src/lib/cord/cordxtra.c: - more optimisation
7381:
7382: * src/: include/pa_string.h, main/untaint.C: - String::append
7383: optimisation
7384:
7385: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
7386: then get and can sometime be used)
7387:
7388: * src/main/pa_string.C: - String::length optimisation
7389:
7390: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
7391: these methods read different strings
7392:
7393: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
7394: fresult_initial_void removed + some optimisation - if $result
7395: defined we don't write to context anymore
7396:
7397: * src/main/pa_charset.C: - readChar => skipChar (in this place we
7398: need just skip char)
7399:
7400: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7401: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
7402: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
7403:
7404: * src/types/pa_vvoid.h: - added get() method for retreave one
7405: instance
7406:
7407: 2009-04-11 misha
7408:
7409: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
7410:
7411: * tests/197.html: - test for parser://test in xml was added
7412:
7413: * src/classes/string.C: - small optimisation
7414:
7415: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
7416: optimisation
7417:
7418: 2009-04-10 misha
7419:
7420: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
7421: to pcre-7.8
7422:
7423: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
7424:
7425: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
7426: added
7427:
7428: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
7429: $request:CLASS_NAME were added
7430:
7431: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
7432: were added
7433:
7434: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
7435: $env:CLASS_NAME were added
7436:
7437: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
7438: '@todo' now
7439:
7440: * src/targets/cgi/parser3.C: - size_t -> int for calming down
7441: compirer
7442:
7443: * src/main/pa_string.C: - little code cleanup
7444:
7445: * src/main/pa_common.C: - describe one more UTF-8 related error
7446: during PCRE compile/execute
7447:
7448: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
7449: normalizing todo-comments: '@todo' now
7450:
7451: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
7452:
7453: * src/main/pa_charset.C: - type changed for making compiler happy
7454:
7455: 2009-03-10 misha
7456:
7457: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
7458: in main()
7459:
7460: 2009-02-01 misha
7461:
7462: * src/main/pa_http.C: - bugfix: double CRLF before the end of
7463: boundary
7464:
7465: 2009-01-25 misha
7466:
7467: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
7468:
7469: * src/classes/file.C: - more changes for parsing different number
7470: of params for file::load
7471:
7472: * tests/193.html: - tests for exception while base64-decode binary
7473: to string was added
7474:
7475: * tests/192.html: - tests for file::load with different number of
7476: options
7477:
7478: * src/classes/math.C: - ups. forgot '+1'
7479:
7480: * src/: classes/table.C, classes/file.C, include/pa_common.h,
7481: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
7482: main/pa_http.C: - ^file::load[...;http://...;] now can post files
7483: (new option $.encode[multipart-form/data] should be specified) -
7484: $.method[] option for file::load now is not case-sensitive
7485:
7486: * src/: include/pa_string.h, main/untaint.C: - for file post the
7487: new taint language L_FILE_POST was added
7488:
7489: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
7490: main/main.vcproj, classes/math.C, include/Makefile.am: - some
7491: stuff was moved to separate files
7492:
7493: 2009-01-23 misha
7494:
7495: * src/classes/math.C: - little optimisation in ^math:sha1[] -
7496: spaces to tabs were converted
7497:
7498: 2009-01-12 misha
7499:
7500: * src/main/pa_http.C: - value of $.method[] option force uppercased
7501: now
7502:
7503: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
7504: types/pa_vform.C, types/pa_vmail.C: - some constants changed
7505: their names
7506:
7507: * src/main/pa_common.C: - changes in formating
7508:
7509: * src/: classes/file.C, main/pa_http.C: - some constants changed
7510: their names
7511:
7512: * src/include/pa_http.h: - some spaces were converted to tabs
7513:
7514: * src/include/pa_common.h: - some constants changed their names
7515:
7516: * src/classes/file.C: - fixed 4-th paramether for file::load -
7517: little code rewriting
7518:
7519: * src/types/pa_vfile.C: - little code rewriting
7520:
7521: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
7522: types/pa_value.h: - some formating changes
7523:
7524: * src/include/pa_common.h: - some formating spaces transformed to
7525: tabs
7526:
7527: * src/classes/string.C: - exception while base64-decode binary to a
7528: string
7529:
7530: 2009-01-11 misha
7531:
7532: * configure.in: - version changed to 3.3.1b
7533:
7534: 2008-09-05 misha
7535:
7536: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
7537: release_3_3_0 on 2008-09-05 10:59:35 +0000
7538:
7539: 2008-09-04 misha
7540:
7541: * tests/: 130.html, 131.html: - these exceptions not typeless
7542: anymore
7543:
7544: * src/classes/op.C: - exception with 'invalid taint language' not
7545: typeless anylonger
7546:
7547: * src/classes/image.C: - some exceptions while operations with
7548: image not typeless anymore
7549:
7550: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
7551: main/pa_exec.C, main/pa_http.C: - some exceptions while
7552: operations with files not typeless anymore
7553:
7554: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
7555: types/pa_vdate.h: - exceptions while checking date range not
7556: typeless anymore
7557:
7558: * src/include/pa_exception.h: - exception type string for invalid
7559: date range was added
7560:
7561: 2008-09-03 misha
7562:
7563: * src/: classes/file.C, main/pa_string.C: - exception while pce
7564: operations not typeless anymore
7565:
7566: * src/include/pa_exception.h: - exception type for pce operations
7567: was added
7568:
7569: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
7570: and .CLASS_NAME insite classes
7571:
7572: * src/classes/table.C: - don't save table header whiile
7573: ^table.save[append;filename] if file exists
7574:
7575: 2008-09-02 misha
7576:
7577: * src/main/compile.y, src/main/compile_tools.h,
7578: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
7579: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
7580: renamed to partial and it login changed: we must mark class as
7581: partial for allow their modifications in future.
7582:
7583: 2008-08-29 misha
7584:
7585: * tests/results/022.processed: - testing taint[regex] in mask for
7586: file:list
7587:
7588: * tests/022.html: - testing taint[regex] in mask for file:list
7589:
7590: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
7591: for file:list was added
7592:
7593: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
7594: file:list
7595:
7596: 2008-08-26 misha
7597:
7598: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
7599: last derived object
7600:
7601: * src/classes/image.C: - many strings "image.format" replaced by
7602: IMAGE_FORMAT constant string - handle GPS info while parse exif -
7603: understand some more exif tags
7604:
7605: * src/include/pa_exception.h: - string "image.format" was added
7606:
7607: 2008-08-21 misha
7608:
7609: * src/: main/pa_string.C, classes/file.C: - use method for print
7610: pcre_exec text error
7611:
7612: * src/main/pa_common.C: - method for print pcre_exec text error was
7613: added
7614:
7615: * src/include/pa_common.h: - method declaration for print pcre_exec
7616: text error was added
7617:
7618: 2008-08-19 misha
7619:
7620: * src/main/execute.C: - bugfix: opcodes must be in separate
7621: namespace while debug execution as well
7622:
7623: * tests/: 015.html, results/015.processed: - test for escaping some
7624: parser chars was added
7625:
7626: 2008-08-18 misha
7627:
7628: * tests/: 190.html, 190.p, results/190.processed: - test for
7629: $caller.self.field + default getter in one class was added
7630:
7631: * tests/: 189.html, results/189.processed: - test for
7632: ^date::create[date object]
7633:
7634: * tests/: 188.html, results/188.processed: - tests for match with
7635: UTF-8 strings
7636:
7637: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
7638: ^string.match[]
7639:
7640: * ChangeLog: - parser 3.3.0 beta13
7641:
7642: 2008-08-15 misha
7643:
1.116 moko 7644: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
7645: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
7646: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
7647: dftables.c: - old PCRE files removed
1.95 moko 7648:
7649: * src/lib/pcre/config.h: - configuration for PCRE library
7650:
7651: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
7652: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
7653:
7654: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
7655: library and set flag UTF8 if $request:charset is UTF-8
7656:
7657: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
7658: include/pa_config_fixed.h: - moved to new PCRE library
7659:
7660: * src/: main/main.vcproj, types/types.vcproj,
7661: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
7662: win32\pcre instead of parser3\src\lib\pcre
7663:
7664: * src/: include/pa_opcode.h, include/pa_operation.h,
7665: main/compile.C, main/compile.y, main/compile_tools.C,
7666: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
7667: opcodes were moved to separate namespace
7668:
7669: 2008-08-14 misha
7670:
7671: * src/types/pa_vstateless_class.C: - newline at the end missed
7672:
7673: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
7674: tainting
7675:
7676: 2008-08-11 misha
7677:
7678: * tests/: 187.html, 187.p, results/187.processed: - tests for
7679: $caller.self, $caller.self.field and $caller.self.field[value]
7680: were added
7681:
7682: * src/types/pa_vmethod_frame.h: - still need to check 'self'
7683: runtime as well (for $caller.self)
7684:
7685: 2008-07-25 misha
7686:
7687: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
7688: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
7689: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
7690: tests with international characters
7691:
7692: 2008-07-23 misha
7693:
7694: * src/main/pa_http.C: - escape $cookies as %uXXXX while
7695: file::load[...;http://
7696:
7697: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
7698: now everywhere in separate namespace
7699:
7700: * src/types/pa_vmethod_frame.h: - looking for caller before looking
7701: for vars
7702:
7703: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
7704: can be escaped by '^'
7705:
7706: 2008-07-22 misha
7707:
7708: * src/classes/string.C, tests/186.html: - names changes:
7709: escape=>js-escape, unescape=>js-unescape
7710:
7711: 2008-07-21 misha
7712:
7713: * tests/results/186.processed: - test for string escape/unescape
7714:
7715: * tests/186.html: - test for string escape/unescape
7716:
7717: * src/classes/string.C: - string has escape and unescape methods
7718: now
7719:
7720: * src/: include/pa_string.h, main/pa_string.C: - escape method was
7721: added
7722:
7723: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
7724: method-layers added (with different params)
7725:
7726: 2008-07-18 misha
7727:
7728: * tests/results/185.processed: - test for ^str.pos[substr](offset)
7729: was added
7730:
7731: * tests/185.html: - test for ^str.pos[sub](offset) added
7732:
7733: * src/classes/string.C, src/classes/void.C, operators.txt: -
7734: ^string.pos[substr](offset) -- 2nd param accepted now
7735:
7736: * src/main/pa_string.C: - .pos works fine with offset for utf-8
7737: strings
7738:
7739: 2008-07-17 misha
7740:
7741: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
7742: helper length added for mid for small optimisation
7743:
7744: 2008-07-16 misha
7745:
7746: * tests/: 185.html, results/185.processed: - tests for
7747: length/left/right/mid/pos with utf-8 strings
7748:
7749: * src/classes/string.C: - left/right/mid/length/pos works fine for
7750: utf-8 strings
7751:
7752: * src/main/untaint.C: - comments removed
7753:
7754: * src/: include/pa_string.h, main/pa_string.C,
7755: include/pa_charset.h, main/pa_charset.C: - methods for working
7756: with pos/mid for strings in utf-8 were added
7757:
7758: 2008-07-15 misha
7759:
7760: * tests/: 184.html, results/184.processed: - test for case body as
7761: expression: $var(^switch(1){^case(1)(true)..})
7762:
7763: * src/classes/op.C: - case body can be expression now:
7764: $var(^switch(1){^case(1)(true)..})
7765:
7766: * tests/: results/183.processed, 183.html: - added test for testing
7767: new cookie encoding (%uXXXX)
7768:
7769: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
7770: decoding for backward compatibility they decoded from %XX in
7771: request:charset too
7772:
7773: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
7774: - cookie class now decode cookies before first access after last
7775: request:charset changing (as form class).
7776:
7777: * src/main/pa_charset.C: - added method escape for escaping cookies
7778: as %uXXXX - before transcode calculate required space for dest
7779: string. it reduce mem usage for transcode
7780:
7781: * src/include/pa_charset.h: - added method escape for escaping
7782: cookies as %uXXXX
7783:
7784: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
7785: was added. will used for escaping cookies as %uXXXX
7786:
7787: * src/include/pa_common.h: - escape method has new option for skip
7788: converting '+' to a space char
7789:
7790: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
7791: transcode - escape method has new option for skip converting '+'
7792: to a space char
7793:
7794: 2008-07-08 misha
7795:
7796: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
7797: (no UE if more then 1 case matches anylonger) - optimization:
7798: doing searching.as_string() || searching.as_double() only once
7799:
7800: 2008-07-04 misha
7801:
7802: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
7803: now ^date::create[date object] works
7804:
7805: * src/classes/string.C: - left and right added as aliases for start
7806: and end in ^string.trim[]
7807:
7808: 2008-07-03 misha
7809:
7810: * src/classes/file.C: - allow $.limit for file::sql as well
7811:
7812: * src/classes/file.C: - allow $.offset option for file::sql - force
7813: send limit=1 to query for use sql specifics authomatically
7814:
7815: * src/classes/: hash.C, string.C, table.C: - don't throw exception
7816: if $.limit value if empty. autoconvert it as everywere
7817:
7818: 2008-07-02 misha
7819:
7820: * configure.in: - time to change version number to 3.3.0 %-)
7821:
7822: * src/include/pa_version.h: - time to change version number to
7823: 3.3.0 %-)
7824:
7825: 2008-06-26 misha
7826:
7827: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
7828: $.limit(0) fixes
7829:
7830: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
7831: - $.limit(0) fixes
7832:
7833: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
7834: new API)
7835:
7836: * src/: include/pa_sql_driver_manager.h,
7837: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
7838: classes/op.C: - document_root added
7839:
7840: * src/main/compile.tab.C: - error message was changed
7841:
7842: 2008-06-25 misha
7843:
7844: * src/main/compile.y: - error message was changed
7845:
7846: 2008-06-24 misha
7847:
7848: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
7849:
7850: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
7851: tests for @OPTIONS\nappend
7852:
7853: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
7854:
7855: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
7856:
7857: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
7858:
7859: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
7860: compile.y
7861:
7862: 2008-06-17 misha
7863:
7864: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
7865: compilation: ^if(default){true. it's incorrect. must be
7866: exception}
7867:
7868: 2008-06-16 misha
7869:
7870: * tests/: 181.ent, 181.html, results/181.processed: - test for
7871: checking external reference loading with 'http://localhost'
7872: prefix while creating xdoc
7873:
7874: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
7875: ^math:long2ip[] and ^math:ip2long[]
7876:
7877: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
7878: added which use scalar stateless class method when user object
7879: used in scalar context - use get_scalar_value when user object
7880: requested in scalar context
7881:
7882: * src/main/pa_common.C: - size must be int but not size_t or we
7883: can't compare with 0 sprintf result
7884:
7885: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7886: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
7887: with internal switch between local/global vars
7888:
7889: * src/types/pa_vclass.C: - register scalar if method @GET[] was
7890: specified
7891:
7892: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
7893: pa_vstateless_object.h: - stateless class and object now has
7894: private scalar field and getter/setter for working with it
7895:
7896: * src/classes/math.C: - methods math:long2ip & math:ip2long were
7897: moved to inet static class
7898:
7899: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
7900: class added (^inet:aton[IP], ^inet:ntoa(number))
7901:
7902: * tests/: 180.html, results/180.processed: - tests for
7903: ^math:long2ip(long) and ^math:ip2long[IP]
7904:
7905: * src/classes/math.C: - ^math:ip2long[IP] added
7906:
7907: 2008-06-11 misha
7908:
7909: * src/main/pa_xml_io.C: - use file_read_text again because of we
7910: need cut BOM code and remove DOS newline chars. but don't
7911: transcode it anyway.
7912:
7913: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
7914: main/pa_http.C: - option for disable transcoding while file_read
7915: and file_read_text added
7916:
7917: 2008-06-10 misha
7918:
7919: * tests/: 179.html, 179.p, results/179.processed: - test for many
7920: classes in 1 file
7921:
7922: * src/main/: compile.C, compile_tools.h: - compile return list of
7923: classes now.
7924:
7925: * src/main/: compile.y, compile.tab.C: - compile return list of
7926: classes now. internals.
7927:
7928: * src/main/pa_request.C: - compile return list of classes now. try
7929: call @conf and @auto for each returned class
7930:
7931: * src/include/pa_request.h: - compile return list of classes now
7932:
7933: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
7934: return list of classes when compile buf)
7935:
7936: 2008-06-07 misha
7937:
7938: * src/main/pa_request.C: - constructing VRequest object with 3rd
7939: param -- form
7940:
7941: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
7942: 3rd param: form. needed for get post_charset
7943:
7944: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
7945: added
7946:
7947: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
7948: types/pa_vform.C, types/pa_vform.h: - some polish
7949:
7950: 2008-06-06 misha
7951:
7952: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
7953: charset and decode chars from it but not from response:charset
7954:
7955: * src/main/pa_http.C: - detect_charset moved out of here
7956:
7957: * src/: include/pa_common.h, main/pa_common.C: - more helpers
7958: methods moved here - unescape_chars accepn one charset now
7959:
7960: * src/main/pa_http.C: - new constants used - don't allow
7961: $.content-type in ^file::load[;http://;$.method[POST]] - add
7962: charset info while ^file::load[;http://;$.method[POST]] - option
7963: $.omit-post-charset(true) added to ^file::load[;http://] for
7964: disabling charset during post
7965:
7966: * src/types/pa_vform.C: - new constants used
7967:
7968: * src/include/pa_common.h: - some constants were added
7969:
7970: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
7971: instead of StrEqNc
7972:
7973: * src/main/pa_common.C: - new method for caseless search
7974: c-substring in c-string - use isxdigit instead of is_hex_digit
7975:
7976: * src/include/pa_common.h: - new method for caseless search
7977: c-substring in c-string
7978:
7979: 2008-06-05 misha
7980:
7981: * tests/results/178.processed: - test for testing default getter
7982:
7983: * tests/178.html: - test for testing default getter
7984:
7985: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
7986: for test for testing default getter
7987:
7988: * src/main/execute.C: - default getter soul
7989:
7990: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
7991: requested objects' field not found
7992:
7993: * src/types/pa_vclass.C: - register default getter if defined - get
7994: default getter if requested field not found
7995:
7996: * src/types/pa_vstateless_object.h: - method get_default_getter was
7997: added
7998:
7999: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
8000: pointer to default getter and methods for get/set it were added
8001:
8002: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
8003: auto_name field (for default getter)
8004:
8005: 2008-06-04 misha
8006:
8007: * src/main/pa_xml_io.C: - load external xml in binary mode (no
8008: transcoding, no cutting BOM code, no fixing line breaks) and get
8009: it to libxml "as is"
8010:
8011: 2008-06-03 misha
8012:
8013: * src/main/pa_common.C: - use store_Char instead of
8014: transcodeCharFromUTF8
8015:
8016: * src/: include/pa_charset.h, main/pa_charset.C: - method
8017: store_Char added, transcodeCharFromUTF8 -- removed
8018:
8019: 2008-06-02 misha
8020:
8021: * tests/: results/177.processed, 177.html: - test for checking
8022: .[acm]date after local ^file::load[] was added
8023:
8024: * tests/: results/176.processed, 176.html: - test for checking
8025: @OPTION\locals + @method[vars][locals] added
8026:
8027: * tests/results/auto.p: - CLASS_PATH specified for checking use
8028:
8029: 2008-05-30 misha
8030:
8031: * src/main/: compile.y, compile.tab.C: - changes in compiler:
8032: @OPTION\nlocals + @method[vars][;locals;] were added
8033:
8034: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
8035: moved to separate method op_code - switch from VMethodFrame to
8036: VMethodFrameGlobal + VMethodFrameLocal
8037:
8038: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
8039: was moved to separate method op_code
8040:
8041: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
8042: VMethodFrame now
8043:
8044: * src/types/pa_vstateless_class.h: - stateless class have bool flag
8045: all_vars_local as well
8046:
8047: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
8048: pa_vmethod_frame_local.h, Makefile.am: - who children for
8049: VMethodFrame were added: one (global) works as VMethodFrame
8050: before and second (local) write all vars in self vars scope
8051:
8052: * src/types/pa_method.h: - method has bool flag all_vars_local now
8053:
8054: 2008-05-29 misha
8055:
8056: * tests/: 129.html, results/129.processed: - more tests for
8057: ^table.hash[]
8058:
8059: * src/classes/hash.C: - ^hash::sql has a new option:
8060: $.type[hash|string|table] as ^table.hash[] one.
8061:
8062: * src/classes/op.C: - ^try has 3rd param now: finally code which
8063: executed anyway after try or catch section
8064:
8065: 2008-05-27 misha
8066:
8067: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
8068: must not fail if $.distinct(1) wasn't specified
8069:
8070: 2008-05-26 misha
8071:
8072: * src/classes/op.C: - allow ^throw[my type]
8073:
8074: 2008-05-22 misha
8075:
8076: * configure.in, configure: - version number updated to 3.2.4b
8077:
8078: * src/classes/: op.C, string.C: - trim format string before
8079: eval/format
8080:
8081: * tests/: results/175.processed, 175.html: - more tests for
8082: different format strings in .format[]
8083:
8084: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
8085: as well (not only %XX)
8086:
8087: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
8088: charset specified - checks for format before print number
8089: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
8090: (instead of tabs) removed
8091:
8092: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
8093: charset specified
8094:
8095: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
8096: char in requested charset from utf code was added
8097:
8098: 2008-05-19 misha
8099:
8100: * tests/: 174.html, results/174.processed: - test for
8101: ^hashfile.cleanup[] added
8102:
8103: * src/classes/hashfile.C: - optimization: don't create any key or
8104: value variable if it's name weren't specified
8105: (^hf.foreach[;v]{...})
8106:
8107: 2008-05-16 misha
8108:
8109: * src/classes/hash.C: - optimization: don't create any key variable
8110: if variable name wasn't specified (^h.foreach[;v]{...})
8111:
8112: 2008-05-15 misha
8113:
8114: * src/classes/op.C: - small changes
8115:
8116: * src/classes/hashfile.C: - code reformating (as hash.foreach)
8117:
8118: * src/classes/hash.C: - calculate var_context once before foreach
8119:
8120: 2008-05-14 misha
8121:
8122: * src/classes/hashfile.C: - incorrect vars context calculation for
8123: ^hashfile.foreach[;]{} fixed
8124:
8125: * src/classes/: hash.C, table.C: - little optimisation
8126:
8127: * src/classes/file.C: - bugfix: double absolute path while loading
8128: file
8129:
8130: * tests/: 174.html, results/174.processed: - tests for hashfile
8131: were added
8132:
8133: * buildall-with-xml: - moving to libxslt 1.1.24
8134:
8135: 2008-04-30 misha
8136:
8137: * src/classes/file.C: - stat file while loading (local only) so
8138: .adate, .mdate and .cdate available without additional ::stat
8139:
8140: 2008-04-28 misha
8141:
8142: * src/classes/file.C: - $.name and $.content-type available for
8143: stated file
8144:
8145: 2008-04-14 misha
8146:
8147: * src/targets/cgi/parser3.C: - new year in copyright %-)
8148:
8149: * src/include/pa_version.h: - new version number in head
8150:
8151: 2008-04-10 misha
8152:
8153: * tests/: 080.html, results/080.processed: - cut '0' from
8154: exponential part because of on diff OS it differ (20 or 020 for
8155: ex)
8156:
8157: * tests/: 119.html, results/119.processed: - check for encoding
8158: while creating xdoc
8159:
8160: 2008-04-09 misha
8161:
8162: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
8163:
8164: * src/main/pa_common.C: - comment added
8165:
8166: * src/classes/date.C: - little refactoring
8167:
8168: 2008-04-07 misha
8169:
8170: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
8171: style of ^table.save[]: prepare one big string and sabe it at
8172: once. it's safe on freebsd 4.x but use much more memory.
8173:
8174: * buildall-with-xml, buildall-without-xml: - option
8175: --disable-stringstream added (under comment. use it on freebsd
8176: 4.x)
8177:
8178: 2008-02-22 misha
8179:
8180: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
8181: specified together in file::load[;http] - get back transcoding
8182: $.body[] in file::load[;http]
8183:
8184: 2008-02-21 misha
8185:
8186: * src/classes/date.C: - ^date.gmt-string[] was added
8187:
8188: * src/types/pa_value.C: - method for output date in RFC 822 format
8189: moved to pa_common.h
8190:
8191: * src/include/pa_common.h: - method for output date in RFC 822
8192: format moved here from pa_value.C
8193:
8194: * src/types/pa_vmail.C: - fixed core in sending mail with
8195: attachment in simple mode ($.file[file here]) introduced in 3.2.2
8196:
8197: 2008-02-20 misha
8198:
8199: * src/main/pa_http.C: - transcode $.headers before escaping into
8200: specified charset while ^file::load[...;http://...] (L_URI
8201: instead of L_HTTP_HEADER) - $.cookies param available in
8202: ^file::load[;http://...] now (but we don't parse set-cookies from
8203: response yet) (cookies not transcoded as common $cookies)
8204:
8205: 2008-02-19 misha
8206:
8207: * src/main/pa_request.C: - rollback: we mustn't force taint
8208: $response:field values because in this case
8209: $response:locateion[http://...] don't works.
8210:
8211: 2008-02-15 misha
8212:
8213: * src/classes/op.C: - little refactoring
8214:
8215: * src/main/pa_http.C: - taint names of $.headers for load[;http
8216:
8217: * src/main/pa_request.C: - force taint values of $response:field
8218:
8219: 2008-02-14 misha
8220:
8221: * src/main/pa_request.C: - $response:field transcoded to
8222: $response:charset before escaping now
8223:
8224: * src/main/pa_http.C: - some outdated comments removed
8225:
8226: * src/classes/date.C: - lastdat -> last-day
8227:
8228: * src/classes/date.C: - ^date:lastday(year;month) and
8229: ^date.lastday[] were added - little code refactoring - comments
8230: changes
8231:
8232: * tests/: 159.html, results/159.processed: - test for number of
8233: days in February
8234:
8235: * src/types/pa_value.C: - fixes in code formatting
8236:
8237: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
8238: and comments
8239:
8240: 2008-02-13 misha
8241:
8242: * src/main/pa_common.C: - bugfix for february at leap year
8243:
8244: 2008-01-28 misha
8245:
8246: * tests/: 160.html, results/160.processed: - more test for cache
8247: added
8248:
8249: * src/classes/op.C: - bugfix: cache body executed twice if contains
8250: unhandled exception
8251:
8252: 2008-01-25 misha
8253:
8254: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
8255: bug when hashfile became inavailable after memory:compact)
8256:
8257: * src/lib/sdbm/apr_strings.C: - +arp_malloc
8258:
8259: 2008-01-22 misha
8260:
8261: * src/classes/table.C: - little refactiring and exception texts
8262: changes in method ^table.hash[]
8263:
8264: * src/types/pa_vcookie.C: - link to cookie specification changed
8265:
8266: 2008-01-21 misha
8267:
8268: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
8269: file::exec/cgi
8270:
8271: * src/classes/file.C: - bugfix: core while processing headers if
8272: executed cgi script don't return content
8273:
8274: 2008-01-18 misha
8275:
8276: * buildall-with-xml: - move to libxml2 version 2.6.31
8277:
8278: * src/include/pa_version.h, configure.in: - version number updated
8279: to '3.2.3b'
8280:
8281: 2007-12-28 misha
8282:
8283: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
8284: hash.contains
8285:
8286: 2007-12-27 misha
8287:
8288: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
8289: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
8290: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
8291: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
8292: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
8293: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
8294: src/targets/cgi/parser3.vcproj,
8295: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
8296: back to VS2003 because of Apache 1.3 module can't work if it was
8297: built in VS 2005. with cgi all file so VS2003 project files can
8298: be easy converted to the new format.
8299:
8300: 2007-12-04 misha
8301:
8302: * src/types/pa_vcode_frame.h: - changes in comment
8303:
8304: 2007-11-29 misha
8305:
8306: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
8307: intercept strings any longer
8308:
8309: * tests/: 173.html, results/173.processed: - tests for
8310: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
8311: but not in main code frame
8312:
8313: * tests/: 172.html, results/172.processed: - more tests for pass
8314: objects from code frames
8315:
8316: 2007-11-27 misha
8317:
8318: * tests/: 152.html, results/152.processed: - tests for converting
8319: strings 'true'/'false' to bool were added
8320:
8321: * tests/152.html: - added checks for converting strings
8322: 'true'/'false' to bool
8323:
8324: * src/classes/string.C: - ^srting.bool[] now can convert to bool
8325: not only strings with numbers but with values 'true'/'false' as
8326: well
8327:
8328: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
8329: for parser3.log increased
8330:
8331: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
8332:
8333: * src/include/pa_common.h: - remove_crlf return cstring size now
8334:
8335: * src/include/pa_types.h: - constant with buffer size for
8336: parser3.log added
8337:
8338: 2007-11-16 misha
8339:
8340: * tests/cat.sh: - script for tests for file::exec/cgi
8341:
8342: * tests/171.html: - tests for file::exec/cgi
8343:
8344: * tests/results/171.processed: - tests results for file::exec/cgi
8345:
8346: 2007-11-15 misha
8347:
8348: * src/main/pa_exec.C: - fixed incorrect exec code for unix
8349:
8350: * src/classes/file.C: - .body must be set before analyzing cgi
8351: headers
8352:
8353: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
8354: only if exec/cgi return anything.
8355:
8356: 2007-11-14 misha
8357:
8358: * operators.txt: - info about new text|binary option for
8359: file::exec/cgi was added
8360:
8361: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
8362: ^file:exec[[text|binary];script;...]
8363:
8364: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
8365: classes/string.C, classes/table.C: - more text strings moved to
8366: the one place
8367:
8368: 2007-11-09 misha
8369:
8370: * src/types/pa_vrequest.C: - $request:argv must be taint
8371:
8372: * ChangeLog: - $request:argv [patch from Sumo]
8373:
8374: * operators.txt: - $request:argv
8375:
8376: * src/: include/pa_request_info.h, types/pa_vrequest.C,
8377: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
8378:
8379: 2007-10-25 misha
8380:
8381: * buildall-with-xml, buildall-without-xml: - options preparations
8382: for ./configure rewrited
8383:
8384: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
8385: error occure in unhandled_exception finally fixed
8386:
8387: 2007-10-23 misha
8388:
8389: * tests/: 170.html, results/170.processed: - test for
8390: @method[][result]
8391:
8392: * operators.txt: - added info about node.prefix and
8393: node.namespaceURI
8394:
8395: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
8396:
8397: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
8398: added for node and attribute
8399:
8400: 2007-10-22 misha
8401:
8402: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
8403:
8404: * src/main/pa_request.C: - added const content-transfer-encoding
8405:
8406: * src/include/pa_request.h: - added const content-transfer-encoding
8407: - ups. constants must be in lowercase (for search)
8408:
8409: * src/types/pa_vmail.C: - more constants used -
8410: content-transfer-encoding: 8bit added
8411:
8412: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
8413:
8414: * src/include/pa_request.h: - more constants
8415:
8416: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
8417: ommit anymore if $.content-disposition was specified - little
8418: refactoring
8419:
8420: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
8421:
8422: 2007-10-17 misha
8423:
8424: * operators.txt: - info about
8425: table::create[nameless]{data}[>options<] was added
8426:
8427: * src/main/: compile.tab.C, compile.y: - if error occure while
8428: compile method don't put this method in methods table anymore.
8429: in other case the parser coredumped if @unhandled_exception
8430: method can't be compiled because of parser.compile error.
8431:
8432: * src/main/execute.C: - little code reformating
8433:
8434: * src/main/pa_request.C: - little code reformating - comment
8435: changed
8436:
8437: 2007-10-16 misha
8438:
8439: * tests/: 035.html, results/035.processed: - tests
8440: table::create[]{}[options] added
8441:
8442: * src/classes/table.C: - table::create[]{} now accept 3rd param:
8443: options (only $.seperator[] yet)
8444:
8445: 2007-10-10 misha
8446:
8447: * src/classes/table.C: - some contstants moved to pa_common.h -
8448: some code changes
8449:
8450: 2007-10-02 misha
8451:
8452: * src/main/pa_uue.C: - memory usage during uuencode reduced more
8453: then three time as much. but base64 encoding method still use
8454: less memory anyway.
8455:
8456: 2007-09-17 misha
8457:
8458: * operators.txt: - added info about $cookie:fields
8459:
8460: * src/types/pa_vcookie.C: - $cookie:fields available now
8461:
8462: * src/classes/hash.C: - some stuff for use with .for_each moved to
8463: common
8464:
8465: * src/include/pa_common.h: - some stuff for use with .for_each
8466: moved here
8467:
8468: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
8469:
8470: 2007-09-14 misha
8471:
8472: * buildall-with-xml: - new xml libs again =)
8473:
8474: 2007-08-28 misha
8475:
8476: * operators.txt: - texts about ^table.columns[[column name]] and
8477: ^string.split[...][v][column name] were added
8478:
8479: * tests/: 168.html, 169.html, results/168.processed,
8480: results/169.processed: - tests for ^table.columns[[column name]]
8481: and ^string.split[...][v][column name] were added
8482:
8483: * src/classes/table.C: - new option ^table.columns[[column name]]
8484: was added
8485:
8486: * src/classes/string.C: - new option ^string.split[...;v;[column
8487: name]]
8488:
8489: * src/include/pa_exception.h: - error text message for
8490: ^hash._keys[], ^table.columns[] and ^string.split[]
8491:
8492: 2007-08-27 misha
8493:
8494: * src/main/untaint.C: - try to fix coredump on unix if print to
8495: body ^taint[sql][something] outside of connect
8496:
8497: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
8498: outside of connect
8499:
8500: * buildall-with-xml, buildall-without-xml: - strip parser3 was
8501: added (commented by default)
8502:
8503: 2007-08-20 misha
8504:
8505: * operators.txt: - comment about new method ^node.hasAttributes[]
8506: was added
8507:
8508: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
8509: duplicated exception text strings were removed
8510:
8511: * src/include/pa_exception.h: - more exception text strings moved
8512: here
8513:
8514: * src/classes/table.C: - some duplicate exceptions' text strings
8515: removed
8516:
8517: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
8518: xdoc.C, xnode.C: - some duplicate exceptions' text strings
8519: removed
8520:
8521: * src/include/pa_exception.h: - some exception text strings movet
8522: to pa_exception
8523:
8524: * tests/: 149.html, results/149.processed: - test for
8525: ^xnode.hasAttributes[] was added - some code changes
8526:
8527: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
8528: added
8529:
8530: 2007-08-17 misha
8531:
8532: * tests/: results/006.processed, results/059.processed, 006.html,
8533: 059.html: - more tests for match
8534:
8535: * tests/: 129.html, results/129.processed: - tests for
8536: ^table.hash[...][$.type[string|hash|table]] added
8537:
8538: * src/targets/cgi/parser3.C: - little syntax changes
8539:
8540: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
8541: syntax changes
8542:
8543: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
8544: messages in parser3.log switched off by default. If someone
8545: really still need it: use $SIGPIPE(1)
8546:
8547: 2007-08-08 misha
8548:
8549: * buildall-with-xml, buildall-without-xml: - remove libs source
8550: files by default since now
8551:
8552: 2007-08-07 misha
8553:
8554: * buildall-without-xml: - some option syntax changes
8555:
8556: * buildall-with-xml: - compile libxml2 without http support - some
8557: option syntax changes
8558:
8559: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
8560:
8561: 2007-08-06 misha
8562:
8563: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
8564:
8565: * tests/: 160.html, results/160.processed: - cache test was
8566: rewrited
8567:
8568: 2007-07-06 misha
8569:
8570: * tests/: 153.html, results/153.processed: - added test for
8571: ^math:sha1[string]
8572:
8573: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
8574: transcoded
8575:
8576: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
8577: were added
8578:
8579: 2007-06-28 misha
8580:
8581: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
8582: some incorrect chars
8583:
8584: 2007-06-19 misha
8585:
8586: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
8587: were moved on top because of gcc 4 had a problems during
8588: building.
8589:
8590: 2007-06-18 misha
8591:
8592: * tests/results/019.processed: - new image commited
8593:
8594: 2007-06-09 misha
8595:
8596: * src/classes/: op.C, table.C: - in while and table.select method
8597: as_expression used now
8598:
8599: * src/types/pa_vmethod_frame.h: - method as_expression was added
8600:
8601: 2007-06-08 misha
8602:
8603: * tests/: 166.html, results/166.processed: - test for
8604: ^match[...][n]
8605:
8606: * tests/: 165.html, results/165.processed: - tests for loops
8607:
8608: * src/lib/cord/include/private/cord_pos.h: - back to origin value
8609: because of no speed/memory optimisation but some proglems with
8610: long cycles occure
8611:
8612: 2007-06-06 misha
8613:
8614: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
8615: ^table.select(true) and ^table.select(1) didn't works because of
8616: awaiting junction-param only. fixed.
8617:
8618: 2007-05-24 misha
8619:
8620: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
8621: with 0.5 secs interval
8622:
8623: * src/classes/op.C: - cache was rewrited. I hope it works with
8624: locking system now on unix
8625:
8626: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
8627: system locks which wait till other threads release it but try get
8628: lock, if fail wait 1 sec and make 10 attempts.
8629:
8630: * src/include/pa_os.h: - consts for blocking locks + some comments
8631: were added
8632:
8633: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
8634: opening files
8635:
8636: * src/classes/table.C: - changes in includes. if unclude <sstream>
8637: after our classes on unix it can't be build
8638:
8639: * src/types/pa_vhashfile.C: - not needed code removed
8640:
8641: 2007-05-23 misha
8642:
8643: * src/: classes/file.C, classes/op.C, main/pa_common.C,
8644: include/pa_common.h: - cosmetic changes
8645:
8646: 2007-05-18 misha
8647:
8648: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
8649: often. it's give some speed increasing
8650:
8651: * tests/results/160.processed: - returned time corrected
8652:
8653: * tests/160.html: - time increased because on unix 1 mean nothing
8654: :(
8655:
8656: * operators.txt: - added info about ^hash.contain[key]
8657:
8658: * src/classes/hash.C: - added ^hash.contain[key]
8659:
8660: * src/include/pa_hash.h: - added method for checking key exists in
8661: hash
8662:
8663: 2007-05-07 misha
8664:
8665: * src/include/pa_string.h: - was compilation error during build on
8666: freebsd4
8667:
8668: 2007-05-03 misha
8669:
8670: * src/classes/table.C: - option $.type[hash|string|table] was added
8671: for ^table.hash[]
8672:
8673: * src/classes/file.C: - comment removed
8674:
8675: 2007-04-26 misha
8676:
8677: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
8678: real files doesn't opened in place anymore
8679:
8680: 2007-04-24 misha
8681:
8682: * src/classes/math.C: - I thought one more time and remove lg(N) :)
8683:
8684: * src/include/pa_exception.h: "static" removed
8685:
8686: 2007-04-23 misha
8687:
8688: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
8689:
8690: * src/classes/math.C: added: - ^math:ln(N) (the same as
8691: ^math:log(N)) - ^math:lg(N)
8692:
8693: * tests/: 097.html, results/097.processed: - charsets converstion
8694: during ^file::load[text;http://...] added
8695:
8696: * tests/: 164.html, results/164.processed: - check for set expires
8697: as a date
8698:
8699: * tests/: 164.html, results/164.processed: - test for hashfile
8700:
8701: * src/classes/hashfile.C: - little comment changes
8702:
8703: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
8704: access
8705:
8706: * src/: classes/date.C, classes/double.C, classes/file.C,
8707: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
8708: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
8709: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
8710: classes/xnode.h, include/pa_request.h, main/execute.C,
8711: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
8712: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
8713: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
8714: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
8715: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
8716: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
8717: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8718: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
8719: "parser.runtime" strings were removed
8720:
8721: * src/classes/hashfile.C: - with .clear[] called files_delete()
8722: now.
8723:
8724: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
8725:
8726: * src/include/pa_exception.h: - string constant with
8727: "parser.runtime" text was added
8728:
8729: 2007-04-20 misha
8730:
8731: * operators.txt: - some comments changing
8732:
8733: * operators.txt: - added info about .^hashfile.release[],
8734: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
8735:
8736: * configure: =cheching for unsetenv
8737:
8738: * src/classes/hashfile.C: - ^hashfile.cleanup[],
8739: ^hashfile.release[] were added
8740:
8741: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
8742: ^string.match[][] understand new option now: return number of
8743: matches but not table wit results
8744:
8745: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
8746: reopen now
8747:
8748: * src/classes/op.C: - bug. must be false
8749:
8750: * configure.in: - checking for unsetenv was added
8751:
8752: * src/types/pa_vform.C: - some comments
8753:
8754: 2007-04-18 misha
8755:
8756: * buildall-with-xml: moving to libxml2-2.6.28
8757:
8758: * buildall-with-xml, buildall-without-xml: added commented lines
8759: with --disable-safe-mode option
8760:
8761: * operators.txt: - info about $form:files
8762:
8763: 2007-04-17 misha
8764:
8765: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
8766: $form:files was added
8767:
8768: * tests/: 163.html, results/163.processed: removing auto format
8769:
8770: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
8771:
8772: 2007-04-16 misha
8773:
8774: * tests/: 163.html, results/163.processed: - test for .int[],
8775: floor, round, ceiling and .format[]
8776:
8777: * src/classes/file.C: - little optimization for getting args in
8778: exec/cgi
8779:
8780: 2007-04-13 misha
8781:
8782: * src/classes/file.C: - arguments for file::exec/cgi can be
8783: specified now as s table with one column
8784:
8785: 2007-03-27 misha
8786:
8787: * tests/: 162.html, results/162.processed: - test for
8788: ^table.select(^condition[$t])
8789:
8790: * tests/results/auto.p: - load windows-1251 charset for some tests
8791:
8792: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
8793:
8794: * tests/: results/161.processed, 161.html, 161_utf8.txt,
8795: 161_windows1251.txt: - added test for
8796: ^file::load[text;/local/file.txt;$.charset[...]]
8797:
8798: * tests/: results/013.processed, 013.html: - added test for
8799: checking $._default value while hash modifications
8800:
8801: * tests/: 160.html, results/160.processed: - add test for
8802: ^cache[key](secs){code}, ^cache[] and ^cache(0)
8803:
8804: 2007-03-22 misha
8805:
8806: * src/include/pa_common.h: - "charset" string defined for
8807: ^file::load[text;/local.txt] and ^table::load[/table.txt]
8808:
8809: * src/main/: pa_common.C, pa_http.C: - $.charset option for
8810: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
8811: added - not needed transcodes were removed from
8812: ^file::load[...;http://...]
8813:
8814: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
8815: added
8816:
8817: * src/classes/date.C: - date.week was fixed
8818:
8819: * operators.txt: - added info about date.weekyear
8820:
8821: * tests/: 159.html, results/159.processed: - tests for date.week
8822: and date.weekyear added
8823:
8824: 2007-03-15 misha
8825:
8826: * src/classes/table.C: - enclose column numbers for nameless tables
8827: as well
8828:
8829: 2007-03-14 misha
8830:
8831: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
8832:
8833: * src/classes/table.C: - table.save optimization: now required much
8834: less memory
8835:
8836: 2007-03-13 misha
8837:
8838: * tests/results/: 158.processed, 158.processes: - tests for
8839: table.save/table.load
8840:
8841: * tests/: 158.html, results/158.processes: - tests for
8842: table.save/table.load
8843:
8844: * buildall-with-xml: libxml2: --without-ftp --without-docbook
8845:
8846: * buildall-with-xml: - pattern needed now for building
8847:
8848: * tests/results/097.processed: - added test results for xdoc::load
8849: & xdoc::load[http://...]
8850:
8851: * tests/097.html: - added test for xdoc::load
8852:
8853: 2007-03-12 misha
8854:
8855: * tests/: 107.html, results/107.processed: - added test for xpath
8856: '//man'
8857:
8858: 2007-03-01 misha
8859:
8860: * tests/: 097.html, results/097.processed: - added test for
8861: creating xdoc from file
8862:
8863: * tests/: results/157.processed, 157.html: - added test for
8864: file:move
8865:
8866: 2007-02-28 misha
8867:
8868: * src/classes/xdoc.C: - another attempt
8869:
8870: * src/classes/xdoc.C: - roll back last changes for a while
8871:
8872: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
8873:
8874: * src/classes/file.C: - under lock we create non-exist dir anyway
8875:
8876: * tests/results/099.processed: - ever send content-disposition to
8877: client with file
8878:
8879: * tests/157.html: + test for file:copy
8880:
8881: 2007-02-26 misha
8882:
8883: * src/classes/file.C: - some similar strings moved to #define
8884: instead of to be copy/pasted many times
8885:
8886: * src/types/pa_vfile.h: - class name string ("file") moved to
8887: #define
8888:
8889: 2007-02-20 misha
8890:
8891: * bin/auto.p.dist.in: - added lines for sqlite
8892:
8893: * configure.in: - added some strings for sqlite detection
8894:
8895: 2007-02-19 misha
8896:
8897: * operators.txt: - some comments changes
8898:
8899: * buildall-with-xml, buildall-without-xml: - some modifications
8900:
8901: 2007-02-17 misha
8902:
8903: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
8904:
8905: * src/main/pa_request.C: - damn, i forgot to commit it while I
8906: change console behaviour
8907:
8908: 2007-02-12 misha
8909:
8910: * src/targets/cgi/parser3.C: - don't print headers if
8911: $console:line[data] was used during cgi execution.
8912:
8913: * src/types/pa_vconsole.h: - console class have bool flag now which
8914: marked as 'true' if class was used.
8915:
8916: * tests/: 152.html, results/152.processed: - more types was added
8917: to test 152
8918:
8919: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
8920: adding 'bool' (^if($image){} caused exception)
8921:
8922: 2007-02-09 misha
8923:
8924: * tests/: 152.html, results/152.processed: - test alightly updated
8925:
8926: * tests/: 152.html, results/152.processed: - test rewrited
8927:
8928: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
8929: bugfix. I broke xdoc & xnode in expression
8930:
8931: 2007-02-08 misha
8932:
8933: * tests/: 152.html, results/152.processed: - add test for checking
8934: 'def' for void, string, bool, int & double
8935:
8936: 2007-02-07 misha
8937:
8938: * operators.txt: - ^file:base64[filespec] was added
8939:
8940: * tests/results/153.processed: - result test for
8941: ^file:base64[filespec] was updated
8942:
8943: * tests/153.html: - test for ^file:base64[filespec] was added
8944:
8945: * src/types/pa_vconsole.h: - little optimization
8946:
8947: * src/classes/file.C: - ^file:base64[filespec]
8948:
8949: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
8950:
8951: * src/include/pa_common.h: - declarations for
8952: ^file:base64[filespec]
8953:
8954: * src/types/pa_vcookie.C: - little optimization
8955:
8956: 2007-02-06 misha
8957:
8958: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
8959: were temporary commented
8960:
8961: * src/types/pa_vbool.h: - bugfix
8962:
8963: * tests/156.html: - added test for bool cookie
8964:
8965: * src/types/pa_vcookie.h: - not needed string "cookie" removed
8966:
8967: * tests/: 155.html, results/155.processed: - added test for check
8968: $.encloser[] option for table save/load
8969:
8970: * tests/: 153.html, 154.html, todo.txt: - two more tests added
8971:
8972: 2007-02-05 misha
8973:
8974: * tests/results/152.processed: - newline at the end was missed
8975:
8976: * tests/results/141.processed: - math:md5 must be lowercased
8977:
8978: * src/targets/cgi/parser3.C: - 2007 in help ;)
8979:
8980: 2007-02-03 misha
8981:
8982: * tests/results/: 150.processed, 151.processed, 152.processed: -
8983: test for bool added and some content length fixes
8984:
8985: * tests/152.html: - test for bool added
8986:
8987: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
8988:
8989: * operators.txt: - info bool class was added
8990:
1.116 moko 8991: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 8992: classes/classes.vcproj, classes/double.C, classes/int.C,
8993: classes/string.C, classes/void.C, classes/xnode.C,
8994: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
8995: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
8996: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
8997: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8998: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
8999: types/types.vcproj: - bool class was added
9000:
9001: * src/main/pa_request.C: - fix
9002:
9003: 2007-01-18 misha
9004:
9005: * src/: main/pa_string.C, classes/string.C: - return table during
9006: ^string.match[][] even if no matched found.
9007:
9008: 2006-12-20 misha
9009:
9010: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
9011: http://www.parser.ru/forum/?id=55598 ]
9012:
9013: 2006-12-19 misha
9014:
9015: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
9016: details: http://www.parser.ru/forum/?id=52359
9017:
9018: * src/main/pa_request.C: - always set content-disposition for
9019: $response:body[hash here]. more details:
9020: http://www.parser.ru/forum/?id=52130
9021:
9022: 2006-12-07 misha
9023:
9024: * operators.txt: - added info about bool params in cookie set
9025:
9026: * src/types/pa_vcookie.C: - bool param in cookies available now
9027: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
9028: ]
9029:
9030: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
9031: was added
9032:
9033: 2006-12-02 misha
9034:
9035: * src/classes/file.C: - file_block_read used instead of native read
9036:
9037: * src/main/pa_common.C: - added file_block_read with read error
9038: detection - file_block_read used instead of native read
9039:
9040: * src/include/pa_common.h: - added file_block_read declaration
9041:
9042: 2006-12-01 misha
9043:
9044: * operators.txt: - info about $var.CLASS_NAME was added
9045:
9046: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9047: $var.CLASS_NAME added
9048:
9049: * operators.txt: - added info about ^file:copy[]
9050:
9051: * src/classes/file.C: - ^file:copy[from;fo] was added
9052:
9053: 2006-11-20 misha
9054:
9055: * src/classes/date.C: - bug fix :)
9056:
9057: 2006-11-17 misha
9058:
9059: * src/include/pa_common.h: - array in crc32 calculation was changed
9060: to static
9061:
9062: * src/main/pa_common.C: - little optimization in getMonthDays -
9063: small changes in crc32 calculation
9064:
9065: * src/classes/date.C: - not needed code was removed
9066:
9067: 2006-11-16 misha
9068:
9069: * src/types/pa_vmail.C: - fix missed brakes
9070:
9071: * src/types/pa_vmail.C: - mail:send now set content-type:
9072: multipart/related instead of multipart/mixed if file have
9073: $.content-id[]
9074:
9075: 2006-11-15 misha
9076:
9077: * src/types/pa_vdouble.h: abs -> fabs
9078:
9079: 2006-11-14 misha
9080:
9081: * operators.txt: - added info about ^file.md5[] and
9082: ^file:md5[file-name]
9083:
9084: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
9085: added
9086:
9087: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
9088: FILE_BUFFER_SIZE
9089:
9090: * src/classes/math.C: - hex_string was moved to pa_common.h
9091:
9092: * src/include/pa_common.h: - hex_string was moved from math.C -
9093: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
9094:
9095: * src/types/pa_vdouble.h: - incorrect frac detection with negative
9096: values was fixed
9097:
9098: 2006-11-13 misha
9099:
9100: * operators.txt: - added info about ^math:crc32[string],
9101: ^file:crc32[file-name] & ^file.crc32[]
9102:
9103: * src/classes/math.C: - added ^math:crc32[string]
9104:
9105: * src/classes/file.C: - some comments were changed - added
9106: ^file:crc32[file-name] and ^file.crc32[]
9107:
9108: * src/: include/pa_common.h, main/pa_common.C: - some functions for
9109: crc32 calculation added
9110:
9111: 2006-11-03 misha
9112:
9113: * src/include/pa_array.h: - not needed variable removed
9114:
9115: * tests/: 150.html, 151.html, results/150.processed,
9116: results/151.processed: - 2 tests were added
9117:
9118: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
9119: with $.reverse(1) were fixed
9120:
9121: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
9122: query converted to $.charset during ^file::load[http://...]
9123:
9124: 2006-11-02 misha
9125:
9126: * src/include/pa_table.h: ups. forget '=' char
9127:
9128: * src/include/pa_table.h: - one more fix in
9129: .locate[...][$.reverse(1)]
9130:
9131: 2006-11-01 misha
9132:
9133: * src/classes/math.C: - bug fix, details:
9134: http://www.parser.ru/forum/?id=53360
9135:
9136: * src/include/pa_table.h: - bug fix during ^table.locate( condition
9137: false for all records )[$.reverse(1)]
9138:
9139: * src/main/pa_http.C: - second param for this mid method is length
9140: but not end_index so this method has error and can't detect
9141: charsets in next content-types: Content-type: text/html;
9142: charset="windows-1251" Content-type: text/html;
9143: charset="windows-1251"; Content-type: text/html;
9144: charset=windows-1251;
9145:
9146: only Content-type: text/html; charset=windows-1251 was fine
9147:
9148: 2006-10-31 misha
9149:
9150: * src/classes/file.C: - empty args in file::exec removed now
9151:
9152: 2006-09-11 misha
9153:
9154: * bin/auto.p.dist.in: - 2 errors were fixed - table::set was
9155: replaced to table::create - some changes in text/code formatting
9156:
9157: 2006-09-03 paf
9158:
9159: * src/classes/file.C: proper tainting of
9160: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
9161:
9162: 2006-06-09 paf
9163:
9164: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
9165:
9166: * src/classes/table.C: formatting
9167:
9168: * src/classes/table.C: incorporated patch from misha: Sent:
9169: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
9170: ignoring string options for ^table.save[]
9171:
9172: * src/classes/hash.C: incorporated patch from misha Sent:
9173: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
9174: $hash._default disappear while
9175:
9176: * operators.txt: ^mail:send[ $.file1[ $.value[file]
9177: $.format[!uue|!base64] << new base64 option. default uue ] ]
9178:
9179: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
9180: PM Subject: patch for base64 in ^mail:send[] %-)
9181:
9182: 2006-04-09 paf
9183:
9184: * src/main/compile.tab.C: ` change compiled
9185:
9186: * gnu.vcproj, operators.txt, parser3.sln,
9187: src/classes/classes.vcproj, src/classes/file.C,
9188: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
9189: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
9190: src/classes/xnode.C, src/include/pa_array.h,
9191: src/include/pa_config_fixed.h, src/include/pa_dir.h,
9192: src/include/pa_memory.h, src/include/pa_request.h,
9193: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
9194: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
9195: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
9196: src/lib/pcre/pcre_dftables.vcproj,
9197: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9198: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
9199: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
9200: src/main/pa_cache_managers.C, src/main/pa_charset.C,
9201: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
9202: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
9203: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
9204: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
9205: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
9206: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
9207: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
9208: src/types/pa_value.h, src/types/pa_vcookie.C,
9209: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
9210: src/types/pa_vmail.C, src/types/pa_vresponse.C,
9211: src/types/pa_vstatus.C, src/types/types.vcproj,
9212: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
9213: ^menu, ^hash/hashfile.foreach
9214:
9215: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9216: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
9217: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
9218: src/classes/xnode.C, src/include/pa_array.h,
9219: src/include/pa_config_fixed.h, src/include/pa_dir.h,
9220: src/include/pa_memory.h, src/include/pa_request.h,
9221: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
9222: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
9223: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
9224: src/lib/pcre/pcre_dftables.vcproj,
9225: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9226: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
9227: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
9228: src/main/pa_cache_managers.C, src/main/pa_charset.C,
9229: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
9230: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
9231: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
9232: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
9233: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
9234: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
9235: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
9236: src/types/pa_value.h, src/types/pa_vcookie.C,
9237: src/types/pa_vmail.C, src/types/pa_vresponse.C,
9238: src/types/pa_vstatus.C, src/types/types.vcproj,
9239: tests/descript.ion: ! switched to VS2005 (projects and
9240: object<info explicitly typed>.for_each(, info)) +
9241: $response:field[] setting void means removing + grammar $name`
9242: name stops now, for mysql `$field` + started ^break[]
9243: ^continue[], in ^for. TODO: to other iterators (while, menu,
9244: foreach) + all log messages += [uri=, method=, cl=]
9245:
9246: * buildall-with-xml: merged . ftp paths update
9247:
9248: * buildall-with-xml: . ftp paths update
9249:
9250: 2006-03-04 paf
9251:
9252: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
9253: checks++ [thanks to Igor Zinkovsky for detailed report]
9254:
9255: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
9256: Igor Zinkovsky for detailed report]
9257:
9258: 2006-03-01 paf
9259:
9260: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
9261: \n to ' ' in
9262:
9263: 2006-02-18 paf
9264:
9265: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
9266: \n to ' ' in
9267:
9268: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
9269:
9270: 2006-02-03 paf
9271:
9272: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
9273: base64
9274:
9275: * src/main/pa_common.C: ! bugfix: decoding from base64
9276:
9277: 2006-01-20 paf
9278:
9279: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
9280: economy fix
9281:
9282: * src/classes/: table.C: merged from HEAD ! bugfix
9283: ^table.save[$.encloser-s now handled properly
9284:
9285: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
9286: handled properly
9287:
9288: 2006-01-19 paf
9289:
9290: * buildall-with-xml, buildall-without-xml: merged from HEAD !
9291: libgc:USE_MUNMAP activates merging of free memory blocks which
9292: helps a lot in our case: after transform we want
9293: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
9294:
9295: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
9296: economy fix
9297:
9298: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
9299: activates merging of free memory blocks which helps a lot in our
9300: case: after transform we want CORD(main.result)->cstr[big
9301: malloc]->transcode[big malloc]
9302:
9303: 2006-01-17 paf
9304:
9305: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
9306: before reading them. got rid of reallocs = became quicker and
9307: less fragmentated
9308:
9309: 2005-12-29 paf
9310:
1.116 moko 9311: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
9312: configure, configure.in, src/include/pa_version.h,
9313: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 9314: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
9315: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
9316: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
9317: src/lib/ltdl/missing: . merged from 3.2.1
9318:
1.116 moko 9319: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
9320: packaged when 'make dist', so do configure companion files in
9321: src/lib/ltdl
9322:
9323: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
9324: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
9325: missing: . now config_auto.h is created with configure [were
9326: constant]
1.95 moko 9327:
9328: * INSTALL: . references to documentation and some clarification
9329:
9330: * buildall-with-xml, buildall-without-xml: . farawell doc
9331: indication
9332:
1.116 moko 9333: * Makefile.am: . dist+=buildall*
1.95 moko 9334:
9335: 2005-12-28 paf
9336:
9337: * configure: . 3.2.1
9338:
9339: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
9340: simplify build process, see INSTALL
9341:
9342: 2005-12-26 paf
9343:
9344: * configure: ver
9345:
9346: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
9347: version
9348:
9349: 2005-12-21 paf
9350:
9351: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
9352: compiled with bison 1.875b, it reports unexpected token names
9353:
9354: 2005-12-19 paf
9355:
9356: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
9357: holds a link to xmlNode to prevent premature gc(xmlNode)
9358:
9359: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
9360: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
9361: src/main/main.vcproj, src/main/pa_globals.C,
9362: src/targets/cgi/parser3.vcproj,
9363: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
9364: configure, configure.in, src/include/pa_version.h: . killing
9365: gdome [what a relief]
9366:
9367: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
9368: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
9369: run_parser.sh, results/001.processed, results/002.processed,
9370: results/003.processed, results/004.processed,
9371: results/005.processed, results/006.processed,
9372: results/008.processed, results/009.processed,
9373: results/010.processed, results/011.processed,
9374: results/012.processed, results/013.processed,
9375: results/014.processed, results/015.processed,
9376: results/016.processed, results/017.processed,
9377: results/018.processed, results/020.processed,
9378: results/021.processed, results/022.processed,
9379: results/023.processed, results/024.processed,
9380: results/025.processed, results/026.processed,
9381: results/027.processed, results/028.processed,
9382: results/029.processed, results/030.processed,
9383: results/031.processed, results/032.processed,
9384: results/033.processed, results/034.processed,
9385: results/035.processed, results/036.processed,
9386: results/037.processed, results/038.processed,
9387: results/039.processed, results/040.processed,
9388: results/041.processed, results/042.processed,
9389: results/043.processed, results/044.processed,
9390: results/045.processed, results/046.processed,
9391: results/047.processed, results/048.processed,
9392: results/049.processed, results/050.processed,
9393: results/051.processed, results/052.processed,
9394: results/053.processed, results/054.processed,
9395: results/055.processed, results/056.processed,
9396: results/057.processed, results/058.processed,
9397: results/059.processed, results/060.processed,
9398: results/061.processed, results/062.processed,
9399: results/063.processed, results/064.processed,
9400: results/065.processed, results/066.processed,
9401: results/067.processed, results/068.processed,
9402: results/069.processed, results/070.processed,
9403: results/071.processed, results/072.processed,
9404: results/073.processed, results/074.processed,
9405: results/075.processed, results/076.processed,
9406: results/077.processed, results/078.processed,
9407: results/079.processed, results/080.processed,
9408: results/081.processed, results/082.processed,
9409: results/083.processed, results/084.processed,
9410: results/085.processed, results/086.processed,
9411: results/087.processed, results/088.processed,
9412: results/089.processed, results/090.processed,
9413: results/091.processed, results/092.processed,
9414: results/093.processed, results/094.processed,
9415: results/095.processed, results/096.processed,
9416: results/097.processed, results/099.processed,
9417: results/100.processed, results/101.processed,
9418: results/102.processed, results/104.processed,
9419: results/105.processed, results/106.processed,
9420: results/107.processed, results/108.processed,
9421: results/109.processed, results/110.processed,
9422: results/111.processed, results/112.processed,
9423: results/113.processed, results/114.processed,
9424: results/115.processed, results/117.processed,
9425: results/119.processed, results/120.processed,
9426: results/121.processed, results/122.processed,
9427: results/123.processed, results/124.processed,
9428: results/125.processed, results/126.processed,
9429: results/127.processed, results/128.processed,
9430: results/129.processed, results/130.processed,
9431: results/131.processed, results/132.processed,
9432: results/133.processed, results/134.processed,
9433: results/135.processed, results/136.processed,
9434: results/138.processed, results/139.processed,
9435: results/140.processed, results/141.processed,
9436: results/142.processed, results/143.processed,
9437: results/144.processed, results/145.processed,
9438: results/146.processed, results/147.processed,
9439: results/148.processed, results/149.processed, results/auto.p: .
9440: now works if we turn off default auto.p
9441:
1.116 moko 9442: * configure: . makes
1.95 moko 9443:
9444: * src/types/pa_vxnode.C: . less warnings
9445:
9446: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
9447: tests/145.html, tests/149.html, tests/descript.ion,
9448: tests/outputs/d.cmd, tests/results/142.processed,
9449: tests/results/143.processed, tests/results/144.processed,
9450: tests/results/145.processed, tests/results/146.processed,
9451: tests/results/147.processed, tests/results/148.processed,
9452: tests/results/149.processed: . removed .nodeValue from all node
9453: types other than 5 (grabbed piece from gdome)
9454:
9455: * tests/: 137.html, results/137.processed: . not handled this case
9456: yet. code does not hang from inserting parent into child,
9457: considering thing minor issue -- nodes are removed from source
9458: anyway, don't know why shold that be an error after all
9459:
9460: * src/targets/cgi/parser3.C: . style
9461:
9462: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
9463: xdoc too [were barking "not element"]
9464:
9465: 2005-12-16 paf
9466:
9467: * tests/: 146.html, 147.html, 148.html: . more tests
9468:
9469: * src/classes/xnode.C: . also bark on possible errors
9470:
9471: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
9472: props
9473:
9474: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
9475: main/compile.y: merged from HEAD ! fixed overoptimized
9476: ^call(false) case. (confused it with ^call[] case)
9477:
9478: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
9479: ^call(false) case. (confused it with ^call[] case)
9480:
9481: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
9482:
9483: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
9484: results/001.processed, results/002.processed,
9485: results/003.processed, results/004.processed,
9486: results/005.processed, results/006.processed,
9487: results/008.processed, results/009.processed,
9488: results/010.processed, results/011.processed,
9489: results/012.processed, results/013.processed,
9490: results/014.processed, results/015.processed,
9491: results/016.processed, results/017.processed,
9492: results/018.processed, results/019.processed,
9493: results/020.processed, results/021.processed,
9494: results/022.processed, results/023.processed,
9495: results/024.processed, results/025.processed,
9496: results/026.processed, results/027.processed,
9497: results/028.processed, results/029.processed,
9498: results/030.processed, results/031.processed,
9499: results/032.processed, results/033.processed,
9500: results/034.processed, results/035.processed,
9501: results/036.processed, results/037.processed,
9502: results/038.processed, results/039.processed,
9503: results/040.processed, results/041.processed,
9504: results/042.processed, results/043.processed,
9505: results/044.processed, results/045.processed,
9506: results/046.processed, results/047.processed,
9507: results/048.processed, results/049.processed,
9508: results/050.processed, results/051.processed,
9509: results/052.processed, results/053.processed,
9510: results/054.processed, results/055.processed,
9511: results/056.processed, results/057.processed,
9512: results/058.processed, results/059.processed,
9513: results/060.processed, results/061.processed,
9514: results/062.processed, results/063.processed,
9515: results/064.processed, results/065.processed,
9516: results/066.processed, results/067.processed,
9517: results/068.processed, results/069.processed,
9518: results/070.processed, results/071.processed,
9519: results/072.processed, results/073.processed,
9520: results/074.processed, results/075.processed,
9521: results/076.processed, results/077.processed,
9522: results/078.processed, results/079.processed,
9523: results/080.processed, results/081.processed,
9524: results/082.processed, results/083.processed,
9525: results/084.processed, results/085.processed,
9526: results/086.processed, results/087.processed,
9527: results/088.processed, results/089.processed,
9528: results/090.processed, results/091.processed,
9529: results/092.processed, results/093.processed,
9530: results/094.processed, results/095.processed,
9531: results/096.processed, results/097.processed,
9532: results/099.processed, results/101.processed,
9533: results/102.processed, results/104.processed,
9534: results/105.processed, results/106.processed,
9535: results/107.processed, results/108.processed,
9536: results/109.processed, results/110.processed,
9537: results/111.processed, results/112.processed,
9538: results/113.processed, results/114.processed,
9539: results/115.processed, results/116.processed,
9540: results/117.processed, results/118.processed,
9541: results/119.processed, results/120.processed,
9542: results/121.processed, results/122.processed,
9543: results/123.processed, results/124.processed,
9544: results/125.processed, results/126.processed,
9545: results/127.processed, results/128.processed,
9546: results/129.processed, results/130.processed,
9547: results/131.processed, results/132.processed,
9548: results/133.processed, results/134.processed,
9549: results/135.processed, results/136.processed,
9550: results/137.processed, results/138.processed,
9551: results/139.processed, results/140.processed,
9552: results/141.processed: . refreshed old tests, made them work
9553: without auto.p (in utf8) . things noted: . gif got encoded
9554: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
9555: some strange year)
9556:
9557: * INSTALL: . revived linux libgc fix
9558:
9559: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
9560: glib/gdome in INSTALL and patches]
9561:
9562: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
9563: include/pa_charset.h, include/pa_config_includes.h,
9564: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
9565: include/pa_xml_exception.h, lib/cord/Makefile.am,
9566: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
9567: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
9568: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
9569: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
9570: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
9571: types/pa_vxnode.h: . started killing gdome
9572:
9573: 2005-12-13 paf
9574:
9575: * src/main/: pa_request.C: merged from HEAD ! when code in
9576: @unhandled_exception thrown another exception, print correct
9577: origin (earlier code in catch of exception inside of
9578: @unhandled_exception grabbed parent_frame(original_exception)
9579: origin and printed it, instead of true origin)
9580:
9581: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
9582: another exception, print correct origin (earlier code in catch of
9583: exception inside of @unhandled_exception grabbed
9584: parent_frame(original_exception) origin and printed it, instead
9585: of true origin)
9586:
9587: 2005-12-09 paf
9588:
9589: * INSTALL: . updated INSTALL doc to work around linux stack base
9590: detection problem, due to change in gc6.4 code
9591:
9592: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
9593: ignored in ^string.matched :(
9594:
9595: * src/main/pa_string.C: ! regex tainting were ignored in
9596: ^string.matched :(
9597:
9598: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
9599: src/include/pa_config_fixed.h, src/include/pa_version.h,
9600: src/main/compile.y, src/main/compile_tools.h,
9601: src/main/pa_charset.C, src/main/pa_common.C,
9602: src/main/pa_globals.C, src/main/pa_string.C,
9603: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
9604: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
9605:
9606: 2005-12-08 paf
9607:
9608: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
9609: 500 chars now handled OK [were wrapped on 500th char according to
9610: rfc, but sendmail failed to unwrap it properly]
9611:
9612: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
9613: handled OK [were wrapped on 500th char according to rfc, but
9614: sendmail failed to unwrap it properly]
9615:
9616: * src/targets/isapi/parser3isapi.C: . less warnings
9617:
9618: * src/targets/isapi/parser3isapi.C: . undone some strange change
9619: since 3.1.5
9620:
9621: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
9622: link fixes
9623:
9624: * src/: classes/date.C, include/pa_config_fixed.h,
9625: main/compile.tab.C, main/compile.y, main/compile_tools.h,
9626: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
9627: main/pa_string.C, targets/cgi/getopt.c: . less warnings
9628:
9629: * src/include/pa_config_fixed.h: . removed outdated string origins
9630: [in current storage scheme there's no place for them. someday we
9631: can add third CORD to store origins and special version of parser
9632: which stores origins there [separate binary]]
9633:
9634: 2005-12-07 paf
9635:
9636: * src/targets/isapi/parser3isapi.C: . now links in release mode
9637:
9638: * src/include/pa_version.h: makefiles
9639:
9640: * src/include/pa_version.h: . not beta
9641:
9642: * configure, configure.in, src/include/pa_version.h: not beta
9643:
9644: 2005-12-06 paf
9645:
9646: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
9647: [some details here http://i2/tasks/edit/?id=4869912143891354460]
9648: decided to undo the change ^call[$void] passes void. now it will
9649: pass empty string again.
9650:
9651: * src/main/: compile.tab.C, compile.y: . version readded
9652:
9653: * src/classes/op.C: . in this version there is no ^switch[$nothing]
9654: = ^switch[void] problem
9655:
9656: 2005-12-01 paf
9657:
9658: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
9659: caused ^case[string] to be coerced to double since searching
9660: value were not string (it was vvoid)
9661:
9662: * src/classes/op.C: . bugfix ^switch[$void_value] caused
9663: ^case[string] to be coerced to double since searching value were
9664: not string (it was vvoid)
9665:
9666: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
9667: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
9668:
9669: 2005-11-30 paf
9670:
9671: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
9672: win32 must putenv("TZ="), on unix works only putenv("TZ")
9673:
9674: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
9675: putenv("TZ="), on unix works only putenv("TZ")
9676:
9677: * INSTALL: . xml libs versions updated
9678:
9679: * src/main/pa_globals.C: //20051130 trying to remove this, author
9680: claims that fixed a lot there // 20040920 for now both
9681: workarounds needed. wait for new libxml/xsl versions
9682:
9683: 2005-11-28 paf
9684:
9685: * src/classes/table.C: merged from HEAD: ! nameless table has
9686: columns==0
9687:
9688: * src/classes/table.C: ! nameless table has columns==0
9689:
9690: * src/main/pa_http.C: merged from HEAD: ! status line check made
9691: earlier [was totally wrong]
9692:
9693: * src/main/pa_http.C: ! status line check made earlier [was totally
9694: wrong]
9695:
9696: 2005-11-25 paf
9697:
9698: * src/include/pa_array.h: -this reduces speed(table::load) strange.
9699: undoing for now...
9700:
9701: * src/include/pa_version.h: -this reduces speed(table::load),
9702: strange. undoing
9703:
9704: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
9705:
9706: * src/classes/op.C: + ^while(){}[SEPARATOR]
9707:
9708: * src/include/pa_array.h: + optimistics added: all arrays (table
9709: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
9710: this speeds things up and saves memory a LOT! (not noticed
9711: negative effect on syntetic tests, future will tell...)
9712:
9713: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
9714: changed gc_malloc implementation, which obscured profiling
9715:
9716: * src/classes/table.C: merged from HEAD: + optimized
9717: table::load/sql, now row ArrayString-s allocated with
9718: columns.count() elements and don't always grow from
9719: count=3[realloc,realloc]
9720:
9721: * src/classes/table.C: + optimized table::load/sql, now row
9722: ArrayString-s allocated with columns.count() elements and don't
9723: always grow from count=3[realloc,realloc]
9724:
9725: * src/classes/table.C: merged from HEAD: . ^table.save unused
9726: buffer after save
9727:
9728: * src/classes/table.C: . ^table.save unused buffer after save
9729:
9730: 2005-11-24 paf
9731:
9732: * configure.in: . merged glib2-config patch
9733:
9734: * configure.in: + trying to find glib2-config
9735:
9736: * src/: classes/file.C, include/pa_common.h, main/execute.C,
9737: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
9738: file/dir_readable to simple file/dir_exist, this would help in
9739: situations "class not found because .p file has bad rights" << in
9740: that case error would be explicit "access denied to 'this' file"
9741:
1.116 moko 9742: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 9743:
9744: * src/: classes/file.C, include/pa_common.h, main/execute.C,
9745: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
9746: to simple file/dir_exist, this would help in situations "class
9747: not found because .p file has bad rights" << in that case error
9748: would be explicit "access denied to 'this' file"
9749:
9750: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
9751: include/pa_http.h, main/Makefile.am, main/main.vcproj,
9752: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
9753: ^file::exec/cgi[script;$.charset[changed]
9754: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
9755: encoded in $.charset charset
9756:
9757: * src/classes/file.C: +! ^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/: include/Makefile.am, include/pa_common.h,
9762: include/pa_http.h, main/Makefile.am, main/main.vcproj,
9763: main/pa_common.C, main/pa_http.C: . extracted http:// into
9764: separate file [preparation for
9765: ^file::cgi[script;$.form[$.field1[]
9766:
9767: 2005-11-22 paf
9768:
9769: * src/: include/pa_version.h, main/compile.tab.C: makefiles
9770:
9771: * acinclude.m4, configure.in: . merged underquting fixes
9772:
1.116 moko 9773: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 9774:
9775: * src/classes/op.C: . overmerged a little
9776:
9777: * src/main/compile.tab.C: Makefile
9778:
9779: * src/main/: pa_common.C: . less gcc warnings
9780:
9781: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
9782: now reports original exception if we have no old cache
9783:
9784: * src/classes/op.C: + $exception.handled[cache] now reports
9785: original exception if we have no old cache
9786:
9787: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
9788: from HEAD: + ^taint/untaint[regex] << escapes these:
9789: \^$.[]|()?*+{}
9790:
9791: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
9792: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
9793:
9794: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
9795: getenv-ed variable, which does not work both on win32&unix.
9796: copied old TZ value now
9797:
9798: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
9799: stored pointer to getenv-ed variable, which does not work both on
9800: win32&unix. copied old TZ value now
9801:
9802: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
9803: getenv-ed variable, which does not work both on win32&unix.
9804: copied old TZ value now
9805:
9806: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
9807: access to internal hash
9808:
9809: * src/types/pa_vresponse.C: + $response:headers access to internal
9810: hash
9811:
9812: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
9813: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
9814: isapi] this reduces number of "GC Warning: Repeated allocation of
9815: very large block" messages to only important onces
9816:
9817: * src/targets/isapi/parser3isapi.C: +
9818: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
9819: isapi] this reduces number of "GC Warning: Repeated allocation of
9820: very large block" messages to only important onces
9821:
9822: * src/classes/string.C: merged from HEAD: + removed limitation on
9823: ^string/int/double:sql{}[$.default[({param style})] ]
9824:
9825: * src/classes/string.C: + removed limitation on
9826: ^string/int/double:sql{}[$.default[({param style})] ]
9827:
9828: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
9829: with ?params or $.form option" limitation
9830:
9831: * src/main/pa_common.C: + removed "use either uri with ?params or
9832: $.form option" limitation
9833:
9834: * src/: classes/file.C, classes/string.C, include/pa_common.h,
9835: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
9836: ^file::base64[encoded] decode
9837:
9838: * src/: classes/file.C, classes/string.C, include/pa_common.h,
9839: main/pa_common.C: + ^file.base64[] encode +
9840: ^file::base64[encoded] decode
9841:
9842: * src/classes/: file.C, string.C: + ^string.base64[] encode +
9843: ^string:base64[encoded] decode
9844:
9845: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
9846: ^string:base64[in] encode + ^string.base64[] decode
9847:
9848: 2005-11-21 paf
9849:
9850: * src/classes/file.C: + merged from HEAD:
9851: ^file::create[text;file.xml;^untaint[xml]{data}]
9852:
9853: * src/classes/file.C: +
9854: ^file::create[text;file.xml;^untaint[xml]{data}]
9855:
9856: * src/main/pa_request.C: ! merged: $response:body[file] now
9857: differes from :download, it does not return content-disposition
9858: at all now [previusely it returned valueless content-disposition]
9859:
9860: * src/main/pa_request.C: ! $response:body[file] now differes from
9861: :download, it does not return content-disposition at all now
9862: [previusely it returned valueless content-disposition]
9863:
9864: * src/main/: compile.tab.C, compile.y: ! overoptimized void
9865: literals, reverted to just vvod, recreating empty array with each
9866: void_value token. that's absolutely needed, since that array
9867: grows
9868:
9869: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
9870: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
9871: types/pa_vmethod_frame.h: + merged: expression literals:
9872: true/false. ^format[$.indent(true)]
9873:
9874: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
9875: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
9876: types/pa_vmethod_frame.h: + expression literals: true/false.
9877: ^format[$.indent(true)]
9878:
9879: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
9880: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
9881: i386-pc-win32)"
9882:
9883: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
9884: $env:PARSER_VERSION reports "3.1.5beta (compiled on
9885: i386-pc-win32)"
9886:
9887: 2005-11-18 paf
9888:
9889: * src/classes/: double.C, int.C: ! ^int/double:sql{select
9890: null}[$.default(123)] will now return default value
9891:
9892: * src/classes/op.C: + merged ^cache[] << returns current cache
9893: expiration time
9894:
9895: * src/classes/op.C: + ^cache[] << returns current cache expiration
9896: time
9897:
9898: * src/classes/table.C: ! merged ^table::create[not'nameless';
9899: failed << Exception.problem_source pointed to local var!
9900:
9901: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
9902: Exception.problem_source pointed to local var!
9903:
9904: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
9905: now loads VFile.ptr!=0, so such files can be saved now
9906:
9907: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
9908: loads VFile.ptr!=0, so such files can be saved now
9909:
9910: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
9911: only . and .. now removed from list [were removed all .*]
9912:
9913: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
9914: .. now removed from list [were removed all .*]
9915:
9916: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
9917: open error now checked, were not :( [stole that piece from apache
9918: 1.3 sources]
9919:
9920: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
9921: checked, were not :( [stole that piece from apache 1.3 sources]
9922:
9923: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
9924: untainting of @main result if returned by $result or
9925: $response:body
9926:
9927: * src/main/pa_request.C: ! ensured proper untainting of @main
9928: result if returned by $result or $response:body
9929:
9930: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
9931: issue: now tries to guess content-length and allocates one big
9932: piece if possible [regretfully gc_realloc works as malloc+free,
9933: leaving lots of holes behind]
9934:
9935: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
9936: fixed file load memory issue: now tries to guess content-length
9937: and allocates one big piece if possible [regretfully gc_realloc
9938: works as malloc+free, leaving lots of holes behind]
9939:
9940: 2005-11-16 paf
9941:
9942: * src/: include/pa_common.h, classes/file.C, classes/table.C,
9943: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
9944: table::save with enclosers now doubles them: "->"" !
9945: table::save/load do not remove elements from options hash
9946:
9947: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
9948: [were overoptimized ^if(double_literal), compiler confused
9949: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
9950:
9951: * src/main/: compile.tab.C, compile.y: ! ^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/: classes/file.C, classes/table.C, include/pa_common.h,
9956: main/pa_common.C: ! table::save with enclosers now doubles them:
9957: "->"" ! table::save/load do not remove elements from options hash
9958:
9959: 2005-11-03 paf
9960:
1.116 moko 9961: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
9962: compilation, not all makefiles liked that
1.95 moko 9963:
9964: 2005-08-30 paf
9965:
9966: * src/classes/op.C: merge . speedup check of [DEFAULT]
9967:
9968: * src/classes/op.C: . speedup check of [DEFAULT]
9969:
9970: 2005-08-26 paf
9971:
9972: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
9973:
9974: * src/: classes/date.C, types/pa_vdate.h: + date.week
9975:
9976: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
9977: complains about bad!=nameless
9978:
9979: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
9980: about bad!=nameless
9981:
9982: * src/classes/: hash.C, string.C, table.C, void.C: merged !
9983: optional options were allowed to be empty. were checked
9984: if(is_string), changed to !defined||is_string to allow void
9985:
9986: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
9987: classes/string.C, classes/table.C, classes/void.C: ! optional
9988: options were allowed to be empty. were checked if(is_string),
9989: changed to !defined||is_string to allow void
9990:
9991: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
9992: as_junction where they needed as_int/double, so failed with
9993: recent "(const) now no junction" optimization
9994:
9995: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
9996: merged ! many classes/* used as_junction where they needed
9997: as_int/double, so failed with recent "(const) now no junction"
9998: optimization
9999:
10000: * src/: classes/double.C, classes/int.C, classes/math.C,
10001: classes/op.C, classes/string.C, classes/table.C,
10002: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
10003: used as_junction where they needed as_int/double, so failed with
10004: recent "(const) now no junction" optimization
10005:
10006: 2005-08-24 paf
10007:
10008: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
10009: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
10010: stripped it
10011:
10012: 2005-08-09 paf
10013:
10014: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10015: not cleared
10016:
10017: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10018: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10019: classes/hashfile.C, classes/image.C, classes/int.C,
10020: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10021: classes/response.C, classes/string.C, classes/table.C,
10022: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10023: include/pa_array.h, include/pa_cache_managers.h,
10024: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10025: include/pa_config_fixed.h, include/pa_config_includes.h,
10026: include/pa_dictionary.h, include/pa_dir.h,
10027: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10028: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10029: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10030: include/pa_request_charsets.h, include/pa_request_info.h,
10031: include/pa_sapi.h, include/pa_socks.h,
10032: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10033: include/pa_stack.h, include/pa_string.h,
10034: include/pa_stylesheet_connection.h,
10035: include/pa_stylesheet_manager.h, include/pa_table.h,
10036: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10037: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10038: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10039: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10040: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
10041: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
10042: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10043: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
10044: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
10045: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
10046: main/pa_sql_driver_manager.C, main/pa_string.C,
10047: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10048: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10049: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10050: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10051: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10052: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
10053: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
10054: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10055: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10056: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
10057: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
10058: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
10059: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10060: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
10061: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
10062: types/pa_vmemory.h, types/pa_vmethod_frame.C,
10063: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10064: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
10065: types/pa_vresponse.C, types/pa_vresponse.h,
10066: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10067: types/pa_vstateless_object.h, types/pa_vstatus.C,
10068: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10069: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10070: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10071: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10072: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
10073:
10074: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10075: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
10076: speedup consequent checks in vmethod_frame
10077:
10078: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10079: not cleared
10080:
10081: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
10082: params: 50 max (were 10)
10083:
10084: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
10085: params: 50 max (were 10)
10086:
10087: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10088: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
10089: pa_wcontext.h: + ^call[$void] param inside now is void (were:
10090: empty string) ! simplified (double) speedup consequent checks in
10091: vmethod_frame
10092:
10093: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
10094: optimized constants in expressions vstring->vdouble + optimized
10095: ^call(vdouble), no junction creation, no calls later
10096:
10097: 2005-08-08 paf
10098:
10099: * bin/auto.p.dist.in: merged . apache bad 404 handling workaround
10100: integrated
10101:
10102: * bin/auto.p.dist.in: . apache bad 404 handling workaround
10103: integrated
10104:
10105: * src/main/: compile.tab.C, compile.y, compile_tools.C,
10106: compile_tools.h: merged + optimized constants in expressions
10107: vstring->vdouble + optimized ^call(vdouble), no junction
10108: creation, no calls later
10109:
10110: * src/types/pa_vdouble.h: merged . double values without fractional
10111: part now default printed as %.0f instead of %g
10112:
10113: * src/types/pa_vdouble.h: . double values without fractional part
10114: now default printed as %.0f instead of %g
10115:
10116: * src/classes/hashfile.C: . merged ! second hashfile::open would
10117: cause an exception
10118:
10119: * src/classes/hashfile.C: ! second hashfile::open would cause an
10120: exception
10121:
10122: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
10123: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10124: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10125: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10126: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
10127: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10128: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10129: types/pa_vresponse.h, types/pa_vstateless_class.C,
10130: types/pa_vstateless_object.h, types/pa_vvoid.h,
10131: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10132: merged VJunction(new Junction) optimization from 3.1.4
10133:
10134: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
10135: types/pa_vstateless_class.C: + optimized new VJunction(new
10136: Junction(params)) to new VJunction(params), thousands of mallocs
10137: removed
10138:
10139: 2005-08-05 paf
10140:
10141: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
10142: types/pa_vdouble.h, types/pa_vmethod_frame.C,
10143: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
10144: creation, no calls later
10145:
10146: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10147: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10148: classes/hashfile.C, classes/image.C, classes/int.C,
10149: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10150: classes/response.C, classes/string.C, classes/table.C,
10151: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10152: include/pa_array.h, include/pa_cache_managers.h,
10153: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10154: include/pa_config_fixed.h, include/pa_config_includes.h,
10155: include/pa_dictionary.h, include/pa_dir.h,
10156: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10157: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10158: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10159: include/pa_request_charsets.h, include/pa_request_info.h,
10160: include/pa_sapi.h, include/pa_socks.h,
10161: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10162: include/pa_stack.h, include/pa_string.h,
10163: include/pa_stylesheet_connection.h,
10164: include/pa_stylesheet_manager.h, include/pa_table.h,
10165: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10166: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10167: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10168: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10169: lib/smtp/smtp.h, main/compile.C, main/compile.y,
10170: main/compile_tools.C, main/compile_tools.h, main/execute.C,
10171: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
10172: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
10173: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
10174: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
10175: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
10176: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10177: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10178: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10179: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10180: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10181: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
10182: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
10183: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10184: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
10185: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
10186: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
10187: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
10188: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
10189: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
10190: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
10191: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
10192: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10193: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10194: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10195: types/pa_vstateless_object.h, types/pa_vstatus.C,
10196: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10197: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10198: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10199: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10200: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
10201:
10202: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
10203: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
10204: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
10205: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
10206: main/compile.y, main/compile_tools.C, main/compile_tools.h,
10207: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
10208: optimized constants in expressions vstring->vdouble
10209:
10210: 2005-07-29 paf
10211:
10212: * src/types/pa_vclass.C: . shaped up error messages a bit
10213:
10214: * src/types/pa_vclass.C: + property getter can now be overridden
10215:
10216: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
10217: bug fix: static parent fields were not replaced in case
10218: $derived:field[put] + property setter can now be overridden
10219:
10220: 2005-07-28 paf
10221:
10222: * configure, configure.in, src/classes/classes.h,
10223: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
10224: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
10225: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
10226: src/classes/xnode.h, src/include/pa_hash.h,
10227: src/include/pa_version.h, src/main/execute.C,
1.116 moko 10228: src/types/Makefile.am, src/types/pa_method.h,
10229: src/types/pa_value.h, src/types/pa_vclass.C,
10230: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
10231: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
10232: src/types/pa_vcookie.h, src/types/pa_vhash.h,
10233: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
10234: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
10235: src/types/pa_vobject.C, src/types/pa_vobject.h,
10236: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
10237: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
10238: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
10239: src/types/pa_vstateless_class.h,
1.95 moko 10240: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
10241: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
10242: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
10243: dynamic_fields_join
10244:
10245: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
10246: classes/xnode.C, include/pa_hash.h, main/execute.C,
10247: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
10248: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10249: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
10250: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10251: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10252: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10253: types/pa_vresponse.h, types/pa_vstateless_object.h,
10254: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
10255: types/pa_wwrapper.h: ! restored put_element('replace' param), and
10256: restored its checks in vobject.put_element->static fields |
10257: dynamic properties
10258:
10259: 2005-07-27 paf
10260:
10261: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
10262: is some old code containing @set_name $name
10263:
10264: * src/types/pa_vobject.h: . fixed warning
10265:
10266: * configure, configure.in, src/include/pa_version.h,
1.116 moko 10267: src/types/Makefile.am: 3.2.0beta started
1.95 moko 10268:
10269: * src/: classes/xnode.C, include/pa_hash.h,
10270: types/pa_vstateless_class.C: ! new asserts were all false.
10271: regretfully reverted them all to checks
10272:
10273: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
10274: classes/op.C, main/execute.C, types/pa_method.h,
10275: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10276: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10277: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10278: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
10279: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10280: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10281: types/pa_vstateless_object.h, types/pa_vvoid.h,
10282: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
10283: joined_dynamic_fields: removed unused param from put_method
10284: (returned to 3 params)
10285:
10286: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
10287: joined_dynamic_fields: dynamic get/set works with overriding
10288: props [alpha2]
10289:
10290: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
10291: works [alfa]
10292:
10293: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
10294: classes/op.C, include/pa_hash.h, main/execute.C,
10295: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
10296: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10297: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
10298: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10299: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10300: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10301: types/pa_vresponse.h, types/pa_vstateless_class.C,
10302: types/pa_vstateless_object.h, types/pa_vvoid.h,
10303: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
10304: joined_dynamic_fields: just compiled
10305:
10306: * src/: classes/date.C, classes/file.C, classes/hash.C,
10307: classes/hashfile.C, classes/image.C, classes/table.C,
10308: classes/xdoc.C, classes/xnode.h, main/execute.C,
10309: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
10310: types/pa_vstateless_class.h: joined_dynamic_fields: started
10311:
10312: * src/types/pa_vobject.C: . object setters [only started, does not
10313: work yet]
10314:
10315: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
10316: object setters [only started, does not work yet]
10317:
10318: 2005-07-26 paf
10319:
10320: * src/: include/pa_request.h, main/execute.C: . properties: set
10321: works [alpha2]. for classes. todo: for objects
10322:
10323: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
10324: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10325: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10326: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10327: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
10328: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10329: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10330: types/pa_vstateless_object.h, types/pa_vvoid.h,
10331: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10332: properties: set works [alpha1]
10333:
10334: 2005-07-25 paf
10335:
10336: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
10337: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
10338: properties: started, get works [alpha1, other approach]
10339:
10340: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
10341: properties: started, get works [alpha2]
10342:
10343: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
10344: pa_vstateless_class.h: . properties: started, get works [alpha]
10345:
10346: 2005-07-15 paf
10347:
10348: * src/: classes/classes.h, classes/op.C, main/execute.C,
10349: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
10350: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10351: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10352: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
10353: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
10354: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
10355: types/pa_vresponse.C, types/pa_vresponse.h,
10356: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10357: types/pa_vstateless_object.h, types/pa_vvoid.h,
10358: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
10359: types/pa_wwrapper.h, types/types.vcproj: + started property
10360: [getters work but think of changing them too to precaching]
10361:
10362: 2005-07-08 paf
10363:
10364: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
10365: gpf
10366:
10367: 2005-06-28 paf
10368:
10369: * src/: classes/file.C, main/untaint.C: ! string invariant violated
10370: in passing empty strings to file::exec/cgi environment
10371:
10372: 2005-06-06 paf
10373:
10374: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
10375: ^table:sql ^hash:sql now DO process $.bind option
10376:
10377: 2005-05-24 paf
10378:
10379: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
10380: $.limit] now work again [support was broken in 3.1.4]
10381:
10382: * src/: main/pa_string.C, classes/op.C: . steps toward removing
10383: ALL_INTERIOR_POINTERS
10384:
10385: 2005-05-12 paf
10386:
10387: * configure: 3.1.5beta
10388:
10389: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
10390:
10391: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
10392: $.limit] now work again [support was broken in 3.1.4]
10393:
10394: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
10395: line-width [was refusing to fill if line-width >1, thanks to
10396: Seras <seras@pinxit.lt> for repro case
10397:
10398: 2005-04-25 paf
10399:
10400: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
10401: correctly
10402:
10403: 2005-04-19 paf
10404:
10405: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
10406: in VString violating invariant!!
10407:
10408: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
10409: getenv("TZ")==null
10410:
10411: 2005-04-08 paf
10412:
10413: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
10414: bugfix: when there is no char in charset one byte produces 6
10415: (ÿ <<max). increased buffer size!
10416:
10417: 2005-03-23 paf
10418:
10419: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
10420: ^date.sql-string now takes TZ into account
10421:
10422: 2005-03-16 paf
10423:
10424: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
10425: gcc 3.4
10426:
10427: * src/types/pa_vhash.C: . warning about eof eol
10428:
10429: 2005-02-17 paf
10430:
10431: * operators.txt, src/classes/op.C: + operator ^sleep(double
10432: seconds)
10433:
10434: 2005-02-02 paf
10435:
10436: * src/classes/xnode.C: beauty: removed needless includes
10437:
10438: 2005-01-31 paf
10439:
10440: * src/types/pa_vmail.C: change: $.partX now always 1... change:
10441: $.partNoNumber now alias to $.part1
10442:
10443: * src/types/pa_vmail.C: change: incoming letter part contains
10444: "content-disposition" header with any value? now considering that
10445: part to be "file#" [for text/plain text/html were $.text#
10446: $.html#]
10447:
10448: * INSTALL: updatet to latest working versions available
10449:
10450: 2005-01-20 paf
10451:
10452: * configure.in, src/include/pa_version.h: version
10453:
10454: 2005-01-19 paf
10455:
1.116 moko 10456: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
10457: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
10458: couple warnings in parser3.C
1.95 moko 10459:
10460: 2004-12-23 paf
10461:
10462: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
10463:
10464: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
10465: dir to directory of script (when shbang used), not to directory
10466: of its interpreter
10467:
10468: * src/include/pa_version.h: compiled on win32...
10469:
10470: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
10471: we need more hspace
10472:
10473: * configure, configure.in, src/include/pa_version.h: configured
10474: host to pa_version. will be displayed everywhere
10475:
10476: * src/main/pa_request.C: new: @unhandled_exception can prevent
10477: exception from being logged by setting $exception.handled(1)
10478:
10479: * operators.txt, src/classes/file.C: change:
10480: ^file::sql{query}[[options]] options: $.name[file name]
10481: $.content-type[application/what]
10482:
10483: * src/: include/pa_common.h, main/pa_common.C,
10484: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
10485: new file
10486:
10487: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
10488: bugfix: table->hash now regards _default
10489:
10490: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
10491: created by accessing $name_of_method it acquired bad self=closest
10492: methodframe; instead of proper self (current class)
10493:
10494: * src/types/pa_vhashfile.C: bugfix: reading empty string from
10495: hashfile produced bad cord
10496:
10497: 2004-12-10 paf
10498:
10499: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
10500: subsequent failures though defined in .h
10501:
10502: * src/main/pa_common.C: comment on volatile
10503:
10504: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
10505: alarm function were not used since the beginning due to stupid
10506: error [setsigjmp were not checked in configure.in]
10507:
10508: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
10509: unix too
10510:
10511: * src/main/pa_common.C: http: exception status of send/recv errors
10512: change to most probable http.timeout
10513:
10514: * src/main/pa_common.C: win32: http connection $.timeout option now
10515: works [setsockopt on send/receive]
10516:
10517: 2004-12-08 paf
10518:
10519: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
10520: cstr-ed knowing mail charset, and untainting uri lang now knows
10521: proper charset
10522:
10523: 2004-11-24 paf
10524:
10525: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
10526:
10527: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
10528: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
10529:
10530: 2004-11-12 paf
10531:
10532: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
10533: [since 3.0.4]
10534:
10535: 2004-11-09 paf
10536:
10537: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
10538: writes basics to c:\parser3.log
10539:
10540: 2004-10-21 paf
10541:
10542: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
10543: tainted strings [were returning clean onces]
10544:
10545: 2004-10-15 paf
10546:
10547: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
10548: cycles(i=1; i=2), which was wrong, now does ONE
10549:
10550: 2004-10-12 paf
10551:
10552: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
10553:
10554: 2004-10-07 paf
10555:
10556: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
10557: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
10558: release asserts
10559:
10560: * src/: main/pa_string.C, include/pa_string.h: debugger help:
10561: String.dump() to stdout in detailed form [were String.v() in
10562: short form]
10563:
10564: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
10565: \t\r\n as @#| and truncates long char sequences less
10566:
10567: 2004-10-06 paf
10568:
10569: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
10570: win32 beauty: socket errors properly decoded
10571:
10572: 2004-10-05 paf
10573:
10574: * src/: include/pa_request.h, main/pa_request.C: bugfix:
10575: request::configure_user/admin done always, even if no
10576: file-to-process useful in @unhandled_exception [say, if they
10577: would want to mail by SMTP something]
10578:
10579: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
10580: now performed prior to file loading [and @auto executing] thus
10581: making $cookie:value available in @auto and in
10582: @unhandled_exception when IIS is configured to run interpreter
10583: even if no file exist
10584:
10585: 2004-09-20 paf
10586:
10587: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
10588: somewhere where it should have called xmlMalloc and it calls
10589: xmlFree when it should have not called it. inserted two
10590: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
10591: xmlFree just ignored. put away a testcase, maybe someday libxml
10592: author would fix all that. until that day: we have SLOW garbage
10593: collecting when many xml objects are alive hint: do
10594: ^memory:compact[] before xdoc::create
10595:
10596: 2004-09-17 paf
10597:
10598: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
10599: error from 3.0.8 version]
10600:
10601: 2004-09-14 paf
10602:
10603: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
10604: part bugfix: hashfile.foreach iterated only part if hashfile were
10605: modified inside
10606:
10607: 2004-09-13 paf
10608:
10609: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
10610: [were as octal]
10611:
10612: * src/types/pa_vhashfile.C: beauty: not reproduced
10613: $hashfile.key[$novalue] bug [reported by motorin], inserted
10614: safety-check
10615:
10616: * src/types/pa_vhashfile.C: change: empty keys now error in parser
10617: [not something obscure from sdbm lib]
10618:
10619: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
10620: = strerror now returnes something and we can properly report that
10621: to client
10622:
10623: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
10624: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
10625:
10626: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
10627: [tainted as-is] this helps //[space][newline] to remain as-is and
10628: not be unnecessary optimized away [ruining javascript]
10629:
10630: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
10631: [tainted as-is]
10632:
10633: * src/classes/mail.C: bugfix: typo error
10634:
10635: 2004-09-09 paf
10636:
10637: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
10638: separators bugfix: loads header with endings \r\n\r\n and \n\n
10639: (bloody yandex.server)
10640:
10641: 2004-09-06 paf
10642:
10643: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
10644: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
10645: encoded
10646:
10647: 2004-09-01 paf
10648:
10649: * src/types/pa_vmail.C: change: multipart/mixed changed to
10650: multipart/related outlook express have no problems showing
10651: unrelated attachments. todo: someday figure out a way of
10652: multipart/mixed multipart/related text/html
10653: image/xxx application/octet-stream << true attachments
10654:
10655: * src/types/pa_vmail.C: new:
10656: ^mail:send[$.file[$.content-disposition can be overriden new:
10657: empty mail header fields removed from letter
10658:
10659: * src/: classes/mail.C, include/pa_config_fixed.h,
10660: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
10661: ^mail:send[ $.file[ $.any[header]
10662:
10663: 2004-08-30 paf
10664:
10665: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
10666: warnings
10667:
10668: * src/main/pa_common.C: beauty: do not bother with charset
10669: detection when ^file::load[binary
10670:
10671: 2004-08-27 paf
10672:
10673: * src/main/pa_common.C: hack: for yandex.server http server
10674:
10675: 2004-08-18 paf
10676:
10677: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
10678: possibly-chunked response
10679:
10680: 2004-08-17 paf
10681:
10682: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
10683: $f.content-type now = that of http response
10684:
10685: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
10686: $f.content-type now = that of http response
10687:
10688: 2004-07-30 paf
10689:
10690: * src/: include/pa_request.h, main/pa_request.C,
10691: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
10692: win32: system&parser exceptions in release mode reported properly
10693: parser exception in exception handler WERE mistakenly reported as
10694: system exception, without details [in apache & isapi] +some
10695: beauty in exception text
10696:
10697: * src/: include/pa_exception.h, main/pa_request.C,
10698: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
10699: release mode reported properly parser exception in exception
10700: handler WERE mistakenly reported as system exception, without
10701: details
10702:
10703: * src/main/execute.C: beauty: simplified system exception handling
10704:
10705: 2004-07-29 paf
10706:
10707: * src/classes/table.C: bugfix:
10708: ^table.save[export.csv;$.separator[^;]] now works fine [separator
10709: were ignored, and \t used unconditionally]
10710:
10711: * src/types/Makefile.am: added vhash.c
10712:
10713: 2004-07-28 paf
10714:
10715: * src/: classes/date.C, classes/image.C, classes/math.C,
10716: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
10717: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
10718: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
10719: failed on russian letters
10720:
10721: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
10722: bugfix: isspace((unsigned char)c) everywhere. failed on russian
10723: letters
10724:
10725: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
10726: as 'currentDirectory' parameter to CreateProcess
10727:
10728: 2004-07-27 paf
10729:
10730: * src/targets/cgi/parser3.vcproj: beauty: win32:
10731: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
10732: from release somewhere [to help searching for unhandled system
10733: exceptions]
10734:
10735: * src/types/pa_vdate.h: check: for invalid datetime after temporary
10736: TZ shift
10737:
10738: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
10739: but also in ctor
10740:
10741: 2004-07-26 paf
10742:
10743: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
10744: src/main/pa_request.C, src/types/pa_vfile.h,
10745: src/types/pa_vhash.C, src/types/pa_vhash.h,
10746: src/types/types.vcproj: new: $response:body/download[
10747: $.file[name on disk] $.name[of file for user]
10748: $.mdate[date of last-modified. default from directory] ]
10749:
10750: * src/classes/file.C: moving file:send somewhere else..
10751:
10752: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
10753: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
10754: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
10755: $response:download[ $.filename[filename] $.option[] ,, ]
10756:
10757: * src/classes/file.C: beauty: invalid mode thoroughly reported
10758:
10759: 2004-07-21 paf
10760:
10761: * src/types/pa_vmail.C: bugfix: too long header values now splitted
10762: to several lines
10763:
10764: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
10765:
10766: note: ms outlook[!express] shows only first 255 characters of
10767: subject
10768:
10769: 2004-07-15 paf
10770:
10771: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
10772: off]
10773:
10774: 2004-07-14 paf
10775:
10776: * src/classes/table.C: bugfix: $.bind values now got untainted
10777: according to lang [were: as-is]
10778:
10779: 2004-07-07 paf
10780:
10781: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
10782: checked that
10783:
10784: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
10785: now untainted according to their languages. were: as-is.
10786: EVERYWHERE
10787:
10788: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
10789: environment string now untainted according to their languages.
10790: were: as-is. EVERYWHERE
10791:
10792: * src/main/pa_exec.C: bufix: on unix environment string now
10793: untainted according to their languages. were: as-is. on win32:
10794: ok
10795:
10796: * parser3.vssscc: ...would not go unnoticed
10797:
10798: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
10799: fails. in case on input appears nonutf, those bytes will be
10800: printed in %HH form. that can be easily decoded/recovered.
10801:
10802: this form is quite noticable, and hopefully would not go noticed
10803:
10804: 2004-07-06 paf
10805:
10806: * src/main/pa_exec.C: bufix: on unix environment string now
10807: untainted according to their languages. were: as-is. on win32:
10808: ok
10809:
10810: 2004-07-01 paf
10811:
10812: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
10813: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
10814: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
10815: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
10816: main/main.vcproj, targets/cgi/parser3.vcproj,
10817: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
10818: option: global optimization ON
10819:
10820: * src/main/untaint.C: workaround kinda bug in libxml: life requires
10821: to do xdoc::create{invalid chars} standard disables chars less
10822: then \x20, except tab, cr, lf.
10823:
10824: changed tainting so that those become '!'
10825:
10826: 2004-06-25 paf
10827:
10828: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
10829: int on odd address [prev bugfix failed due to superwize
10830: optimizer, which turned memcpy into same 'ld' asm command]
10831:
10832: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
10833: int on odd address
10834:
10835: 2004-06-22 paf
10836:
10837: * src/sql/pa_sql_driver.h: note: about possible optimization
10838:
10839: * operators.txt, src/classes/hash.C, src/classes/memory.C,
10840: src/classes/string.C, src/classes/table.C, src/classes/void.C,
10841: src/include/pa_config_includes.h: new: ^void:sql{call
10842: paf(:a)}[ $.bind[ $.a[2]
10843: ] ] output variables work. todo: check in out
10844: variables
10845:
10846: 2004-06-18 paf
10847:
10848: * src/: classes/file.C, classes/hash.C, classes/string.C,
10849: classes/table.C, classes/void.C, include/pa_globals.h,
10850: include/pa_sql_connection.h, main/compile.tab.C,
10851: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
10852: $.bind[ $.a[2] ]
10853: ] input variables work. todo:output
10854:
10855: * src/targets/cgi/parser3.C: bugfix: iis specific
10856: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
10857: /_bug.html?404;http://hpsv/test/
10858: --------------------------------------------------------------------------------
10859: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
10860: --------------------------------------------------------------------------------
10861: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
10862:
10863: 2004-06-16 paf
10864:
10865: * src/targets/cgi/parser3.C: new: iis specific
10866: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
10867: $request:query
10868: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
10869: $form:fields IIS-STATUS="404"
10870: IIS-DOCUMENT="http://server/_bug.html" f="v"
10871:
10872: todo: isapi too
10873:
10874: 2004-05-26 paf
10875:
10876: * src/include/pa_version.h: 3.1.3
10877:
10878: * operators.txt: beauty: removed outdated level 'table'
10879:
10880: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
10881:
10882: * src/main/pa_string.C: beauty: removed 3 warnings
10883:
10884: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
10885: classes/op.C: beauty: removed outdated level 'table'
10886:
10887: 2004-05-25 paf
10888:
10889: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
10890: implementation. mistery: how anything worked
10891:
10892: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
10893: changed, it is now safe to use url if pointers to it are stored
10894: to gc mem
10895:
10896: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
10897: unknown errors reported and not cause SIGSEGV now
10898:
10899: 2004-05-24 paf
10900:
10901: * src/: include/pa_string.h, lib/cord/cordbscs.c,
10902: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
10903: less memory: CORD_chars_block originally intended to ... it was
10904: good that CORD_chars_block were not used: it consumes more memory
10905: [and, might be slow too] undoing that. [and removed that func so
10906: that it would not confuse parser developer in future]
10907:
10908: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
10909: less memory: CORD_chars_block originally intended to
10910: speedup/reduce mem usage were forgotten, and were used stupid
10911: CORD_chars
10912:
10913: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
10914:
10915: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
10916: BIGENDIAN processors space-conserving mech failed, causing
10917: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
10918: (1|2|3));
10919:
10920: 2004-05-14 paf
10921:
10922: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
10923: bugfix: void now has vfile value, and $response:body[] works OK
10924:
10925: 2004-05-12 paf
10926:
10927: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
10928: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
10929: sources to use is_defined() {return as_bool();} along VBool
10930:
10931: 2004-05-11 paf
10932:
10933: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
10934: referencing to local objects
10935:
10936: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
10937: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
10938: left intact
10939:
10940: 2004-04-15 paf
10941:
10942: * src/classes/date.C: merged: beauty: unused var removed
10943:
10944: * src/classes/date.C: beauty: unused var removed
10945:
10946: * src/include/: pa_exec.h: bugfix: interface without pointer
10947: provoked bug
10948:
10949: 2004-04-09 paf
10950:
10951: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
10952:
10953: * src/types/pa_vform.C: bugfix: form:imap were incorrect
10954:
10955: 2004-04-08 paf
10956:
10957: * src/classes/date.C: new: ^date::create[y-m-d
10958: h-M-s>>.milliseconds<<] now allowed, ignored so far
10959:
10960: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
10961:
10962: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
10963: to consult default catalog [usually, that file belongs to other
10964: user/group]
10965:
10966: 2004-04-06 paf
10967:
10968: * src/main/pa_common.C: beauty: gcc warning removed
10969:
10970: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
10971: accept that trick, trying other
10972:
10973: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
10974: explicit result problem
10975:
10976: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
10977: explicit result problem
10978:
10979: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
10980: explicit result problem
10981:
10982: * operators.txt, src/classes/string.C: new: ^string.append[string]
10983:
10984: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
10985: main/execute.C: attempt_check_call_in_explicit_result_mode:
10986: failed
10987:
10988: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
10989: http://i.p.a.ddress gethostbyaddr added [on some platforms
10990: gethostbyname failed with such 'domains'] now checked properly,
10991: were: needless reverse/forward dns lookup
10992:
10993: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
10994: http://i.p.a.ddress gethostbyaddr added [on some platforms
10995: gethostbyname failed with such 'domains'] now checked properly,
10996: were: needless reverse/forward dns lookup
10997:
10998: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
10999: @method[][result] means "no string output here" moved to lexical
11000: level [on grammar level it were too difficult]
11001:
11002: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
11003: src/main/compile.y, src/main/compile_tools.h,
11004: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
11005: @method[][result] means "no string output here", implemented part
11006: of that idea: compiler throws away string literal generation
11007: code. and barks nonwhitespace chars
11008:
11009: * operators.txt: truth: removed comment about $ORIGIN
11010:
11011: 2004-04-05 paf
11012:
11013: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
11014: src/include/pa_version.h, src/main/pa_common.C,
11015: src/targets/isapi/parser3isapi.C: merged with 3.1.3
11016:
11017: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
11018: Konstantin Tomashevitch [mailto:konst@design.ru]
11019:
11020: * src/doc/html2chm.cmd: beauty: no need in bg here
11021:
11022: * src/doc/sources2html.cmd: beauty: same window, in bg it
11023: interfered with FAR console
11024:
11025: * configure, configure.in: 3.1.3
11026:
11027: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
11028:
11029: * src/main/pa_common.C: removed warning
11030:
11031: * src/include/pa_version.h: 3.1.3
11032:
11033: 2004-04-02 paf
11034:
11035: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
11036:
11037: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
11038: allows to specify where to put parser log file
11039:
11040: 2004-04-01 paf
11041:
11042: * src/classes/table.C: bugfix: bugfix: table::load last line
11043: without tab and enter were ignored
11044:
11045: * src/: include/pa_cache_managers.h, include/pa_globals.h,
11046: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
11047: main/pa_socks.C, targets/cgi/parser3.C,
11048: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
11049: bugfix: sql connections now are disconnected
11050:
11051: 2004-03-30 paf
11052:
11053: * src/classes/table.C: bugfix: table::load last line without tab
11054: and enter were ignored
11055:
11056: * src/classes/table.C: bufix: if last table lines were commented,
11057: gpfed
11058:
11059: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
11060: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
11061: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
11062: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
11063: doc/methoded.dox, doc/object.dox, doc/string.dox,
11064: doc/targets.dox, doc/value.dox, include/pa_version.h,
11065: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
11066: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
11067: bugfixes from 3.1.2, changed version to 3.1.3beta
11068:
11069: 2004-03-29 paf
11070:
11071: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
11072: causes gpf
11073:
11074: * src/doc/: ClassExample1.dox, ClassExample2.dox,
11075: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
11076: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
11077: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
11078: value.dox: translated to english
11079:
11080: 2004-03-25 paf
11081:
11082: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
11083: parser3project dependency removed
11084:
11085: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
11086: bugfix: refused to compile without xml
11087:
11088: * src/types/pa_vform.C: beauty: removed warning
11089:
11090: * src/classes/classes.vcproj: merged bugfix: now all compiles in
11091: any folder [removed last ;) folder dependency]
11092:
11093: * src/classes/classes.vcproj: bugfix: now all compiles in any
11094: folder [removed last ;) folder dependency]
11095:
11096: * src/include/pa_version.h: release
11097:
11098: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
11099:
11100: * src/classes/table.C: beauty: comment& more meaningful error
11101: message
11102:
11103: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
11104: $.hash[$.column_value1(true) ... ] [were producing some strang
11105: thing]
11106:
11107: 2004-03-23 paf
11108:
11109: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
11110: and http status line parsing checked number of columns in table
11111: [user reported an assert]
11112:
11113: * operators.txt: example: on hashfile
11114:
11115: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
11116: bugfix: junction reattach now actually reattaches a junction to
11117: new wcontext [were only assigning it to junction, which caused
11118: junction tracking to loose junction, and it's context were not
11119: killed, and it tried to process in invalid context, gpf]
11120:
11121: * src/targets/cgi/parser3.C: debug helper added
11122:
11123: 2004-03-19 paf
11124:
11125: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
11126: "type(type)" in braces
11127:
11128: 2004-03-10 paf
11129:
11130: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
11131: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
11132: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
11133: solution to search-in-namespaces problem:
11134: $xdoc.search-namespaces.x[http://pif.design.ru/]
11135: $nodes[^xdoc.select[//x:second]]
11136:
11137: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
11138: expression][[NAMESPACES HASH]] allows to search for info in
11139: namespaces
11140:
11141: $nodes[^xdoc.select[//x:second][
11142: $.x[http://pif.design.ru/] ]]
11143:
11144: 2004-03-09 paf
11145:
11146: * operators.txt, src/main/pa_common.C: new:
11147: ^file::load[...][options] $.form[
11148: !$.field1[string]
11149: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
11150: ] !$.body[string]
11151:
11152: GET ?here notGET(POST, HEAD, others) in content-type:
11153: application/x-www-form-urlencoded
11154:
11155: todo: upload files ability
11156:
11157: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
11158: properly, done
11159:
11160: 2004-03-05 paf
11161:
11162: * operators.txt, src/main/pa_common.C: new: file::load[;http://
11163: GET/POST $.form[$.fields started, not tested yet
11164: todo:$.field[table] for multiple values
11165:
11166: * operators.txt: new: http:// options $.user $.password basic
11167: authorization
11168:
11169: * src/main/pa_common.C: beauty: link to rtf added
11170:
11171: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
11172: new: http:// options $.user $.password basic authorization
11173:
11174: * src/main/pa_common.C: beauty: removed needless vars
11175:
11176: * operators.txt: new: pgsql option [like that recently added to
11177: oracle driver] ClientCharset=parser-charset <<
11178: charset in which parser thinks client works
11179:
11180: * operators.txt: new: odbc option [like that recently added to
11181: oracle driver] ClientCharset=parser-charset <<
11182: charset in which parser thinks client works
11183:
11184: * src/sql/pa_sql_driver.h: beauty: important warning added
11185:
11186: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
11187: char!
11188:
11189: * etc/parser3.charsets/windows-1251.cfg: typo
11190:
11191: 2004-03-04 paf
11192:
11193: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
11194: cached, sql transcoding now goes faster
11195:
11196: * operators.txt: new: mysql option [like that recently added to
11197: oracle driver] ClientCharset=parser-charset <<
11198: charset in which parser thinks client works
11199:
11200: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
11201: typo error
11202:
11203: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
11204: chars commented
11205:
11206: 2004-03-03 paf
11207:
11208: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
11209: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
11210:
11211: 2004-03-02 paf
11212:
11213: * operators.txt: new[update typo]: !^void.left(n)
11214: nothing !^void.right(n) nothing !^void.mid(p[;n])
11215: nothing
11216:
11217: * operators.txt, src/classes/void.C: new: !^void.left(n)
11218: nothing !^void.right(n) nothing !^void.pos(p[;n])
11219: nothing
11220:
11221: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
11222: ^file::sql[[name_to_become_$.name]]{} query result must be one
11223: row with columns: first: data second: file name third:
11224: content-type
11225:
11226: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
11227: ^connect gets properly escaped string, which can be passed to
11228: request now this for mysql only. it's up to parser sql driver to
11229: fix zeros properly
11230:
11231: * INSTALL: note: added on building apache with this option:
11232: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
11233:
11234: 2004-03-01 paf
11235:
11236: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
11237: extension memory:compact befor processingrequest
11238:
11239: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
11240: call sole column of result
11241:
11242: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
11243: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
11244: pixel color
11245:
11246: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
11247: beauty: image -- less checks [were ugly impl]
11248:
11249: * src/classes/string.C: bugfix: ^string.left/right/mid with
11250: negative values now considered bad
11251:
11252: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
11253:
11254: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
11255: options now have unified defaults [after transform
11256: indent/omit-xml-declaration/standalone 'default' erroreously
11257: meant 'true']
11258:
11259: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
11260: added [on some platforms gethostbyname failed with such
11261: 'domains']
11262:
11263: * src/include/pa_config_auto.h.in: no select check, no define
11264:
11265: * src/classes/string.C: feature: ^string.trim both parameters may
11266: be empty-strings, meaning kind=both chars=whitespaces
11267:
11268: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
11269: exist
11270:
11271: * src/classes/string.C: check: trim 'chars' must not be empty,
11272: exception if it is
11273:
11274: * src/classes/string.C: changed: ^string.trim [] << both,
11275: whitespaces [start|both|end] << kind, whitespaces
11276: [start|both|end;chars] full
11277:
11278: 2004-02-27 paf
11279:
11280: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
11281: method: ^string.trim[start|both|end[;chars]] default
11282: 'chars' -- whitespace chars finished
11283:
11284: * operators.txt, src/classes/string.C, src/include/pa_string.h,
11285: src/main/pa_string.C: new method:
11286: ^string.trim[start|both|end[;chars]] default 'chars' --
11287: whitespace chars started, only start works
11288:
11289: * src/main/compile.C: bugfix: line numbers after
11290: ^process{}[$.line(-10]] can be negative, allowed to print they as
11291: signed
11292:
11293: * src/main/untaint.C: speed: there's no \n chars in output
11294: [normally], so no need to optimize them they could be retrived
11295: from databases, though. but 1. should be replaced 2. if not
11296: optimized, no harm done
11297:
11298: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
11299: ^file::exec/cgi could return invalid status & zombie child can
11300: remain for short period until process exists [very bad in
11301: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
11302:
11303: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
11304: malicious SMTP server to attack as by returning too long status
11305: responses http://i2/tasks/edit/?id=4629448401140924947
11306:
11307: 2004-02-26 paf
11308:
11309: * operators.txt: feature: ^process...{CODE}[now has options] which
11310: are $.main[to what to rename @main] $.file[file,
11311: from which (user says) goes that CODE] $.lineno(line
11312: number in that file, where CODE starts. may be negative)
11313:
11314: * operators.txt, src/classes/op.C, src/include/pa_request.h,
11315: src/main/compile.C, src/main/compile_tools.h,
11316: src/main/pa_request.C: feature: ^process...{CODE}[now has
11317: options] which are $.main[to what to rename @main]
11318: $.file[file, from which (user says) goes that CODE]
11319: $.lineno(line number in that file, where CODE starts. may be
11320: negative)
11321:
11322: 2004-02-25 paf
11323:
1.116 moko 11324: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
11325: old @charsetsdir@ recently erased from configure.in]
1.95 moko 11326:
11327: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
11328: produces hash of column=>1
11329:
11330: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
11331: with incomplete errno constants set
11332:
11333: 2004-02-24 paf
11334:
11335: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
11336: "man select"
11337:
11338: * src/main/pa_os.C: beauty: <0 better then ==-1
11339:
11340: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
11341:
11342: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
11343:
1.116 moko 11344: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 11345:
11346: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
11347: unix: steps to work on unix [extracted 'to']
11348:
11349: * src/classes/mail.C: smtp on unix: steps to work on unix
11350:
11351: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
11352:
1.116 moko 11353: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
11354: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
11355: unix [testing on solaris]
1.95 moko 11356:
11357: 2004-02-20 paf
11358:
11359: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
11360: pointing that out
11361:
11362: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
11363: fixed again [same solution, mistanenly removed one line]
11364:
11365: 2004-02-19 paf
11366:
11367: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
11368: date::create from bad datetime in spring daylightsaving hole now
11369: OK for all platforms [on some platforms it failed]
11370:
11371: * src/classes/: date.C, image.C: beauty: date::create[bad date time
11372: in daylightsaving hole] now throws error
11373:
11374: * src/classes/date.C: comment: mistake fixed
11375:
11376: 2004-02-18 paf
11377:
11378: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
11379: now renderes in $request:charset, but in header puts
11380: $response:charset todo: make that default only so that coder
11381: could override that
11382:
11383: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
11384: turns off omit-xml-declaration
11385:
11386: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
11387: /.xsl for sample
11388:
11389: 2004-02-17 paf
11390:
11391: * src/classes/xdoc.C: beauty: needless helper class removed
11392:
11393: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
11394: copied extra time
11395:
11396: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
11397: part of libxml
11398:
11399: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
11400: libxml to do the work] <xsl:output method="html"
11401: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
11402: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
11403: />
11404:
11405: * src/classes/xdoc.C: beauty: no <meta ... charset generated
11406:
11407: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
11408: caused assertion
11409:
11410: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
11411: could hang. now such add does nothing, sub clears $hash
11412:
11413: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
11414: not made quoted-printable
11415:
11416: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
11417: string invariant
11418:
11419: 2004-02-16 paf
11420:
11421: * src/main/pa_globals.C: bugfix: xml errors copy from library now
11422: cleared [were not cleared properly]
11423:
11424: 2004-02-13 paf
11425:
1.116 moko 11426: * src/include/pa_version.h: prerelease
1.95 moko 11427:
11428: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
11429: used, introducing dependencies timestamp check
11430:
11431: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
11432: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
11433: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
11434: .xsl.stamp now not used, introducing dependencies timestamp check
11435:
11436: * configure.in, bin/auto.p.dist.in: auto.p: @conf made relative
11437:
11438: 2004-02-12 paf
11439:
11440: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
11441: ruined empty <input type=file> submits. parser thought there were
11442: nameless empty file and $form:field got value of type 'file'
11443:
11444: * INSTALL: --without-threads
11445:
11446: * src/include/pa_sapi.h: 2004
11447:
11448: 2004-02-11 paf
11449:
11450: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11451: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11452: classes/hashfile.C, classes/image.C, classes/int.C,
11453: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11454: classes/response.C, classes/string.C, classes/table.C,
11455: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11456: include/pa_array.h, include/pa_cache_managers.h,
11457: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11458: include/pa_config_fixed.h, include/pa_config_includes.h,
11459: include/pa_dictionary.h, include/pa_dir.h,
11460: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11461: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11462: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11463: include/pa_request_charsets.h, include/pa_request_info.h,
11464: include/pa_socks.h, include/pa_sql_connection.h,
11465: include/pa_sql_driver_manager.h, include/pa_stack.h,
11466: include/pa_string.h, include/pa_stylesheet_connection.h,
11467: include/pa_stylesheet_manager.h, include/pa_table.h,
11468: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11469: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11470: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11471: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11472: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11473: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11474: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11475: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11476: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11477: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11478: main/pa_sql_driver_manager.C, main/pa_string.C,
11479: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
11480: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
11481: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
11482: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11483: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11484: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11485: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11486: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11487: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11488: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11489: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11490: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
11491: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
11492: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
11493: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11494: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11495: types/pa_vresponse.h, types/pa_vstateless_class.C,
11496: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
11497: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
11498: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
11499: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11500: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11501: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
11502:
11503: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
11504: debug version of gc.dll
11505:
11506: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11507: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
11508: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
11509: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
11510: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
11511: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
11512: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
11513: processes
11514:
11515: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
11516: main/pa_globals.C, targets/cgi/parser3.vcproj,
11517: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
11518: changes to reflect libxml xsl new folders
11519:
11520: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11521: lib/smtp/smtp.vcproj, main/main.vcproj,
11522: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
11523: to reflect libxml xsl new folders
11524:
11525: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11526: lib/smtp/smtp.vcproj, main/main.vcproj,
11527: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
11528: types/types.vcproj: started changes to reflect libxml xsl new
11529: folders
11530:
11531: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
11532: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
11533: src/main/compile.tab.C, src/main/main.vcproj,
11534: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
11535: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
11536: started changes to reflect libxml xsl new folders
11537:
11538: 2004-02-10 paf
11539:
11540: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
11541: compile. recommened latest libxml up to date
11542:
11543: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
11544: pattern compilation errors", on which spent 4 hours worktime. use
11545: versions higher than that. recommended now latest up to date
11546:
11547: 2004-02-06 paf
11548:
11549: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
11550: beauty: unified destructing style
11551:
11552: * src/main/untaint.C: beauty: removed old def/ifdef
11553:
11554: * src/main/untaint.C: beauty: coredump @unknown untaint language
11555: now
11556:
11557: 2004-02-03 paf
11558:
11559: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
11560: targets/isapi/parser3isapi.C, types/pa_value.C,
11561: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
11562: then %ld/%lu
11563:
11564: * src/main/pa_common.C: typo: %l -> %u
11565:
11566: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
11567: in attributes or documents-results of transform now not xx;
11568:
11569: * src/classes/xnode.C: memleaks found: not fixed yet. todo
11570:
11571: * src/main/pa_charset.C: bugfix: forgot to undo some
11572:
11573: * src/main/pa_charset.C: beauty: uncomment
11574: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
11575: libraries
11576:
11577: 2004-02-02 paf
11578:
11579: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
11580: $cookie:example[ $.value[value] $.path[/there/] ]
11581:
11582: $cookie:example[ $.value[] $.expires[session]
11583: $.path[/there/] $.domain[test.com] ]
11584:
11585: * src/types/pa_vform.C: bugfix: empty values with
11586: enctype=multipart/form-data now produce entries in $form:tables
11587: <form method=post enctype=multipart/form-data> <input type=hidden
11588: name=a> <input type=hidden name=b>
11589:
11590: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
11591: <hr> <pre>$request:body
11592:
11593: 2004-01-30 paf
11594:
11595: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
11596: or documents-results of transform now not xx;
11597:
11598: * src/classes/date.C: bugfix: ^date::create[invalid fields now
11599: produce exception.
11600:
11601: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
11602: bugfix: ^date::create[invalid fields now produce exception.
11603:
11604: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
11605: year] now produces exception. todo: check other fields
11606:
11607: 2004-01-29 paf
11608:
11609: * src/include/pa_memory.h: typo error
11610:
11611: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
11612: more byte then specified, then zeroed it << useless and
11613: potentially harmful(could gpf)
11614:
11615: 2004-01-22 paf
11616:
11617: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
11618:
11619: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
11620: optimization
11621:
11622: * src/main/untaint.C: bugfix: whitespace now optimized properly
11623: [were bug: ^taint[1 & 2]="1 &2"
11624:
11625: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
11626: errors
11627:
11628: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
11629: overflow
11630:
11631: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
11632: error-reporting code * in parser-error reporting code [when no
11633: @unhandled_exception defined]
11634:
11635: fixed in one place: my *snprintf override
11636:
11637: 2004-01-13 paf
11638:
11639: * operators.txt: typo erro
11640:
11641: 2003-12-25 paf
11642:
11643: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
11644: garbled [pieces after zero bytes were removed]
11645:
11646: 2003-12-22 paf
11647:
1.116 moko 11648: * src/include/Makefile.am: bugfix: removed from dist:
11649: src/include/pa_config_auto.h which were configured for
1.95 moko 11650: make-dist-platform and badly updated proper config file in target
11651: [when .tar used for updating existing source tree]
11652:
11653: * ChangeLog, operators.txt, src/classes/op.C,
11654: src/include/pa_sql_connection.h,
11655: src/include/pa_sql_driver_manager.h,
11656: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
11657: feature: sql introducing ability to transcode charsets
11658:
11659: 2003-12-19 paf
11660:
11661: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
11662: error message
11663:
11664: * src/main/pa_charset.C: bugfix: memory for charsethandler
11665: structure for libxml now allocated properly
11666:
11667: 2003-12-17 paf
11668:
11669: * src/types/pa_vfile.C: beauty: removed outdated cast
11670:
11671: * src/main/pa_common.C: bugfix: empty http response caused gpf
11672:
11673: * src/include/pa_string.h: bugfix: removed too strong a assert
11674:
11675: * src/main/pa_globals.C: bugfix: removed false warning [warning:
11676: unreported xmlGenericErrors]
11677:
11678: 2003-12-15 paf
11679:
11680: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
11681: works}
11682:
11683: 2003-12-11 paf
11684:
11685: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
11686: id
11687: !$status:tid thread id
11688:
11689: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
11690: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
11691: bugfix(solaris): removed dependency on object initialization
11692: order [one more place]
11693:
11694: * src/: classes/file.C, classes/mail.C, classes/op.C,
11695: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
11696: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
11697: understand that
11698:
11699: * src/: classes/file.C, classes/mail.C, classes/op.C,
11700: classes/xdoc.C, include/pa_cache_managers.h,
11701: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11702: include/pa_stylesheet_manager.h, main/pa_request.C,
11703: main/pa_stylesheet_manager.C, types/pa_vimage.C,
11704: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
11705: ctor call [relying on implicit String::Body(cstr) call]
11706:
11707: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
11708: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
11709: object initialization order [two places]
11710:
11711: 2003-12-10 paf
11712:
11713: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
11714: << time now ok
11715:
11716: * operators.txt, src/main/pa_sql_driver_manager.C,
11717: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
11718: operational
11719:
11720: * ChangeLog, operators.txt, src/classes/xdoc.C,
11721: src/include/pa_charset.h, src/include/pa_sql_connection.h,
11722: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
11723: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
11724: back operational
11725:
11726: 2003-12-02 paf
11727:
11728: * src/types/pa_vmail.C: bugfix:
11729: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
11730: as-is forced]
11731:
11732: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
11733: exceptions out of libxml callbacks: reimplemented error handling
11734: of http://localhost, parser://method and safemode check callbacks
11735:
11736: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
11737: [merged from HEAD]
11738:
11739: * src/classes/image.C: nothing: comment removed
11740:
11741: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
11742: addresses to int
11743:
11744: 2003-12-01 paf
11745:
11746: * src/main/pa_xml_io.C: bugfix: typo
11747:
11748: * src/main/pa_globals.C: bugfix: win32: compile prob
11749:
11750: * src/classes/xdoc.C: bugfix: typo
11751:
11752: * src/main/pa_xml_io.C: todo: safe mode check not to throw
11753: exception
11754:
11755: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
11756:
11757: 2003-11-28 paf
11758:
11759: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
11760: all xml documents read
11761:
11762: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
11763:
11764: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
11765: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
11766: replaced original open mech of xdoc::create & co to use libxml
11767: open, so that this would work for root document todo: safe mode
11768: checks to libxml: ideally to some 1 point
11769:
11770: * src/main/pa_xml_io.C: comment
11771:
11772: * operators.txt, src/main/pa_xml_io.C: leading / in
11773: http://parser[abscent params]
11774:
11775: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
11776: works. todo: maybe replace original open mech of xdoc::create &
11777: co to use libxml open, so that this would work for root document
11778:
11779: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
11780: "parser://method/params/here"> <test> &test^; </test> }]
11781:
11782: ^taint[^xdoc.string[]]
11783:
11784: @method[param] <!ENTITY test
11785: "test-entity-value+$form:user+$param!">
11786:
11787: 2003-11-27 paf
11788:
11789: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
11790:
11791: * src/classes/date.C: bugfix: typo error
11792:
11793: 2003-11-26 paf
11794:
11795: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
11796: src/main/Makefile.am, src/main/main.vcproj,
11797: src/main/pa_globals.C, src/main/pa_request.C,
11798: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
11799: xml errors to hash<thread_id,error> reorganization: xml io moved
11800: to pa_xml_io.C/h
11801:
11802: * src/types/pa_value.h: warnings: --
11803:
11804: 2003-11-25 paf
11805:
11806: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
11807: whatever)
11808:
11809: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
11810: a, (c?x:y, z)
11811:
11812: * src/main/untaint.C: bugfix: consequences of not reading this
11813: comment: CORD_pos_chars_left /* Number of characters in cache.
11814: <= 0 ==> none */
11815:
11816: * src/include/pa_array.h: removed needless checks
11817:
11818: 2003-11-24 paf
11819:
11820: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
11821: removed limit: now $form:xxx can be accessed anytime, even in
11822: @auto/conf [and request/response:charset still can be changed
11823: anytime]
11824:
11825: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
11826: now not transcodes response body
11827:
11828: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
11829: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
11830: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
11831: $xdoc.firstChild.firstChild.nodeValue[different]
11832: ^taint[^xdoc.string[]]
11833:
11834: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
11835: workaround: static Hash::allocates -> static Hash_allocates
11836:
11837: 2003-11-21 paf
11838:
1.116 moko 11839: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
11840: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
11841: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 11842:
11843: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
11844:
11845: * src/classes/mail.C: bugfix: typo
11846:
11847: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 11848: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
11849: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
11850: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
11851: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 11852: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
11853:
11854: * src/main/pa_exec.C: bug in safe mode
11855:
11856: * src/include/Makefile.am: pa_xml_exception.h
11857:
11858: * src/targets/isapi/parser3isapi.C: more warnings --
11859:
11860: 2003-11-20 paf
11861:
11862: * src/: classes/math.C, classes/op.C, classes/string.C,
11863: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
11864: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
11865: --
11866:
11867: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
11868: more warnings --
11869:
11870: * src/classes/xdoc.C: more warnings --
11871:
11872: * src/classes/: date.C, image.C, xdoc.C: more warnings --
11873:
11874: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
11875: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
11876:
11877: * src/: classes/date.C, classes/file.C, classes/hash.C,
11878: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
11879: classes/table.C, include/pa_cache_managers.h,
11880: include/pa_stylesheet_connection.h, main/pa_request.C,
11881: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
11882: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
11883: --
11884:
11885: * src/main/: execute.C, pa_request.C: old forgotten todo: when
11886: can't report problem (undefined @unhandled_exception) problem
11887: source string were not reported
11888:
11889: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11890: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11891: classes/hashfile.C, classes/image.C, classes/int.C,
11892: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11893: classes/response.C, classes/string.C, classes/table.C,
11894: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11895: include/pa_array.h, include/pa_cache_managers.h,
11896: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11897: include/pa_config_fixed.h, include/pa_dictionary.h,
11898: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
11899: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
11900: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
11901: include/pa_request.h, include/pa_request_charsets.h,
11902: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
11903: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11904: include/pa_stack.h, include/pa_string.h,
11905: include/pa_stylesheet_connection.h,
11906: include/pa_stylesheet_manager.h, include/pa_table.h,
11907: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11908: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
11909: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
11910: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11911: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11912: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11913: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11914: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
11915: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
11916: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
11917: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
11918: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
11919: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
11920: targets/isapi/parser3isapi.C, types/pa_junction.h,
11921: types/pa_method.h, types/pa_value.C, types/pa_value.h,
11922: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
11923: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11924: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
11925: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
11926: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
11927: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
11928: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
11929: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
11930: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
11931: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11932: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11933: types/pa_vresponse.h, types/pa_vstateless_class.C,
11934: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
11935: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
11936: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
11937: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11938: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11939: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
11940: const IDENT
11941:
11942: * src/: include/pa_array.h, include/pa_pool.h,
11943: include/pa_request.h, include/pa_string.h, include/pa_table.h,
11944: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
11945: types/pa_wcontext.h: more warnings --
11946:
11947: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
11948: classes/file.C, classes/hash.C, classes/hashfile.C,
11949: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
11950: classes/memory.C, classes/op.C, classes/string.C,
11951: classes/table.C, classes/xdoc.C, classes/xnode.C,
11952: include/pa_config_includes.h, include/pa_operation.h,
11953: include/pa_sql_connection.h, include/pa_table.h,
11954: include/pa_types.h, lib/ltdl/config_fixed.h,
11955: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
11956: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11957: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
11958: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
11959: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
11960: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
11961: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
11962: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
11963: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
11964: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
11965: types/pa_vmail.C, types/pa_vobject.C,
11966: types/pa_vstateless_class.h, types/pa_vtable.C,
11967: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
11968: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
11969: on all projects (except libltdl=off & libsdbm=level3) found
11970: several unitialized vars
11971:
11972: 2003-11-19 paf
11973:
11974: * src/classes/op.C: more ansi C++ comp
11975:
11976: * operators.txt, src/classes/op.C, src/include/pa_request.h,
11977: src/main/pa_request.C: ^cache[...]{body}{catch block with
11978: $exception.handled[cache] meaning "get expired cache, if any.
11979: else error"}
11980:
11981: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
11982: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
11983: ^cache[...]{body}{catch code with $exception.cache field}
11984:
11985: 2003-11-12 paf
11986:
11987: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
11988: [copy/paste bug]
11989:
11990: 2003-11-11 paf
11991:
11992: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
11993: failed]
11994:
11995: * bin/auto.p.dist.in: colno
11996:
11997: 2003-11-10 paf
11998:
11999: * src/types/pa_vconsole.h: flush
12000:
12001: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
12002: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
12003: read/write [for nntp]
12004:
12005: * operators.txt: mysql: transaction support: ?autocommit=0
12006:
12007: * operators.txt: comment: updated
12008:
12009: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
12010: serialize version and exipire now removes entries
12011:
12012: * operators.txt: ^hashfile.delete[] removes files altogether [and
12013: dir, if could]
12014:
12015: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
12016: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
12017: removes files altogether [and dir, if could]
12018:
12019: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
12020: nonexistent pair. .c coded that that was error. fixed
12021:
12022: * src/types/pa_vhashfile.C: sdbm: exception type change to
12023: file.access [regretfull can't split it to different exceptions
12024: without modifying sdbm source wich would prefer not to]
12025:
12026: 2003-11-07 paf
12027:
12028: * src/: classes/date.C, classes/file.C, classes/hash.C,
12029: classes/hashfile.C, classes/image.C, classes/table.C,
12030: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
12031: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
12032: main/execute.C, main/main.vcproj, main/pa_pool.C,
12033: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
12034: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
12035: types/pa_vstateless_class.h: resurrected: pool idea. now only for
12036: destructing objects at request processing end
12037:
12038: 2003-11-06 paf
12039:
12040: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
12041: updates
12042:
12043: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
12044: to include sdbm
12045:
1.116 moko 12046: * src/include/: pa_config_includes.h, pa_version.h: our
12047: replacements of max& co only for cpp
1.95 moko 12048:
12049: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
12050: upper dir, .am updated
12051:
12052: * tests/todo.txt: hashfile: done
12053:
12054: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
12055: expiration [time in value. todo: move time to key]
12056:
12057: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
12058:
12059: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
12060: to do that in foreach, no errors, but surely wrong]
12061:
12062: * operators.txt, src/types/pa_vhashfile.C,
12063: src/types/pa_vhashfile.h: hashfile: clear and proper locking
12064:
12065: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
12066: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
12067: foreach
12068:
12069: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
12070: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
12071:
12072: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
12073: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
12074:
12075: * src/: include/pa_memory.h, targets/cgi/parser3.C,
12076: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
12077: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
12078: get/put [raw]
12079:
12080: * src/: classes/op.C, main/pa_os.C: just linked
12081:
12082: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
12083: XmlException changes
12084:
12085: * src/: include/pa_charset.h, include/pa_globals.h,
12086: include/pa_stylesheet_connection.h, main/pa_exception.C:
12087: XmlException changes
12088:
12089: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
12090:
12091: * src/: include/pa_common.h, include/pa_exception.h,
12092: main/main.vcproj, main/pa_common.C, include/pa_os.h,
12093: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
12094: main/pa_xml_exception.C: locking move to pa_os [along with
12095: pa_sleep] apr-impl locking done
12096:
12097: * configure, configure.in, operators.txt, parser3.sln,
12098: src/classes/classes.vcproj, src/classes/hashfile.C,
12099: src/classes/xdoc.C, src/include/pa_config_fixed.h,
12100: src/include/pa_exception.h, src/include/pa_globals.h,
12101: src/include/pa_memory.h, src/include/pa_version.h,
12102: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
12103: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
12104: src/main/compile.tab.C, src/main/main.vcproj,
12105: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
12106: src/types/Makefile.am, src/types/pa_vhash.C,
12107: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
12108: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
12109: again with sdbm from apache
12110:
12111: 2003-11-05 paf
12112:
12113: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12114: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
12115: \parser3project dir anymore
12116:
12117: * src/main/pa_charset.C: bugfix: had broken binary search [copied
12118: thoughtlessly from xalan]
12119:
12120: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
12121: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
12122: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
12123:
12124: * src/main/helpers/CaseFolding.txt:
12125: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
12126:
12127: 2003-11-04 paf
12128:
12129: * operators.txt: comment: ^mail:send[$.options[
12130:
12131: * src/classes/table.C: compiled on unix
12132:
1.116 moko 12133: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 12134:
12135: * src/classes/mail.C: compiled on unix
12136:
12137: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
12138: src/types/pa_vmail.h: !^mail:send[
12139: $.options[unix: string to append to sendmail command
12140: line]
12141:
12142: * operators.txt, src/classes/table.C, src/main/pa_string.C,
12143: tests/todo.txt: ^table.save[... $.separator[^#09]
12144: $.encloser["] <nothing> by default
12145:
12146: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
12147: !$.separator[^#09] !$.encloser["] <nothing> by
12148: default
12149:
12150: 2003-11-03 paf
12151:
12152: * operators.txt, src/classes/table.C, src/main/pa_common.C:
12153: ^table::load[; options: !$.column-separator[^#09]
12154: !$.column-encloser["]
12155:
12156: * operators.txt, src/include/pa_config_fixed.h,
12157: src/types/pa_vrequest.C: $request:document-root
12158:
12159: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
12160: [already included into uri=xxx]
12161:
12162: * operators.txt, src/classes/image.C, tests/todo.txt:
12163: ^image.gif[filename] for $response:download
12164:
12165: * src/classes/date.C: minor precaution
12166:
12167: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
12168: !^date.unix-timestamp[]
12169:
12170: 2003-10-30 paf
12171:
12172: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
12173: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
12174:
12175: * src/classes/: date.C, image.C: improvement diagnostics:
12176: $now[^date::create[$undefined]] now is error
12177:
12178: * src/main/pa_common.C: read errors would now be reported 'actually
12179: read -1 bytes'
12180:
12181: 2003-10-24 paf
12182:
12183: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
12184: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
12185: src/main/Makefile.am, src/targets/cgi/Makefile.am,
12186: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
12187:
12188: 2003-10-22 paf
12189:
12190: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
12191:
12192: 2003-10-21 paf
12193:
12194: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
12195: fixed: string.match[g] without <'> option produced columns with
12196: NULL's, which gpf'ed at table.save time
12197:
12198: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
12199: recoursion' message with intensive throw-catches fixed: incorrect
12200: name and line (one name upper then needed) in error message about
12201: problems inside try block
12202:
12203: 2003-10-10 paf
12204:
12205: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
12206: check offset argument for validity did that in String::Body::pos
12207: myself http://i2/tasks/edit/?id=4577425257580789777
12208:
12209: 2003-10-07 paf
12210:
12211: * src/main/: compile.tab.C, compile.y: ^if ( better error:
12212: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
12213:
12214: 2003-10-03 paf
12215:
12216: * parser3.sln, src/include/pa_dictionary.h,
12217: src/main/pa_dictionary.C, src/main/pa_string.C,
12218: src/targets/cgi/parser3.vcproj: dictionary optimized by
12219: precalculating cstr&length
12220:
12221: 2003-10-02 paf
12222:
12223: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
12224: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
12225: main/pa_stylesheet_manager.C: bugfix: ^throw context were
12226: saved/restored incompletely http://www.parser.ru/forum/?id=21484
12227:
12228: 2003-09-30 paf
12229:
12230: * src/main/pa_string.C: string::replace bug fix [were ignoring
12231: occurrances after lang-mismatched
12232:
12233: 2003-09-29 paf
12234:
12235: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
12236: helper
12237:
12238: * src/main/pa_string.C: string::serialize bug fix with
12239: zero-terminator
12240:
12241: * src/classes/table.C: ^nameless_table.save column row now has no
12242: \t at the end
12243:
12244: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
12245: @postprocess now takes $response:body/download
12246:
12247: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
12248: error message
12249:
12250: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
12251:
12252: * src/classes/table.C: bugfix: flip: must produce nameless
12253: http://i2/tasks/edit/?id=4573405524674081244
12254:
12255: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
12256: main/helpers/simple_folding.pl: utf-8 upper/lower
12257:
12258: * src/main/pa_common.C: bugfix: utf signature were not ignored due
12259: to typo error http://i2/tasks/edit/?id=4573354650786434584
12260:
12261: 2003-09-26 paf
12262:
12263: * src/main/untaint.C: removed needless field
12264:
12265: * src/main/untaint.C: removed needless const
12266:
12267: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
12268: String.for_each bug fixed [omited one-char cases]
12269:
12270: * src/include/pa_stack.h: bugfix: before collecting garbage,
12271: runtime-executor stack were cleared... BADLY
12272:
12273: * src/main/pa_string.C: ^stirng.replace code used old
12274: param-convention on langs.append, fixed that search fo the like,
12275: found none
12276:
12277: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
12278: string::serialize/deserialize implemented Language enum assigned
12279: meaningful letters [more convinient for debugging. read warning
12280: before adding/changing anything]
12281:
12282: 2003-09-25 paf
12283:
12284: * src/: include/pa_string.h, include/pa_version.h,
12285: main/pa_string.C, main/untaint.C: templates and anonymous unions
12286: differences on unix
12287:
12288: * parser3.sln, src/classes/file.C, src/classes/image.C,
12289: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
12290: src/classes/xdoc.C, src/classes/xnode.C,
12291: src/include/pa_cache_managers.h, src/include/pa_charset.h,
12292: src/include/pa_charsets.h, src/include/pa_common.h,
12293: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
12294: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
12295: src/include/pa_table.h, src/lib/cord/cordbscs.c,
12296: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
12297: src/lib/cord/include/cord.h, src/main/compile.tab.C,
12298: src/main/compile_tools.h, src/main/pa_charset.C,
12299: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
12300: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
12301: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
12302: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
12303: src/types/pa_vmail.C, src/types/pa_vmath.C,
12304: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
12305: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
12306:
12307: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
12308: functions aligned to that of eeparser3 look
12309:
12310: * src/lib/cord/cordprnt.c: removed warnings
12311:
12312: 2003-09-24 paf
12313:
12314: * src/: classes/file.C, classes/image.C, classes/mail.C,
12315: classes/op.C, classes/xdoc.C, classes/xnode.C,
12316: include/pa_cache_managers.h, include/pa_charset.h,
12317: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
12318: include/pa_sql_driver_manager.h, include/pa_string.h,
12319: include/pa_stylesheet_manager.h, include/pa_table.h,
12320: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
12321: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
12322: main/pa_sql_driver_manager.C, main/pa_string.C,
12323: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
12324: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
12325: types/pa_vstateless_class.h, types/pa_vstatus.C,
12326: types/pa_vxnode.C: v() functions of String::Body,
12327: String::Languages and String itself StringBody->String::Body
12328:
12329: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12330: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
12331: never optimized anything. todo: somehow speed up harder cases:
12332: concatenationA+concatenationB when last block of A and first of B
12333: contain same letters
12334:
12335: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12336: lib/cord/include/cord.h: langs: speed up by joining adjucent
12337: blocks of same char [CORD_append_block]
12338:
12339: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12340: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
12341: save space by extending blocks when appending block with c ==
12342: lastblock.c
12343:
12344: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
12345: working yet :( but more working &understood :)
12346:
12347: * src/: classes/table.C, include/pa_string.h,
12348: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
12349:
12350: 2003-09-23 paf
12351:
12352: * src/main/untaint.C: $a[ok!] $a works!
12353:
12354: * src/main/untaint.C: something even more works :)
12355:
12356: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
12357: something more works :)
12358:
12359: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12360: lib/cord/cordxtra.c: something already works :)
12361:
12362: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
12363: serialize&deserialize
12364:
12365: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
12366: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
12367: main/untaint.C: main idea implemented, details left
12368:
12369: 2003-09-22 paf
12370:
12371: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
12372:
12373: * src/classes/xnode.C: copy/paste comment bugfix
12374:
12375: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
12376: allocator returns 0, just die.
12377: http://i2/tasks/edit/?id=4570798492410259445
12378:
12379: * src/classes/xdoc.C: copy/paste comment bugfix
12380:
12381: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
12382: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
12383: xnode: getAttributeNS setAttributeNS removeAttributeNS
12384: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
12385:
12386: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
12387: chars due to bitwise operation signed-char error]
12388:
12389: 2003-09-19 paf
12390:
12391: * src/types/pa_wcontext.C: output message: more practical
12392: suggestion
12393:
12394: * src/main/pa_common.C, operators.txt: merged
12395: $f[^file::load[binary;http://...]] $f.tables
12396:
12397: 2003-09-02 paf
12398:
12399: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
12400: flush stdout without referencing 'stdout' symbol. to hell with
12401: non-ansi libraries without 'stdout' symbol
12402:
12403: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
12404: unix (users reported problems with some old libc)
12405:
12406: * src/types/pa_vdate.h: forgot initializer
12407:
12408: 2003-09-01 paf
12409:
12410: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
12411: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
12412: zone]
12413:
12414: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
12415:
12416: 2003-08-19 paf
12417:
12418: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
12419: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
12420: simplified a little
12421:
12422: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
12423: [lost fix from 3.0.8]
12424:
12425: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
12426: visible here }
12427:
12428: bug fix
12429:
12430: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
12431:
12432: * src/main/compile.tab.C: initialized couple of variables about
12433: which user reported runtime problems when parser were compiled
12434: with VC7, warning level4. study shows that later in bison
12435: they've fixed that. would migrate to latest bison someday
12436:
12437: * src/types/pa_vmail.C: turned off recoding in gmime (were still
12438: recoding headers)
12439:
12440: * src/types/pa_vmail.C: works as before, same charset problems:
12441: gmime recodes to UTF-8 only headers, not body. so not recoding
12442: anything for now
12443:
12444: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
12445: problems with body
12446:
12447: * src/types/pa_vmail.C: mail_receive just compiled
12448:
12449: 2003-08-18 paf
12450:
12451: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12452: main/main.vcproj, types/types.vcproj: win32: continued process
12453: detaching from \parser3project directory
12454:
12455: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
12456: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
12457: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
12458: src/lib/pcre/pcre_dftables.dsp,
12459: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
12460: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
12461: src/types/types.dsp: moved to MSVC 7
12462:
12463: * gnu.vcproj.vspscc, parser3.vssscc,
12464: src/classes/classes.vcproj.vspscc,
12465: src/lib/cord/cord.vcproj.vspscc,
12466: src/lib/ltdl/libltdl.vcproj.vspscc,
12467: src/lib/md5/md5.vcproj.vspscc,
12468: src/lib/pcre/pcre_dftables.vcproj.vspscc,
12469: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
12470: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
12471: src/targets/isapi/parser3isapi.vcproj.vspscc,
12472: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
12473: moved to MSVC 7
12474:
12475: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
12476: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
12477: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
12478: src/lib/pcre/pcre_dftables.vcproj,
12479: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
12480: src/targets/cgi/parser3.vcproj,
12481: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
12482: new VS project files
12483:
12484: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
12485: .NET to detect Jalindi Igloo capabilities.
12486:
12487: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 12488: src/classes/classes.awk, src/doc/footer.htm,
12489: src/include/pa_config_fixed.h, src/include/pa_version.h,
12490: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 12491: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
12492: src/types/pa_vmail.C: merged 3.1.0 latest changes
12493:
12494: 2003-08-15 paf
12495:
12496: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
12497: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
12498:
12499: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
12500: non-ascii <yyy> now encoded correctly
12501:
12502: 2003-07-29 paf
12503:
1.116 moko 12504: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
12505: dist
1.95 moko 12506:
12507: * src/types/pa_vmail.C: just started --with-mail-receive
12508:
12509: 2003-07-28 paf
12510:
1.116 moko 12511: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
12512: dependence in src/classes, src/lib/gc now in dist
1.95 moko 12513:
12514: * src/main/pa_string.C: ^cache bug fix [were not working at all]
12515:
12516: 2003-07-25 paf
12517:
12518: * src/doc/footer.htm: year
12519:
12520: 2003-07-24 paf
12521:
12522: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
12523: fix
12524:
12525: * src/include/pa_version.h: release
12526:
1.116 moko 12527: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 12528:
12529: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
12530: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
12531: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
12532: getting rid of win32xml pseudo project
12533:
12534: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
12535:
1.116 moko 12536: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
12537: configure.in, operators.txt, parser3.dsw,
1.95 moko 12538: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 12539: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 12540: src/classes/classes.C, src/classes/classes.awk,
12541: src/classes/classes.dsp, src/classes/classes.h,
12542: src/classes/date.C, src/classes/double.C, src/classes/file.C,
12543: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
12544: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
12545: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
12546: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12547: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
12548: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
12549: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 12550: src/include/pa_array.h, src/include/pa_cache_managers.h,
12551: src/include/pa_charset.h, src/include/pa_charsets.h,
12552: src/include/pa_common.h, src/include/pa_config_auto.h.in,
12553: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
12554: src/include/pa_dictionary.h, src/include/pa_dir.h,
12555: src/include/pa_exception.h, src/include/pa_exec.h,
12556: src/include/pa_globals.h, src/include/pa_hash.h,
12557: src/include/pa_memory.h, src/include/pa_opcode.h,
12558: src/include/pa_operation.h, src/include/pa_pool.h,
12559: src/include/pa_pragma_pack_begin.h,
1.95 moko 12560: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
12561: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
12562: src/include/pa_sapi.h, src/include/pa_socks.h,
12563: src/include/pa_sql_connection.h,
12564: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
12565: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
12566: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
12567: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 12568: src/include/pa_uue.h, src/lib/Makefile.am,
12569: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
12570: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
12571: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
12572: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 12573: src/lib/cord/include/ec.h,
12574: src/lib/cord/include/private/Makefile.am,
12575: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 12576: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
12577: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 12578: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 12579: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
12580: src/main/compile_tools.C, src/main/compile_tools.h,
12581: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
12582: src/main/pa_cache_managers.C, src/main/pa_charset.C,
12583: src/main/pa_charsets.C, src/main/pa_common.C,
12584: src/main/pa_dictionary.C, src/main/pa_dir.C,
12585: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 12586: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
12587: src/main/pa_request.C, src/main/pa_socks.C,
12588: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
12589: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 12590: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
12591: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
12592: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
12593: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
12594: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
12595: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
12596: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 12597: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
12598: src/targets/isapi/parser3isapi.dsp,
12599: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 12600: src/types/pa_junction.h, src/types/pa_method.h,
12601: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 12602: src/types/pa_vclass.C, src/types/pa_vclass.h,
12603: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
12604: src/types/pa_vcookie.h, src/types/pa_vdate.h,
12605: src/types/pa_vdouble.h, src/types/pa_venv.h,
12606: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
12607: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
12608: src/types/pa_vimage.C, src/types/pa_vimage.h,
12609: src/types/pa_vint.h, src/types/pa_vjunction.h,
12610: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
12611: src/types/pa_vmath.h, src/types/pa_vmemory.h,
12612: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
12613: src/types/pa_vobject.C, src/types/pa_vobject.h,
12614: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
12615: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
12616: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
12617: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
12618: src/types/pa_vstatus.h, src/types/pa_vstring.C,
12619: src/types/pa_vstring.h, src/types/pa_vtable.C,
12620: src/types/pa_vtable.h, src/types/pa_vvoid.h,
12621: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12622: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12623: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
12624: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
12625: HEAD
12626:
12627: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
12628: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
12629: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
12630: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
12631: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
12632: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
12633: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
12634: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
12635: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
12636: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
12637: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
12638: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
12639: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
12640: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
12641: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
12642: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
12643: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
12644: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
12645: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
12646: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
12647: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
12648: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
12649: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
12650: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
12651: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
12652: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
12653: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
12654: outputs/create-dir, results/001.processed, results/002.processed,
12655: results/003.processed, results/004.processed,
12656: results/005.processed, results/006.processed,
12657: results/007.processed, results/008.processed,
12658: results/009.processed, results/010.processed,
12659: results/011.processed, results/012.processed,
12660: results/013.processed, results/014.processed,
12661: results/015.processed, results/016.processed,
12662: results/017.processed, results/018.processed,
12663: results/019.processed, results/020.processed,
12664: results/021.processed, results/022.processed,
12665: results/023.processed, results/024.processed,
12666: results/025.processed, results/026.processed,
12667: results/027.processed, results/028.processed,
12668: results/029.processed, results/030.processed,
12669: results/031.processed, results/032.processed,
12670: results/033.processed, results/034.processed,
12671: results/035.processed, results/036.processed,
12672: results/037.processed, results/038.processed,
12673: results/039.processed, results/040.processed,
12674: results/041.processed, results/042.processed,
12675: results/043.processed, results/044.processed,
12676: results/045.processed, results/046.processed,
12677: results/047.processed, results/048.processed,
12678: results/049.processed, results/050.processed,
12679: results/051.processed, results/052.processed,
12680: results/053.processed, results/054.processed,
12681: results/055.processed, results/056.processed,
12682: results/057.processed, results/058.processed,
12683: results/059.processed, results/060.processed,
12684: results/061.processed, results/062.processed,
12685: results/063.processed, results/064.processed,
12686: results/065.processed, results/066.processed,
12687: results/067.processed, results/068.processed,
12688: results/069.processed, results/070.processed,
12689: results/071.processed, results/072.processed,
12690: results/073.processed, results/074.processed,
12691: results/075.processed, results/076.processed,
12692: results/077.processed, results/078.processed,
12693: results/079.processed, results/080.processed,
12694: results/081.processed, results/082.processed,
12695: results/083.processed, results/084.processed,
12696: results/085.processed, results/086.processed,
12697: results/087.processed, results/088.processed,
12698: results/089.processed, results/090.processed,
12699: results/091.processed, results/092.processed,
12700: results/093.processed, results/094.processed,
12701: results/095.processed, results/096.processed,
12702: results/097.processed, results/098.processed,
12703: results/099.processed, results/100.processed,
12704: results/101.processed, results/102.processed,
12705: results/103.processed, results/104.processed,
12706: results/105.processed, results/106.processed,
12707: results/107.processed, results/108.processed,
12708: results/109.processed, results/110.processed,
12709: results/111.processed, results/112.processed,
12710: results/113.processed, results/114.processed,
12711: results/115.processed, results/116.processed,
12712: results/117.processed, results/118.processed,
12713: results/119.processed, results/120.processed,
12714: results/121.processed, results/122.processed,
12715: results/123.processed, results/124.processed,
12716: results/125.processed, results/126.processed,
12717: results/127.processed, results/128.processed,
12718: results/129.processed, results/130.processed,
12719: results/131.processed, results/132.processed,
12720: results/133.processed, results/134.processed,
12721: results/135.processed, results/136.processed,
12722: results/137.processed, results/138.processed,
12723: results/139.processed, results/140.processed,
12724: results/141.processed: merged(copied) to HEAD from template_gc
12725:
12726: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
12727: towards \parser3project not having to be in root
12728:
12729: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
12730: module compiled [were minor unnecessary changes in lib/md5
12731: interface]
12732:
12733: * src/include/pa_version.h: release
12734:
12735: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
12736:
12737: * src/classes/math.C: merged uuid bugfix
12738:
12739: * tests/: 141.html, results/141.processed: fixed bug with
12740: too-small-a-buffer
12741:
12742: * src/classes/math.C: uuid bugfix
12743:
12744: * tests/: 141.html, Makefile, results/005.processed,
12745: results/030.processed, results/075.processed,
12746: results/078.processed: to reflect date format change (were -
12747: become ' ')
12748:
12749: * src/classes/math.C: uuid bugfix
12750:
12751: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
12752: debug/release changes
12753:
12754: * src/lib/md5/pa_md5c.c: PA_ -> pa_
12755:
12756: 2003-07-23 paf
12757:
12758: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
12759: renamed a little [to move to comman naming conv]
12760:
1.116 moko 12761: * src/targets/Makefile.am: apache13 splitted to simplify apache
12762: build
1.95 moko 12763:
12764: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
12765: main/pa_request.C, main/pa_sql_driver_manager.C,
12766: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
12767: stack top_index() fixed
12768:
12769: * src/main/pa_globals.C: minor style changes
12770:
12771: * src/: classes/op.C, include/pa_sql_connection.h: connection
12772: closing/caching fixed [connections were not closed/put to cache]
12773:
12774: 2003-07-22 paf
12775:
12776: * INSTALL: gc part updated stightly
12777:
12778: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
12779: new sapi interface
12780:
12781: * src/classes/file.C: comment on OS
12782:
12783: * src/main/pa_string.C: removed reduntant invariant check [there is
12784: one deeper in cord lib]
12785:
12786: * src/main/pa_exec.C: on win32 bugfix in handling shbang
12787:
12788: * src/main/pa_memory.C: out of memory is no longer coredump
12789:
12790: * INSTALL: disable-threads adviced
12791:
12792: 2003-07-21 paf
12793:
1.116 moko 12794: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 12795:
12796: * src/classes/file.C: file::exec/cgi environment variables now must
12797: be UPPERCASE and A-Z 0-9 _-
12798:
12799: * src/classes/file.C: env passing fixed
12800:
12801: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
12802:
12803: * src/main/pa_common.C: http:// CRLF now
12804:
12805: 2003-07-02 paf
12806:
12807: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
12808: fields to reflect their real meaning
12809:
12810: 2003-06-27 paf
12811:
12812: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
12813: include/pa_hash.h, main/pa_charset.C: merged from HEAD
12814: file::exec/cgi .charset
12815:
12816: 2003-06-26 paf
12817:
12818: * ChangeLog, src/classes/file.C, src/classes/hash.C,
12819: src/classes/image.C, src/classes/op.C, src/classes/string.C,
12820: src/classes/table.C: fixed several uninitialized local
12821: structures. notably ^hash.foreach now inserts delimiters
12822: properly [were inserting it before first body]
12823:
12824: 2003-06-24 paf
12825:
12826: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
12827:
12828: 2003-06-20 paf
12829:
12830: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
12831: src/main/pa_globals.C: introducing
12832: $f[^file::load[binary;http://...]] $f.tables
12833:
12834: 2003-06-06 paf
12835:
12836: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
12837: table. [were method lookup: inconsistent]
12838:
12839: 2003-06-02 paf
12840:
12841: * src/include/pa_memory.h: empty string clone fixed to return
12842: writable memory
12843:
12844: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
12845: were not appended] which violated string invariant
12846:
12847: 2003-05-30 paf
12848:
12849: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
12850: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
12851:
12852: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
12853: GMT ; RFC 822, updated by RFC 1123
12854:
12855: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
12856: targets/isapi/parser3isapi.C: initialized request_info properly
12857:
12858: * src/classes/xnode.C: found minor bug, commended for future
12859:
12860: 2003-05-28 paf
12861:
12862: * src/classes/form.C: request_info.content_length can't be <0,
12863: size_t for some time
12864:
12865: 2003-05-26 paf
12866:
12867: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
12868: forgotten <0 changed to !=STRING_NOT_FOUND
12869:
12870: * src/classes/math.C: merged ffffu from HEAD
12871:
12872: 2003-05-11 paf
12873:
12874: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
12875:
12876: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
12877: premature doc free. transformed document had xmlDoc reference
12878: stored to non-gc-memory (libgdome) added holding-reference
12879:
12880: 2003-04-29 paf
12881:
12882: * src/main/pa_globals.C: started digging on double free. on win32
12883: found that that's perfectly normal.
12884:
12885: 2003-04-25 paf
12886:
12887: * src/classes/table.C: table.join bug fix [bad limit check]
12888:
12889: * src/classes/math.C: merged from HEAD: simpiler hash_string
12890:
12891: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
12892: print anything. changed to quicker and simplier code
12893:
12894: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
12895: strict a check]
12896:
12897: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
12898:
12899: 2003-04-24 paf
12900:
12901: * src/include/pa_table.h: too strict assert loosened
12902:
12903: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
12904: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
12905: report
12906:
12907: 2003-04-21 paf
12908:
1.116 moko 12909: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 12910:
12911: * src/main/pa_globals.C: pcre memory management changed to use GC
12912: memory
12913:
12914: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
12915: xmlMallocAtomic [author agreed to my suggestion], used that
12916:
12917: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
12918:
12919: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
12920: types/pa_vmail.C: attributed_meaning_to_string added
12921: L_UNSPECIFIED piece which was sortof OK, but violated string
12922: invariant [assertion barked on that] changed to L_PASS_APPEND,
12923: made that param obligatory
12924:
12925: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
12926: fixed [assert helped]
12927:
12928: * src/include/pa_string.h: assert added [looking for bug]
12929:
12930: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
12931: names on Win32 considered disk-global
12932:
12933: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
12934: considered disk-global
12935:
12936: 2003-04-18 paf
12937:
12938: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
12939: filenames
12940:
12941: * src/main/untaint.C: enabled '~' letter in filenames
12942:
12943: 2003-04-16 paf
12944:
12945: * src/classes/file.C: small bug introduced in autoptr times fixed
12946:
12947: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
12948: HEAD
12949:
1.116 moko 12950: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 12951:
12952: 2003-04-15 paf
12953:
12954: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
12955: src/lib/md5/pa_md5c.c, tests/141.html,
12956: tests/results/141.processed: merged from head ^math:uuid[]
12957: ^math:uid64[] ^math:md5[string]
12958:
12959: test added: 141.html
12960:
12961: * operators.txt, src/classes/math.C: ^math:uid64[]
12962:
12963: * src/classes/math.C: ^math:uuid[]
12964:
12965: * operators.txt, src/classes/math.C: ^math:uuid[]
12966:
12967: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
12968: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
12969:
12970: * operators.txt, src/classes/file.C, src/include/pa_common.h,
12971: src/include/pa_config_fixed.h, src/main/pa_common.C:
12972: ^file::load[mode;name; $.offset $.limit
12973:
12974: 2003-04-14 paf
12975:
12976: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
12977: started ^math:md5
12978:
12979: * src/classes/table.C, src/include/pa_array.h,
12980: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
12981: tests/results/140.processed: table $.reverse option works in
12982: create&co table $.distinct[tables] bug fix merged
12983:
12984: * src/: classes/table.C, include/pa_table.h: table
12985: $.distinct[tables] bug fixed
12986:
12987: * src/classes/table.C: more warnings
12988:
12989: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
12990: removed checks in table::set_current, moved them back to
12991: table::locate implemented table::create/join ñ $.reverse
12992:
12993: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
12994: removed checks in table::set_current, moved them back to
12995: table::locate
12996:
12997: 2003-04-11 paf
12998:
12999: * operators.txt, src/classes/date.C, src/classes/table.C,
13000: src/include/pa_array.h, src/include/pa_common.h,
13001: src/include/pa_config_includes.h, src/include/pa_string.h,
13002: src/include/pa_table.h, src/main/pa_request.C,
13003: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13004: src/main/pa_table.C: merged from HEAD from
13005: before_append_array_limit_sense_change to
13006: after_append_array_limit_sense_change
13007:
13008: * src/classes/table.C: typo
13009:
13010: * operators.txt, src/classes/date.C, src/classes/table.C,
13011: src/include/pa_array.h, src/include/pa_common.h,
13012: src/include/pa_config_includes.h, src/include/pa_globals.h,
13013: src/include/pa_table.h, src/main/pa_array.C,
13014: src/main/pa_globals.C, src/main/pa_request.C,
13015: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13016: src/main/pa_table.C: append_array_limit_sense_change locate
13017: accepts options same as create new option: $.reverse(1) [do not
13018: work in table::create]
13019:
13020: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
13021: (stat xxx,
13022:
13023: * src/classes/: table.C: typo
13024:
13025: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
13026: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
13027: results/130.processed, results/131.processed,
13028: results/132.processed, results/133.processed,
13029: results/134.processed, results/135.processed,
13030: results/136.processed, results/137.processed,
13031: results/138.processed, results/139.processed: added few mustfail
13032: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
13033: date/time 132.html mustfail: access to junction outside of
13034: context 133.html mustfail: access to junction outside of context,
13035: case version 134.html mustfail: hash: adding a key inside of
13036: foreach 135.html mustfail: modifying system class 136.html
13037: mustfail: $.name outside of $hash[here] 137.html mustfail:
13038: appendChild without import 138.html mustfail: invalid encoding
13039: inside of xml 139.html mustfail: bad XPath
13040:
13041: * operators.txt, src/classes/table.C, tests/084.html,
13042: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
13043: tests/129.html, tests/results/125.processed,
13044: tests/results/126.processed, tests/results/127.processed,
13045: tests/results/128.processed, tests/results/129.processed: merged
13046: from HEAD ^table.hash[key][$.distinct[tables]]
13047:
13048: maked appropriate tests [changed one old nonconforming]
13049:
13050: * operators.txt, src/classes/table.C:
13051: ^table.hash[key][$.distinct[tables]]
13052:
13053: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13054: merged fix for found very old xml (dom) bug: were passing
13055: domString objects and later ERROREOUSLY freed them
13056:
13057: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
13058: src/main/pa_charset.C: re-added libgdome patch. regretfully
13059: libgdome bug can not be worked around
13060:
13061: 2003-04-10 paf
13062:
13063: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13064: found very old xml (dom) bug: were passing domString objects and
13065: later ERROREOUSLY freed them
13066:
13067: * src/doc/string.dox, src/include/pa_memory.h,
13068: src/include/pa_string.h, src/lib/cord/cordbscs.c,
13069: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
13070: tests/123.html, tests/124.html, tests/results/001.processed,
13071: tests/results/002.processed, tests/results/003.processed,
13072: tests/results/004.processed, tests/results/005.processed,
13073: tests/results/006.processed, tests/results/008.processed,
13074: tests/results/009.processed, tests/results/010.processed,
13075: tests/results/011.processed, tests/results/012.processed,
13076: tests/results/013.processed, tests/results/014.processed,
13077: tests/results/015.processed, tests/results/016.processed,
13078: tests/results/017.processed, tests/results/018.processed,
13079: tests/results/020.processed, tests/results/021.processed,
13080: tests/results/022.processed, tests/results/023.processed,
13081: tests/results/024.processed, tests/results/025.processed,
13082: tests/results/026.processed, tests/results/027.processed,
13083: tests/results/028.processed, tests/results/029.processed,
13084: tests/results/030.processed, tests/results/031.processed,
13085: tests/results/032.processed, tests/results/033.processed,
13086: tests/results/034.processed, tests/results/035.processed,
13087: tests/results/036.processed, tests/results/037.processed,
13088: tests/results/038.processed, tests/results/039.processed,
13089: tests/results/040.processed, tests/results/041.processed,
13090: tests/results/042.processed, tests/results/043.processed,
13091: tests/results/044.processed, tests/results/045.processed,
13092: tests/results/046.processed, tests/results/047.processed,
13093: tests/results/048.processed, tests/results/049.processed,
13094: tests/results/050.processed, tests/results/051.processed,
13095: tests/results/052.processed, tests/results/053.processed,
13096: tests/results/054.processed, tests/results/055.processed,
13097: tests/results/056.processed, tests/results/057.processed,
13098: tests/results/058.processed, tests/results/059.processed,
13099: tests/results/060.processed, tests/results/061.processed,
13100: tests/results/062.processed, tests/results/063.processed,
13101: tests/results/064.processed, tests/results/065.processed,
13102: tests/results/066.processed, tests/results/067.processed,
13103: tests/results/068.processed, tests/results/069.processed,
13104: tests/results/070.processed, tests/results/071.processed,
13105: tests/results/072.processed, tests/results/073.processed,
13106: tests/results/074.processed, tests/results/075.processed,
13107: tests/results/076.processed, tests/results/077.processed,
13108: tests/results/078.processed, tests/results/079.processed,
13109: tests/results/080.processed, tests/results/081.processed,
13110: tests/results/082.processed, tests/results/083.processed,
13111: tests/results/084.processed, tests/results/085.processed,
13112: tests/results/086.processed, tests/results/087.processed,
13113: tests/results/088.processed, tests/results/089.processed,
13114: tests/results/090.processed, tests/results/091.processed,
13115: tests/results/092.processed, tests/results/093.processed,
13116: tests/results/094.processed, tests/results/095.processed,
13117: tests/results/096.processed, tests/results/097.processed,
13118: tests/results/101.processed, tests/results/102.processed,
13119: tests/results/104.processed, tests/results/105.processed,
13120: tests/results/106.processed, tests/results/107.processed,
13121: tests/results/108.processed, tests/results/109.processed,
13122: tests/results/110.processed, tests/results/111.processed,
13123: tests/results/112.processed, tests/results/113.processed,
13124: tests/results/114.processed, tests/results/115.processed,
13125: tests/results/116.processed, tests/results/117.processed,
13126: tests/results/118.processed, tests/results/119.processed,
13127: tests/results/120.processed, tests/results/121.processed,
13128: tests/results/122.processed, tests/results/123.processed,
13129: tests/results/124.processed: new convention: char* never 0.
13130: assert in cord on that
13131:
13132: * src/main/pa_charset.C: couple more asserts
13133:
13134: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
13135: speedup
13136:
13137: * src/main/pa_charset.C: couple assertions on fantastic situations
13138: added [may be those is the case now?]
13139:
13140: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13141: that's memory from gc_malloc, not from g_malloc :(, but would
13142: hope]
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: checked custom malloc for returning 0
13149:
13150: 2003-04-09 paf
13151:
13152: * src/classes/date.C: merged ^date.roll changes
13153:
13154: * src/classes/date.C: ^date.roll bug fix
13155:
13156: * src/classes/date.C: ^date.roll now throws less errors: month
13157: shifts handles end of month situation by reducing day number
13158: hour-hole shift reduces hour to recover
13159:
13160: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
13161: Sort by function time
13162:
13163: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
13164: http:// $.charset[] param done
13165:
13166: * tests/: 122.html, results/122.processed: 122 date test <= and ==
13167: added [after volatile fix. passes on win&intel-solaris]
13168:
13169: 2003-04-08 paf
13170:
13171: * src/: classes/file.C, classes/op.C, classes/table.C,
13172: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
13173: include/pa_common.h, include/pa_request_charsets.h,
13174: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13175: main/pa_exec.C, main/pa_request.C, main/untaint.C,
13176: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
13177: types/pa_vresponse.C: started http:// $.charset[] param and
13178: http response charset detection just compiled. todo:test
13179:
13180: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
13181:
13182: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
13183: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
13184: types/pa_vmail.C: changed transcode param converntion along with
13185: string creating convention -- all strings are zero-terminated,
13186: this allowed to fix one remaining String("123", 2) case
13187:
13188: * src/: classes/date.C, classes/file.C, classes/hash.C,
13189: classes/op.C, classes/string.C, classes/table.C,
13190: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
13191: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
13192: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
13193: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
13194: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
13195: violated String::invariant. started fixing [not compiled now]
13196:
13197: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
13198: main/compile.tab.C, main/compile.y, main/pa_string.C,
13199: main/untaint.C, targets/cgi/parser3.C: number of string style
13200: improvements & optimizations
13201:
13202: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
13203: :(]
13204:
13205: * src/main/untaint.C: removed redundant & in CORD_pos param passing
13206: [for it's a pointer really]
13207:
13208: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
13209: 'n' param. worked that around
13210:
13211: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
13212: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
13213: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
13214: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
13215: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
13216:
13217: Thanks for the bug report and patch.
13218:
13219: I hadn't looked at this code in a while. Reading it now, it
13220: seems to me that the tests should also be ">= MAX_DEPTH" to
13221: comply with the invariant, though that may not matter a lot. I
13222: changed that, too.
13223:
13224: Hans
13225:
13226: 2003-04-07 paf
13227:
13228: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
13229: merged from head:safe mode error message now includes numbers
13230:
13231: * src/main/execute.C: n-th attempt to make a=a work with double.
13232: problem: as_double returns it's result in fp-register compiler
13233: optimizes access to that register after b->as_double, and just
13234: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
13235: from memory. _SAME_ double values do not match here. when
13236: forced to REload fp-register, values do match.
13237:
13238: tried to make them volatile.
13239:
13240: * src/main/execute.C: n-th attempt to make a=a work with double.
13241: problem: as_double returns it's result in fp-register compiler
13242: optimizes access to that register after b->as_double, and just
13243: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
13244: from memory. _SAME_ double values do not match here. when
13245: forced to REload fp-register, values do match.
13246:
13247: tried to make them volatile.
13248:
13249: * src/types/pa_vobject.h: small style change
13250:
13251: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
13252:
13253: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
13254: mode error message now includes numbers
13255:
13256: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
13257: now causes death
13258:
13259: 2003-04-04 paf
13260:
13261: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
13262: incorportated pa_exec patch by From: "Victor Fedoseev"
13263: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
13264: Sent: Thursday, January 23, 2003 9:14 AM
13265:
13266: huge speedup on ^file::cgi with big result
13267:
13268: * src/classes/table.C: sort table with 0 rows bug fixed
13269:
13270: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
13271: fix http://i2/tasks/edit/?id=4493701604654042676
13272:
13273: @main[] $with_default[ $.a[1] $._default[default from
13274: with_default] ] ^show[$with_default]
13275:
13276: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
13277: =$to_add_to.xxx=<br>
13278:
13279: ^show[$to_add_to]
13280:
13281: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
13282: ^show[$cloned]
13283:
13284: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
13285:
13286: } <hr>
13287:
13288: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
13289: http://i2/tasks/edit/?id=4493701604654042676
13290:
13291: @main[] $with_default[ $.a[1] $._default[default from
13292: with_default] ] ^show[$with_default]
13293:
13294: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
13295: =$to_add_to.xxx=<br>
13296:
13297: ^show[$to_add_to]
13298:
13299: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
13300: ^show[$cloned]
13301:
13302: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
13303:
13304: } <hr>
13305:
13306: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
13307: http://i2/tasks/edit/?id=4507350336410850921
13308:
13309: * src/classes/xdoc.C: memory allocation func bugfix
13310: http://i2/tasks/edit/?id=4499303470368629745
13311:
13312: * src/classes/math.C: allowed random 1...
13313:
13314: * src/classes/math.C: allowed random 0..
13315:
13316: * src/main/pa_globals.C: exif mem leak
13317: http://i2/tasks/edit/?id=4480590323629807263
13318:
13319: * src/: classes/classes.dsp, main/main.dsp,
13320: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
13321: fix http://i2/tasks/edit/?id=4493946731322521294
13322: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
13323:
13324: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13325: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
13326: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
13327: links to xml libs made relative, no need to unpack parser3project
13328: to /parser3project.
13329:
13330: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
13331: column more precise - tab handling bug fixed
13332:
13333: * src/main/: compile.tab.C, compile.y: more understandable error
13334: message in case @CLASS with more then one line inside
13335:
13336: * src/targets/cgi/parser3.C: more understandable error message in
13337: case of errors in @unhandled_exception
13338:
13339: 2003-04-03 paf
13340:
13341: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
13342: src/main/compile.tab.C, src/main/compile.y,
13343: src/main/compile_tools.C, src/main/compile_tools.h,
13344: src/main/execute.C, src/main/pa_request.C: debug info format
13345: simplified, now it's: OP_VALUE Operation::Origin << here value*
13346:
13347: higher limits: file number (max: 255) line number (max:
13348: 64535) column number (max: 255)
13349:
13350: * src/classes/math.C: top limit
13351:
13352: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
13353: precise parse error position in case of
13354:
13355: ^bug ]
13356:
13357: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
13358: changed to realities, and passed [bug fixed]
13359:
13360: * src/: classes/op.C, include/pa_request.h, main/compile.C,
13361: main/compile.tab.C, main/compile.y, main/compile_tools.C,
13362: main/compile_tools.h, main/pa_request.C: introducing
13363: ^process...[main-method-alias]
13364:
13365: * src/: classes/date.C, classes/image.C, classes/op.C,
13366: classes/string.C, classes/table.C, classes/xdoc.C,
13367: types/pa_vmethod_frame.h: MethodParams& now [methods without
13368: params receive zero reference, but they are expected not to look
13369: there]
13370:
13371: * operators.txt, src/classes/date.C, src/classes/double.C,
13372: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
13373: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
13374: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
13375: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13376: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
13377: src/main/execute.C, src/types/pa_method.h: MethodParams& now
13378: [methods without params receive zero reference, but they are
13379: expected not to look there]
13380:
13381: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13382: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
13383: ^process...[filename] useful for better error reporting
13384: [file/line/col]
13385:
13386: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
13387: types/pa_vstring.h: slightly improved error messages text: 1. is
13388: '%s', it 2. method undefined in case of ^void[]
13389:
13390: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13391: include/pa_types.h, main/execute.C, main/pa_request.C: exception
13392: handling done. now we have error columns todo: test it
13393:
13394: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
13395: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
13396:
13397: this makes life easier: were: bad stack order -- were in
13398: exception catch unwind order, which didn't match execution order
13399:
13400: @main[] ^try{ ^first[] }{ ^throw[c;3] }
13401:
13402: @first[] ^throw[a;1]
13403:
13404: showed throw a first throw b try
13405:
13406: which is no good
13407:
13408: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13409: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
13410: trace reset after handled exception [old bug fixed]
13411:
13412: * src/main/: compile.tab.C, compile.y: parse position old bug
13413: fixed. position reporting made precise [both, in parse erros and
13414: runtime errors]
13415:
13416: 2003-04-02 paf
13417:
13418: * src/: include/pa_operation.h, include/pa_request.h,
13419: main/compile.C, main/compile.tab.C, main/compile.y,
13420: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13421: main/pa_exception.C, main/pa_request.C: debug info: started
13422: using. todo:complete
13423:
13424: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
13425: main/compile.C, main/compile.tab.C, main/compile.y,
13426: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13427: main/pa_request.C: prepared debug info todo:use it
13428:
13429: * src/include/pa_operation.h: strange mistake fixed: forgot to
13430: return Operation class->union after switching from autoptrs.
13431:
13432: * tests/: Makefile, results/108.processed, results/117.processed:
13433: meta considered OK [it's up to coder now to remove it not needed]
13434:
13435: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
13436: Dictionary constructor when moved to gc]
13437:
13438: * src/main/pa_common.C: uncommented http:// file loading
13439:
13440: * src/include/pa_array.h, src/main/execute.C,
13441: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
13442: fix [gdGrowingBuf]
13443:
13444: * configure.in, src/lib/Makefile.am: removed patches
13445:
13446: * configure, src/include/pa_config_auto.h.in,
13447: src/main/pa_charset.C: --enable-assertions autoconf-ed
13448:
13449: * src/main/pa_common.C: uncommented http:// file loading
13450:
13451: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
13452: xdoc::create/load
13453:
13454: * src/: classes/form.C, classes/hash.C, classes/image.C,
13455: classes/string.C, classes/table.C, classes/void.C,
13456: include/pa_common.h, main/pa_common.C, main/pa_request.C,
13457: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
13458: String::String(str,helper_length) are checked. found/fixed one
13459: place: $request:body now zero-terminated,
13460:
13461: * src/: classes/op.C, classes/table.C, include/pa_request.h,
13462: main/compile_tools.C, main/execute.C, types/pa_value.h,
13463: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
13464: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
13465: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13466: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
13467: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13468: types/pa_vxnode.h: more locally scoped vars in execute (more
13469: easily optimizable)
13470:
13471: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
13472: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
13473:
13474: * src/: include/pa_array.h, include/pa_stack.h,
13475: include/pa_string.h, main/compile_tools.C, main/main.dsp,
13476: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
13477: become assertion iterator in methodframe filler
13478:
13479: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
13480: targets/cgi/parser3.C: array::get/put inlined
13481:
13482: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
13483: gc_substitute_memory_management_functions +installed CORD_oom
13484: function
13485:
13486: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
13487: src/include/pa_config_includes.h, src/include/pa_string.h,
13488: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
13489: src/targets/cgi/parser3.C: converted debug hacks to ANSI
13490: assertions started configure.in --enable-assertions
13491:
13492: 2003-04-01 paf
13493:
13494: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
13495: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
13496: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
13497: gdome uses glib memory, and stores last pointer to xmlDoc there,
13498: gc misses that and collects valid memory fixed by remembering
13499: xmlDoc from dom object in xdoc. todo: do something with
13500: premature free of xdoc with xnodes/node values referring into it
13501:
13502: * src/classes/: mail.C: typo fix
13503:
13504: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
13505: changes
13506:
13507: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
13508: main/pa_memory.C: moved memory debugging to global level: to
13509: pa_gc_malloc
13510:
13511: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
13512: debugging showed no errors. todo: debug parser memory
13513:
13514: * src/targets/cgi/: parser3.C, parser3.dsp: more build
13515: configurations
13516:
13517: * src/: classes/classes.dsp, include/pa_config_fixed.h,
13518: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
13519: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
13520: types/types.dsp: prepared xml-static configuration
13521:
13522: 2003-03-31 paf
13523:
13524: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
13525: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
13526: xml lib memory debugging, simple checks failed: it seems that
13527: library does realloc(bad ptr), and recording those ptrs in heap
13528: [for debugging] was bad: heap situation changes = everything
13529: works fine
13530:
13531: * src/: main/pa_charset.C, include/pa_charset.h: worked around
13532: xmlRegisterCharEncodingHandler limitation [currently imposed
13533: limit of 10 user-defined charsets]
13534:
13535: 2003-03-28 paf
13536:
13537: * src/main/execute.C: execution stack copied to local register
13538: variable, removed lots [~2e7) of memory accesses
13539:
13540: 2003-03-27 paf
13541:
13542: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
13543: works in debug, but fails in release todo: fix that
13544:
13545: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
13546: targets/cgi/parser3.C: forgot to merge XML memory funcs
13547: replacement from gc branch
13548:
13549: * src/main/pa_exec.C: introducing append_help_length [radical
13550: improvement here]
13551:
13552: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
13553: 'not recommened' in gc.h, on win32 noticed no difference]
13554:
13555: * src/include/pa_array.h: returned checked array get [were disabled
13556: for debugging] result:not slower [don't understand that, it were
13557: INLINED] todo: find out a way of inlining it!
13558:
13559: * src/: include/pa_string.h, lib/gc/include/gc.h,
13560: lib/gc/include/gc_fake.h, main/compile.tab.C,
13561: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
13562: convention changed: all resulting strings are zero-terminated
13563:
13564: * src/: classes/date.C, classes/file.C, classes/hash.C,
13565: classes/string.C, classes/table.C, classes/void.C,
13566: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
13567: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
13568: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
13569: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
13570: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
13571: types/pa_vfile.C, types/pa_vmail.C: introducing
13572: append_help_length [radical improvement here]
13573:
13574: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
13575: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
13576: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
13577: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
13578: even slower
13579:
13580: * src/: classes/string.C, classes/table.C, include/pa_array.h,
13581: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
13582: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
13583: clients of &get(): most to use non-ref version, some[in tight
13584: places] to get_unchecked_ref
13585:
13586: * src/doc/memory.dox: forgot to add
13587:
13588: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
13589: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
13590: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
13591: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
13592: main/compile.y, main/compile_tools.C, main/compile_tools.h,
13593: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
13594: targets/cgi/parser3.dsp, types/pa_vmail.C,
13595: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
13596: T>>&<< removed after Stack::pop wiping removed [moved to separate
13597: func] other Array & removed
13598:
13599: 2003-03-26 paf
13600:
13601: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
13602: classes/table.C, include/pa_array.h, include/pa_charset.h,
13603: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
13604: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13605: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
13606: main/main.dsp, main/pa_charset.C, main/pa_common.C,
13607: main/pa_exec.C, main/pa_sql_driver_manager.C,
13608: main/pa_stylesheet_manager.C, main/pa_table.C,
13609: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
13610: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
13611: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
13612: pre-evaluated .count() in some places
13613:
13614: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13615: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
13616: types/types.dsp: .dsp profiling updated
13617:
13618: * src/: classes/classes.dsp, lib/cord/cord.dsp,
13619: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
13620: targets/cgi/parser3.dsp, types/types.dsp: started profiling
13621:
13622: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
13623: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
13624: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
13625: use lib/gc,lib/cord
13626:
1.116 moko 13627: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
13628: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 13629: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
13630: src/include/pa_config_includes.h, src/include/pa_request.h,
13631: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
13632: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 13633: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 13634: src/lib/cord/include/Makefile.am,
1.116 moko 13635: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
13636: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
13637: src/targets/cgi/Makefile.am, src/types/Makefile.am,
13638: src/types/pa_vclass.h, src/types/pa_vcookie.h,
13639: src/types/pa_vform.h, src/types/pa_vhash.h,
13640: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
13641: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
13642: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
13643: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
13644: funcs ported pa_exec
1.95 moko 13645:
13646: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
13647:
13648: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
13649: bundled gc includes
13650:
13651: * src/: classes/op.C, include/pa_array.h,
13652: include/pa_sql_connection.h, include/pa_string.h,
13653: include/pa_version.h, main/compile.tab.C, main/compile.y,
13654: main/execute.C, main/pa_common.C, main/pa_exception.C,
13655: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
13656: targets/cgi/parser3.dsp: a number of bugfixes [while testing
13657: first real site (aval)]
13658:
13659: 2003-03-25 paf
13660:
13661: * operators.txt, src/main/pa_sql_driver_manager.C,
13662: src/types/pa_vstatus.C: $status.memory used free since_compact
13663: process
13664:
13665: * src/: include/pa_sql_connection.h, main/pa_globals.C,
13666: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
13667:
13668: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
13669:
13670: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
13671: src/types/pa_value.h, src/types/pa_vfile.h,
13672: src/types/pa_vobject.C, src/types/pa_vobject.h,
13673: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
13674: tests/results/121.processed: untaint.C L_URI
13675:
13676: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
13677: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
13678: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
13679: src/types/pa_vmemory.h: ^memory:compact[]
13680:
13681: * tests/results/109.processed: it was a bug in parser. updated 109
13682: test result
13683:
13684: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
13685:
13686: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
13687: tests/results/107.processed: fixed dom language [values are now
13688: considered tainted. it was a bug in parser. updated 107 test
13689: result
13690:
13691: * src/classes/xdoc.C: fixed transform params
13692:
13693: * src/: include/pa_stylesheet_manager.h,
13694: main/pa_stylesheet_manager.C: fixed stylesheet caching
13695:
13696: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
13697: overloads for structure handling
13698:
13699: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
13700: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
13701: StringBody(0) ambiguilty, introducting static
13702: StringBody::Format(int)
13703:
13704: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
13705: linked
13706:
13707: * src/types/pa_vxdoc.C: vxdoc compiled
13708:
13709: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
13710: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
13711: finalizers isntalled
13712:
13713: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
13714: doc/exception.dox, doc/index.dox, include/pa_charset.h,
13715: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
13716: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
13717: compiled todo: xnode.C / finalizers
13718:
13719: * src/doc/string.dox: updated: new string internals
13720:
13721: 2003-03-24 paf
13722:
13723: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13724: include/pa_charset.h, include/pa_config_fixed.h,
13725: include/pa_request.h, include/pa_stylesheet_connection.h,
13726: include/pa_stylesheet_manager.h, main/pa_charset.C,
13727: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
13728: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
13729: types/pa_vxnode.h: started XML
13730:
13731: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
13732:
13733: * src/: classes/file.C, classes/image.C, classes/mail.C,
13734: include/pa_string.h, main/pa_common.C,
13735: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
13736:
13737: * src/: classes/file.C, classes/image.C, classes/mail.C,
13738: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
13739: main/pa_request.C, main/pa_sql_driver_manager.C,
13740: types/pa_vimage.h: size_t pos everywhere checks changed to check
13741: for eq STRING_NOT_FOUND
13742:
13743: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
13744: optimize bit implemented
13745:
13746: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13747: String::ArrayFragment::append_positions fixed
13748:
13749: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
13750: String::this_starts fixed
13751:
13752: * src/main/pa_string.C, tests/Makefile: string::pos fixed
13753:
13754: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
13755: hashcode implemented fully, including per-char callback [it can
13756: be - substr CORD node]
13757:
13758: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
13759: rewritten to rewalloc with 100byte buf ahead
13760:
13761: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
13762: src/include/pa_string.h, src/main/compile.tab.C,
13763: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
13764: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
13765: CORD_ec [bad] would rewrite as realloc now
13766:
13767: * src/: classes/date.C, classes/file.C, classes/form.C,
13768: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
13769: include/pa_cache_managers.h, include/pa_charsets.h,
13770: include/pa_common.h, include/pa_request.h,
13771: include/pa_sql_driver_manager.h, include/pa_table.h,
13772: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
13773: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
13774: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
13775: types/pa_vmail.C, types/pa_vmethod_frame.C,
13776: types/pa_vstateless_class.h: 2*2 worked :)
13777:
13778: * parser3.dsw, src/classes/date.C, src/classes/file.C,
13779: src/include/pa_exec.h, src/include/pa_string.h,
13780: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
13781: passed OK
13782:
13783: * src/: classes/hash.C, classes/string.C, classes/table.C,
13784: types/pa_value.C: all linked todo: debug
13785:
13786: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
13787: types/pa_vstateless_class.C: all compiled. todo:link
13788:
13789: * src/types/pa_wcontext.C: pa_wcontext.C compiled
13790:
13791: * src/types/pa_vtable.C: pa_vtable.C compiled
13792:
13793: * src/types/pa_vstring.C: pa_vstring.C compiled
13794:
13795: * src/types/pa_vstatus.C: pa_vstatus.C compiled
13796:
13797: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
13798: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
13799: pa_vstateless_class.C, pa_vstateless_class.h:
13800: pa_vstateless_class.C compiled
13801:
13802: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
13803: types/pa_vmath.C: pa_vmail.C compiled
13804:
13805: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
13806:
13807: * src/types/pa_vform.C: pa_vform.C compiled
13808:
13809: * src/types/pa_vfile.C: pa_vfile.C compiled
13810:
13811: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
13812: pa_vstateless_class.C: pa_vcookie.C compiled
13813:
13814: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
13815: types/pa_vhash.h: pa_value.C compiled
13816:
13817: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
13818: classes.lib main.lib compiled
13819:
13820: * src/classes/void.C: void.C compiled
13821:
13822: * src/: classes/string.C, classes/table.C, include/pa_string.h,
13823: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
13824: compiled
13825:
13826: * src/: classes/string.C, include/pa_request.h,
13827: include/pa_string.h, main/pa_string.C: string.C compiled
13828:
13829: * src/: classes/op.C, classes/string.C, classes/table.C,
13830: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
13831: main/pa_request.C, main/pa_string.C: op.C compiled
13832:
13833: * src/classes/: math.C, op.C: math.C compiled
13834:
13835: * src/: classes/mail.C, classes/string.C, classes/table.C,
13836: types/pa_vmail.h: mail.C compiled
13837:
13838: * src/classes/: int.C, table.C: int.C compiled
13839:
13840: * src/: classes/hash.C, classes/image.C, classes/string.C,
13841: classes/table.C, include/pa_memory.h, include/pa_string.h,
13842: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
13843: compiled
13844:
13845: * src/: classes/hash.C, classes/string.C, classes/table.C,
13846: classes/void.C, classes/xdoc.C, include/pa_request.h,
13847: include/pa_sql_connection.h: hash.C compiled
13848:
13849: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
13850: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
13851: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
13852: classes/math.C, classes/op.C, classes/response.C,
13853: classes/string.C, classes/table.C, classes/void.C,
13854: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
13855: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
13856: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
13857: file.C table.C compiled
13858:
13859: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
13860: main/untaint.C: main.lib compiled
13861:
13862: 2003-03-21 paf
13863:
13864: * src/: classes/op.C, include/pa_cache_managers.h,
13865: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13866: include/pa_stylesheet_manager.h, main/pa_exception.C,
13867: main/pa_globals.C, main/pa_sql_driver_manager.C,
13868: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
13869: compiled
13870:
13871: * src/: classes/hash.C, classes/image.C, classes/op.C,
13872: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
13873: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
13874: main/compile.C, main/pa_common.C, main/pa_request.C,
13875: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
13876: pa_request.C compiled
13877:
13878: * src/: classes/hash.C, classes/mail.C, classes/op.C,
13879: include/pa_request.h, main/execute.C, main/pa_request.C,
13880: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13881: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
13882: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
13883: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
13884: compiled
13885:
13886: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
13887: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
13888: on unix
13889:
13890: * src/: include/pa_charset.h, include/pa_charsets.h,
13891: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
13892: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
13893: pa_charsets.C compiled
13894:
13895: * src/: classes/image.C, classes/mail.C, classes/op.C,
13896: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
13897: main/compile.y, main/execute.C, main/pa_common.C,
13898: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
13899: types/pa_vcode_frame.h, types/pa_vimage.h,
13900: types/pa_vmethod_frame.h: execute.C compiled
13901:
13902: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13903: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13904: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13905: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
13906: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13907: include/pa_cache_managers.h, include/pa_charsets.h,
13908: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
13909: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
13910: include/pa_sql_driver_manager.h, include/pa_string.h,
13911: include/pa_stylesheet_connection.h,
13912: include/pa_stylesheet_manager.h, include/pa_table.h,
13913: main/compile.C, main/compile.tab.C, main/compile.y,
13914: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13915: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13916: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13917: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
13918: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
13919: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
13920: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
13921: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
13922: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13923: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13924: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13925: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
13926: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
13927: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
13928: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13929: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13930: types/pa_vresponse.h, types/pa_vstateless_class.C,
13931: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13932: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13933: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13934: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13935: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13936: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
13937: [C++ CORD wrapper]
13938:
13939: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
13940:
13941: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
13942: $file::exec/cgi[script; $.charset[this is script's charset]
13943:
13944: command line, env values, input got transcoded before call
13945: stdout, stderr got transcoded after call
13946:
13947: * src/classes/file.C: ^file::exec/cgi now does not pass post data
13948: by default. use: ^file::exec[...;$.stdin[$request.body]
13949:
13950: * src/main/pa_common.C: } typo bug fix
13951:
13952: * src/main/pa_common.C: } typo bug fix
13953:
13954: 2003-03-20 paf
13955:
13956: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
13957: main/untaint.C: cord bug fix, but still errors todo: clear out
13958:
13959: * src/include/pa_string.h: more tests
13960:
13961: * src/main/pa_string.C: string.pos fixed
13962:
1.116 moko 13963: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
13964: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
13965: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
13966: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
13967: replaces
1.95 moko 13968:
13969: * src/: classes/image.C, include/pa_dictionary.h,
13970: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
13971: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
13972: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
13973: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
13974:
13975: * src/include/pa_string.h: warning
13976:
13977: * src/include/pa_string.h: this_starts fixed
13978:
13979: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
13980: new String ctor & append params convention
13981:
13982: * src/: classes/file.C, classes/hash.C, classes/image.C,
13983: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
13984: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
13985: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
13986: main/pa_exception.C, main/pa_exec.C,
13987: main/pa_sql_driver_manager.C, main/pa_string.C,
13988: main/pa_stylesheet_manager.C, main/untaint.C,
13989: targets/isapi/parser3isapi.C, types/pa_vimage.C,
13990: types/pa_vmail.C: more tests OK
13991:
13992: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
13993: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
13994: gc/exit runned OK
13995:
13996: * src/types/pa_vmail.C: another naming problem: should not name
13997: vars like that: unpredictable close caused problems with later
13998: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
13999: descriptors missing on startup: stdin; Bad file number
14000:
14001: todo: find out why so many filters(stream) here. probably wrong?
14002:
14003: * src/: include/pa_dictionary.h, include/pa_string.h,
14004: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
14005: main/untaint.C: test compiled
14006:
14007: * src/: classes/image.C, classes/mail.C, classes/math.C,
14008: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
14009: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
14010: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
14011: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
14012: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
14013: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
14014: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
14015: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
14016: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
14017:
14018: * parser3.dsw, src/classes/file.C, src/classes/image.C,
14019: src/classes/op.C, src/classes/string.C, src/classes/table.C,
14020: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
14021: src/include/pa_memory.h, src/include/pa_request.h,
14022: src/include/pa_request_charsets.h,
14023: src/include/pa_sql_connection.h, src/include/pa_string.h,
14024: src/main/compile.tab.C, src/main/execute.C,
14025: src/main/pa_charset.C, src/main/pa_common.C,
14026: src/main/pa_exception.C, src/main/pa_exec.C,
14027: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14028: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
14029: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
14030: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
14031: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14032: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
14033: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14034: src/types/pa_vobject.C, src/types/pa_vresponse.C,
14035: src/types/pa_vstatus.C, src/types/pa_vstring.C,
14036: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14037: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
14038: pa_common.C [done, without http for now]
14039:
14040: 2003-03-19 paf
14041:
14042: * src/: classes/date.C, classes/form.C, classes/hash.C,
14043: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
14044: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
14045: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
14046: include/pa_string.h, include/pa_table.h, main/compile.C,
14047: main/compile_tools.C, main/execute.C, main/pa_charset.C,
14048: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
14049: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
14050: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
14051: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
14052: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
14053: types/pa_vstateless_class.h, types/pa_vtable.C,
14054: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
14055: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
14056: types/pa_wwrapper.h: started test
14057:
1.116 moko 14058: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
14059: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 14060:
14061: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
14062: include/pa_string.h, main/pa_string.C: string compiled todo: test
14063: it
14064:
14065: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
14066: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
14067: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
14068: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
14069: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
14070: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
14071: types/pa_vmethod_frame.h, types/types.dsp: string
14072: reimplementation with cord+array<fragment>: 70%
14073:
14074: 2003-03-18 paf
14075:
14076: * src/: classes/date.C, classes/file.C, classes/form.C,
14077: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
14078: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
14079: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
14080: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
14081: can ignore lang in cmp and pos really, but would
14082: split properly!
14083:
14084: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
14085: cord part made parser/src/lib: it's not compiled into libgc by
14086: default
14087:
14088: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
14089: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14090: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14091: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14092: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14093: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14094: src/classes/xnode.C, src/classes/xnode.h,
14095: src/include/Makefile.am, src/include/pa_cache_managers.h,
14096: src/include/pa_charset.h, src/include/pa_charsets.h,
14097: src/include/pa_common.h, src/include/pa_dictionary.h,
14098: src/include/pa_exception.h, src/include/pa_exec.h,
14099: src/include/pa_globals.h, src/include/pa_hash.h,
14100: src/include/pa_memory.h, src/include/pa_pool.h,
14101: src/include/pa_request.h, src/include/pa_request_charsets.h,
14102: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
14103: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
14104: src/include/pa_stylesheet_connection.h,
14105: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14106: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
14107: src/main/compile.C, src/main/compile.tab.C,
14108: src/main/compile_tools.C, src/main/compile_tools.h,
14109: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
14110: src/main/pa_charsets.C, src/main/pa_common.C,
14111: src/main/pa_dictionary.C, src/main/pa_exception.C,
14112: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
14113: src/main/pa_pool.C, src/main/pa_request.C,
14114: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14115: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
14116: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
14117: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
14118: src/types/pa_junction.h, src/types/pa_method.h,
14119: src/types/pa_value.C, src/types/pa_value.h,
14120: src/types/pa_vclass.C, src/types/pa_vclass.h,
14121: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14122: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14123: src/types/pa_vdouble.h, src/types/pa_venv.h,
14124: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14125: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14126: src/types/pa_vimage.C, src/types/pa_vimage.h,
14127: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
14128: src/types/pa_vmath.C, src/types/pa_vmath.h,
14129: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14130: src/types/pa_vobject.C, src/types/pa_vobject.h,
14131: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14132: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14133: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14134: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14135: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14136: src/types/pa_vstring.h, src/types/pa_vtable.C,
14137: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14138: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14139: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14140: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14141: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
14142: gc: PA_Object done lots of replacements also
14143:
14144: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
14145: gc logging
14146:
14147: 2003-03-17 paf
14148:
14149: * src/: classes/date.C, classes/file.C, classes/form.C,
14150: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
14151: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
14152: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
14153: include/pa_string.h, include/pa_types.h, main/compile.C,
14154: main/compile.tab.C, main/execute.C, main/pa_charset.C,
14155: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
14156: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
14157: main/pa_sql_driver_manager.C, main/pa_string.C,
14158: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
14159: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
14160: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
14161: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
14162: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
14163: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14164: types/pa_vxnode.h: libgc attempt
14165:
14166: 2003-03-13 paf
14167:
14168: * src/: include/pa_sql_driver_manager.h,
14169: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
14170: called
14171:
14172: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
14173: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
14174: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
14175: types/pa_value.h, types/pa_vobject.h,
14176: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
14177: set_base, set_derived simplified [counter leaks fixed]
14178:
14179: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
14180: src/types/types.dsp: incorporated status class patch From:
14181: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
14182: 2003 8:14 AM
14183:
14184: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
14185: Win32 specific: QuotaPeakNonPagedPoolUsage
14186: QuotaPeakPagedPoolUsage PeakPagefileUsage]
14187:
14188: 2003-03-12 paf
14189:
1.116 moko 14190: * configure, configure.in, src/lib/ltdl/configure,
14191: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 14192: lib/ltdl/Makefile now created by /configure.in only [were by
14193: lib/ltdl/configure.in OVERWRITE]
14194:
1.116 moko 14195: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
14196: linkage fixed for g++ 3.2.2
1.95 moko 14197:
14198: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
14199: on using privately declared class [fixed]
14200:
14201: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
14202: 3.2 rightliy complained on using privately declared class [fixed]
14203:
14204: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
14205: sigpipe before request constructor now causes death
14206:
14207: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
14208: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
14209: not cause exception in exception handler
14210:
1.116 moko 14211: * configure, configure.in, src/targets/cgi/Makefile.am: configure
14212: now default links libstdc++ statically. that can be overriden by
14213: --with-dynamic-stdcpp
1.95 moko 14214:
14215: 2003-03-11 paf
14216:
14217: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
14218: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
14219: necessity of libstdc++
14220:
14221: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
14222:
14223: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
14224:
14225: 2003-03-08 paf
14226:
14227: * tests/Makefile: make install & co
14228:
14229: * src/: include/pa_request.h, classes/op.C: removing
14230: vclass,object.h -> pa_request.h dependency
14231:
14232: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
14233: main/pa_request.C: removing vform,response,cookie.h ->
14234: pa_request.h dependency
14235:
14236: * src/include/pa_request.h: removing vmail.h -> pa_request.h
14237: dependency [testing...]
14238:
14239: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
14240: return 0; fixed
14241:
14242: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
14243: types/pa_vmail.h: vmail.C received just compiled [not tested]
14244:
14245: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
14246:
14247: * src/main/pa_request.C: forgotten: ifdef XML
14248:
14249: * src/main/pa_request.C: forgotten: ifdef XML
14250:
14251: * src/targets/cgi/parser3.C: todo: move to latest xml version on
14252: win32 and run memleak tests again
14253:
14254: * src/targets/cgi/parser3.C: charsets: see some strange things with
14255: old xml lib-- it's internal memory handling has faults
14256:
14257: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
14258: problems when transcode from charset A to A.
14259:
14260: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
14261: todo: still problems when transcode from charset A to A.
14262:
14263: * src/: classes/hash.C, classes/mail.C, classes/string.C,
14264: classes/table.C, include/pa_array.h,
14265: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
14266: started full-scale-site-test [~ http://parser.ru sources]
14267:
14268: some fixes
14269:
14270: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
14271: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14272: 117.html, 118.html, 119.html, 120.html, results/109.processed,
14273: results/110.processed, results/111.processed,
14274: results/112.processed, results/113.processed,
14275: results/114.processed, results/115.processed,
14276: results/116.processed, results/117.processed,
14277: results/118.processed, results/119.processed,
14278: results/120.processed: xml: tests 109 dom create/show 110 xpath
14279: selectSingle 111 xdoc.create from tainted & 112
14280: xdoc.create/output with russian attr value 113 xpath
14281: selectString/Number 114 dom attributes.count 115 xpath selectBool
14282: 116 output media-type change 117 transform by dom stylesheet 118
14283: empty transform result 119 dom setAttribute 120 nbsp letter
14284: output
14285:
14286: =END OF PREPARED XML TESTS=
14287:
14288: 2003-03-07 paf
14289:
14290: * src/classes/xdoc.C, src/include/pa_charset.h,
14291: src/include/pa_stylesheet_connection.h, tests/108.html,
14292: tests/108.xsl, tests/results/108.processed: xml: test 108
14293: transform with params [bugs fixed]
14294:
14295: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
14296: from copy/paste bug
14297:
14298: * src/classes/xdoc.C, src/include/pa_charset.h,
14299: src/include/pa_request.h, src/main/execute.C,
14300: src/main/pa_charset.C, src/main/pa_exception.C,
14301: src/main/pa_globals.C, src/main/pa_request.C,
14302: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14303: src/types/pa_vxnode.C, tests/107.html,
14304: tests/results/107.processed: xml: test: 107 bug fixes
14305:
14306: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14307: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14308: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
14309:
14310: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
14311: string
14312:
14313: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
14314: mem alloc functions used for different cases [libxml, libxsl]
14315:
14316: * src/classes/classes.C: fixed: prevent system classes from
14317: modification to lock ALL the classes, not only directly used
14318:
14319: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
14320: linked
14321:
14322: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
14323:
14324: 2003-03-06 paf
14325:
14326: * src/classes/xdoc.C: xdoc.C 50%
14327:
14328: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
14329: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
14330: main/pa_globals.C, main/pa_request.C,
14331: main/pa_stylesheet_manager.C: xnode.C compiled
14332:
14333: * src/: include/pa_stylesheet_connection.h,
14334: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
14335: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
14336:
14337: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
14338: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
14339: xml: stylesheet&manager STARTED
14340:
14341: * src/: include/pa_globals.h, main/pa_charset.C,
14342: main/pa_exception.C, main/pa_globals.C: xml: exceptions
14343:
14344: * src/: include/pa_charset.h, include/pa_config_fixed.h,
14345: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
14346: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
14347: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
14348: charsets
14349:
14350: * tests/023.html: in some cases it rounded up badly. postponing
14351: solution of that problem, making more simple test
14352:
14353: * tests/: 058_paf2000.png, results/058.processed: .png added with
14354: -kb now
14355:
14356: * src/: include/pa_charset.h, include/pa_charsets.h,
14357: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
14358: moved to charsets.C
14359:
14360: 2003-03-05 paf
14361:
14362: * src/classes/string.C, src/include/pa_string.h,
14363: src/main/pa_string.C, tests/105.html,
14364: tests/results/105.processed: String::match bug fixed
14365:
14366: * src/classes/op.C, src/main/main.dsp, tests/104.html,
14367: tests/results/104.processed: ^bpt operator added [does int3 in
14368: debug build on win32]
14369:
14370: * tests/: 057.html, results/057.processed: test bug fixed
14371:
1.116 moko 14372: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 14373:
14374: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
14375: missing
14376:
1.116 moko 14377: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
14378: forgotten files added to Makes
1.95 moko 14379:
14380: * ltmain.sh: ltmain.sh added
14381:
14382: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
14383: change undone ;(
14384:
14385: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
14386: made static
14387:
14388: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 14389: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
14390: todo:make linker happy
1.95 moko 14391:
14392: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
14393: env param made optional
14394:
14395: 2003-03-04 paf
14396:
14397: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
14398: types/pa_vimage.h: number of gcc compiler bugs fixed
14399:
14400: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
14401: results/103.processed: tests: 103 image.copy transparence test
14402:
14403: * src/main/execute.C, tests/101.html, tests/102.html,
14404: tests/results/101.processed, tests/results/102.processed: tests:
14405: 101 method/variable name conflict test 102 form fields change
14406: should not not change anything [bug fix]
14407:
14408: * tests/: 057.html, 099.html, 100.html, results/057.processed,
14409: results/099.processed, results/100.processed: tests: 57 date
14410: create 2002: added 99,100 response:body/download
14411:
14412: * src/classes/image.C, tests/098.html, tests/098font.gif,
14413: tests/results/098.processed: test: 98 image font text [bug fixed]
14414:
14415: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
14416: tests/results/097.processed: test: 97 file::load http:// [bugs
14417: fixed]
14418:
14419: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
14420: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
14421: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
14422: image EXIF [bug fixed]
14423:
14424: * src/classes/table.C, src/main/execute.C, tests/061.dat,
14425: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
14426: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
14427: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
14428: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
14429: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
14430: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
14431: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
14432: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
14433: tests/094.html, tests/095.html, tests/results/061.processed,
14434: tests/results/062.processed, tests/results/063.processed,
14435: tests/results/064.processed, tests/results/065.processed,
14436: tests/results/066.processed, tests/results/067.processed,
14437: tests/results/068.processed, tests/results/069.processed,
14438: tests/results/070.processed, tests/results/071.processed,
14439: tests/results/072.processed, tests/results/073.processed,
14440: tests/results/074.processed, tests/results/075.processed,
14441: tests/results/076.processed, tests/results/077.processed,
14442: tests/results/078.processed, tests/results/080.processed,
14443: tests/results/081.processed, tests/results/082.processed,
14444: tests/results/083.processed, tests/results/084.processed,
14445: tests/results/085.processed, tests/results/086.processed,
14446: tests/results/087.processed, tests/results/088.processed,
14447: tests/results/089.processed, tests/results/090.processed,
14448: tests/results/091.processed, tests/results/092.processed,
14449: tests/results/093.processed, tests/results/094.processed,
14450: tests/results/095.processed, tests/079.html,
14451: tests/results/079.processed: tests: 61 file::stat size 62
14452: string->int autoconvert 63 double .int,dec,div,mul 64 date
14453: compare 65 file: basename,justname,justext 66 math:crypt 67
14454: string.match simple on long 68 string.match normalized simple on
14455: long 69 string.int 70 file::stat content-type 71 table.join 72
14456: hash parameter conditional pass 73 date daylightsaving,yearday 74
14457: date arithmetics 75 response date values/attributes 76 string.pos
14458: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
14459: with local 80 scientific numeric literal in string autoconvert 81
14460: xor: logical and numerical 82 for delims 83 menu delims 84
14461: table.hash distinct 85 long string replace 86 throw+catch
14462: current language preserve 87 bit shifts 88 junction tests +
14463: $caller test 89 hash.foreach selfmodification 90 int/void to int
14464: 91 $caller test 92 junction is + def junction tests 93 $caller
14465: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
14466:
14467: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
14468: fixed] 60 string eq string [bug fixed]
14469:
14470: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
14471: 058.html, 058_paf2000.png, 059.html, 060.html,
14472: results/053.processed, results/054.processed,
14473: results/055.processed, results/056.processed,
14474: results/057.processed, results/058.processed,
14475: results/059.processed, results/060.processed: test: 53
14476: string.replace 54 junctions 55 table.hash 56 call indirect 57
14477: date.create[string] 58 image.measure[png]
14478:
14479: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
14480: outputs/051.processed, results/052.processed: test: 52
14481: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
14482: task: fix that
14483:
14484: 2003-03-03 paf
14485:
14486: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
14487: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
14488: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
14489: outputs/049.processed, outputs/050.processed,
14490: outputs/051.processed, results/001.processed,
14491: results/002.processed, results/003.processed,
14492: results/005.processed, results/006.processed,
14493: results/008.processed, results/009.processed,
14494: results/011.processed, results/012.processed,
14495: results/013.processed, results/014.processed,
14496: results/015.processed, results/016.processed,
14497: results/017.processed, results/020.processed,
14498: results/021.processed, results/022.processed,
14499: results/024.processed, results/025.processed,
14500: results/026.processed, results/027.processed,
14501: results/028.processed, results/029.processed,
14502: results/030.processed, results/031.processed,
14503: results/049.processed, results/050.processed,
14504: results/051.processed, results/043.processed,
14505: results/044.processed, results/045.processed,
14506: results/046.processed, results/047.processed,
14507: results/048.processed: tests: 43,44,45 date rolls 46
14508: autoevaluating junction 47 table.select 48 name with subvar 49
14509: hash-creating switch 50 process 51 started parent/child, works as
14510: it were but it were NOT GOOD, created separate task to fix that
14511:
14512: * tests/: 042.html, results/042.processed: test: 42
14513: exception.handled
14514:
14515: * tests/: 041.html, results/041.processed: test: 41 table.locate by
14516: expression
14517:
14518: * tests/: 040.html, results/040.processed: test: 39 method result
14519: of type table 40 method param junction auto evaluate
14520:
14521: * tests/: 039.html, results/039.processed: test: 37 method result
14522: of type table
14523:
14524: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
14525: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
14526: tests/038.html, tests/results/033.processed,
14527: tests/results/034.processed, tests/results/035.processed,
14528: tests/results/036.processed, tests/results/037.processed,
14529: tests/results/038.processed: tests: 33 string.replace 34
14530: string.upper 35 table created 36 local/global vars with juntions
14531: 37 table clone 38 math PI & number formatting
14532:
14533: math class registring typo fixed
14534:
14535: * src/classes/op.C, src/include/pa_request.h,
14536: src/include/pa_string.h, src/main/execute.C,
14537: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
14538: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
14539: tests/032.html, tests/results/032.processed: uchar changed to
14540: String_UL in all places [was not everywhere] untaint test: 032
14541:
14542: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
14543: tests/results/004.processed, tests/parser-cygwin.sh,
14544: tests/parser-unix.sh: removed -H command line key, now testing
14545: using .sh file with SERVER_SOFTWARE=xxx
14546:
14547: 2003-02-26 paf
14548:
14549: * src/main/execute.C, src/types/pa_vstateless_class.h,
14550: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
14551: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
14552: tests/results/024.processed, tests/results/025.processed,
14553: tests/results/026.processed, tests/results/027.processed,
14554: tests/results/028.processed, tests/results/029.processed,
14555: tests/results/030.processed, tests/results/031.processed: fixed
14556: bug with name_cstr mutable CharPtr more tests
14557:
14558: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
14559: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
14560: << abort. die now just exits
14561:
14562: * src/classes/classes.awk, src/classes/classes.h,
14563: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14564: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14565: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14566: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14567: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14568: src/classes/xnode.C, src/include/pa_memory.h,
14569: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
14570: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
14571: src/types/pa_vform.C, tests/015.html, tests/016.html,
14572: tests/017.html, tests/018.html, tests/019.html,
14573: tests/019paf2001.gif, tests/020.html, tests/021.html,
14574: tests/022.html, tests/023.html, tests/022_dir/a.html,
14575: tests/022_dir/b.txt, tests/022_dir/c.htm,
14576: tests/results/015.processed, tests/results/016.processed,
14577: tests/results/017.processed, tests/results/018.processed,
14578: tests/results/019.processed, tests/results/020.processed,
14579: tests/results/021.processed, tests/results/022.processed,
14580: tests/results/023.processed: methoded_array now contains all Mxxx
14581: classes SAPI::get_env now returns info on pool more tests
14582:
14583: * src/include/pa_array.h, src/include/pa_hash.h,
14584: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
14585: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
14586: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
14587: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
14588: tests/014.html, tests/Makefile, tests/outputs/create-dir,
14589: tests/results/001.processed, tests/results/002.processed,
14590: tests/results/003.processed, tests/results/004.processed,
14591: tests/results/005.processed, tests/results/006.processed,
14592: tests/results/007.processed, tests/results/008.processed,
14593: tests/results/009.processed, tests/results/010.processed,
14594: tests/results/011.processed, tests/results/012.processed,
14595: tests/results/013.processed, tests/results/014.processed: hash
14596: cloning fixed
14597:
14598: 2003-02-25 paf
14599:
14600: * src/main/pa_common.C: typo fixed
14601:
14602: 2003-02-24 paf
14603:
14604: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
14605: [one remained]
14606:
14607: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
14608: [should have been get_string(&pool)] todo: check other such calls
14609:
14610: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
14611: test10, bad lookups
14612:
14613: xxx* xxx=smartptr.get(); << is bad style, after ";" original
14614: object got destructed, and xxx points to sky
14615:
14616: * ChangeLog, src/classes/string.C: match bug fixed
14617:
14618: * src/types/pa_vmail.C: body [text/html] transcoded to
14619: $.charset[specified] now
14620:
14621: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
14622: which failed to handle sigsetjmp+throw: crashed inside of
14623: pre-throw code. rewritten simplier [though duplicating
14624: closesocket code]
14625:
14626: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
14627: which failed to handle sigsetjmp+throw: crashed inside of
14628: pre-throw code. rewritten simplier [though duplicating
14629: closesocket code]
14630:
14631: 2003-02-21 paf
14632:
14633: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
14634: $cookie:name[$.expires[date << can be now]]
14635:
14636: written makefile with regression tests [raw]
14637:
14638: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
14639: tests' only [it's not forcing CGI mode now] now use -H to output
14640: CGI header when parser used in command line [useful for tests
14641: also]
14642:
14643: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
14644: switches on CGI mode, and is used in regression tests
14645:
14646: * src/: include/pa_request.h, main/pa_request.C,
14647: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
14648: fixed
14649:
14650: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
14651: handling pa_*
14652:
14653: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
14654: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
14655: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
14656: memory handling files
14657:
14658: * src/main/pa_array.C: pool::format_integer terminator fixed
14659:
14660: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
14661: compiles OK test to show benefits of free
14662:
14663: * src/: classes/file.C, classes/image.C, classes/mail.C,
14664: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
14665: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
14666: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
14667: use pool [as the one in ^process]
14668:
14669: * src/classes/op.C: fixed process. sould now check for all cstr's
14670: -- some must use pool [as the one in ^process]
14671:
14672: 2003-02-20 paf
14673:
14674: * src/: classes/date.C, classes/double.C, classes/file.C,
14675: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14676: classes/math.C, classes/op.C, classes/response.C,
14677: classes/string.C, classes/table.C, classes/void.C,
14678: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
14679: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
14680: string cmp fixed
14681:
14682: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
14683: values passed OK now
14684:
14685: 2003-02-19 paf
14686:
14687: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
14688: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
14689: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
14690: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
14691: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
14692: all remaning leaks resulted from pooled::malloc calls [excluding
14693: in gd -- planning complete rewrite extremely ugly code]
14694:
14695: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
14696: files
14697:
14698: 2003-02-17 paf
14699:
14700: * src/: classes/date.C, classes/double.C, classes/file.C,
14701: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14702: classes/response.C, classes/string.C, classes/table.C,
14703: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
14704: include/pa_stylesheet_connection.h,
14705: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
14706: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
14707: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
14708: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
14709: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
14710: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
14711: of unitialized simple-typed field
14712:
14713: * src/: classes/classes.C, classes/classes.h, main/execute.C,
14714: main/pa_charset.C, main/pa_request.C: another bug of unitialized
14715: simple-typed field fixed. todo: find&kill all like that one
14716:
14717: * src/: main/execute.C, targets/cgi/pa_pool.C,
14718: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
14719: debug output fixed
14720:
14721: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
14722: main/pa_request.C: stack-stored items need extra .ref to prevent
14723: object_ptr from delete[them]
14724:
14725: * src/: classes/date.C, classes/op.C, classes/table.C,
14726: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
14727: include/pa_charset.h, main/Makefile.am, main/main.dsp,
14728: main/pa_charset.C, main/pa_common.C,
14729: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
14730: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
14731: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
14732: calls
14733:
14734: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
14735: couple mem leaks rusulted from old pooled::malloc usage.
14736: todo:find more like those
14737:
14738: * src/main/: compile.C, compile_tools.C: 2*2!
14739:
14740: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
14741: stackItem fixed [there were no string on stack before]
14742:
14743: * src/: main/execute.C, main/pa_request.C,
14744: types/pa_vmethod_frame.C: first letters out OK
14745:
14746: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
14747: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
14748: main/pa_string.C, main/untaint.C, types/pa_value.h,
14749: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
14750: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
14751: type not initialized with zeros :( while class fields of class
14752: types initialized with default constructors. learn C++
14753:
14754: * src/: classes/classes.awk, classes/double.C, classes/file.C,
14755: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
14756: classes/math.C, classes/xdoc.C, classes/xnode.C,
14757: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
14758: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
14759:
14760: 2003-02-14 paf
14761:
14762: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
14763: 13 link errors
14764:
14765: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
14766: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
14767: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
14768: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
14769: errors :)
14770:
14771: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
14772: classes/hash.C, classes/mail.C, classes/op.C,
14773: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
14774: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
14775: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
14776: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
14777:
14778: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
14779: classes/table.C, include/pa_common.h, include/pa_globals.h,
14780: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
14781: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
14782: types/pa_vint.h, types/types.dsp: op compiled
14783:
14784: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
14785: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
14786: main/untaint.C, types/pa_vtable.h: string, response compiled
14787:
14788: 2003-02-07 paf
14789:
14790: * src/: classes/table.C, types/pa_vtable.h: table compiled
14791:
14792: 2003-02-06 paf
14793:
14794: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
14795: mail compiled
14796:
14797: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
14798: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
14799: types/pa_vfile.h, types/pa_vimage.h: image compiled
14800:
14801: * src/classes/: file.C, form.C: form compiled
14802:
14803: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
14804: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
14805: types/pa_vfile.C, types/pa_vfile.h: file compiled
14806:
14807: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
14808: types/pa_vmath.h: math compiled [win32]
14809:
14810: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
14811: types/pa_vstring.h: hash compiled
14812:
14813: 2003-02-04 paf
14814:
14815: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
14816: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
14817: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
14818: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
14819: types/pa_vhash.h: hash 50% compiled
14820:
14821: * src/: classes/date.C, classes/file.C, classes/hash.C,
14822: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
14823: classes/string.C, classes/table.C, classes/xdoc.C,
14824: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
14825: main/pa_string.C: date compiled
14826:
14827: * src/classes/: classes.dsp, double.C: double compiled
14828:
14829: * src/: classes/date.C, classes/double.C, classes/file.C,
14830: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
14831: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
14832: classes/string.C, classes/table.C, classes/void.C,
14833: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
14834: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
14835: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
14836: compiled
14837:
14838: * src/: classes/date.C, classes/double.C, classes/file.C,
14839: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14840: classes/math.C, classes/op.C, classes/response.C,
14841: classes/string.C, classes/table.C, classes/void.C,
14842: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14843: types/pa_vvoid.h: void compiled :)
14844:
14845: * src/: include/pa_globals.h, main/pa_cache_managers.C,
14846: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14847: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
14848: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
14849: main/pa_string.C, main/pa_uue.C, main/untaint.C,
14850: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
14851: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
14852: types/pa_vresponse.C, types/pa_vstateless_class.C,
14853: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
14854: types/pa_wcontext.C, types/types.dsp: removed stupid
14855: value_includes.h
14856:
14857: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
14858: trying to remove stupid value_includes.h
14859:
14860: * src/main/pa_exec.C: pa_exec compiled on win32
14861:
14862: * src/main/pa_exec.C: libmain.a compiled on six [unix]
14863:
14864: * src/: include/pa_globals.h, include/pa_request.h,
14865: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
14866: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
14867: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
14868: types/pa_vrequest.C, types/pa_vstateless_class.C,
14869: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
14870:
14871: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
14872: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
14873: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
14874:
14875: * src/: include/pa_array.h, include/pa_config_includes.h,
14876: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
14877: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
14878: compiled
14879:
14880: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
14881: name conflicts)
14882:
14883: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
14884: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
14885: yelds "virtual memory exhausted" while trying to compile
14886: execute.C [eating up to 127MB]
14887:
14888: 2003-02-03 paf
14889:
14890: * src/: include/pa_config_includes.h, include/pa_hash.h,
14891: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
14892: main/pa_common.C, types/pa_value.C, types/pa_value.h,
14893: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
14894: types/pa_vint.h, types/pa_vjunction.h,
14895: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
14896: started gcc compiling pa_common compiled
14897:
14898: * src/: include/pa_exception.h, include/pa_pool.h,
14899: main/pa_exception.C: exception gcc change #1
14900:
1.116 moko 14901: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
14902: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 14903:
14904: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
14905:
14906: * src/types/pa_vtable.C: vtable compiled
14907:
14908: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
14909:
14910: * src/: include/pa_cache_managers.h, main/pa_request.C,
14911: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
14912:
14913: * src/types/pa_vstateless_class.C: vstateless_class compiled
14914:
14915: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
14916:
14917: * src/types/pa_vrequest.C: vrequest compiled
14918:
14919: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
14920: pa_vobject.C, pa_vobject.h: vobject compiled
14921:
14922: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
14923: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
14924: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
14925: compiled
14926:
14927: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
14928:
14929: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
14930: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
14931: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
14932: compiled
14933:
14934: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
14935: main.lib - 0 error(s), 0 warning(s)
14936:
14937: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
14938: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
14939:
14940: 2003-01-31 paf
14941:
14942: * src/: include/pa_array.h, include/pa_operation.h,
14943: include/pa_request.h, main/execute.C, main/main.dsp,
14944: types/pa_vjunction.h: started last file from main library:
14945: execute
14946:
14947: * src/: include/pa_request.h, include/pa_sapi.h,
14948: main/compile.tab.C, main/compile.y, main/compile_tools.h,
14949: main/pa_request.C, targets/cgi/parser3.C,
14950: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
14951: types/pa_vhash.h: pa_request compiled
14952:
14953: * src/: classes/op.C, classes/string.C, include/pa_common.h,
14954: include/pa_globals.h, include/pa_request.h,
14955: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
14956: main/execute.C, main/main.dsp, main/pa_common.C,
14957: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
14958: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
14959: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
14960: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
14961: types/types.dsp: most pa_request compiled
14962:
14963: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14964: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14965: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14966: classes/op.C, classes/response.C, classes/string.C,
14967: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
14968: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
14969: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
14970: include/pa_config_fixed.h, include/pa_config_includes.h,
14971: include/pa_dictionary.h, include/pa_dir.h,
14972: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
14973: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
14974: include/pa_pool.h, include/pa_request.h,
14975: include/pa_request_charsets.h, include/pa_request_info.h,
14976: include/pa_sapi.h, include/pa_socks.h,
14977: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14978: include/pa_stack.h, include/pa_string.h,
14979: include/pa_stylesheet_connection.h,
14980: include/pa_stylesheet_manager.h, include/pa_table.h,
14981: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
14982: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
14983: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
14984: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
14985: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
14986: main/compile.C, main/compile.tab.C, main/compile.y,
14987: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14988: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
14989: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
14990: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
14991: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
14992: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
14993: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
14994: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
14995: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
14996: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
14997: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
14998: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
14999: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
15000: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
15001: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15002: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15003: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15004: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15005: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15006: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15007: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15008: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15009: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15010: types/pa_vresponse.h, types/pa_vstateless_class.C,
15011: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15012: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15013: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15014: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15015: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15016: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
15017:
15018: * ChangeLog, src/classes/classes.h, src/classes/op.C,
15019: src/include/pa_cache_managers.h, src/include/pa_charset.h,
15020: src/include/pa_charsets.h, src/include/pa_common.h,
15021: src/include/pa_dictionary.h, src/include/pa_exception.h,
15022: src/include/pa_exec.h, src/include/pa_pool.h,
15023: src/include/pa_request.h, src/include/pa_sapi.h,
15024: src/include/pa_sql_connection.h,
15025: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15026: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
15027: src/main/compile.tab.C, src/main/compile_tools.C,
15028: src/main/compile_tools.h, src/main/main.dsp,
15029: src/main/pa_charset.C, src/main/pa_charsets.C,
15030: src/main/pa_common.C, src/main/pa_dictionary.C,
15031: src/main/pa_exception.C, src/main/pa_exec.C,
15032: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15033: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
15034: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
15035: src/types/pa_vclass.h, src/types/pa_vcookie.C,
15036: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15037: src/types/pa_vdouble.h, src/types/pa_venv.h,
15038: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
15039: src/types/pa_vhash.h, src/types/pa_vimage.C,
15040: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
15041: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
15042: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15043: src/types/pa_vobject.C, src/types/pa_vobject.h,
15044: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15045: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15046: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15047: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
15048: src/types/pa_vstring.h, src/types/pa_vtable.h,
15049: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
15050: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
15051: died, long live StringPtr
15052:
15053: 2003-01-30 paf
15054:
15055: * src/: include/pa_charset.h, include/pa_request.h,
15056: include/pa_sql_driver_manager.h, main/compile.tab.C,
15057: main/compile.y, main/compile_tools.h, main/pa_request.C,
15058: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
15059:
15060: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
15061: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
15062: types/pa_vhash.h, types/pa_vmethod_frame.h,
15063: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15064: types/types.dsp: vstateless_class compiled
15065:
15066: * src/main/compile.C: compile compiled
15067:
15068: * src/: include/pa_array.h, include/pa_operation.h,
15069: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
15070: main/pa_table.C: compile_tools compiled
15071:
15072: * src/: include/pa_operation.h, main/compile.y,
15073: main/compile_tools.C, main/compile_tools.h: started
15074: compile_tools. vagues ideas of how to free compiled code
15075:
15076: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
15077: main/main.dsp, types/pa_value.C, types/pa_value.h,
15078: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
15079: compiled
15080:
15081: 2003-01-29 paf
15082:
15083: * src/: include/pa_globals.h, include/pa_request.h,
15084: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15085: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
15086: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
15087: compiled
15088:
15089: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
15090: now
15091:
15092: * src/: include/pa_array.h, include/pa_exception.h,
15093: include/pa_pool.h, main/pa_exception.C: gd compiled
15094:
15095: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
15096: compiled
15097:
15098: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
15099: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
15100: types/pa_vfile.h: vfile compiled
15101:
15102: * src/: include/pa_common.h, include/pa_globals.h,
15103: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
15104: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
15105: types/pa_vform.C, types/pa_vform.h: vcookie compiled
15106:
15107: * src/: include/pa_exception.h, main/pa_cache_managers.C,
15108: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
15109: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
15110: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
15111: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
15112:
15113: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
15114: main/main.dsp, main/untaint.C: more compiled
15115:
15116: * src/: include/pa_charsets.h, include/pa_request.h,
15117: include/pa_request_info.h, include/pa_string.h,
15118: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
15119: types/pa_vresponse.h: vrequest compiled
15120:
15121: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
15122: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
15123: pa_vresponse.h, pa_wcontext.h: vrequest compiled
15124:
15125: * src/: classes/classes.h, include/pa_charset.h,
15126: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
15127: include/pa_request.h, include/pa_string.h, main/main.dsp,
15128: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
15129: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
15130: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
15131: types/pa_vrequest.C, types/pa_vrequest.h,
15132: types/pa_vstateless_class.h, types/pa_vstring.h,
15133: types/pa_vvoid.h: vrequest,vdouble,vint compiled
15134:
15135: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
15136: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15137: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
15138: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
15139: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15140: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
15141: types/pa_vobject.h, types/pa_vstateless_class.h,
15142: types/pa_vstateless_object.h, types/pa_vstatus.h,
15143: types/pa_vstring.h, types/types.dsp: vmath compiled
15144:
15145: 2003-01-28 paf
15146:
15147: * src/: classes/classes.h, classes/date.C, classes/file.C,
15148: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
15149: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
15150: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
15151: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
15152: compile_tools
15153:
15154: * src/: include/pa_charset.h, include/pa_exception.h,
15155: include/pa_request.h, include/pa_string.h, main/untaint.C:
15156: untaint compiled
15157:
15158: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
15159: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
15160: more compiled. struck with string::store_to needing to know
15161: source/client charsets
15162:
15163: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
15164: types/pa_vfile.h: uue compiled
15165:
15166: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
15167: table compiled
15168:
15169: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
15170: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
15171:
15172: * src/: include/pa_charset.h, main/pa_charset.C,
15173: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
15174: introduced]
15175:
15176: * src/: classes/date.C, include/pa_charset.h,
15177: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
15178: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
15179: pa_charsets compiled
15180:
15181: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
15182: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
15183:
15184: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
15185: common compiled
15186:
15187: * src/: include/pa_charsets.h, main/pa_charsets.C,
15188: main/pa_sql_driver_manager.C: pa_charsets compiled
15189:
15190: * src/: include/pa_array.h, include/pa_charset.h,
15191: include/pa_charsets.h, include/pa_pool.h,
15192: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15193: include/pa_stack.h, include/pa_string.h,
15194: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
15195: sql_driver_manager compiled
15196:
15197: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
15198: letter i with two dots added to koi, all ukranian letters added
15199: to win1251.
15200:
15201: typographic simbol 0xb9 deleted from win1251 [strange one & were
15202: abscent from koi]
15203:
15204: 2003-01-27 paf
15205:
15206: * src/: include/pa_exception.h, include/pa_sql_connection.h,
15207: include/pa_sql_driver_manager.h, include/pa_string.h,
15208: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
15209: sql/pa_sql_driver.h: paused on sql_manager
15210:
15211: * src/: include/pa_cache_managers.h, include/pa_pool.h,
15212: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15213: include/pa_stack.h, main/pa_sql_driver_manager.C,
15214: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
15215:
15216: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
15217: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15218: include/pa_table.h, main/pa_sql_driver_manager.C,
15219: main/pa_table.C: table compiled
15220:
15221: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
15222: cache_managers compiled
15223:
15224: * src/: include/pa_array.h, include/pa_charset.h,
15225: include/pa_pool.h, main/pa_charset.C: charset compiled
15226:
15227: * src/: include/pa_pool.h, main/pa_common.C: common compiled
15228:
15229: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
15230: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
15231: main/pa_string.C, types/pa_value.C, types/pa_value.h,
15232: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
15233: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
15234:
15235: 2003-01-24 paf
15236:
15237: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
15238: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
15239: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
15240: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
15241: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
15242: types/pa_vint.h, types/pa_vjunction.h,
15243: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15244: types/pa_vstatus.h, types/pa_vstring.h: more patched
15245:
15246: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
15247: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
15248: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
15249: main/pa_string.C, main/pa_table.C: string compiled
15250:
15251: * src/: include/pa_array.h, include/pa_common.h,
15252: include/pa_dictionary.h, include/pa_exception.h,
15253: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
15254: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
15255: main/pa_string.C: dictionary compiled
15256:
15257: 2003-01-23 paf
15258:
15259: * src/: include/pa_array.h, include/pa_common.h,
15260: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
15261: include/pa_request.h, include/pa_string.h, main/pa_common.C,
15262: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
15263: types/pa_value.h: resurrected pool in new sense: now it's
15264: factory, producing&accounting memory chunks for read[autofree]
15265: buffers
15266:
15267: * src/: include/pa_array.h, include/pa_exception.h,
15268: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
15269: main/pa_exception.C, main/pa_table.C: table compiled
15270:
15271: * src/: classes/image.C, classes/op.C, include/pa_array.h,
15272: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
15273: include/pa_pool.h, include/pa_pragma_pack_begin.h,
15274: include/pa_pragma_pack_end.h, include/pa_sapi.h,
15275: include/pa_string.h, include/pa_table.h, include/pa_types.h,
15276: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
15277: main/pa_table.C: aint that easy
15278:
15279: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
15280: main/main.dsp: continued with Hash
15281:
15282: * src/main/pa_common.C: connect_string allocated on heap[wes on
15283: stack] now. and exception can be reported OK now [can be reported
15284: outside of pro c with that stack]
15285:
15286: 2003-01-22 paf
15287:
15288: * src/: include/pa_array.h, include/pa_charset.h,
15289: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
15290: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
15291: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
15292: base: contains references_count. auto_ptr template calls
15293: add_ref/release
15294:
15295: 2003-01-21 paf
15296:
15297: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15298: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15299: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15300: classes/op.C, classes/response.C, classes/string.C,
15301: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
15302: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
15303: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15304: include/pa_config_fixed.h, include/pa_config_includes.h,
15305: include/pa_dictionary.h, include/pa_dir.h,
15306: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15307: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
15308: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15309: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
15310: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15311: include/pa_stack.h, include/pa_string.h,
15312: include/pa_stylesheet_connection.h,
15313: include/pa_stylesheet_manager.h, include/pa_table.h,
15314: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
15315: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
15316: lib/pcre/pcre_parser_ctype.c, main/compile.C,
15317: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15318: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
15319: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
15320: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15321: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
15322: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
15323: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
15324: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
15325: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
15326: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
15327: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
15328: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
15329: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
15330: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
15331: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
15332: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
15333: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15334: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
15335: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
15336: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15337: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15338: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
15339: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15340: types/pa_vstateless_object.h, types/pa_vstatus.C,
15341: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
15342: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
15343: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15344: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15345: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
15346: 2002->2003
15347:
15348: 2003-01-16 paf
15349:
15350: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
15351: src/main/pa_globals.C: http:// introducing $.any-status(1)
15352:
15353: * operators.txt, src/include/pa_config_fixed.h,
15354: src/main/pa_common.C: http request now return status. and not
15355: fail on status!=200
15356:
15357: 2003-01-15 paf
15358:
15359: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
15360:
15361: 2003-01-14 paf
15362:
15363: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
15364: mkinstalldirs: removed some ancient files [they in / really]
15365:
15366: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
15367: regretfully needed patch in two places. in config_fixed.h made
15368: stubs for lib to compile in MSVC
15369:
15370: 2003-01-13 paf
15371:
15372: * config.guess, config.sub, ltmain.sh: removed last piece of
15373: configure.in(libtool) hacks
15374:
1.116 moko 15375: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 15376: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
15377: ltdl.h: moved to latest libtool (1.4.3)
15378:
15379: 2003-01-10 paf
15380:
15381: * src/lib/ltdl/: configure, configure.in: PROG_NM
15382:
15383: * src/main/pa_globals.C: moved to latest xml lib versions, changed
15384: patches. libxml2 >= 2.5.1
15385: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
15386: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
15387: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
15388:
15389: * INSTALL: moved to latest versions of xml libs libxml2 >=
15390: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
15391: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
15392: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
15393:
15394: 2003-01-09 paf
15395:
15396: * INSTALL: xml,xslt,gdome lib urls updated
15397:
15398: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 15399: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 15400: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 15401: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
15402: 1.7.2
1.95 moko 15403:
15404: * depcomp: moving to automake 1.7.2
15405:
15406: 2002-12-27 paf
15407:
15408: * src/include/pa_version.h: 0007
15409:
15410: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
15411: outdated parts, made links to language docs
15412:
15413: * src/include/pa_config_auto.h.in: comment
15414:
15415: 2002-12-26 paf
15416:
15417: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
15418: not contain trailing / fixed.
15419:
15420: * INSTALL: changing SAFE_MODE politics
15421:
15422: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
15423:
15424: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
15425:
15426: 2002-12-25 paf
15427:
15428: * src/main/pa_globals.C: optimized-xml
15429:
15430: * src/main/pa_globals.C: optimized-as-is
15431:
15432: 2002-12-24 paf
15433:
15434: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
15435: fixed [were really called with zero size when .html?a=&b=]
15436:
15437: * src/classes/mail.C: $MAIL in @conf now invalid when configured
15438: with --with-sendmail
15439:
15440: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
15441: fixed]
15442:
15443: 2002-12-23 paf
15444:
15445: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
15446: ignoring parameters & were storing only string with default
15447: expires
15448:
15449: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
15450: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
15451: December 23, 2002 4:22 AM Subject: bug â
15452: Charset::transcode_buf2xchar
15453:
15454: 2002-12-20 paf
15455:
15456: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
15457: non-cgi [script] runs
15458:
15459: 2002-12-19 paf
15460:
15461: * INSTALL: --without-iconv recommended [it crashes on some systems
15462: [tested on elik]] moreover, it's not needed there [parser
15463: registers charsets itself]
15464:
15465: * INSTALL: --without-iconv recommended [it crashes on some systems
15466: [tested on elik]]
15467:
15468: * operators.txt, src/include/pa_globals.h,
15469: src/include/pa_request.h, src/main/pa_globals.C,
15470: src/main/pa_request.C: $response:download
15471:
15472: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
15473: compiler [win32]].
15474:
15475: 2002-12-18 paf
15476:
15477: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
15478:
15479: 2002-12-17 paf
15480:
15481: * src/targets/cgi/parser3.C: merged die&iis changes
15482:
15483: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
15484: to exit(1) 2. more flexible iilegal call check
15485:
15486: 2002-12-16 paf
15487:
15488: * ltmain.sh: some automakes silly insist on having this handy
15489:
15490: * src/main/untaint.C: filespec russian small 'r' changed to latin
15491: 'p' bug fix
15492:
15493: 2002-12-15 paf
15494:
15495: * src/main/untaint.C: filespec russian small 'r' changed to latin
15496: 'p'
15497:
15498: * configure.in, src/include/pa_config_auto.h.in,
15499: src/main/compile.C, src/main/pa_common.C: merged small changes
15500: from branch 6 to HEAD
15501:
15502: * src/main/compile.C: removed warning
15503:
15504: * src/main/pa_common.C: ftruncate having checked
15505:
15506: * configure.in, src/include/pa_version.h: new version
15507:
15508: 2002-12-14 paf
15509:
15510: * src/classes/table.C: removed unnecessary code
15511:
15512: * src/sql/pa_sql_driver.h: exception type fixed
15513:
15514: 2002-12-09 paf
15515:
15516: * src/types/pa_vvoid.h: $void.store[now] error
15517:
15518: * src/targets/cgi/parser3.C: ::die now tries to write core dump
15519:
15520: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
15521: tries to write core dump
15522:
15523: * src/targets/cgi/parser3.C: ::die now tries to write core dump
15524:
15525: * src/: classes/hash.C, classes/string.C, classes/table.C,
15526: classes/void.C, main/pa_sql_driver_manager.C,
15527: sql/pa_sql_driver.h: changed exception handling mech in sql
15528: handlers #2
15529:
15530: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
15531: exception handling mech in sql handlers
15532:
15533: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
15534: handlers
15535:
15536: * src/: classes/hash.C, classes/string.C, classes/table.C,
15537: classes/void.C, main/pa_sql_driver_manager.C,
15538: sql/pa_sql_driver.h: changed exception handling mech in sql
15539: handlers
15540:
1.116 moko 15541: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
15542: to write makefile which used libtool to install things, which is
15543: not needed
1.95 moko 15544:
15545: 2002-12-06 paf
15546:
15547: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
15548: $hash.fields -- pseudo field to make 'hash' more like 'table'
15549:
15550: 2002-12-05 paf
15551:
15552: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
15553: cc/bcc OK now
15554:
15555: * src/main/untaint.C: mail header closed properly
15556:
15557: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
15558: header ',' allowed. still bugs in smtp [only one receiptient
15559: works, cc, bcc ignored now, and MAILED ;)]
15560:
15561: [strncpy killed, memnchr used]
15562:
15563: * src/main/pa_table.C: table-copy now current=0
15564:
15565: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
15566: lowlevel proc
15567:
15568: * src/targets/cgi/parser3.C: more checks on
15569: http://domain/parser.cgi start [maybe some getenv returns "",
15570: checked that now
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: error logging made unbuffered [so that
15577: out-of-mem errors reached log]
15578:
15579: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
15580: mail:send MIME-Version default
15581:
15582: * src/main/main.dsp: pa_version included into main.dsp
15583:
15584: 2002-12-04 paf
15585:
15586: * src/types/pa_vform.C: $form:field string value cut by premature 0
15587:
15588: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
15589: lib/libltdl -> lib/ltdl Win32 changes. s
15590:
15591: * src/classes/classes.awk: more strict *.C$
15592:
15593: * gnu.dsp: restored
15594:
1.116 moko 15595: * configure.in, gnu.dsp, src/lib/Makefile.am,
15596: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
15597: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
15598: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
15599: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
15600: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
15601: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
15602: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
15603: now created with /configure, not ltdl/configure, so it does have
15604: no problems with automake. ltdl/configure
15605: AC_OUTPUT(Makefile<<removed)
1.95 moko 15606:
15607: 2002-12-02 paf
15608:
15609: * operators.txt: removed outdated status:db
15610:
15611: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
15612: src/main/pa_common.C, src/main/pa_request.C,
15613: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
15614: tainted parts becomes http-header
15615:
15616: 2002-11-29 paf
15617:
15618: * src/classes/date.C, src/classes/image.C, operators.txt: exif
15619: dates now objects of type date
15620:
15621: * src/classes/image.C: file.seek removed [it were used in image.C
15622: only, and for parser user this means that jpeg image has bad
15623: size in fragment's header] now used image.format
15624:
15625: * src/: include/pa_common.h, main/pa_common.C,
15626: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
15627: now handled exactly like $response:header values. e.g. can be
15628: hash [can have subattributes] & contain date values.
15629:
15630: * src/main/pa_common.C: http:// param values lang forced URI
15631:
15632: * src/main/pa_common.C: http:// tainted partes now %xx
15633:
15634: 2002-11-28 paf
15635:
15636: * operators.txt: http.timeout
15637:
15638: * src/classes/image.C: ^image.length now counts interchar space.
15639: plus space after last char
15640:
15641: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
15642:
15643: * src/classes/image.C: ^image.font width measurer now scans full
15644: height [were -1]
15645:
15646: * configure.in: stopped double libltdl/Makefile generation
15647:
15648: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
15649: chars [one top horizontal line of 1pixel height were missing]
15650:
15651: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
15652: 'false' to go into (Hash *) parameter
15653:
15654: 2002-11-27 paf
15655:
15656: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
15657: types/pa_vmail.C: response:body[file] if file nows it's name now
15658: returns content-disposition: >>attachment<<
15659:
15660: * src/classes/image.C: ^image.font << bad font file-size now
15661: properly reported
15662:
15663: 2002-11-26 paf
15664:
15665: * src/main/pa_request.C: fixed lang in reponse header
15666:
15667: * src/main/pa_common.C: utf8 prefix ignored @read text
15668:
15669: * operators.txt, src/main/pa_common.C: http:// response status!=200
15670: made exception: http.status with source=bad status#
15671:
15672: 2002-11-25 paf
15673:
15674: * configure.in, src/classes/image.C,
15675: src/include/pa_config_auto.h.in,
15676: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 15677: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
15678: const void related probs fixed
1.95 moko 15679:
15680: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
15681:
15682: $file[^file::load[http://there]] $file.SERVER
15683:
15684: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
15685: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
15686: http options [invalid onces now reported] made default
15687: user-agent: paf
15688:
15689: * operators.txt, src/classes/file.C, src/classes/table.C,
15690: src/classes/xdoc.C, src/include/pa_common.h,
15691: src/include/pa_globals.h, src/main/pa_common.C,
15692: src/main/pa_globals.C, src/main/pa_request.C,
15693: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
15694: now understand http:// prefix and additional params, sample:
15695: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
15696: $.USER-AGENT[parser3] ]]
15697:
15698: 2002-11-22 paf
15699:
15700: * src/classes/image.C, src/include/pa_globals.h,
15701: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
15702: src/types/pa_vimage.h, operators.txt: $image.exif support
15703: $image.exif.DateTime & co
15704:
15705: 2002-11-21 paf
15706:
15707: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
15708: _PASS_APPENDED)
15709:
15710: * src/classes/image.C: jpeg size measure fixed: were badly skipping
15711: EXIF information [were big block and it's size were considered
15712: negative :(]
15713:
15714: * operators.txt, src/classes/image.C, src/include/pa_common.h,
15715: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
15716: internals rewritten. no there's reader.seek, and all's ready for
15717: EXIF extraction [now we fail to measure files with EXIF info]
15718:
15719: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
15720: O_TRUNC truncates even exclusevely write-locked file [thanks to
15721: Igor Milyakov <virtan@rotabanner.com> for discovering]
15722:
15723: 2002-11-20 paf
15724:
15725: * src/targets/cgi/parser3.C: logging @signal += query_string
15726:
15727: * configure.in, src/include/pa_config_auto.h.in,
15728: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
15729: comment
15730:
15731: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
15732:
15733: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
15734: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
15735: currently processed document SIGPIPE >> interrupts request
15736: processing [exception = DB rollback]
15737:
15738: * src/main/pa_exec.C: comment
15739:
15740: * src/main/pa_exec.C: pa_exec: data written only if size>0
15741:
15742: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
15743: << disable HTTP-POST repassing
15744:
15745: * src/: include/pa_config_fixed.h, main/pa_common.C,
15746: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
15747: pipe read errors now checked
15748:
15749: 2002-11-19 paf
15750:
15751: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
15752: CGI: Illegal call
15753:
15754: 2002-11-01 paf
15755:
15756: * src/main/execute.C: comment
15757:
15758: 2002-10-31 paf
15759:
15760: * src/main/execute.C: found out why, checked that for now. todo:
15761: find out a way for that user could do that
15762:
15763: * src/types/pa_vstateless_object.h: object put replaces static
15764: parent if any
15765:
15766: * src/types/pa_vobject.C: object put replaces static parent if any
15767:
15768: * src/: classes/form.C, classes/mail.C, classes/op.C,
15769: classes/xnode.h, main/compile.tab.C, main/execute.C,
15770: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
15771: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15772: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
15773: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15774: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
15775: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15776: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15777: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
15778: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15779: types/pa_vstateless_object.h, types/pa_vstatus.C,
15780: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
15781: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
15782: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
15783: types/pa_wwrapper.h: static fix merged
15784:
15785: * src/: main/compile.tab.C, types/pa_vobject.C: killed
15786: $virtual_fields in dynamic, but one can reach derived
15787: static[class] variable from base
15788:
15789: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
15790: types/pa_vobject.C, types/pa_vobject.h,
15791: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
15792: statics, left $virtual_fields in dynamic
15793:
15794: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
15795: one can't remember derivates in base class: there's so many of
15796: them. also there can be no virtual method calls in static
15797: classes
15798:
15799: * src/: classes/form.C, classes/mail.C, classes/op.C,
15800: classes/xnode.h, main/execute.C, main/pa_request.C,
15801: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
15802: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
15803: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
15804: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15805: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
15806: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
15807: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
15808: types/pa_vresponse.C, types/pa_vresponse.h,
15809: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15810: types/pa_vstateless_object.h, types/pa_vstatus.C,
15811: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
15812: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
15813: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
15814: types/pa_wwrapper.h: static call $self fixed
15815:
15816: * src/main/execute.C: comment
15817:
15818: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
15819: ^process[$caller.self]{...} now compiles to last derived object
15820: part of that 'self'
15821:
15822: 2002-10-29 paf
15823:
15824: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
15825: re-passing [iis to blame]
15826:
15827: * src/classes/string.C: changed string.save to pass current sql
15828: connection to cstr thus one can ^connect[some server]{
15829: $s[insert into table x (x) values (^taint[sql]{value})]
15830: ^s.save[some.sql] } and he'd get in some.sql file code with
15831: properly escaped. [tried in mssql->mysql export->import of
15832: binary data]
15833:
15834: 2002-10-25 paf
15835:
15836: * src/types/pa_vresponse.C: case insensitive response user fields
15837: get/put
15838:
15839: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
15840: types/pa_vresponse.C: saving for maybe-future
15841:
15842: 2002-10-23 paf
15843:
15844: * operators.txt, src/classes/table.C: ^table.hash{code}...
15845: ^table.hash(expr)...
15846:
15847: * src/types/pa_vmail.C: email whitespace trimBoth-ed
15848:
15849: 2002-10-22 paf
15850:
15851: * src/types/: pa_vform.C, pa_vform.h: removed needless
15852: VForm::Append...(...Value)
15853:
15854: * src/main/execute.C: $.name outside of $name[...] checked
15855:
15856: * src/main/: compile.tab.C, compile.y: lexer changed to fix
15857: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
15858:
15859: 2002-10-21 paf
15860:
15861: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
15862: $form:qtail $form:imap.x/y
15863:
15864: * operators.txt, src/types/pa_vform.C: $form:nameless =
15865: "?value&...", "...&value&...", "...&value"
15866:
15867: * operators.txt, src/types/pa_vform.C: $form:image-map
15868:
15869: * operators.txt, src/classes/file.C: /some/page.html:
15870: ^file:fullpath[a.gif] => /some/a.gif
15871:
15872: 2002-10-17 paf
15873:
15874: * src/main/: compile.tab.C, compile.y: operators precedence changed
15875: a little: logical not and bitwise negation precedence made
15876: highest, << and >> bitshits precedence made equal [were << higher
15877: than >>]
15878:
15879: * src/classes/op.C: exception handling fixed [were bad with
15880: contexts]
15881:
15882: 2002-10-16 paf
15883:
15884: * src/: classes/op.C, include/pa_request.h, main/execute.C,
15885: main/pa_request.C: Request::self considered equal to
15886: VMethodFrame::self, and removed, Request::get_self() mapped to
15887: VMethodFrame.self()
15888:
15889: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
15890: $hash in open field now gives old good error meesage
15891:
15892: 2002-10-15 paf
15893:
15894: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
15895: use ^if($junction is junction){was and now true}
15896:
15897: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
15898: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
15899: types/pa_vxnode.C: xml->parser strings now have origin, which
15900: points to place where value left xml library and came to parser:
15901: place of dom field extraction/call
15902:
15903: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
15904: main/compile.tab.C, main/compile.y, main/execute.C,
15905: types/pa_vmethod_frame.h: removed last pieces of old code
15906: allowing $junction.xxx at compile time
15907:
15908: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
15909: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
15910: objects also considered [were only classes]
15911:
15912: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
15913: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
15914: with CLASS self. [ (request&method_frame).self temporarily
15915: changed ]
15916:
15917: * src/classes/: hash.C, op.C: method_frame now always changed, with
15918: no exception to native calls. for&foreach changed to use
15919: method_frame.caller for their var's name context
15920:
15921: * src/: main/execute.C, targets/cgi/parser3.C,
15922: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
15923: compiling to system classes disabled
15924:
15925: * operators.txt, src/classes/op.C:
15926: ^process[$caller.CLASS]{code-string} added
15927:
15928: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
15929: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
15930: src/types/Makefile.am, src/types/pa_vjunction.C,
15931: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
15932: src/types/types.dsp: removed $junction.get $junction.set[]
15933: introducing $caller
15934:
15935: * src/types/pa_value.h: removed outdated comments. doxygen would
15936: find them lower by inheritance tree
15937:
15938: * src/types/pa_vjunction.C: ident
15939:
15940: 2002-10-14 paf
15941:
15942: * src/classes/op.C: process compiles to code's class class
15943:
15944: * src/: classes/form.C, classes/mail.C, classes/op.C,
15945: include/pa_request.h, main/compile.C, main/compile.tab.C,
15946: main/compile.y, main/execute.C, main/pa_request.C,
15947: types/pa_vstateless_class.h: operators now main-class-methods
15948:
15949: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
15950: better stack trace [has "call" & co there]
15951:
15952: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
15953: operators @auto now executed in MAIN context
15954:
15955: * src/main/execute.C: operator execution context now = MAIN, not
15956: closest stack frame
15957:
15958: @touchit[] $i[after]
15959:
15960: ----t.html $i[before] << local ^touchit[] $i << now 'before',
15961: were 'after'
15962:
15963: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
15964: 'after'
15965:
15966: * src/main/execute.C: comment
15967:
15968: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
15969: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
15970: action]
15971:
15972: * src/types/pa_vxnode.C: misreplace fixed
15973:
15974: * configure, configure.in, src/include/pa_config_auto.h.in,
15975: src/types/pa_vstatus.C, operators.txt:
15976: $status:rusage.tv_secs/usecs introduced
15977:
15978: 2002-10-09 paf
15979:
15980: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
15981: on empty string [or uses (default)]
15982:
15983: 2002-10-08 paf
15984:
15985: * src/main/untaint.C: mail header quoted printable changed after
15986: RFC reread
15987:
15988: * operators.txt: plan on ^if(method
15989:
15990: * src/types/pa_vxnode.C: misreplace
15991:
15992: 2002-09-24 paf
15993:
1.116 moko 15994: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 15995:
15996: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
15997: mailreceive would compile on freebsd now
15998:
15999: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
16000: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 16001: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
16002: mailreceive would compile on freebsd now
1.95 moko 16003:
16004: * src/: classes/file.C, main/untaint.C: 1. file spec language
16005: changed: now there are only few chars are untainted: * ? ' " < >
16006: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
16007: one should use ^untaint[uri]{...} now]
16008:
16009: 2. $list[^file:list[dir]] now returns simply tainted names in
16010: $list.name, not tainted as filespec
16011:
16012: @russianindex[] #dir with files with russian-lang names
16013: $where[dir]
16014:
16015: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
16016: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
16017:
16018: 2002-09-23 paf
16019:
16020: * src/types/pa_vdouble.h: double->int round added
16021:
16022: * src/classes/date.C: date bug fix, now
16023: round(floatDays*secondsPerDay)
16024:
16025: * src/classes/date.C: date bug fix, now
16026: round(floatDays*secondsPerDay)
16027:
16028: 2002-09-20 paf
16029:
16030: * src/main/execute.C: code junction calls disabled [before: code
16031: was compiled in such a way, that there were no code-junctions in
16032: OP_CALL]
16033:
16034: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
16035:
16036: @badjunctioncallinside[code] ^code[]
16037:
16038: * src/main/: compile.tab.C, compile.y: changed grammer on junction
16039: expanding to include ^junction.method
16040:
16041: * src/main/pa_common.C: -d "DIR/" now true
16042:
16043: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
16044: as internal xdoc encoding, and after decoding attributes set by
16045: dom functions now encoded OK, not as digital entities
16046:
16047: * src/classes/xdoc.C: empty transform result, being taken as file
16048: now returns empty file, not raises stupid error about "stat-ed
16049: file"
16050:
16051: * src/types/pa_vhash.h: hash.foreach modification of existing keys
16052: allowed
16053:
16054: * src/types/types.dsp: introducing $junction.get/put(1) one can
16055: write iterators now:
16056:
16057: ^user-foreach[key;value]{$key=$value<br>}
16058:
16059: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16060: $code.value($i*2) $code }
16061:
16062: * src/main/compile_tools.h: mistype
16063:
1.116 moko 16064: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
16065: thus taking linking options configure changes into account [were:
16066: ignoring]
1.95 moko 16067:
16068: * src/types/: pa_vjunction.C, Makefile.am: introducing
16069: $junction.get/put(1) one can write iterators now:
16070:
16071: ^user-foreach[key;value]{$key=$value<br>}
16072:
16073: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16074: $code.value($i*2) $code }
16075:
16076: * src/: include/pa_opcode.h, include/pa_request.h,
16077: main/compile.tab.C, main/compile.y, main/execute.C,
16078: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
16079: introducing $junction.get/put(1) one can write iterators now:
16080:
16081: ^user-foreach[key;value]{$key=$value<br>}
16082:
16083: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16084: $code.value($i*2) $code }
16085:
16086: 2002-09-19 paf
16087:
1.116 moko 16088: * Makefile.am: new: make commit
1.95 moko 16089:
16090: * aclocal.m4: forced to be older
16091:
16092: 2002-09-18 paf
16093:
16094: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
16095: src/main/compile.y, src/main/execute.C: << >> int shifts
16096:
16097: * src/: include/pa_common.h, include/pa_request.h,
16098: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
16099: - now this - fatal error
16100:
16101: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
16102: that one can pass binary data there
16103:
16104: * src/: classes/date.C, classes/double.C, classes/file.C,
16105: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16106: classes/op.C, classes/response.C, classes/string.C,
16107: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16108: include/pa_request.h: pa_request contexts made privated, plus
16109: get_{self/method_frame} to read. Request_context_saver used in
16110: ^try to save flang too. [were not saved]
16111:
16112: * src/types/pa_vresponse.C: header value chains joined before
16113: output, this should help $.subject[$var $var] from being
16114: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
16115:
16116: 2002-09-17 paf
16117:
16118: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
16119: removed changes, operators executed with calling self. lots of
16120: code with ^include code relies on defined/defining self variables
16121:
16122: $a[1] ^include[print_a.p] print_a.p: $a
16123:
16124: ^include[set_a.p] a=$a set_a.p: $a[1]
16125:
16126: * src/: classes/op.C, main/execute.C, main/pa_request.C,
16127: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
16128: types/pa_vstateless_class.h: operators now executed with MAIN
16129: self. it's for ^include sake, too strong a change
16130:
16131: * src/classes/op.C: made place for ^process to compile it's code to
16132: in case of no self
16133:
16134: * src/main/execute.C: found ancient param to Junction, removed.
16135: allowed passing self to native_code_operators [for ^process to
16136: work, she needs self]
16137:
16138: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
16139: types/pa_vstateless_class.h: found ancient param to Junction,
16140: removed. allowed passing self to native_code_operators [for
16141: ^process to work, she needs self]
16142:
16143: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
16144: types/pa_value.h, types/pa_vmethod_frame.h,
16145: types/pa_vstateless_class.h: allowed Request.self to be 0,
16146: checked that in VMethodFrame get/put and $self.
16147:
16148: * src/classes/: table.C, xdoc.C: table::sql options table::create
16149: copy options options checked, wrong option now fatal error
16150:
16151: * src/main/pa_string.C: string.replace fixed [were missing words on
16152: pieces boundaries]
16153:
16154: * bin/auto.p.dist.in: strange \n
16155:
16156: * configure, configure.in: .so now detected [can be .sl on hpux,
16157: .dll on cygwin, .so in other cases)
16158:
1.116 moko 16159: * configure, configure.in, bin/auto.p.dist.in: .so now detected
16160: [can be .sl on hpux, .dll on cygwin, .so in other cases)
1.95 moko 16161:
16162: * operators.txt, src/classes/hash.C, src/classes/table.C,
16163: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
16164: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
16165: record taken [were last]
16166:
16167: * src/: classes/hash.C, classes/table.C,
16168: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
16169: now errors
16170:
16171: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
16172:
16173: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
16174: ,2,3]
16175:
16176: 2002-09-16 paf
16177:
16178: * src/classes/file.C: file::cgi line ends can be both unix & dos.
16179: and they can be unix [\n\n] on win when 'use CGI' used, it causes
16180: stdout to be binary. now detected closest header break.
16181:
16182: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
16183: closed right
16184:
16185: 2002-09-13 paf
16186:
16187: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
16188: src/main/compile_tools.h: (expression #comment)
16189:
16190: (multiline expression #comment line2 #comment )
16191:
16192: (expression #comment with (brackets) comment) << OK
16193:
16194: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
16195: bitwise !|| numerical xor now [preparing for expression
16196: #comments]
16197:
16198: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
16199: error
16200:
16201: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
16202: cheched in pa_socks.C
16203:
1.116 moko 16204: * configure, configure.in, src/include/pa_config_auto.h.in:
16205: HAVE_WINSOCK_H created in configure.in
1.95 moko 16206:
16207: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
16208: cookie date now clean [were mistakenly tainted & that worked bad
16209: with opera -- 'happily' that worked OK with msie]
16210:
16211: 2002-09-12 paf
16212:
16213: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
16214: VClass get_element now first looks to fields, next to methods &
16215: co todo: the rest reason: more speed
16216:
16217: * src/main/untaint.C: quoted printable encoding stops before
16218: \s*<...>$
16219:
16220: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
16221: stops before <...>$
16222:
16223: 2002-09-11 paf
16224:
16225: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
16226: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
16227: forgot to check users of those funcs. not all were using that
16228: return value convention
16229:
16230: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
16231: windows-1254 added
16232:
16233: 2002-09-10 paf
16234:
16235: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
16236: VCodeFrame parent param were specified badly
16237:
16238: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
16239: WWrapper which used in constructing objects(second param to sql
16240: method) ^...sql{}[$.default{code}] now has parent, wich helps
16241: code in hash to survivi
16242:
16243: * src/: include/pa_request.h, main/execute.C: removed redundant
16244: param to execute [stack said 'thanks']
16245:
16246: * src/: classes/op.C, main/execute.C, types/pa_value.C,
16247: types/pa_value.h, types/pa_vcode_frame.h,
16248: types/pa_vmethod_frame.h, types/pa_wcontext.C,
16249: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
16250: responsibility to wcontext
16251:
16252: * src/classes/file.C: decided not to log exec's with stderr, that
16253: could be warnings, and it's up to scritper to log/show them
16254:
16255: * src/: classes/double.C, main/execute.C: double:sql badly called
16256: write_assign_lang, not write_no_lang, thus doing unnecessary
16257: double/string converstion, which were loosing time&precesion
16258:
16259: * src/: main/pa_charset.C, types/pa_vmail.C:
16260: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
16261: case of unfinished in buffer processing, causing accidental
16262: transcode stop [in case that source enc != utf-8 & there is
16263: incomplete utf-8 sequence at the end of 16000block iside of
16264: libxml lib] tfm readed & code updated
16265:
16266: 2002-09-04 paf
16267:
16268: * configure: makes with sjlj
16269:
16270: * INSTALL, src/include/pa_config_fixed.h,
16271: src/include/pa_sql_connection.h,
16272: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
16273: checked. on win32 it made default
16274:
16275: * src/include/pa_config_auto.h.in: sjlj define
16276:
16277: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
16278: can not work with longjump/throw pair, and one must switch that
16279: on there. todo: detect that automatically]
16280:
16281: * src/types/pa_vxnode.C: removed too strong checks of
16282: xnode.elements. now, for instance, if element does not have any
16283: attributes, $xnode.attributes is void, not error
16284:
16285: 2002-09-02 paf
16286:
16287: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
16288: removed double_result, didn't help
16289:
16290: * src/main/execute.C: double_result made to move that var away from
16291: hungry g++ optimizer (-O2), before: it were optimized and
16292: comparison operators worked badly
16293:
16294: * src/types/pa_vdate.h: removed debug
16295:
1.116 moko 16296: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 16297:
16298: * src/main/execute.C: fixed numeric < & co so that thay now use
16299: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
16300: unknown reason.
16301:
16302: 2002-08-29 paf
16303:
16304: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
16305: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
16306: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
16307: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
16308: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
16309: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
16310: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
16311: [called less frequent, allowed to remove ugly
16312: Junction.change_context-s from many places, switch,
16313: mail:send..html{}, ..] request.root renamed to method_frame [more
16314: easyreading] ancient {...PUSH/POPs...} changed to stack vars
16315: [speed up]
16316:
16317: 2002-08-28 paf
16318:
16319: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
16320: tainted
16321:
16322: * src/types/pa_vcookie.C: fixed cookie delete when
16323: $cookie:name[$.value[]]
16324:
16325: * operators.txt, src/classes/string.C:
16326: ^string.split[delim[;options]]
16327:
16328: 2002-08-27 paf
16329:
1.116 moko 16330: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 16331:
16332: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
16333: delimiter
16334:
16335: * INSTALL: recommended latest gmime 1.0.5
16336:
16337: 2002-08-26 paf
16338:
16339: * configure, configure.in: apache13/hook added to make dist.
16340:
16341: 2002-08-23 paf
16342:
16343: * src/: include/pa_common.h, main/pa_common.C,
16344: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
16345: beside binary [cgi, isapi] not accessible [due to bad rights or
16346: whatever] it's error now
16347:
16348: 2002-08-21 paf
16349:
1.116 moko 16350: * Makefile.am: can use: make happy equals to make update install
1.95 moko 16351:
16352: * src/main/: compile.tab.C, compile.y, compile_tools.C,
16353: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
16354: class". compiled as if here they named base class
16355:
16356: * src/main/pa_string.C: fixed bad language bug, [were wrong string
16357: cloning constructor]
16358:
16359: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
16360:
16361: * bin/auto.p.dist.in, src/targets/cgi/parser3.C,
16362: src/types/pa_vfile.C, src/types/pa_vmail.C:
16363: $mail.received.file.value.content-type fixed
16364:
16365: 2002-08-20 paf
16366:
16367: * src/classes/file.C: fixed language of file:file result
16368:
16369: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
16370: from 3.0.0005
16371:
16372: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
16373:
16374: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
16375: 3.0.0005
16376:
16377: * src/classes/void.C, operators.txt: ^void.length[] = 0
16378:
16379: 2002-08-19 paf
16380:
16381: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
16382: work now
16383:
16384: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
16385: error in xnode, which were not catched in xdoc]
16386:
16387: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
16388: prepared: // validate each document after load/create (?)
16389: //xmlDoValidityCheckingDefaultValue = 1;
16390:
16391: 2002-08-15 paf
16392:
16393: * src/classes/classes.h: write to static var caused useless
16394: Exception, introduced Methoded::put_element wich consumes those
16395:
16396: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
16397: src/types/pa_vcookie.C, src/types/pa_vdate.h,
16398: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
16399: $response:field[date] $response:field[$.xxx[date]]
16400:
16401: * src/: classes/hash.C, classes/string.C, classes/table.C,
16402: classes/void.C, include/pa_sql_connection.h: fixed source of
16403: ^hash::sql{bad}
16404:
16405: * operators.txt: $request:body unprecessed POST request body
16406:
16407: * src/types/pa_vrequest.C: $request:body unprecessed POST request
16408:
16409: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
16410: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
16411:
16412: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
16413: src/include/pa_request.h, src/main/pa_pool.C,
16414: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
16415: $request:body r.post_data now const
16416:
16417: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
16418: classes/xnode.C, main/execute.C, types/pa_value.h,
16419: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
16420: types/pa_vtable.h: instead of type() checking everywhere used
16421: Value.as now user descendants can be used in params.
16422:
16423: VObject::as_*, is_defined now taken from bases. xtable(table)
16424: ^if($xtable) now OK
16425:
16426: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
16427: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
16428: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
16429:
16430: 2002-08-14 paf
16431:
16432: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
16433: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
16434: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16435: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16436: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16437: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
16438: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
16439: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16440: types/pa_vresponse.C, types/pa_vresponse.h,
16441: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16442: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16443: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16444: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16445: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
16446: & VClass
16447:
16448: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
16449:
16450: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
16451: removed fixopt stupidity. on stupid linux use cd /document/root
16452: ../cgi/parser3 script
16453:
16454: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
16455: params, splitting them by space, excluding argv[0], argv[argc-1]
16456:
16457: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
16458: fixopt.h: fixopt now preprocesses command line params, splitting
16459: them by space, excluding argv[0], argv[argc-1]
16460:
16461: * src/targets/cgi/parser3.C: -f config file
16462:
16463: * src/targets/cgi/parser3.C: fixed .log file dir
16464:
16465: 2002-08-13 paf
16466:
16467: * src/types/pa_vobject.C: allow override parent variables, useful
16468: for form descendants [in vobject too, were in vclass]
16469:
16470: * src/types/pa_vclass.C: allow override parent variables, useful
16471: for form descendants
16472:
16473: * src/types/pa_vclass.C: checked: form[vclass]fields can be
16474: overwritten in derived(table)
16475:
16476: * src/: classes/form.C, classes/mail.C, classes/op.C,
16477: classes/xnode.h, include/pa_request.h, main/execute.C,
16478: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
16479: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16480: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
16481: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16482: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
16483: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16484: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16485: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16486: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16487: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16488: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16489: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16490: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
16491: Value::get_element(..., bool looking_down) [needed to exclude
16492: endless recoursion]
16493:
16494: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
16495: fix bug with put endless recoursion todo: check 'as'
16496:
16497: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
16498: reorganized modules todo: fix bug with put endless recoursion
16499: todo: check 'as'
16500:
16501: * src/types/pa_vobject.h: checked: table fields can be overwritten
16502: in derived(table)
16503:
16504: * src/types/pa_vobject.h: derived classes can have fields of their
16505: own now
16506:
16507: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
16508: fixed error message on using non-created table
16509:
16510: * src/: classes/form.C, classes/hash.C, classes/mail.C,
16511: classes/op.C, classes/xnode.h, include/pa_request.h,
16512: main/compile.C, main/compile.tab.C, main/execute.C,
16513: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
16514: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16515: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16516: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16517: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
16518: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16519: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16520: types/pa_vresponse.C, types/pa_vresponse.h,
16521: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16522: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16523: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16524: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16525: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
16526: looking down/up tree todo: fix error message on non-constructed
16527: parents
16528:
16529: 2002-08-12 paf
16530:
16531: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
16532: derived OK
16533:
16534: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
16535: thorough testing
16536:
16537: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
16538: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
16539: types/pa_vobject.h, types/pa_vstateless_class.h,
16540: types/pa_vstateless_object.h, types/pa_wcontext.h,
16541: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
16542: ^base:create[] dynamic call rewritten todo: thorough testing
16543:
16544: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
16545: now instantates base class, remembers it and saves child in
16546: parent VObject.get_class now returns last child = downward
16547: virtual calls OK
16548:
16549: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
16550: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16551: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
16552: types/pa_vobject.h, types/pa_vresponse.h,
16553: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16554: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
16555: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
16556: VAliased [redundant], moved $CLASS to VObject only [parser class
16557: instance]
16558:
16559: * bin/auto.p.dist.in: more like in dist on parser.ru
16560:
16561: * bin/auto.p.dist.in: fixed sendmail default comment
16562:
16563: * src/main/pa_request.C: $response:body[file] content-type check
16564: fixed [were bad when content-type is hash]
16565:
16566: 2002-08-09 paf
16567:
16568: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
16569: types/pa_vobject.h, types/pa_vxdoc.h: started as()
16570:
16571: 2002-08-08 paf
16572:
16573: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
16574: src/main/pa_globals.C: year column in month calendar [week year]
16575:
16576: * src/main/execute.C: error reporting on object writes to MAIN
16577: improved [were ruind with fixing $obj[^if(1){$obj}] ]
16578:
16579: * operators.txt, src/types/pa_vdate.h: $date.yearday
16580: $date.daylightsaving
16581:
16582: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
16583: use tainted data now. only she must specify the language.
16584:
16585: ^mail:send[ $.from[paf@mail.design.ru]
16586: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
16587: $.text[^taint[uri][ìîñêâà]=] ]
16588:
16589: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
16590: now prints more precise origin
16591:
16592: * src/include/pa_string.h: String::first_char now not fails on
16593: empty strings ^if(-f '') now ok and in 3 other places.
16594:
16595: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
16596: String::first_char now not fails on empty strings ^if(-f '') now
16597: ok and in 3 other places.
16598:
16599: 2002-08-07 paf
16600:
16601: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
16602: fixed
16603:
16604: * src/main/pa_string.C: ^string.mid(0;bad) fixed
16605:
16606: * src/: main/execute.C, types/pa_vcode_frame.h,
16607: types/pa_vmethod_frame.h, types/pa_wcontext.C,
16608: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
16609: mistakenly not completely transparent to object writes.
16610: $hash[^if(1){$hash}] now works
16611:
16612: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
16613: now erasing cache file [there were bad check on that]
16614:
16615: * src/: classes/classes.dsp, classes/table.C,
16616: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
16617: all Debug dirs in .dsp now named 'Debug'
16618:
1.116 moko 16619: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 16620:
16621: * operators.txt, src/classes/mail.C: exception_type email.send
16622:
16623: * operators.txt, src/types/pa_vmail.C: exception_type email.format
16624:
16625: * src/types/pa_vmail.C: mail:send empty email checked
16626:
16627: 2002-08-06 paf
16628:
16629: * operators.txt, src/classes/table.C, src/include/pa_array.h,
16630: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
16631: ^table::create[$source;$.options] ^table::join[$source;$.options]
16632:
16633: * operators.txt, src/classes/hash.C, src/classes/string.C,
16634: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
16635: # $.default() }
16636:
16637: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
16638:
16639: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16640: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
16641: $file.content-type [instead of .mime-type] now works for
16642: file::stat also
16643:
16644: * src/main/pa_request.C: case insensitive mime_type_of
16645:
16646: * bin/auto.p.dist.in: jpeg
16647:
16648: 2002-08-05 paf
16649:
16650: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
16651:
16652: * src/types/pa_vmail.C: file buffer relocated to parser heap
16653:
16654: * operators.txt: comment on date:calendar week column
16655:
16656: * src/main/pa_common.C: write checked
16657:
16658: * src/main/: pa_common.C: write checked
16659:
16660: * src/classes/date.C: +1 buf size for stupid snprintfs
16661:
16662: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
16663: month calendar week column [ISO 8601 Week Numbers]
16664:
16665: 2002-08-02 paf
16666:
16667: * src/: include/pa_config_fixed.h, main/pa_string.C,
16668: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
16669: DEBUG*
16670:
16671: * configure, configure.in, src/include/pa_version.h: release
16672: 3_0_0005
16673:
16674: * bin/auto.p.dist.in: unhandled_exception comments
16675:
16676: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
16677: multipart post fixed
16678:
16679: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
16680: response transcoded source->client only when text/* or simple
16681: onoverridden $response:body
16682:
16683: 2002-08-01 paf
16684:
16685: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16686: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16687: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16688: classes/op.C, classes/response.C, classes/string.C,
16689: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16690: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16691: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16692: include/pa_config_fixed.h, include/pa_dictionary.h,
16693: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
16694: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
16695: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
16696: include/pa_socks.h, include/pa_sql_connection.h,
16697: include/pa_sql_driver_manager.h, include/pa_stack.h,
16698: include/pa_string.h, include/pa_stylesheet_connection.h,
16699: include/pa_stylesheet_manager.h, include/pa_table.h,
16700: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16701: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16702: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
16703: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16704: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16705: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16706: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16707: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16708: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16709: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16710: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16711: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16712: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16713: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16714: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16715: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
16716: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
16717: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16718: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
16719: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16720: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
16721: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
16722: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
16723: types/pa_vmethod_frame.h, types/pa_vobject.h,
16724: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16725: types/pa_vresponse.h, types/pa_vstateless_class.C,
16726: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16727: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16728: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16729: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16730: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 16731: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 16732:
16733: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
16734: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
16735: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16736: classes/math.C, classes/op.C, classes/response.C,
16737: classes/string.C, classes/table.C, classes/void.C,
16738: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16739: include/pa_array.h, include/pa_cache_managers.h,
16740: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16741: include/pa_config_fixed.h, include/pa_config_includes.h,
16742: include/pa_dictionary.h, include/pa_dir.h,
16743: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16744: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16745: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16746: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16747: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16748: include/pa_stack.h, include/pa_string.h,
16749: include/pa_stylesheet_connection.h,
16750: include/pa_stylesheet_manager.h, include/pa_table.h,
16751: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16752: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
16753: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16754: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
16755: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16756: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
16757: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
16758: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
16759: main/pa_sql_driver_manager.C, main/pa_string.C,
16760: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16761: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
16762: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16763: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
16764: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16765: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
16766: targets/isapi/pool_storage.h, types/pa_valiased.C,
16767: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
16768: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
16769: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16770: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16771: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16772: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16773: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16774: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16775: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16776: types/pa_vresponse.C, types/pa_vresponse.h,
16777: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16778: types/pa_vstateless_object.h, types/pa_vstatus.C,
16779: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16780: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16781: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16782: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16783: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
16784: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
16785: types/Makefile.am: ident.C* removed
16786:
16787: * operators.txt, src/classes/file.C, src/main/pa_request.C:
16788: file:find[/can/do/this/now.txt]
16789:
16790: * src/targets/cgi/parser3.C: usage to stdout now
16791:
16792: 2002-07-31 paf
16793:
16794: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
16795:
16796: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
16797: default "postmaster"
16798:
16799: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
16800: -f postmaster now default sendmail key word "postmaster"
16801: replaced to $.from
16802:
16803: 2002-07-30 paf
16804:
1.116 moko 16805: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
16806: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 16807:
16808: * src/main/pa_charset.C: comment
16809:
16810: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
16811: table, &#decimal;
16812:
16813: * src/main/pa_request.C: comment
16814:
16815: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
16816: paragraf]
16817:
16818: 2002-07-11 paf
16819:
16820: * src/main/pa_exec.C: build command line badly added params twice
16821: [and first time without ' ']. double wrong. fixed.
16822:
16823: * src/main/pa_exec.C: invalid .exe caused error message with params
16824: wich parser did not provide = reported badly. fixed that.
16825:
16826: * src/classes/mail.C: $MAIL[ # xxx ]
16827:
16828: now ok
16829:
16830: * operators.txt: plan: sql detailed exception
16831:
16832: 2002-07-01 paf
16833:
16834: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
16835: [MForm.configure_admin were called when request.main_class ==0
16836:
16837: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
16838:
16839: * src/classes/form.C: content_length type fix
16840:
16841: 2002-06-30 paf
16842:
16843: * src/classes/mail.C: merged from 4
16844:
16845: * src/classes/mail.C: restored $MAIL
16846:
16847: 2002-06-28 paf
16848:
16849: * configure, configure.in: removed paths.h
16850:
1.116 moko 16851: * configure, src/include/pa_version.h,
1.95 moko 16852: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
16853: merged, makes updated
16854:
16855: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
16856: src/include/pa_charset.h, src/include/pa_config_fixed.h,
16857: src/include/pa_pool.h, src/include/pa_version.h,
16858: src/main/pa_charset.C, src/main/pa_pool.C,
16859: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
16860: src/types/pa_vmail.C: merged latest updates to head
16861:
16862: 2002-06-27 paf
16863:
16864: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
16865: not error now
16866:
16867: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
16868: src/include/pa_config_fixed.h, src/include/pa_pool.h,
16869: src/main/pa_charset.C, src/main/pa_pool.C:
16870: ^xdoc::create[[uri]]... base uri for document being created,
16871: imports and other relative file names would be relative to this
16872: uri default uri=path_translated
16873:
16874: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
16875:
16876: 2002-06-26 paf
16877:
16878: * configure, configure.in, src/include/pa_version.h:
16879: release_3_0_0004
16880:
16881: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
16882: 0 now
16883:
16884: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
16885:
16886: 2002-06-25 paf
16887:
16888: * src/main/pa_string.C: emtpy string, or string of whitespaces
16889: considered bad number now
16890:
16891: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
16892: now
16893:
16894: * operators.txt, src/classes/string.C: ^string.normalize [old
16895: name: optimize
16896:
16897: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
16898: library configured
16899:
16900: * src/main/pa_request.C: configure_admin forced if no @conf
16901:
16902: * operators.txt, bin/auto.p.dist.in, src/classes/math.C,
16903: src/types/pa_vmail.C: ^math:crypt updated to generate random salt
16904: when needed and to call system crypt() if not $apr1$ prefix
16905:
16906: 2002-06-24 paf
16907:
16908: * INSTALL: --with-static/shared-mailreceive described
16909:
16910: * src/include/pa_config_fixed.h: ssize_t fixed
16911:
1.116 moko 16912: * configure, configure.in, src/include/pa_config_auto.h.in,
16913: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 16914: src/types/pa_vmail.C: $mail:received makes update
16915:
16916: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
16917: WITH_MAILRECEIVE
16918:
16919: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
16920:
16921: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
16922: option, for $mail:receive
16923:
16924: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
16925: introducting $message:received ^mail:send rewritten with backward
16926: comp
16927:
16928: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
16929: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
16930: types/types.dsp: win32xml win32mailreceive pseudomodules paths
16931: now
16932:
16933: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
16934: src/include/pa_charset.h, src/include/pa_config_fixed.h,
16935: src/include/pa_request.h, src/include/pa_string.h,
16936: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
16937: src/main/pa_globals.C, src/main/pa_request.C,
16938: src/main/pa_string.C, src/main/pa_uue.C,
16939: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
16940: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
16941: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
16942: uue to separate file introducting $message:received ^mail:send
16943: rewritten with backward comp
16944:
16945: 2002-06-21 paf
16946:
1.116 moko 16947: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
16948: co changes
1.95 moko 16949:
1.116 moko 16950: * configure, configure.in, src/lib/md5/Makefile.am,
16951: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
16952: restructure .in and .am files appropriate changes
1.95 moko 16953:
16954: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
16955: pcre to libs/ added libs/md5 which is linked to non-apache
16956: targets ^math:crypt[password;$apr1$salt]
16957:
16958: * INSTALL, configure.in, operators.txt, parser3.dsw,
16959: src/Makefile.am, src/classes/Makefile.am,
16960: src/classes/classes.dsp, src/classes/math.C,
16961: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 16962: src/lib/pcre/Makefile.am, src/lib/pcre/README,
16963: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
16964: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
16965: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
16966: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
16967: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
16968: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
16969: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 16970: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
16971: src/lib/pcre/pcre_parser_ctype.dsp,
16972: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
16973: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
16974: src/main/compile.tab.C, src/main/main.dsp,
16975: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
16976: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
16977: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
16978: to libs/ added libs/md5 which is linked to non-apache targets
16979: ^math:crypt[password;$apr1$salt]
16980:
16981: 2002-06-20 paf
16982:
16983: * INSTALL, configure, configure.in, operators.txt, bin/Makefile.am,
1.116 moko 16984: bin/auto.p.dist.in, src/classes/file.C, src/classes/op.C,
16985: src/doc/doxygen.cfg, src/include/pa_globals.h,
1.95 moko 16986: src/include/pa_request.h, src/main/execute.C,
16987: src/main/pa_request.C, src/targets/cgi/parser3.C,
16988: src/targets/isapi/parser3isapi.C, src/types/pa_vmethod_frame.h:
16989: marged latest HEAD updates, mainly file:justname&co &
16990: @auto/conf[filespec
16991:
16992: * operators.txt, src/classes/file.C:
16993: !^file:dirname[/a/some.tar.gz]=/a
16994: !^file:dirname[/a/b/]=/a
16995: !^file:basename[/a/some.tar.gz]=some.tar.gz
16996: !^file:justname[/a/some.tar.gz]=some.tar
16997: !^file:justext[/a/some.tar.gz]=gz
16998:
16999: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17000: main/pa_request.C, types/pa_vmethod_frame.h: introducing
17001: @conf/auto[filespec]
17002:
17003: * bin/auto.p.dist.in: <noindex>
17004:
1.116 moko 17005: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 17006:
17007: * INSTALL, configure.in, operators.txt, bin/Makefile.am,
17008: bin/auto.p.dist.in, src/doc/doxygen.cfg,
17009: src/include/pa_globals.h, src/targets/cgi/parser3.C,
17010: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
17011:
17012: 2002-06-18 paf
17013:
17014: * configure, configure.in, src/include/pa_version.h: version to
17015: configure.in
17016:
17017: * INSTALL: reflected .conf.dist dir change
17018:
1.116 moko 17019: * Makefile.am, configure, configure.in, bin/Makefile.am,
17020: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 17021: .in & *.am updated
17022:
17023: * src/classes/file.C: strncasecmp
17024:
17025: * src/classes/file.C: strcasecmp
17026:
1.116 moko 17027: * bin/Makefile.am, etc/Makefile.am: bin/parser3.conf.dist [moved
17028: from etc
1.95 moko 17029:
17030: * src/classes/file.C: ^file::exec[script;$.bad error case
17031: insensitive check now
17032:
17033: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
17034:
17035: * configure, configure.in, src/include/pa_pool.h,
17036: src/include/pa_types.h: pack configure.in detection simplified.
17037: figured out that gcc on sparc not that stupid as thought
17038: previously: on sparc: when it sees packed class it modifies it's
17039: field-access-code to byte operations [stb, ldub] instead of 4byte
17040: operations [st, lduh] so packed must be all parts of packed
17041: class, i.e. it's parents&fields(classes). for now it's only
17042: String that packed and what was wrong is that it's parent -
17043: Pooled, were not packed. fixed that.
17044:
17045: 2002-06-14 paf
17046:
17047: * operators.txt: more precise xml-to-text options
17048:
17049: * operators.txt, src/types/pa_vxnode.C: xnode
17050: attribute_node.name/value xnode pi.node.data
17051:
17052: 2002-06-12 paf
17053:
1.116 moko 17054: * configure, configure.in, src/targets/cgi/Makefile.am,
17055: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 17056:
17057: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
17058: src/include/pa_globals.h, src/include/pa_request.h,
17059: src/main/compile.tab.C, src/main/pa_globals.C,
17060: src/main/pa_request.C, src/targets/cgi/parser3.C,
17061: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
17062:
17063: * src/classes/mail.C: sendmail -ti [default now]
17064:
17065: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
17066: to be strings. for convinient #ing
17067:
17068: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
17069: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
17070:
17071: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
17072: main/pa_globals.C, main/pa_request.C: @conf
17073:
17074: 2002-06-11 paf
17075:
17076: * src/classes/file.C: check simplified
17077:
17078: * src/: classes/file.C, targets/cgi/parser3.dsp,
17079: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
17080: valid prefix
17081:
17082: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
17083: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
17084: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
17085:
17086: 2002-06-10 paf
17087:
17088: * operators.txt, src/classes/op.C, src/include/pa_common.h,
17089: src/main/pa_common.C: lock failures reported now
17090:
17091: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
17092: string->double @ compile time were not-enough-checking...
17093:
17094: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
17095: autoconvert now ignored
17096:
17097: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
17098: check
17099:
17100: * src/classes/mail.C: mail netscape attachment name fixed. todo:
17101: $response:body content-type:name
17102:
17103: * configure, configure.in: hpux check, nsl link, no socket
17104:
17105: * operators.txt: old merge conflict removed
17106:
17107: * configure, configure.in: pack even address access on sparc&co
17108: arch checked in configure
17109:
17110: * configure, src/include/pa_version.h: makes
17111:
17112: * configure, configure.in, src/include/pa_version.h: makes
17113:
17114: * src/main/untaint.C: (bug#2) mail subject got always prepended
17115: with charset even when all letters were 7bit one
17116:
17117: * src/main/pa_common.C: merged fixed -d (bug)
17118:
17119: * src/main/pa_common.C: fixed -d (bug)
17120:
17121: 2002-06-03 paf
17122:
17123: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
17124: src/classes/classes.dsp, src/main/compile.tab.C,
17125: src/main/main.dsp, src/main/pa_globals.C,
17126: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
17127: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
17128: .dsp-s along with reorganized cvs modules dirs structure
17129:
17130: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17131: main/pa_globals.C, targets/cgi/parser3.dsp,
17132: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
17133: modules
17134:
17135: 2002-05-28 paf
17136:
17137: * src/targets/cgi/parser3.C: info.uri now ""
17138:
17139: 2002-05-17 paf
17140:
17141: * src/classes/: table.C: ^table.save << checked empty
17142: pre/match/post columns
17143:
17144: 2002-05-16 paf
17145:
17146: * src/classes/image.C: image::measure can png now
17147:
17148: 2002-05-15 paf
17149:
17150: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
17151: added
17152:
17153: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
17154:
17155: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
17156: %H[:%M[:%S]]]]]] [-%m now
17157:
17158: 2002-05-14 paf
17159:
17160: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
17161:
17162: 2002-05-07 paf
17163:
17164: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
17165: src/include/pa_globals.h, src/include/pa_request.h,
17166: src/include/pa_table.h, src/main/compile.tab.C,
17167: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
17168: src/main/pa_request.C, src/main/pa_table.C,
17169: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
17170: src/targets/isapi/parser3isapi.dsp,
17171: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
17172: name2number field now &. main_method_name now on Request pool
17173: rather on global_pool [Junction+VJunction created on same pool as
17174: name = were created on global pool, causing mem leaks]
17175:
17176: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
17177: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
17178: main/compile.y, main/main.dsp, main/pa_globals.C,
17179: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
17180: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
17181: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
17182: field now &. main_method_name now on Request pool rather on
17183: global_pool [Junction+VJunction created on same pool as name =
17184: were created on global pool, causing mem leaks]
17185:
17186: 2002-05-06 paf
17187:
17188: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17189: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
17190: 100*40 bytes per request memory leak [nonpool malloc in globals]
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: 2002-04-30 paf
17197:
17198: * configure, src/include/pa_version.h: version now not b
17199:
17200: * src/targets/cgi/parser3.C: request.uri now never 0
17201:
17202: 2002-04-29 paf
17203:
17204: * configure.in: removed b
17205:
17206: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
17207: Exception::comment/type checked in (), no there's no empty
17208: type/comment by default
17209:
17210: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
17211: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
17212: src/doc/value.dox, src/include/pa_exception.h,
17213: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
17214: 0001
17215:
17216: 2002-04-26 paf
17217:
17218: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
17219: size reduced
17220:
17221: 2002-04-25 paf
17222:
17223: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
17224: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
17225: now that took into account
17226:
17227: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
17228: 01:03:04]
17229:
17230: * ChangeLog, operators.txt, src/classes/date.C:
17231: ^date::create[2002-12-33 01:03:04]
17232:
17233: * ChangeLog: updated changelog
17234:
17235: * src/classes/table.C: removed restriction on column count to
17236: ^table.hash to work, now must be >0 [were >1]
17237:
17238: 2002-04-24 paf
17239:
17240: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17241: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
17242: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
17243: targets
17244:
17245: 2002-04-23 paf
17246:
17247: * operators.txt, src/classes/string.C:
17248: int/double/string:sql{}[$.default{code}] fixed [were barking:
17249: "junction used outside of context"]
17250:
17251: 2002-04-22 paf
17252:
17253: * types.txt, src/classes/string.C, src/include/pa_string.h,
17254: src/main/pa_string.C, src/types/pa_vstring.C,
17255: src/types/pa_vstring.h: ^string.optimize[]
17256:
17257: * src/: include/pa_globals.h, include/pa_table.h,
17258: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
17259: table template
17260:
17261: * src/classes/: string.C: optimize removed from string
17262: .left/right/pos
17263:
17264: * src/main/execute.C: rolled back to
17265: before_killing_userjunction_contexts
17266:
17267: * src/main/execute.C: user junctions context killed
17268:
17269: * src/main/execute.C: junctions to local contexts got
17270: cleanized&checked later
17271:
17272: 2002-04-19 paf
17273:
17274: * src/: classes/string.C, include/pa_request.h,
17275: include/pa_string.h, main/pa_request.C, main/pa_string.C,
17276: types/pa_vstring.C, types/pa_vstring.h: string now optimized
17277: prior to .left .right .mid .pos .match when that is profitable,
17278: and always before .replace when $ORIGINS(1) optimization disabled
17279: economy from not wasting mem on lots of strings which occur by
17280: lots of String:mid calls to get parts of source string between
17281: found_occurances
17282:
17283: * src/classes/file.C: ovector now local economy: 16 bytes per
17284: ^file:list
17285:
17286: * src/: include/pa_globals.h, include/pa_table.h,
17287: main/pa_globals.C, main/pa_string.C: String::match table columns
17288: globalized, not created @ each ^match anymore economy:
17289: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
17290:
17291: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
17292: removed from each String::match replace iteration, and made
17293: stacked sizeof(VTable)=12bytes economy on each replace code
17294:
17295: * src/doc/footer.htm: 2001,
17296:
17297: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
17298: string.match[]['] option enables generation of $match.prematch
17299: .match .postmatch columns
17300:
17301: * src/main/pa_string.C: String::match options analized without
17302: cstr-ing them now
17303:
17304: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
17305: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
17306: config updated to doxygen 1.2.15, created helper which fixes
17307: minor bugs in chm project files & htm tree. changed extension to
17308: .htm
17309:
17310: 2002-04-18 paf
17311:
17312: * src/doc/doxygen.cfg: .chi generation disabled
17313:
17314: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
17315: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
17316: fields&methods
17317:
17318: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
17319: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
17320: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
17321: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
17322: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
17323: types/pa_vresponse.h, types/pa_vstateless_class.h,
17324: types/pa_vstateless_object.h, types/pa_vstatus.h,
17325: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
17326: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
17327: VStateless_class to VObject
17328:
17329: * src/: main/pa_request.C, types/pa_valiased.h,
17330: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17331: types/pa_vstring.h: VStateless_string_object speicalized light
17332: version of VStateless_object
17333:
17334: * src/classes/op.C: ^throw comment param made optional
17335:
17336: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
17337: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
17338: and implemented down in VClass, fclass_alias removed,
17339:
17340: * src/types/pa_value.C: forced to cut that from .h because of
17341: VStateless_class usage [undefined in .h]
17342:
17343: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17344: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17345: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
17346: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
17347: on each CALL]
17348:
17349: * src/: classes/classes.h, classes/date.C, classes/double.C,
17350: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
17351: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
17352: classes/response.C, classes/string.C, classes/table.C,
17353: classes/void.C, classes/xnode.C, include/pa_globals.h,
17354: include/pa_request.h, main/execute.C, main/pa_globals.C,
17355: main/pa_request.C, types/Makefile.am, types/pa_value.h,
17356: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
17357: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17358: types/pa_vstateless_class.h, types/pa_wcontext.C,
17359: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
17360: removed Value::fname
17361:
17362: 2002-04-17 paf
17363:
17364: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
17365: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
17366: doc/pooled.dox, doc/string.dox, doc/targets.dox,
17367: include/pa_pool.h, include/pa_types.h: dox updated to current
17368: state, PTHROW freshen to throw & co
17369:
17370: * src/types/pa_vhash.h: vstring wrong parent fixed
17371:
17372: * src/classes/op.C: taint local result var bug fixed
17373:
17374: 2002-04-16 paf
17375:
17376: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
17377: Attic asm.txt as most interesting
17378:
17379: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
17380: check, preventing content-length: 0 from appearing
17381:
17382: * src/main/execute.C: $result in @main now taken into account as in
17383: usual functions
17384:
17385: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
17386: & @unhandled_exception now taken into account as in usual
17387: functions
17388:
17389: * src/doc/postbuild.txt: instructions on post .html build
17390:
17391: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
17392:
17393: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
17394: tainted
17395:
17396: * src/main/pa_request.C: uri in error log
17397:
17398: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
17399: cheched date:create(days) param for validity [later were assumed
17400: valid and crashed on invalid onces]
17401:
17402: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17403: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
17404: and used that for removing VString wrapper
17405:
17406: * src/classes/op.C: exception2vhash file now tainted
17407:
17408: * src/classes/op.C: _process pseudo origin copied from local var to
17409: heap
17410:
17411: * src/classes/op.C: extra check on empty file in origin in _execute
17412:
17413: 2002-04-15 paf
17414:
17415: * src/: main/execute.C, types/pa_value.h: fixed name update
17416:
17417: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
17418: functions
17419:
17420: * src/: classes/file.C, classes/hash.C, classes/op.C,
17421: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
17422: started dual write_xxx_lang functions, if checked & works
17423:
17424: * src/: classes/date.C, classes/file.C, classes/mail.C,
17425: classes/string.C, classes/xnode.C, include/pa_request.h,
17426: types/pa_value.h, types/pa_wcontext.h: removed absolutely
17427: unnecessary VString shells
17428:
17429: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
17430: prev changes]
17431:
17432: * src/: classes/image.C, classes/op.C, classes/string.C,
17433: classes/table.C, include/pa_request.h, main/execute.C,
17434: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
17435: StringOrValue wcontext result, now ready for dual writes
17436:
17437: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
17438: checked that
17439:
17440: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17441: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
17442: changed to OP_WRITE_VALUE in var get cases
17443:
17444: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
17445: include/pa_request.h, main/compile.tab.C, main/compile.y,
17446: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17447: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
17448: switch in hash constructor fixed [were problems with using of
17449: stacked wwrapper after it's death]
17450:
17451: 2002-04-12 paf
17452:
17453: * operators.txt, src/classes/table.C: table.select(expression) 0
17454:
17455: 2002-04-11 paf
17456:
17457: * src/: classes/string.C, include/pa_request.h, main/execute.C:
17458: Request::process_internal codeFrame & wwrapper stacked [not
17459: wasting heap anymore]
17460:
17461: 2002-04-10 paf
17462:
17463: * src/: classes/double.C, classes/file.C, classes/hash.C,
17464: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
17465: classes/string.C, classes/table.C, classes/void.C,
17466: classes/xdoc.C, include/pa_request.h, main/execute.C,
17467: main/pa_string.C: killed Request::process() wrapping
17468: VString(String) in case we need only String
17469:
17470: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17471: killed 8 bytes from String.head
17472:
17473: 2002-04-09 paf
17474:
17475: * src/: main/compile.tab.C, targets/cgi/parser3.C,
17476: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
17477: local*/char b[...]; a=b; situations
17478:
17479: * operators.txt, src/classes/xdoc.C: xslt params made literal
17480:
17481: * src/classes/xdoc.C: xslt params fixed
17482:
17483: * src/: main/pa_common.C, targets/cgi/parser3.C,
17484: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
17485: not pool.malloc(MAX_NUMBER) but really neaded
17486:
17487: * operators.txt, src/classes/double.C, src/classes/int.C:
17488: int/double.int/double(default)
17489:
17490: 2002-04-04 paf
17491:
17492: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
17493: [when reconstructing pieces were split by
17494: max_integral(piece.size), thus some strings to replace happen to
17495: be split into two = not replaced)
17496:
17497: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
17498: standalone version = current dir
17499:
17500: * src/targets/cgi/parser3.C: document root in standalone version =
17501: current dir
17502:
17503: 2002-04-03 paf
17504:
17505: * configure, configure.in: more checks on nonexistent charset
17506:
1.116 moko 17507: * INSTALL, configure, configure.in: root config configure options
1.95 moko 17508:
17509: 2002-04-02 paf
17510:
17511: * src/main/compile.C: parser.compile [exception name more like in
17512: doc]
17513:
17514: 2002-04-01 paf
17515:
17516: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
17517: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
17518: .content-type.charset, not .charset
17519:
17520: 2002-03-29 paf
17521:
17522: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
17523:
17524: * operators.txt, src/classes/date.C: ^date::create now may not
17525: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
17526: days' year. | 31.05->31.04 roll
17527:
17528: 2002-03-28 paf
17529:
17530: * operators.txt, src/classes/date.C, src/classes/op.C,
17531: src/include/pa_globals.h, src/include/pa_hash.h,
17532: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
17533: ^cache(seconds) ^cache[date] }
17534:
17535: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
17536: param
17537:
17538: 2002-03-27 paf
17539:
17540: * operators.txt, src/classes/date.C, src/classes/double.C,
17541: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
17542: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
17543: src/classes/math.C, src/classes/op.C, src/classes/string.C,
17544: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
17545: src/classes/xnode.C, src/include/pa_exception.h,
17546: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
17547: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
17548: src/main/pa_array.C, src/main/pa_charset.C,
17549: src/main/pa_charsets.C, src/main/pa_common.C,
17550: src/main/pa_dictionary.C, src/main/pa_exception.C,
17551: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
17552: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
17553: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
17554: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
17555: src/types/pa_value.h, src/types/pa_vcookie.C,
17556: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
17557: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
17558: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
17559: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
17560: src/types/pa_wwrapper.h: assigned exception types
17561:
17562: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
17563: src/include/pa_request.h, src/main/execute.C,
17564: src/main/pa_request.C: decided agains resetting exception_trace,
17565: just changed name
17566:
17567: 2002-03-26 paf
17568:
17569: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
17570: fixed
17571:
17572: * src/classes/op.C: forced language of $source field of exception
17573: to 'tainted', so that sql-langed-frags could be outputed outside
17574: of connect
17575:
17576: * operators.txt: removed date.roll limit of +-1 offset
17577:
17578: * src/classes/date.C: removed date.roll limit of +-1 offset
17579:
17580: * operators.txt, src/classes/date.C: fixed date roll on
17581: daylightsaving days mktime took into account tm_isdst flag, which
17582: remained from BEFORE roll, but should have been reset
17583:
17584: 2002-03-25 paf
17585:
17586: * operators.txt, src/targets/cgi/parser3.C:
17587: http_site_config_filespec
17588:
17589: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
17590: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
17591: with any/both --disable-foreign-group-files --disable-execs
17592:
17593: * INSTALL: "--with=sendmail=COMMAND" comment
17594:
17595: * INSTALL, configure, configure.in, src/classes/mail.C,
17596: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 17597: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
17598: disables execs also. introducing --sendmail
1.95 moko 17599:
17600: * operators.txt: pgsql options comment
17601:
17602: * INSTALL: comment on --disable-link-stdcpp
17603:
1.116 moko 17604: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
17605: libstdc++ link skipping configure option
1.95 moko 17606:
17607: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
17608: with error were put to cache with 'marked_to_rollback' flag, all
17609: consequent even OK requests rolled back
17610:
17611: 2002-03-22 paf
17612:
17613: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
17614: false return
17615:
17616: * operators.txt: few comments on sets
17617:
17618: 2002-03-18 paf
17619:
17620: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
17621: src/include/pa_globals.h, src/include/pa_request.h,
17622: src/include/pa_stack.h, src/main/pa_globals.C,
17623: src/main/pa_request.C: introducing ^try
17624:
17625: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
17626: types/pa_vdouble.h: removed some tested @tests
17627:
17628: 2002-03-15 paf
17629:
17630: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
17631:
17632: 2002-03-13 paf
17633:
17634: * src/main/pa_exception.C: checked not-pooled malloc
17635:
17636: 2002-03-11 paf
17637:
17638: * INSTALL, configure, configure.in,
17639: src/include/pa_config_auto.h.in: --disable-foreign-group-files
17640:
17641: * src/main/pa_common.C: --disable-foreign-group-files
17642:
17643: * INSTALL: --disable-execs
17644:
17645: * src/main/pa_exec.C: --disable-execs
17646:
17647: * configure, configure.in, src/include/pa_config_auto.h.in:
17648: --disable-execs
17649:
17650: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
17651:
17652: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
17653: file::exec/cgi linebreaks "0D0A" changed to 0A onces
17654:
17655: 2002-03-05 paf
17656:
17657: * operators.txt, src/classes/date.C: date week calendar columns
17658: named
17659:
17660: * operators.txt, src/classes/date.C: date week calendar columns
17661: named
17662:
17663: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
17664: requires headers to be terminated with \r\n manually [refuses to
17665: separate header/body itself]
17666:
17667: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17668: targets/isapi/parser3isapi.C: isapi site config beside .dll
17669:
17670: 2002-03-04 paf
17671:
17672: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
17673: in PASS language
17674:
17675: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
17676: deserialize checks on broken file
17677:
17678: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
17679: parser3isapi.dsp: isapi updated
17680:
17681: 2002-03-01 paf
17682:
17683: * src/main/pa_exec.C: execle -> execve, now argc OK
17684:
17685: 2002-02-28 paf
17686:
17687: * src/main/untaint.C: removed some debug comments
17688:
17689: * src/main/pa_charsets.C: when placing charset to cache using
17690: global name now [were request]
17691:
17692: * configure, configure.in: apache module updated
17693:
17694: * src/main/pa_string.C: origin by first piece preferred before last
17695: piece
17696:
17697: 2002-02-27 paf
17698:
17699: * src/main/pa_charset.C: size_t
17700:
17701: * INSTALL: shared/static-xml with-pathlink
17702:
17703: * operators.txt: SMTP comment
17704:
17705: 2002-02-26 paf
17706:
17707: * src/main/pa_exec.C: more precise names for vars, cosmetic
17708:
17709: * src/classes/xnode.C: in some situation, xpath query returned
17710: result with type NODESET, but empty nodeset member field, checked
17711: that
17712:
17713: 2002-02-22 paf
17714:
17715: * INSTALL: without-zlib comment
17716:
17717: * etc/parser3.charsets/windows-1251.cfg: °
17718:
17719: * configure, configure.in: glib###.a detection fixed
17720:
17721: * INSTALL: hashfile removed from INSTALL
17722:
1.116 moko 17723: * Makefile.am: make update
1.95 moko 17724:
17725: * src/main/pa_string.C: string iterators fixed again, so were
17726: String::join_chain
17727:
17728: * src/main/pa_string.C: string iterators fixed again, so were
17729: String::join_chain
17730:
17731: * src/: include/pa_string.h, main/pa_string.C: string iterators
17732: fixed again, so were String::join_chain
17733:
17734: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
17735:
17736: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
17737: "session"
17738:
1.116 moko 17739: * configure, configure.in, src/include/pa_config_auto.h.in:
17740: --with-shared-xml --with-static-xml
1.95 moko 17741:
17742: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17743: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17744: types/types.dsp: *.dsp: removed refereces to win32db & ancient
17745: xalan&xml
17746:
17747: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
17748:
17749: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
17750: src/types/types.dsp: removed hashfile support from sources for
17751: now
17752:
1.116 moko 17753: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 17754: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 17755: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
17756: src/include/pa_db_manager.h, src/include/pa_db_table.h,
17757: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 17758: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 17759: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
17760: src/types/Makefile.am, src/types/pa_vhashfile.C,
17761: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 17762:
17763: 2002-02-21 paf
17764:
17765: * src/main/untaint.C: removed debug code, activated commented-for
17766: debug parts
17767:
1.116 moko 17768: * Makefile.am: make cvsupdate
1.95 moko 17769:
17770: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
17771: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
17772: append_row, not at link zero now string to string appending works
17773:
17774: 2002-02-20 paf
17775:
17776: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
17777: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
17778: DEBUG_STRING_APPENDS_VS_EXPANDS
17779:
17780: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17781: economy: 22%
17782:
17783: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17784: space uptimized: string::link_row removed
17785:
17786: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
17787: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
17788: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
17789: types/pa_vstring.h: speed uptimized: string::is_empty
17790:
17791: * operators.txt, src/include/pa_common.h,
17792: src/include/pa_config_fixed.h, src/include/pa_string.h,
17793: src/include/pa_types.h, src/main/compile.tab.C,
17794: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
17795: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
17796: string append optimiziation idea and estimates
17797:
17798: 2002-02-19 paf
17799:
17800: * src/classes/math.C: not used directly [but erroreously reported
17801: that 'is', thus registering twice&other probs]
17802:
17803: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
17804: to node [element]
17805:
17806: * src/main/compile.C: without string_origins parse error
17807: file+line+col possible
17808:
17809: * src/main/: compile.C: without string_origins not worked
17810:
17811: 2002-02-18 paf
17812:
17813: * src/types/pa_vdouble.h: since we have in_expression removed that
17814: trick i've installed into double::as_string
17815:
17816: * src/main/pa_globals.C: extern "C" was removed too fast
17817:
17818: * src/: include/pa_opcode.h, include/pa_request.h,
17819: main/compile.tab.C, main/compile.y, main/execute.C,
17820: types/pa_wcontext.h: in_expression aimed to solve old problem
17821: with string/nonstring values, now in expressions double/int
17822: values are passed as-is, without stupid tostring/fromstring
17823: conversions
17824:
17825: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
17826: __cplusplus } #endif
17827:
17828: * src/main/compile.tab.C: bison env set so one could compile
17829: without cygwin installed
17830:
17831: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
17832: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
17833: gnome xml libs parser .dsp-s changed accordingly
17834:
17835: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
17836:
17837: * operators.txt, src/classes/date.C: date::create [were date::set,
17838: with backward comp
17839:
17840: * src/classes/math.C: math:random range check fixed
17841:
17842: * src/main/: compile.tab.C, compile.y: integer division stops name
17843:
17844: * INSTALL: local install comment
17845:
1.116 moko 17846: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 17847:
1.116 moko 17848: * acinclude.m4, aclocal.m4, configure, configure.in,
17849: src/include/pa_config_auto.h.in,
17850: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
17851: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 17852:
17853: * operators.txt: \ comment
17854:
17855: 2002-02-13 paf
17856:
17857: * src/include/pa_config_includes.h: sys/time time both included
17858: now. vaguely remember confilicts on this on some system [not on
17859: six|ablv] so when would see them again would think up proper
17860: check
17861:
1.116 moko 17862: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
17863: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 17864:
17865: * src/main/pa_common.C: truncation never occured when writing files
17866: on unix [since i've changed cache mech] fix
17867:
17868: * src/main/pa_common.C: strnchr: sanity check added
17869:
17870: * etc/parser3.charsets/windows-1257.cfg: id added
17871:
17872: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
17873: baltic charset file generated, in generation script ispunct check
17874: added
17875:
17876: 2002-02-08 paf
17877:
1.116 moko 17878: * src/: include/Makefile.am, sql/Makefile.am,
17879: targets/isapi/Makefile.am: forgotten makes
1.95 moko 17880:
17881: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
17882: forgotten
17883:
17884: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
17885:
17886: * INSTALL, README: install&others updated
17887:
17888: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
17889:
1.116 moko 17890: * Makefile.am, configure, configure.in,
17891: etc/parser3.charsets/Makefile.am, src/Makefile.am,
17892: src/classes/Makefile.am, src/main/Makefile.am,
17893: src/main/pa_status_provider.C, src/targets/Makefile.am,
17894: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
17895: works
1.95 moko 17896:
17897: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17898: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17899: classes/hashfile.C, classes/int.C, classes/mail.C,
17900: classes/math.C, classes/op.C, classes/response.C,
17901: classes/string.C, classes/table.C, classes/void.C,
17902: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17903: include/pa_array.h, include/pa_cache_managers.h,
17904: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17905: include/pa_config_fixed.h, include/pa_config_includes.h,
17906: include/pa_db_connection.h, include/pa_db_manager.h,
17907: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
17908: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17909: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17910: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17911: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17912: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17913: include/pa_stack.h, include/pa_string.h,
17914: include/pa_stylesheet_connection.h,
17915: include/pa_stylesheet_manager.h, include/pa_table.h,
17916: include/pa_threads.h, include/pa_types.h, main/compile.C,
17917: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17918: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
17919: main/pa_db_connection.C, main/pa_db_manager.C,
17920: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
17921: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
17922: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
17923: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
17924: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17925: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17926: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
17927: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17928: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17929: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
17930: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
17931: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
17932: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
17933: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
17934: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
17935: types/pa_vmethod_frame.h, types/pa_vobject.h,
17936: types/pa_vrequest.h, types/pa_vresponse.h,
17937: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17938: types/pa_vstateless_object.h, types/pa_vstatus.C,
17939: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
17940: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
17941: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
17942: classes/image.C, main/pa_common.C, main/pa_exec.C,
17943: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
17944: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
17945: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
17946: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
17947: types/pa_vxnode.C, main/pa_charset.C: name spelling
17948:
17949: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17950: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17951: classes/hashfile.C, classes/image.C, classes/int.C,
17952: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
17953: classes/string.C, classes/table.C, classes/void.C,
17954: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17955: include/pa_array.h, include/pa_cache_managers.h,
17956: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17957: include/pa_config_fixed.h, include/pa_config_includes.h,
17958: include/pa_db_connection.h, include/pa_db_manager.h,
17959: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
17960: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17961: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17962: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17963: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17964: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17965: include/pa_stack.h, include/pa_string.h,
17966: include/pa_stylesheet_connection.h,
17967: include/pa_stylesheet_manager.h, include/pa_table.h,
17968: include/pa_threads.h, include/pa_types.h, main/compile.C,
17969: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
17970: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
17971: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
17972: main/pa_db_connection.C, main/pa_db_manager.C,
17973: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
17974: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
17975: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
17976: main/pa_socks.C, main/pa_sql_driver_manager.C,
17977: main/pa_status_provider.C, main/pa_string.C,
17978: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
17979: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17980: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17981: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
17982: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
17983: targets/isapi/pool_storage.h, types/pa_valiased.C,
17984: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
17985: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17986: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
17987: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
17988: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17989: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
17990: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
17991: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
17992: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
17993: types/pa_vresponse.h, types/pa_vstateless_class.C,
17994: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17995: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
17996: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
17997: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
17998: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
17999: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
18000:
18001: 2002-02-07 paf
18002:
18003: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
18004:
1.116 moko 18005: * configure, configure.in, src/include/pa_config_auto.h.in,
18006: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
18007: added yet another locking function: fcntl
1.95 moko 18008:
18009: * config.sub: on cygwin configure passes it with strange i1586
18010: const, hacked it to mean i586
18011:
18012: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
18013: disabled $if reference due to conflicts with local variables
18014:
18015: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
18016: xdoc::set obsolete now, now xdoc::create, with both sences
18017:
18018: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18019: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18020: table::create now // 'set' name obsolete now table clone.
18021:
18022: * operators.txt, src/classes/string.C,
18023: src/include/pa_config_fixed.h, src/main/compile.tab.C:
18024: ^int/double/string.format now can be called with normal []
18025: brackets, not stupid {} as it were implemented for some strange
18026: reason. retaining backward compatibility due to some
18027: already-implemented servers
18028:
18029: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
18030: main/compile.y, main/compile_tools.C, main/compile_tools.h:
18031: operators now detected by check at name_without_curly_rdive_read
18032: rule whether diving code constists only of
18033: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
18034: with OP_GET_ELEMENT_OR_OPERATOR to form
18035: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
18036:
18037: 2002-02-06 paf
18038:
18039: * configure, configure.in: prefix expanded, grr
18040:
18041: * operators.txt, src/classes/mail.C: mail:send config changed
18042:
18043: 2002-02-05 paf
18044:
18045: * operators.txt: regex options commented
18046:
18047: * src/main/: pa_exec.C: argv0 now correct
18048:
18049: * src/types/pa_vstatus.C: status:rusage 3
18050:
18051: * src/types/pa_vstatus.C: status:rusage 2
18052:
18053: * operators.txt: status:rusage described int operators
18054:
18055: * src/types/pa_vstatus.C: status:rusage 1
18056:
18057: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
18058: src/types/types.dsp: status:rusage
18059:
18060: * configure.in, operators.txt, src/classes/file.C,
18061: src/classes/op.C, src/include/pa_common.h,
18062: src/include/pa_config_includes.h, src/main/compile.tab.C,
18063: src/main/pa_common.C: rewritten ^cache to use
18064: non-blocking-exclusive-caches
18065:
18066: * src/main/pa_common.C: text file read mode on win32 adjusted
18067: [speed impact. was off for debugging purpose, but forgotten
18068: afterwards]
18069:
18070: 2002-02-01 paf
18071:
18072: * src/classes/op.C: file_write does EX lock after create, while
18073: file_read does SH after open, so there's a moment after create
18074: but before EX lock when read can sneak into, and read
18075: just-created-for-writing-and-not-yet-locked file, added a check
18076: for that in ^cache...read
18077:
18078: 2002-01-31 paf
18079:
18080: * src/main/: compile.y, compile.tab.C: disabled operator call after
18081: ^xxx:
18082:
18083: * src/main/: compile.tab.C, execute.C: made operators lookup first
18084: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
18085:
18086: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
18087: main/compile.tab.C, main/compile.y, main/compile_tools.C,
18088: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
18089: operators check 6.1 rewritten. now check is done at compile time
18090:
18091: * src/main/execute.C: operators check 5 floated up old error of
18092: staying in 'entered class/object' state after $a($a..) it
18093: prevented operators from being called thereafter
18094:
18095: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18096: main/execute.C: operators check 4 floated up old error of staying
18097: in 'entered object' state after ^a.a(a) it prevented operators
18098: from being called thereafter
18099:
18100: * src/main/execute.C: operators check 3 floated up old error of
18101: staying in 'entered class' state after $a:a(a) it prevented
18102: operators from being called thereafter
18103:
18104: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
18105: floated up old error of staying in 'entered class' state after
18106: $a:a[a] it prevented operators from being called thereafter
18107:
18108: * src/main/execute.C: operators check, thay mistakenly seen in
18109: $class:operator $object.operators contexts
18110:
18111: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
18112: win32
18113:
1.116 moko 18114: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
18115: src/classes/Makefile.am, src/main/Makefile.am,
18116: src/targets/cgi/Makefile.am,
1.95 moko 18117: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 18118: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 18119:
1.116 moko 18120: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
18121: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
18122: configure, configure.in, form.txt, ident.awk, install-sh,
18123: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
18124: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 18125: etc/parser3.charsets/Makefile.am,
18126: etc/parser3.charsets/koi8-r.cfg,
18127: etc/parser3.charsets/windows-1250.cfg,
18128: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 18129: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
18130: src/main/Makefile.am, src/targets/cgi/Makefile.am,
18131: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
18132: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 18133: straightened installation scripts procedure made
18134: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
18135: change
18136:
18137: 2002-01-30 paf
18138:
18139: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
18140: removed] those comments were a mistake, and prevented libltdl
18141: from function properly
18142:
18143: 2002-01-29 paf
18144:
1.116 moko 18145: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
18146: creation [modified acinclude.m4 which were creating int into just
18147: assignment LIBTOOL=../libtool] added default system
18148: config&charsetts prepared 'make install', now it installs
18149: targets/cgi/parser3 into bin directory etc/parser3.conf &
18150: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 18151: $sysconfdir/parser3.charsets respectively
18152:
18153: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
18154: main/pa_globals.C: few forgotten ifdef XML added
18155:
18156: 2002-01-28 paf
18157:
1.116 moko 18158: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 18159: removed
18160:
18161: * src/main/pa_exception.C: dom|generic error output fix
18162:
18163: * src/classes/xnode.C: xdoc.importNode 3 [check err]
18164:
18165: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
18166:
18167: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
18168: [fixed as_node helper func to accept docs]
18169:
18170: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
18171: xdoc.importNode 0
18172:
18173: * src/classes/xdoc.C: xdoc::set now untaints OK
18174:
18175: 2002-01-25 paf
18176:
18177: * src/main/: compile.tab.C, compile.y: #comment before @ after
18178: @SPECIAL now works OK
18179:
18180: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
18181:
18182: * src/main/pa_exec.C: max arg count now 10, and proper message on
18183: violation that added
18184:
18185: * src/classes/hash.C: unified hash::sql, now
18186: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
18187:
18188: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
18189: ^file:lock[filename]{code}
18190:
18191: * src/: classes/file.C, classes/op.C, classes/string.C,
18192: classes/table.C, classes/xdoc.C, include/pa_common.h,
18193: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
18194: to some pa_common funcs
18195:
18196: * src/: include/pa_charset.h, main/pa_globals.C:
18197: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
18198:
18199: * src/: include/pa_charset.h, main/pa_charset.C,
18200: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
18201: not stupid illegal define
18202:
18203: 2002-01-24 paf
18204:
18205: * src/include/pa_version.h: changed version number
18206:
18207: * src/: classes/hashfile.C, include/pa_db_table.h,
18208: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18209: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18210: main/pa_db_connection.C, main/pa_db_table.C,
18211: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
18212: hashfile without logfiles
18213:
18214: * src/: classes/hashfile.C, include/pa_db_table.h,
18215: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
18216: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
18217: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
18218: DB_INIT_TXN init bits, thus got rid of huge log files, which
18219: cluttered disk without huge need]
18220:
18221: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
18222: handy macro, which is strangly abscent in dome lib
18223:
18224: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
18225:
18226: * src/classes/xdoc.C: checked empty response
18227:
18228: * src/classes/xnode.C: xdoc.select fixed context node [were always
18229: /, not self node]
18230:
18231: * src/classes/xnode.C: xnode.select returns array always now, in
18232: case 'nothing found' returns empty array
18233:
18234: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
18235: be more tender with ctrl/c/v
18236:
18237: 2002-01-23 paf
18238:
18239: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
18240: substituted. // 2. when dom tree with entites goes under
18241: transform text nodes // got [erroreosly] cut on first
18242: entity occurance
18243:
18244: * src/types/pa_vdouble.h: double prec. todo: get rid of
18245: twice-converting
18246:
18247: * src/types/pa_vdouble.h: %.20E now float format when %g produced
18248: 'e' in output this is for regretful twice-converting here:
18249: $a(double value) when they write double falue they convert it to
18250: string first, thus %g were losing precesion.
18251:
18252: todo: think up some way to remove double->string string->double
18253: twice-converting
18254:
18255: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
18256: %.20E now default float format this is for regretful
18257: twice-converting here: $a(double value) when they write double
18258: falue they convert it to string first, thus %g were losing
18259: precesion.
18260:
18261: todo: think up some way to remove double->string string->double
18262: twice-converting
18263:
18264: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
18265: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
18266: reasons in comment inside
18267:
18268: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
18269: statically linked]
18270:
18271: * src/: include/pa_exception.h, main/compile.tab.C,
18272: main/pa_exception.C: removed exception va_list constructor. 1.
18273: not needed anymore 2. there were a conflict[causing errors]
18274: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
18275: never detected an ambiguilty here, compiling ctor(, "hello") into
18276: ctor(, va_list) which, of course, caused gpf
18277:
18278: * src/main/pa_globals.C: removed debug xslt messages
18279:
18280: 2002-01-22 paf
18281:
18282: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
18283: main/pa_globals.C: xsl stylesheet load: parsed entities, this
18284: helps compiling stylesheet properly. example: this refused to
18285: work, <b>«<xsl:value-of select="@title"
18286: />»</b> stranly worked only this way:
18287: <b>«<xsl:value-of select="@title" />»</b>
18288:
18289: docs says "set it to 1", never going into details, so I decided
18290: to try NOT to do that
18291:
18292: * src/classes/table.C: join behaived badly in case named tables
18293: structure mismatched: 0 strings sneaked into dest failing
18294: afterwards. replaced them with empty strings
18295:
18296: 2002-01-21 paf
18297:
18298: * src/main/pa_charset.C: checked empty transcoders in
18299: transcode_cstr|buf
18300:
18301: * src/classes/xdoc.C: xdoc::load error source = filespec
18302:
18303: * src/classes/xdoc.C: transform error source now
18304: stylesheet_filespec
18305:
1.116 moko 18306: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 18307: include/pa_stylesheet_connection.h, main/pa_charset.C,
18308: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 18309: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
18310: gnome
1.95 moko 18311:
18312: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
18313: include/pa_globals.h, include/pa_stylesheet_connection.h,
18314: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
18315: xslt generic error 1
18316:
18317: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
18318: xml generic message 1
18319:
18320: * src/classes/table.C: ^table::load empty lines or #comments before
18321: headline
18322:
18323: * src/: include/pa_array.h, include/pa_globals.h,
18324: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
18325: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
18326: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
18327: errors 0
18328:
18329: 2002-01-16 paf
18330:
18331: * src/: classes/hash.C, classes/op.C, classes/string.C,
18332: classes/table.C, classes/void.C, classes/xdoc.C,
18333: include/pa_db_connection.h, include/pa_request.h,
18334: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18335: include/pa_stylesheet_connection.h,
18336: include/pa_stylesheet_manager.h, main/pa_request.C,
18337: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18338: targets/cgi/pool_storage.h: auto closers to sql_connection,
18339: stylesheet_connection auto destroyers to remaining gnome objects
18340:
18341: * src/classes/xdoc.C: few comments
18342:
18343: 2002-01-15 paf
18344:
18345: * src/classes/xdoc.C: xdoc file save string
18346:
18347: ready. todo: error handling
18348:
18349: * src/classes/xdoc.C: xdoc save rewritten using
18350: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
18351: result
18352:
18353: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
18354: started output options parsing
18355:
18356: 2002-01-14 paf
18357:
18358: * src/classes/xdoc.C: method
18359:
18360: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18361: include/pa_pool.h, include/pa_stylesheet_connection.h,
18362: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
18363: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
18364: xslt transform0. TODO: use output options handle errors
18365:
18366: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
18367:
18368: 2002-01-11 paf
18369:
18370: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18371: main/compile_tools.C, main/compile_tools.h, main/execute.C:
18372: partial logical && || evaluation
18373:
18374: * src/classes/xnode.C: xpath selectNodes
18375:
18376: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
18377: string/number/bool
18378:
18379: * src/classes/xnode.C: xpath selectNode 2
18380:
18381: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
18382: xpath selectNode 1
18383:
18384: 2002-01-10 paf
18385:
18386: * src/classes/xnode.C: xpath selectNode -100 [just written]
18387:
18388: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18389: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
18390: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
18391: refcounter]
18392:
18393: 2001-12-29 paf
18394:
18395: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
18396: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
18397: glib works 0
18398:
18399: 2001-12-28 paf
18400:
18401: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
18402: main/pa_exception.C: started glib transcoders
18403:
18404: * src/main/pa_globals.C: renamed gdome to libgdome.dll
18405:
18406: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
18407: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
18408: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
18409: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
18410: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
18411: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
18412: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
18413: libs just compiled in. no refcounting no xpath no xslt yet
18414:
18415: 2001-12-27 paf
18416:
18417: * src/: include/pa_charset.h, include/pa_common.h,
18418: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
18419: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
18420: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
18421: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
18422: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
18423: from xalan&xerces, started the process. globals [initialization
18424: pool [charset update charset [transcodings vxnode vxdoc [DOM
18425: calls
18426:
18427: * src/classes/Makefile.am: going away from xalan&xerces, not needed
18428: anymore
18429:
18430: 2001-12-26 paf
18431:
18432: * src/: include/pa_charset.h, include/pa_charsets.h,
18433: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
18434: key globalized [bug]
18435:
18436: 2001-12-25 paf
18437:
18438: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
18439: main/pa_string.C: table set & append changed splitting languages,
18440: separators now can be clean AND as-is same to mail command line
18441: $MAIN:MAIL.progX arguments
18442:
18443: 2001-12-24 paf
18444:
18445: * src/classes/mail.C: one parted text messages - no multipart
18446: mime-type anymore. for convinient if $.attach-ments
18447:
18448: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
18449: main/pa_string.C: read from cache size check updated
18450:
18451: * src/main/: pa_string.C: String::join_chain another ugly bug :(
18452:
18453: 2001-12-21 paf
18454:
18455: * src/classes/date.C: date:sql-string now returns localtime
18456:
18457: * src/main/pa_request.C: $result in @main actually not working, to
18458: hell with it for now
18459:
18460: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
18461: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
18462: @postprocess @exception
18463:
18464: * src/main/execute.C: junction evaluation canceled - endless
18465: recursion detected
18466:
18467: 2001-12-19 paf
18468:
18469: * src/main/pa_charset.C: charset->charset transcoding via unicode
18470: intermediate
18471:
18472: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
18473:
18474: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
18475:
18476: * src/classes/op.C: ^cache keypath now relative
18477:
18478: * src/classes/mail.C: changed weighting prior to sort
18479:
18480: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
18481: were missing
18482:
18483: 2001-12-17 paf
18484:
18485: * src/main/pa_charset.C: ifndef XML were bad type
18486:
18487: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
18488: outdated unset services_pool
18489:
18490: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
18491: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
18492: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
18493:
18494: * src/main/untaint.C: allowed space in filespec
18495:
18496: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
18497:
18498: * src/classes/image.C: no govno
18499:
18500: * src/classes/image.C: govno
18501:
18502: 2001-12-16 paf
18503:
18504: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
18505:
18506: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
18507: charset_connection&manager replaced by charset&charsets
18508:
18509: * src/main/pa_charset.C: name_cstr 0
18510:
18511: * src/main/untaint.C: uri lang now knows about client/source
18512: charsets
18513:
18514: * src/: classes/file.C, classes/math.C, classes/op.C,
18515: classes/string.C, classes/table.C, classes/xdoc.C,
18516: include/pa_array.h, include/pa_cache_managers.h,
18517: include/pa_charset_connection.h, include/pa_charset_manager.h,
18518: include/pa_common.h, include/pa_db_connection.h,
18519: include/pa_db_manager.h, include/pa_db_table.h,
18520: include/pa_dictionary.h, include/pa_exception.h,
18521: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
18522: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
18523: include/pa_sapi.h, include/pa_socks.h,
18524: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18525: include/pa_string.h, include/pa_stylesheet_connection.h,
18526: include/pa_stylesheet_manager.h, include/pa_table.h,
18527: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
18528: main/pa_charset.C, main/pa_charset_connection.C,
18529: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
18530: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
18531: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
18532: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
18533: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18534: types/types.dsp: introducing Charset
18535:
18536: 2001-12-14 paf
18537:
18538: * src/: include/pa_request.h, include/pa_transcoder.h,
18539: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
18540: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
18541: uri lang
18542:
18543: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
18544:
18545: * src/targets/cgi/Makefile.am: -I../../pcre to .am
18546:
18547: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
18548: defalts_name global
18549:
18550: * src/: include/pa_charset_connection.h, include/pa_pool.h,
18551: include/pa_request.h, main/main.dsp,
18552: main/pa_charset_connection.C, main/pa_charset_manager.C,
18553: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
18554: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
18555: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
18556: changed charset model. now important: $request:charset
18557: $response:charset while $response:content-type.charset become
18558: unimportant [informational]
18559:
18560: 2001-12-13 paf
18561:
18562: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
18563:
18564: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
18565: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
18566: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
18567: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
18568: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
18569: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
18570:
18571: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
18572: auto_ptr part other way, because of stupid gcc 2.96
18573: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
18574: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
18575: FormatterListener] /usr/include/g++-3/memory:48:
18576: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
18577: _Tp1 = FormatterListener, _Tp = FormatterListener]
18578:
18579: * src/classes/xdoc.C: removed extra inc
18580:
18581: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
18582:
18583: * src/include/pa_types.h: msvc head debugging flag
18584:
18585: * src/classes/xdoc.C: freed up listener
18586:
18587: * src/classes/string.C: change msg '... code is not code'
18588:
18589: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
18590: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18591: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
18592: [past/future prob]
18593:
18594: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18595: include/pa_config_fixed.h, include/pa_db_manager.h,
18596: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
18597: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
18598:
18599: * src/: include/pa_config_fixed.h, main/pa_common.C,
18600: main/pa_string.C: removed signed mismatch warnings
18601:
18602: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
18603: 'expires' from header outputs
18604:
18605: * src/main/pa_string.C: string::recustruct erroreusly used outdated
18606: row ptr
18607:
18608: * src/classes/file.C: file::cgi bug, request_method were passed to
18609: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
18610:
18611: * src/classes/xdoc.C: lang list updated
18612:
18613: 2001-12-10 paf
18614:
18615: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
18616:
18617: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
18618: erase files like that, knowing their full name introducing //
18619: theoretical problem with, for instance, "_2B" and "." fragments,
18620: // they would yield the same // because
18621: need_file_encode('_')=false // but we need to delete such files
18622: somehow, getting names from ^index
18623:
18624: * src/main/pa_string.C: ^string.replace bug fixed [bad
18625: string::join_chank break]
18626:
18627: 2001-12-07 paf
18628:
18629: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
18630: include/pa_common.h, include/pa_config_auto.h.in,
18631: include/pa_config_fixed.h, include/pa_config_includes.h,
18632: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
18633: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
18634: types/pa_vhashfile.C: merged from r14_simple_cache
18635:
18636: * src/main/pa_string.C: stupid sparc architecture failed to access
18637: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
18638: lduh [ %i2 + 1 ], %l0
18639:
18640: bus error, fixed that
18641:
18642: * src/main/pa_string.C: strange string deserialize bug on
18643: client[pmts], a bit shortened,
18644:
18645: * src/include/pa_config_auto.h.in: makes
18646:
18647: * src/: include/pa_common.h, include/pa_config_fixed.h,
18648: include/pa_config_includes.h, main/pa_common.C: exclusive lock
18649: file write shared lock file read
18650:
18651: * src/: classes/op.C, include/pa_common.h,
18652: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
18653:
18654: 2001-12-06 paf
18655:
18656: * src/: classes/op.C, classes/table.C, include/pa_request.h,
18657: main/pa_request.C: #ifdef RESOURCES_DEBUG
18658:
18659: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
18660: info
18661:
18662: * src/classes/hashfile.C: removed transaction from ^cache
18663:
18664: 2001-12-05 paf
18665:
18666: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
18667: IIS5 there were a prob with illegal call check
18668:
18669: 2001-12-04 paf
18670:
18671: * src/: classes/op.C, classes/table.C, include/pa_request.h,
18672: main/pa_request.C: measures to log
18673:
18674: 2001-11-23 paf
18675:
18676: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
18677: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
18678: types/pa_vhashfile.C: merged from _0014, 1
18679:
18680: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
18681: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
18682: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
18683: ^cache(33) would change
18684:
18685: 0660 bits in file_write & hashfile create
18686:
18687: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
18688: after pa_string optimization]
18689:
18690: 2001-11-22 paf
18691:
18692: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
18693: table.offset[whence]
18694:
18695: * src/classes/op.C: process cstr(,connection)
18696:
18697: * src/classes/op.C: process now gets its body on current language,
18698: not as-is
18699:
18700: * src/main/untaint.C: ORIGINS mode removed UHTML
18701:
18702: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
18703: bit
18704:
1.116 moko 18705: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 18706:
18707: 2001-11-21 paf
18708:
18709: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
18710: <xsl:output output options made identical to xsl:output
18711: attributes exclusion: cdata-section-elements what xalan can do
18712: but that not used now: it can escape and remove CDATA sections
18713:
18714: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
18715: produced by xslt
18716:
18717: * src/targets/cgi/parser3.C: removed debug cgi||1
18718:
18719: * src/main/: pa_string.C, untaint.C: cached some string::size() es
18720:
18721: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
18722: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
18723: default language for {code}, it happen to change it's language
18724: from CLEAN, so later refused to split by CLEAN \t
18725:
18726: 2001-11-20 paf
18727:
1.116 moko 18728: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
18729: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 18730: bottom of dependeces, so that errors would popup quicklier, fixed
18731: line numbering in table::sql
18732:
18733: 2001-11-19 paf
18734:
18735: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
18736: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
18737: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
18738: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
18739: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
18740: at wcontext.write
18741:
1.116 moko 18742: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 18743: _set_new_handler
18744:
1.116 moko 18745: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
18746: set_new_handler in apache&isapi
1.95 moko 18747:
18748: 2001-11-16 paf
18749:
18750: * src/targets/cgi/parser3.C: pool debug @ die
18751:
18752: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
18753: removed 8 bytes from String, 2 bytes from
18754: string::chunk::row::item
18755:
18756: * src/main/pa_string.C: removed 1+4 bytes from String
18757:
18758: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
18759: types/pa_vstring.C: removed 1+4 bytes from String
18760:
18761: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
18762: 0
18763:
18764: * src/: include/pa_globals.h, include/pa_string.h,
18765: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
18766: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
18767: targets/cgi/parser3.C: introducing estimating
18768: String::cstr_bufsize, 0
18769:
18770: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
18771:
18772: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
18773:
18774: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
18775: include/pa_pool.h: die in pool::fail
18776:
18777: 2001-11-15 paf
18778:
18779: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
18780: main/pa_exception.C, targets/cgi/parser3.C: exception with
18781: dynamic buffer re-back now with counter
18782:
18783: * src/: include/pa_exception.h, main/pa_exception.C: exception with
18784: static buffer back
18785:
18786: * src/targets/cgi/parser3.C: std::
18787:
18788: * src/: classes/classes.awk, include/pa_config_auto.h.in,
18789: include/pa_config_includes.h: setnewhandler check
18790:
1.116 moko 18791: * src/include/pa_config_auto.h.in: makes
1.95 moko 18792:
18793: * src/targets/cgi/parser3.C: set_new_handler started
18794:
18795: 2001-11-14 paf
18796:
18797: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
18798: was wrong
18799:
18800: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
18801: was wrong
18802:
18803: * src/main/pa_request.C: z
18804:
18805: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
18806: full returns win32 -1 solaris >buffer_size
18807:
18808: checked all that
18809:
18810: * src/classes/op.C: ^untaint{body} as-is default now
18811:
18812: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
18813: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
18814: with no_bad_constructors_try
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: fixed
18818: this: $bred[^string::length[]] $bred[^response::clear[]]
18819: $bred[^int::int[]]
18820:
18821: now VObject creation moved into overriden
18822: VClass::create_new_value, thus 0 from create_new_value means that
18823: class has no ctors
18824:
18825: 2001-11-13 paf
18826:
18827: * src/classes/classes.C: returned accedently removed if in foreach
18828: callbacks [when hash no-0-restructure]
18829:
18830: 2001-11-12 paf
18831:
18832: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
18833: passed as-is to method, xalan makes & into & itself
18834:
18835: * src/classes/date.C: date.roll parser2 alg used
18836:
18837: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
18838: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
18839: main/pa_dictionary.C, main/pa_hash.C,
18840: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
18841: now does not containt 0 values. put 0 actullay removes. no check
18842: on 0 value in foreach now required
18843:
18844: 2001-11-11 paf
18845:
18846: * src/sql/pa_sql_driver.h: removed extra constructor, doc
18847:
18848: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
18849:
18850: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
18851: driver initialize not const
18852:
18853: 2001-11-10 paf
18854:
18855: * src/main/pa_exec.C: doc
18856:
18857: 2001-11-09 paf
18858:
18859: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
18860: param properly
18861:
18862: * src/classes/string.C: string.save now does untainting before
18863: saving
18864:
18865: * src/main/pa_common.C: line endings fixing fixed last piece[was
18866: still cstr oriented]
18867:
18868: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
18869: line endings fixing got rid of cstr, now must work ok with post
18870: multipart
18871:
18872: * src/types/pa_vform.C: line endings fixed at post / multipart /
18873: not file also now
18874:
18875: 2001-11-08 paf
18876:
18877: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18878: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
18879: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
18880: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
18881: main/pa_stylesheet_manager.C: restructured Cache manager to be
18882: simple parent, not second parent [gcc 2.96 strangly refused to
18883: call virtual from second parent]
18884:
1.116 moko 18885: * src/: include/pa_common.h, main/Makefile.am,
18886: targets/cgi/pa_pool.C: makes
1.95 moko 18887:
18888: * src/: include/pa_request.h, main/pa_request.C,
18889: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
18890: 'status' class enabler
18891:
18892: <Location /parser-status.html> ParserStatusAllowed </Location>
18893:
18894: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18895: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
18896: include/pa_stylesheet_manager.h, main/main.dsp,
18897: main/pa_cache_managers.C, main/pa_charset_manager.C,
18898: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
18899: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18900: types/pa_vstatus.h: cache_managers, maybe-expiring every request
18901: todo: apache 'status' class enabler
18902:
18903: 2001-11-05 paf
18904:
18905: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
18906: debug to normal
18907:
18908: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
18909: hence i removed skipping 0 values in hash::for_each-es we need to
18910: check cleaned cache items manually. few more checks.
18911:
18912: expiring to 0 time was wrong, changed to 'now' time
18913:
18914: * src/targets/cgi/parser3.C: read can return 0, that means sort of
18915: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
18916: on apache already done :)
18917:
18918: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
18919: skipping 0 values in hash::for_each-es we need to check cleaned
18920: cache items manually
18921:
18922: * src/main/: pa_db_connection.C, pa_db_table.C:
18923: parser_multithreaded check was wrong
18924:
18925: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18926: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18927: classes/hashfile.C, classes/image.C, classes/int.C,
18928: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
18929: classes/string.C, classes/table.C, classes/void.C,
18930: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18931: include/pa_array.h, include/pa_charset_connection.h,
18932: include/pa_charset_manager.h, include/pa_common.h,
18933: include/pa_config_fixed.h, include/pa_config_includes.h,
18934: include/pa_db_connection.h, include/pa_db_manager.h,
18935: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
18936: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18937: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18938: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18939: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18940: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18941: include/pa_stack.h, include/pa_string.h,
18942: include/pa_stylesheet_connection.h,
18943: include/pa_stylesheet_manager.h, include/pa_table.h,
18944: include/pa_threads.h, include/pa_types.h, main/compile.C,
18945: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
18946: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
18947: main/pa_charset_manager.C, main/pa_common.C,
18948: main/pa_db_connection.C, main/pa_db_manager.C,
18949: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
18950: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
18951: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
18952: main/pa_socks.C, main/pa_sql_driver_manager.C,
18953: main/pa_status_provider.C, main/pa_string.C,
18954: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
18955: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18956: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18957: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
18958: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
18959: targets/isapi/pool_storage.h, types/pa_valiased.C,
18960: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
18961: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18962: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
18963: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
18964: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18965: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
18966: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18967: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
18968: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
18969: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18970: types/pa_vstateless_object.h, types/pa_vstatus.h,
18971: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
18972: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
18973: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
18974: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
18975: $status:db fixed used not initialized in db_connection & db_table
18976:
18977: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
18978: $status:charset
18979:
18980: * src/: classes/xdoc.C, include/pa_db_connection.h,
18981: include/pa_stylesheet_connection.h,
18982: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
18983: types/pa_vstatus.h: $status:stylesheet
18984:
18985: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
18986: include/pa_request.h, include/pa_sql_connection.h,
18987: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
18988: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
18989: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
18990: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
18991: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
18992: types/pa_vxnode.C, types/types.dsp: started status parser class
18993:
18994: 2001-11-01 paf
18995:
18996: * src/include/pa_config_auto.h.in: makes
18997:
18998: * src/main/pa_hash.C: removed old extra include
18999:
19000: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
19001: checks [for hp, there are such in math.h]
19002:
19003: * src/classes/op.C: ^for endless loop check strightened
19004:
19005: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
19006: behavior in native calls. it left unchanged, so ^for ^foreach &
19007: co can use r.root to write their i & key,value there
19008:
19009: * src/classes/op.C: detected for var storage bug, fixed.
19010: todo:foreach
19011:
19012: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
19013: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
19014: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
19015: changing of hash inside of foreach
19016:
19017: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
19018: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
19019: were hash.foreach
19020:
19021: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
19022: types/pa_vstring.C, types/pa_vstring.h:
19023: ^foreach[key|value]{body}[[separator]|{separator}]
19024:
19025: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
19026: types/pa_vcookie.C: ^hash.delete[key]
19027:
19028: 2001-10-31 paf
19029:
19030: * src/main/: compile.C, pa_common.C: completely empty file now
19031: considered "read", not ignored [not perfect trick used]
19032:
19033: * src/main/pa_common.C: simplier common ifdefs
19034:
19035: * src/main/pa_common.C: typing bug in common - bad ifdeff
19036:
19037: * src/main/pa_db_connection.C: z
19038:
19039: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
19040: lockdetector flags
19041: dbenv.lk_detect=DB_LOCK_RANDOM;
19042:
19043: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
19044: from accidental show [imagine user forgot @exception]
19045:
19046: * src/classes/table.C: ^table.save[[nameless|+append;]path]
19047:
19048: * src/: classes/file.C, classes/image.C, classes/mail.C,
19049: classes/string.C, classes/xnode.C, include/pa_common.h,
19050: main/pa_common.C: ^string.save[[append;]path]
19051:
19052: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19053: main/execute.C: \ in expression: int divide 10/3=3
19054:
19055: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
19056: inside of ^cache
19057:
19058: * src/: include/pa_threads.h, main/pa_db_connection.C,
19059: main/pa_db_table.C, targets/cgi/pa_threads.C,
19060: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
19061: needed
19062:
19063: 2001-10-30 paf
19064:
19065: * src/: classes/classes.dsp, main/main.dsp,
19066: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19067: types/types.dsp: enabled debug incremental compile
19068:
19069: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
19070: form post data line endings not reformatted now.
19071:
19072: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
19073: now required [had bug when file= has no value]
19074:
19075: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
19076: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
19077: cstr(asis) default param removed
19078:
19079: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
19080:
19081: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
19082:
19083: * src/include/pa_dir.h: LOAD_DIR fixed
19084:
19085: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
19086: was broken} fix_line_breaks
19087:
19088: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
19089: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
19090: packed with #pragma pack
19091:
1.116 moko 19092: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 19093:
19094: 2001-10-29 paf
19095:
19096: * src/types/pa_wcontext.h: bitfield syntax stricter
19097:
19098: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
19099: string hash.puts
19100:
19101: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
19102:
19103: * src/include/pa_sql_connection.h: there were one wrong
19104: SQL_CONNECTION_FUNC_GUARDED [failed]
19105:
19106: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
19107: param.someday either ifdef or remove it
19108:
19109: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
19110:
19111: * src/main/untaint.C: optimizing returned after debugging
19112:
19113: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19114: main/untaint.C: memory hunging #pragma pack(1)
19115:
19116: 16 419 844 13 169 394
19117:
19118: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
19119: targets/cgi/pa_pool.C: String size_t replace to uint in proper
19120: places [todo:Array]
19121:
19122: * src/: main/execute.C, targets/cgi/pa_pool.C,
19123: targets/cgi/parser3.dsp, types/pa_wcontext.h,
19124: types/pa_wwrapper.h: debugging memory WContext flags to bits
19125:
19126: total 5 652 652/158731 total 5 469 332/158731
19127:
19128: * src/: include/pa_array.h, main/pa_array.C: debugging memory
19129: Array:: without cache in get/put now
19130:
19131: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
19132: 18:25:27 2001] total 5 652 652/158731
19133:
19134: * src/: include/pa_string.h, main/pa_string.C,
19135: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
19136: now
19137:
19138: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
19139: 18:11:53 2001] total 5796092/158731
19140:
19141: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
19142: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
19143: key ref now
19144:
19145: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
19146: 17:11:17 2001] total 16867948/202658
19147:
19148: * src/: classes/file.C, classes/image.C, classes/string.C,
19149: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
19150: main/execute.C, main/pa_array.C, main/pa_common.C,
19151: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
19152: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
19153: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
19154: string::as_int/double now usually uses stack, not heap [200K out
19155: of 17M :)] VString(String&) not copies reference [29M -> 17M]
19156:
19157: * src/main/pa_sql_driver_manager.C: ping to have services [old
19158: hiding bug]
19159:
19160: * src/Makefile.am: .am order
19161:
19162: * src/: include/pa_array.h, include/pa_charset_manager.h,
19163: include/pa_db_connection.h, include/pa_db_manager.h,
19164: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
19165: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19166: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
19167: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
19168: required "friend class"
19169:
19170: ../include/pa_request.h:51: friend declaration requires
19171: class-key, i.e. `friend class Temp_lang'
19172:
19173: * src/: include/pa_exception.h, include/pa_sql_connection.h,
19174: main/pa_exception.C, main/pa_sql_driver_manager.C,
19175: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
19176:
19177: the idea is to #1 jump to C++ some function to main body, where
19178: every function stack frame has exception unwind information and
19179: from there... #2 propagate_exception()
19180:
19181: 2001-10-28 paf
19182:
19183: * src/main/pa_db_connection.C: removed old consts
19184:
19185: * src/main/pa_db_connection.C: expire table [was accidently pasted
19186: with wrong type/cast]
19187:
19188: * src/main/: pa_db_connection.C, pa_db_table.C: exception
19189: translation
19190:
1.116 moko 19191: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 19192: remember to build DB2 with -fexceptions!!!
19193:
19194: * src/main/pa_db_table.C: DB_RMW defed
19195:
19196: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
19197: include/pa_db_connection.h, include/pa_db_manager.h,
19198: include/pa_db_table.h, main/pa_db_connection.C,
19199: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
19200:
19201: 2001-10-27 paf
19202:
19203: * src/: classes/hashfile.C, include/pa_db_connection.h,
19204: include/pa_db_table.h, main/pa_db_connection.C,
19205: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
19206: types/pa_vhashfile.C: DB2 ifdefs
19207:
1.116 moko 19208: * src/: classes/Makefile.am, include/pa_config_fixed.h,
19209: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 19210: makes with DB2
19211:
1.116 moko 19212: * src/: include/pa_config_auto.h.in, main/Makefile.am,
19213: types/Makefile.am: makes db
1.95 moko 19214:
19215: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
19216: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
19217: globals.C
19218:
19219: * src/: classes/hashfile.C, include/pa_db_connection.h,
19220: include/pa_db_table.h, main/pa_db_connection.C,
19221: main/pa_db_table.C: ^hashfile.clear[]
19222:
19223: * src/classes/classes.awk: no $ in var names
19224:
19225: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
19226: connection&table [forgotten calls]
19227:
19228: 2001-10-26 paf
19229:
19230: * src/main/pa_db_connection.C: db checkpoints
19231:
19232: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
19233: checkpoints
19234:
19235: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
19236: default. but entities still reparsed. todo: tothink
19237:
19238: * src/main/pa_db_connection.C: db recover mech 2
19239:
19240: * src/: classes/hashfile.C, include/pa_db_connection.h,
19241: include/pa_db_manager.h, include/pa_db_table.h,
19242: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
19243: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
19244: types/pa_vhashfile.h: db connections & tables now cached at
19245: create time & multithreaded
19246:
19247: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
19248: parsed_source
19249:
19250: * src/main/pa_db_connection.C: about to remove connection from
19251: vhashfile
19252:
19253: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
19254: transaction commit/rollback responsibility left to parent [as it
19255: sould - else there were a bug with double free]
19256:
19257: * src/include/pa_db_table.h: db: child transaction commit/rollback
19258: responsibility left to parent [as it sould - else there were a
19259: bug with double free]
19260:
19261: 2001-10-25 paf
19262:
19263: * src/: classes/hashfile.C, include/pa_common.h,
19264: include/pa_db_connection.h, include/pa_db_manager.h,
19265: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
19266: types/pa_vhashfile.C, types/pa_vhashfile.h,
19267: include/pa_db_table.h, main/pa_db_table.C: started db_home
19268: [multiple, cached] todo: autorecover [tried, but not succeded,
19269: yet]
19270:
19271: * src/include/pa_dir.h: ancient gpf on dir not found fixed
19272:
19273: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
19274: transaction parent passed
19275:
19276: 2001-10-24 parser
19277:
1.116 moko 19278: * src/classes/Makefile.am: makes
1.95 moko 19279:
19280: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
19281: isapi/pool_storage.h: pool_storage fixed
19282:
19283: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
19284: types/pa_vform.h: form fix_line_breaks
19285:
1.116 moko 19286: * src/targets/cgi/pool_storage.h: makes
1.95 moko 19287:
19288: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
19289: targets/cgi/pool_storage.h: makes
19290:
19291: * src/sql/pa_sql_driver.h: version
19292:
19293: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
19294: types/pa_vform.C, types/pa_vform.h: .am
19295:
19296: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
19297: this: DB_RMW Acquire write locks instead of read locks when doing
19298: the retrieval. Setting this flag may decrease the likelihood of
19299: deadlock during a read-modify-write cycle by immediately
19300: acquiring the write lock during the read part of the cycle so
19301: that another thread of control acquiring a read lock for the same
19302: item, in its own read-modify-write cycle, will not result in
19303: deadlock
19304:
19305: * src/targets/isapi/parser3isapi.dsp: doc
19306:
19307: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
19308:
19309: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
19310:
19311: * src/: classes/hashfile.C, include/pa_db_connection.h,
19312: main/pa_db_connection.C: hashfile expired deleted from db when
19313: get & iterate
19314:
19315: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
19316: expiring 1
19317:
19318: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
19319:
19320: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
19321: db_connection not bothers with key when not returning expired
19322: data
19323:
19324: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
19325: types/pa_vhashfile.C: db_cursor constructor public now
19326:
19327: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
19328: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
19329: stamped, todo: put_element analize
19330:
19331: * src/: include/pa_db_connection.h, include/pa_string.h,
19332: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
19333: serialize. todo stamp
19334:
19335: 2001-10-23 parser
19336:
19337: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
19338: classes/image.C, classes/mail.C, classes/response.C,
19339: classes/string.C, classes/table.C, classes/xdoc.C,
19340: include/pa_config_fixed.h, include/pa_db_connection.h,
19341: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
19342: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
19343: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
19344: types/pa_vtable.C: ^hashfile.hash[]
19345:
19346: * src/: classes/hashfile.C, classes/xdoc.C,
19347: include/pa_config_fixed.h, main/pa_db_manager.C,
19348: main/pa_globals.C: ifdefs so it compiled without db
19349:
19350: * src/: classes/hashfile.C, include/pa_db_connection.h,
19351: include/pa_db_manager.h, main/pa_db_connection.C,
19352: main/pa_db_manager.C, types/pa_vhashfile.h:
19353: ^hashfile.transaction{code} ^hashfile:clear[filename]
19354: ^hashfile.delete[key]
19355:
19356: 2001-10-22 parser
19357:
19358: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
19359: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
19360:
19361: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
19362: classes/xnode.C, include/pa_charset_connection.h,
19363: include/pa_db_connection.h, include/pa_db_manager.h,
19364: include/pa_exception.h, include/pa_sapi.h,
19365: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19366: include/pa_stylesheet_connection.h,
19367: include/pa_stylesheet_manager.h,
19368: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19369: main/pa_db_connection.C, main/pa_db_manager.C,
19370: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
19371: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19372: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
19373: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
19374: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
19375: types/types.dsp: hashfile 0
19376:
19377: * src/types/pa_vhashfile.C: z
19378:
19379: * src/: classes/classes.dsp, classes/hashfile.C,
19380: include/pa_config_fixed.h, main/execute.C,
19381: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
19382: types/pa_vhashfile.h, types/types.dsp: hashfile -100
19383:
19384: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
19385:
19386: * src/: include/pa_exception.h, include/pa_request.h,
19387: main/execute.C, main/pa_exception.C, main/pa_request.C,
19388: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19389: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
19390:
19391: 2001-10-19 parser
19392:
19393: * src/include/pa_pool.h: header
19394:
19395: * src/main/pa_pool.C: auto compiled on gcc
19396:
19397: * src/classes/image.C: comment
19398:
1.116 moko 19399: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 19400:
19401: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19402: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19403: types/pa_vxnode.h: xnode clone got freed
19404:
19405: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
19406: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
19407: can free up xalandomstring resulting from pool::transcode
19408:
19409: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
19410: include/pa_config_fixed.h, include/pa_exception.h,
19411: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
19412: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
19413: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
19414: to c++ exceptions 1xml configure fixed to exclude xalan-patch
19415: from non-xml compile
19416:
19417: * src/main/pa_request.C: pool:: context - get_context
19418:
19419: * src/: classes/classes.h, classes/date.C, classes/double.C,
19420: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
19421: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
19422: classes/string.C, classes/table.C, classes/void.C,
19423: include/pa_config_fixed.h, include/pa_exception.h,
19424: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
19425: main/compile.C, main/compile_tools.C, main/execute.C,
19426: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
19427: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
19428: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
19429: main/pa_string.C, main/pa_table.C, main/untaint.C,
19430: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19431: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
19432: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
19433: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
19434: types/pa_vstateless_class.h, types/pa_vtable.C,
19435: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
19436: exceptions 0
19437:
19438: * src/classes/classes.awk: $ removed
19439:
19440: 2001-10-18 parser
19441:
19442: * src/types/pa_vcookie.C: cookie:CLASS
19443:
19444: * src/main/main.dsp: project
19445:
19446: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
19447: set_document & ctor question "who owns document" solved
19448:
19449: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
19450:
19451: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
19452: main/pa_pool.C: encoding in dom creating funcs
19453:
19454: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
19455: be transformed now
19456:
19457: * src/classes/xdoc.C: dom created by create can be transformed now
19458:
19459: * src/classes/xdoc.C: z
19460:
19461: * src/classes/xdoc.C: comment
19462:
19463: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
19464: create now uses XercesDocumentBridge, appendChild&co now works
19465:
19466: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
19467: @ recompile
19468:
19469: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
19470: $origin @exception[
19471:
19472: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
19473: tag names forced to XML lang
19474:
19475: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
19476: leechy-found bugs in code&doc fixed
19477:
19478: 2001-10-17 parser
19479:
19480: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
19481: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
19482: n functionality preserved
19483:
19484: * src/types/pa_vimage.h: removed unused vimage::save
19485:
19486: 2001-10-16 parser
19487:
19488: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
19489:
19490: * src/classes/: xnode.C: removed few dom returns & changed op.txt
19491:
19492: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
19493:
19494: * src/classes/image.C: image.copy tolerance
19495:
19496: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
19497: ineffective, but works for small paleted image
19498:
19499: * src/types/pa_vimage.C: comment
19500:
19501: * src/classes/image.C: gd size/resize bugfix
19502:
19503: * src/: classes/classes.dsp, main/main.dsp,
19504: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19505: types/types.dsp: ident >nul 2>&1
19506:
19507: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
19508: systems
19509:
19510: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
19511: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
19512:
19513: 2001-10-15 parser
19514:
19515: * src/main/execute.C: z
19516:
19517: * src/classes/: xdoc.C: !::create{qualifiedName}
19518:
19519: * src/types/pa_vxnode.C: document_type_node.
19520: !readonly attribute DOMString name
19521: !notation_node.
19522: !readonly attribute DOMString publicId
19523: !readonly attribute DOMString systemId
19524:
1.116 moko 19525: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
19526: ::write badly passed string too transparently [failed to
19527: intercept it]
1.95 moko 19528:
19529: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
19530: include/pa_request.h, main/pa_sql_driver_manager.C,
19531: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19532: types/pa_vxnode.h: DOM1 major addtion, only few
19533: attributes/methods left
19534:
19535: 2001-10-13 parser
19536:
19537: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
19538: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
19539: in main handler
19540:
19541: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
19542: cleanups & frees order
19543:
19544: * src/types/pa_vcode_frame.h: couple comments
19545:
19546: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
19547: transparent enough to handle hash if creation&passing
19548:
19549: * src/: include/pa_config_fixed.h, main/execute.C,
19550: main/pa_exception.C: noticed that vcodeframe not transparent
19551: enough, would change now
19552:
19553: 2001-10-12 parser
19554:
19555: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
19556: fixed. initialization&free on each thread!
19557:
19558: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
19559: handling changed: now type of default param analized always, not
19560: only at problem time, thus helping early problem spotting
19561:
19562: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
19563: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
19564: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
19565: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
19566: multithread bug fixed. initialization&free on each thread!
19567:
19568: 2001-10-11 parser
19569:
19570: * src/classes/xnode.C: xnode.selectSingle now
19571:
19572: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19573: include/pa_pool.h, include/pa_stylesheet_connection.h,
19574: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
19575: convertors out of Pool into Exception
19576:
19577: * src/main/pa_string.C: const
19578:
19579: * src/: include/pa_string.h, main/pa_string.C: restructured string:
19580: linked pieces of same language together prior to String::replace
19581:
19582: * src/classes/hash.C: !^hash.add[addme]
19583: !^hash.sub[subme]
19584: !^a.union[b] = new
19585: !^a.intersection[b] = new
19586: !^a.intersects[b] = bool
19587:
19588: * src/classes/hash.C: !^hash::append[append_from]
19589:
19590: * src/: classes/hash.C, types/pa_vhash.h:
19591: !^hash::create[[copy_from]]
19592:
19593: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
19594: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
19595: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
19596: fixed. got rid of empty_string, which caused errors - it hasnt
19597: exception but somebody[value.bark] tried to throw it on it's pool
19598:
1.116 moko 19599: * src/include/pa_config_auto.h.in: makes
1.95 moko 19600:
19601: 2001-10-10 parser
19602:
19603: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
19604:
19605: * src/main/: compile.tab.C, compile.y: ^a[
19606:
19607: @next_method << now unclosed ] would be reported here
19608:
19609: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
19610: compile error
19611:
19612: 2001-10-09 parser
19613:
1.116 moko 19614: * src/: classes/Makefile.am, main/Makefile.am,
19615: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 19616:
19617: * src/classes/Makefile.am: makes
19618:
19619: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
19620: win32 errors intercepted [xalan transformer patched and
19621: incorporated]
19622:
19623: * src/: classes/classes.dsp, classes/xdoc.C,
19624: include/pa_stylesheet_connection.h, main/main.dsp,
19625: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19626: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
19627: patches starting
19628:
19629: * src/classes/: string.C, table.C: ^string.save[file]
19630:
19631: * src/classes/: date.C, table.C: calendar moved to date
19632:
19633: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
19634: string/table] now
19635:
19636: * src/classes/: op.C, table.C: z
19637:
19638: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
19639: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
19640: types/pa_vxnode.h: table:menu & op for delims made allowed not to
19641: be code [be string..]
19642:
19643: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
19644: table.C: lots of
19645: params->as_int/double/as_string/as_junction/as_no_junction
19646: messages added
19647:
19648: 2001-10-08 parser
19649:
19650: * src/: classes/date.C, classes/image.C, classes/string.C,
19651: classes/table.C, classes/void.C, include/pa_request.h:
19652: params->as_int/double message added
19653:
19654: * src/classes/image.C: image:circle [and round arc] uses Bresenham
19655:
19656: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
19657: image:sector removed image:html internal "line-*" attribs
19658:
19659: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
19660: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
19661:
19662: * src/types/pa_vcookie.C: removing cookie made more netscape-like
19663: way
19664:
19665: * src/: classes/file.C, classes/form.C, main/pa_common.C,
19666: main/untaint.C: header untainting to UL_HTTP_HEADER,
19667: UL_MAIL_HEADER made nonforced [only tainted pieces]
19668:
19669: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
19670: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
19671: @ SAPI::log
19672:
19673: * src/main/untaint.C: \r to ' ' in origins mode
19674:
19675: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
19676: set]
19677:
19678: * src/: classes/xdoc.C, include/pa_config_fixed.h,
19679: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
19680: nonstandard liaison freed up
19681:
19682: 2001-10-07 parser
19683:
19684: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
19685: project
19686:
19687: 2001-10-05 parser
19688:
19689: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
19690: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
19691: from outputing to cerr. lots of "todos"
19692:
19693: * src/main/untaint.C: http_header tainting more gentle with
19694: enquoting now
19695:
19696: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
19697: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
19698: xml errorhandler. fixed string.replace a little, read @test
19699:
19700: * src/main/pa_string.C: found replace bug - first_that_starts(char
19701: *) does not have limit, and looks further eos, fixing....
19702:
19703: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
19704:
19705: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
19706:
19707: * src/main/: pa_charset_connection.C: ctype another mem clear
19708: bugfix
19709:
1.116 moko 19710: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
19711: $result[^[$p^]z] now works fine
1.95 moko 19712:
19713: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
19714: wrong. fixed it
19715:
19716: * src/main/pa_charset_connection.C: unicode zero pair at the beging
19717: of totable appered to be vital
19718:
19719: 2001-10-04 parser
19720:
19721: * src/classes/image.C: ^image.length[text]
19722:
19723: 2001-10-03 parser
19724:
19725: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
19726:
19727: * src/main/pa_request.C: restored pcre defaulting in request
19728: [mindlessly "optimized" yesterday] comment left
19729:
19730: 2001-10-02 parser
19731:
19732: * src/: main/pa_charset_manager.C,
19733: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
19734: needed
19735:
19736: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
19737: forgot non-xml pool.*charset needed
19738:
19739: * src/classes/table.C: # config comments fixed
19740:
19741: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
19742: charset_connection #comment now
19743:
19744: * src/: classes/classes.dsp, types/types.dsp: release projects
19745: options fixed to use release msvcrt lib
19746:
19747: * src/main/pa_charset_connection.C: pcre tables now const inside
19748: removed default - pcre handles that internally fixed bug on
19749: not-cleaning tables [previously was calloced, now member]
19750:
19751: * src/: include/pa_request.h, main/pa_charset_connection.C,
19752: main/pa_request.C, types/pa_vstring.h: pcre tables now const
19753: inside removed default - pcre handles that internally fixed bug
19754: on not-cleaning tables [previously was calloced, now member]
19755:
19756: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
19757: tested charset reload on file change @ apache version = OK tested
19758: freeing up prev encoding on adding new = OK
19759:
19760: 2001-10-01 parser
19761:
19762: * src/main/pa_charset_connection.C: removed entitify external hack
19763: [internal installed]
19764:
1.116 moko 19765: * src/main/Makefile.am: makes+removed dtd
1.95 moko 19766:
19767: * src/: include/pa_charset_connection.h,
19768: include/pa_charset_manager.h,
19769: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19770: main/pa_charset_connection.C, main/pa_charset_manager.C,
19771: main/pa_request.C: charset loading & caching mech 0
19772:
19773: * src/: include/pa_stylesheet_connection.h,
19774: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19775: main/pa_globals.C, main/pa_request.C: would make charset loading
19776: & caching mech now
19777:
19778: 2001-09-30 parser
19779:
19780: * src/main/pa_request.C: forgot to fill toTable
19781:
19782: * src/: include/pa_config_fixed.h, main/pa_request.C: started
19783: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
19784: failed on win32 for now..
19785:
19786: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
19787: now charsets table configuration variable is: CHARSETS
19788:
19789: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
19790: ctype with unicode 1. todo: no П entities on output somehow
19791:
19792: * src/: classes/file.C, classes/op.C, classes/string.C,
19793: include/pa_request.h, main/pa_request.C: started ctype with
19794: unicode values
19795:
19796: 2001-09-28 parser
19797:
19798: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
19799: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
19800: string passed AS-IS now
19801:
19802: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
19803: way of user-configuring... todo: implement
19804:
19805: 2001-09-27 parser
19806:
19807: * src/classes/table.C: table.sort changed to sort table itself
19808:
19809: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
19810: X^.getElementsByTagName[tagname] = array of xnode
19811: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
19812: nodes removed - regretfully not supported @ xalan. maybe someday
19813: would reimplement, if needed.
19814:
19815: win32build system: solved long waiting anti-non-started-apache
19816: problem
19817:
19818: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
19819: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19820: types/types.dsp: win32 ident make system so not to rebuild
19821: library [ident.C.new]
19822:
19823: 2001-09-26 parser
19824:
19825: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
19826: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
19827: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19828: types/pa_vxnode.C, types/types.dsp: z
19829:
19830: * src/classes/classes.C: forgot one non-xml check
19831:
1.116 moko 19832: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
19833: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 19834:
19835: * src/targets/cgi/parser3.C: z
19836:
19837: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
19838: targets/isapi/parser3isapi.C: #ifdef SMTP
19839:
19840: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
19841: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19842: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
19843: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
19844: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
19845: types/types.dsp: xdoc&xnode now
19846:
19847: * src/: classes/classes.C, classes/classes.awk,
19848: classes/classes.dsp, classes/classes.h, classes/date.C,
19849: classes/dnode.C, classes/dnode.h, classes/dom.C,
19850: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19851: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
19852: classes/op.C, classes/response.C, classes/string.C,
19853: classes/table.C, classes/void.C, include/pa_array.h,
19854: include/pa_common.h, include/pa_config_fixed.h,
19855: include/pa_config_includes.h, include/pa_dictionary.h,
19856: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
19857: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
19858: include/pa_socks.h, include/pa_sql_connection.h,
19859: include/pa_sql_driver_manager.h, include/pa_stack.h,
19860: include/pa_string.h, include/pa_stylesheet_connection.h,
19861: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
19862: include/pa_xslt_stylesheet_manager.h, main/compile.C,
19863: main/compile.y, main/compile_tools.C, main/compile_tools.h,
19864: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
19865: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
19866: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
19867: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19868: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
19869: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
19870: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19871: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19872: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
19873: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19874: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
19875: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19876: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19877: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
19878: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
19879: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
19880: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
19881: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
19882: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19883: types/pa_vmethod_frame.h, types/pa_vobject.h,
19884: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
19885: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19886: types/pa_vstateless_object.h, types/pa_vstring.C,
19887: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19888: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
19889: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
19890: main.dsp splitted to main+classes+types along to .am
19891:
19892: * src/classes/Makefile.am: removed useless var
19893:
19894: * src/: classes/classes.cmd, main/main.dsp,
19895: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
19896: main.dsp
19897:
19898: 2001-09-25 parser
19899:
19900: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
19901: 1251 though, todo ICU
19902:
1.116 moko 19903: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 19904: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 19905: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
19906: types/pa_vdom.h: xml configure makes
1.95 moko 19907:
19908: 2001-09-24 parser
19909:
1.116 moko 19910: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
19911: types/Makefile.am: makes
1.95 moko 19912:
1.116 moko 19913: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 19914:
19915: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
19916: started unix makes update
19917:
19918: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
19919: started unix makes update
19920:
19921: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
19922:
19923: * src/types/pa_value.h: z
19924:
19925: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
19926: bugs with usinge hash/table in expressions
19927:
19928: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
19929: resolved conflicts fixed [const]
19930:
19931: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
19932: classes/table.C, include/pa_request.h, include/pa_sapi.h,
19933: main/compile.C, main/compile.tab.C, main/compile.y,
19934: main/compile_tools.h, main/main.dsp, main/pa_common.C,
19935: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
19936: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
19937: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
19938: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
19939: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
19940: with before_xml [merge2 actually didn't happen - i've created
19941: tags on wrong branch. so this merge is in fact re-merge]
19942:
19943: 2001-09-21 parser
19944:
19945: * src/: main/main.dsp, targets/cgi/parser3.dsp,
19946: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
19947: produced "" in make file and sadly wrong interpreted on load]
19948:
1.116 moko 19949: * src/: classes/classes.h, classes/hash.C, classes/op.C,
19950: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
19951: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
19952: include/pa_sql_driver_manager.h, include/pa_string.h,
19953: main/compile.tab.C, main/main.dsp, main/pa_common.C,
19954: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
19955: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 19956:
19957: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
19958: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
19959: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
19960: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
19961: main/pa_pool.C, main/pa_request.C,
19962: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
19963: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
19964: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19965: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
19966: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
19967: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
19968: types/pa_vrequest.C, types/pa_vresponse.h,
19969: types/pa_vstateless_class.C, types/pa_vstring.C,
19970: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
19971: created new projects for sql drivers [planning to remove sql
19972: drivers from main cvs project] first, will join latest changes
19973:
19974: * src/classes/: dom.C: defaulted dom writing methods encoding to
19975: pool.get_charset
19976:
19977: * src/classes/dom.C: defaulted dom writing methods encoding to
19978: pool.get_charset
19979:
19980: * src/include/pa_pool.h: defaulted dom writing methods encoding to
19981: pool.get_charset
19982:
19983: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
19984: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
19985: methods encoding to pool.get_charset
19986:
19987: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
19988: transcoder were created right "unsupported encoding" message.
19989: not @ set time, but @ use time, so until xml output functions
19990: .string, .file, .save used - no encoding name check occur
19991:
19992: reduced transcode buffer size to 60 fixed pool cleanup - no
19993: registration needed, pools are officially destructured
19994:
19995: 2001-09-20 parser
19996:
19997: * src/classes/image.C: 20K preload on jpg measure [image::measure]
19998:
19999: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
20000: $MAIN:DEFAULTS.content-type[$.charset[here]]
20001:
20002: * src/: classes/dnode.C, classes/dom.C,
20003: include/pa_config_includes.h, include/pa_globals.h,
20004: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
20005: main/pa_pool.C, targets/cgi/parser3.dsp,
20006: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20007: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
20008: Pool::transcode 0
20009:
20010: * src/classes/dom.C: dom. string save file moved output xml options
20011: to last param and made it optional
20012:
20013: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
20014: dnodes
20015: !$attributenode.specified = boolean
20016: true if the attribute received its value explicitly
20017: in the XML document,
20018: or if a value was assigned programatically with the
20019: setValue function.
20020: false if the attribute value came from the default value
20021: declared in the document's DTD.
20022: !$pinode.target = target of this processing instruction
20023: XML defines this as being the first token following the
20024: markup
20025: that begins the processing instruction.
20026: XPath:
20027: !^node.select[xpath/query/expression] = hash of 0->node0
20028: 1->node1
20029: !^node.select-single[xpath/query/expression] = first node if
20030: any
20031:
20032: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
20033: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
20034: some 'const's added
20035:
20036: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
20037: expression context now, there value = size and boolean value
20038: size!=0
20039:
20040: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
20041: can be used in expression context now, there value = size and
20042: boolean value size!=0
20043:
20044: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
20045: types/pa_vstring.h: dnode .file .string .save moved back to dom
20046: due to strange xalan bug
20047:
20048: 2001-09-18 parser
20049:
20050: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
20051: classes/image.C, classes/op.C, classes/table.C,
20052: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
20053: include/pa_sql_driver_manager.h, main/compile.C,
20054: main/compile.tab.C, main/compile.y, main/compile_tools.h,
20055: main/execute.C, main/pa_common.C, main/pa_request.C,
20056: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
20057: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20058: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
20059: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
20060: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
20061: before_xml branch ^if(def $hash) now true only when
20062: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
20063:
20064: * src/: classes/op.C, main/execute.C: operators self changed to
20065: root ^for variable context changed to self
20066:
20067: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
20068: dnode 1
20069:
20070: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
20071: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
20072:
20073: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
20074: poly* fixed
20075:
20076: 2001-09-17 parser
20077:
20078: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
20079: types/pa_vdom.h: started dnode+dom
20080:
20081: dnode DOM methods: $node.name $node.value
20082: ...others...
20083:
20084: ^node.xpath[/rates/USD] = hash
20085: $hash[
20086: $.0[node0]
20087: $.1[node1]
20088: ]
20089:
20090: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
20091: applies to all linear primitives
20092:
20093: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
20094: include/pa_stylesheet_connection.h, main/main.dsp,
20095: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
20096: types/pa_vimage.h: started dnode DOM: $node.name
20097: $node.value ...others... ^node.xpath[/rates/USD] = hash
20098: dom(dnode)
20099:
20100: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
20101: main/compile.y, main/compile_tools.h, main/execute.C,
20102: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
20103: in expression compound($aa.zz.xx) names now can have minus '-' in
20104: name after '.'
20105:
20106: 2001-09-15 parser
20107:
20108: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
20109: image: $line-width ^line(...)[**** style]
20110:
20111: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
20112: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
20113: pool_storage - cleanups first, allocations second. apache wisely
20114: does just like that
20115:
20116: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
20117: rewritten using template, no bugs now
20118:
20119: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
20120: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
20121: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
20122: poorly started isapi pool_storage, would rewrite using template
20123: now
20124:
20125: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
20126: include/pa_stylesheet_connection.h, main/main.dsp,
20127: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
20128: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
20129: xalan objects freed up [introducing Pool::register_cleanup]
20130:
20131: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
20132: comments
20133:
20134: 2001-09-14 parser
20135:
20136: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
20137: z
20138:
20139: * src/: classes/dom.C, classes/file.C, classes/image.C,
20140: classes/mail.C, include/pa_common.h,
20141: include/pa_sql_driver_manager.h, include/pa_string.h,
20142: include/pa_stylesheet_connection.h,
20143: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20144: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
20145: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
20146: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
20147: compiled&cached
20148:
20149: 2001-09-13 parser
20150:
20151: * src/: classes/dom.C, classes/file.C, classes/image.C,
20152: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
20153:
20154: * src/classes/dom.C: dom:file content-type(.method)
20155:
20156: * src/: include/pa_common.h, include/pa_globals.h,
20157: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
20158: string now more informative error messages
20159:
20160: * src/: include/pa_globals.h, include/pa_request.h,
20161: main/pa_request.C, targets/cgi/parser3.C,
20162: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
20163: ParserSiteConfig .../parser3.conf
20164:
20165: cgi&isapi looks for {configure|c:\windows}/parser3.conf
20166:
20167: 2001-09-12 parser
20168:
20169: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20170: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
20171: precise error reporting: "connection string must start with
20172: protocol://" now
20173:
20174: * src/main/compile.tab.C: fixed - subname code parts actually []
20175: braced
20176:
20177: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
20178: lexer on LS_USER level did [] matching without setting nestage,
20179: introduced special LS_NAME_SQUARE_PART state
20180:
20181: 2001-09-11 parser
20182:
20183: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
20184: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
20185: languages+=xml
20186:
20187: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
20188:
20189: * src/classes/dom.C: ^dom:save/string/file[output options] output
20190: options: $.method[xml|html|text] detection fixed
20191:
20192: * src/types/pa_vdom.h: messages
20193:
20194: * src/classes/dom.C: ^dom:save/string/file[output options] output
20195: options: $.method[xml|html|text] detection fixed
20196:
20197: 2001-09-10 parser
20198:
20199: * src/classes/dom.C: ^dom:save/string/file[output options] output
20200: options: $.method[xml|html|text] $.encoding[windows-1251|...]
20201:
20202: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
20203: added]
20204:
20205: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
20206: ^dom.xslt[stylesheet filename] 0
20207:
20208: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
20209: ^dom.xslt[stylesheet filename] -1 doc is lying
20210:
20211: * src/classes/dom.C: ^dom.file[encoding] = file
20212:
20213: * src/classes/: dom.C: ^dom.string[encoding] 1
20214: ^dom.save[encoding;filename]
20215:
20216: * src/classes/dom.C: ^dom.string[] 0
20217:
20218: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
20219:
20220: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
20221: types/pa_vform.h: ^dom.save[b.xml] 0
20222:
20223: 2001-09-08 parser
20224:
20225: * src/types/pa_vform.C: $form:tables.name.field
20226:
20227: 2001-09-07 parser
20228:
20229: * src/classes/table.C: table:empty removed, superceded by ^if(def
20230: $table)...
20231:
20232: * src/targets/cgi/parser3.C: z
20233:
20234: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
20235: from '' to int/double is 0]
20236:
20237: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
20238: $table) is false when table is empty
20239:
20240: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
20241: !$form:tables $atable[$form:tables.a]
20242: ^atable.menu{a=$atable.element}[,]
20243:
20244: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
20245: types/pa_vform.h, types/pa_vhash.h: !$form:fields
20246:
1.116 moko 20247: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 20248: types/pa_vdom.h, types/pa_vform.C: merged with successful start
20249: of dom
20250:
20251: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
20252: types/pa_vform.C, types/pa_vform.h: z
20253:
20254: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
20255: element [not last]
20256:
1.116 moko 20257: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 20258: types/pa_vdom.h: introducing dom. dom:load[a.xml]
20259:
20260: 2001-09-06 parser
20261:
20262: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
20263: table with one column 'element' and two rows: 1 and 2
20264:
20265: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
20266: table with one column 'element' and two rows: 1 and 2
20267:
20268: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
20269: bad int/double conversions, and now $form:nonexistent.int(88)
20270: would return 88
20271:
20272: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
20273: types/pa_vhash.h: now there's special hash key '_default'
20274: [instead of ^_default method] $hash[ $.a[1] $.b[2]
20275: $._default[xx] ] $hash.c
20276:
20277: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
20278: fixed [thanks, fif], ^; were treated there non-literally
20279:
20280: * src/doc/doxygen.cfg: merged new default options from 1.2.10
20281: doxygen
20282:
20283: * src/: classes/image.C, classes/op.C, classes/string.C,
20284: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
20285: types/pa_vtable.C: few #ifndef DOXYGEN
20286:
20287: 2001-09-05 parser
20288:
20289: * src/classes/: string.C, table.C: sql options can be void [same as
20290: image:html the other day]
20291:
20292: * src/targets/cgi/Makefile.am: .am undo
20293:
20294: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
20295: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
20296: macro expantion on param, simply qoutes whatever passed, undone
20297:
20298: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
20299: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
20300: STRINGIZE(name) #name invented
20301:
20302: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20303: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
20304: MAIN_SQL_DRIVERS_NAME "drivers"
20305:
20306: moved to be availible to all users
20307:
20308: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
20309: SQL_DRIVER_CREATE_FUNC_NAME
20310:
20311: * src/classes/mail.C: MAIN:MAIL check fixed
20312:
20313: 2001-09-04 parser
20314:
20315: * src/classes/image.C: image.html now can accept void params
20316:
20317: * src/targets/isapi/parser3isapi.C: z
20318:
20319: * src/targets/cgi/parser3.C: full_file_spec bug
20320:
20321: * src/targets/cgi/parser3.C: getenvcheck
20322:
20323: * src/targets/cgi/parser3.C: zz
20324:
20325: * src/targets/cgi/parser3.C: zzz
20326:
20327: * src/classes/date.C: date
20328:
20329: * src/classes/date.C: date:sql-string is now without ''
20330:
1.116 moko 20331: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 20332: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
20333: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
20334:
1.116 moko 20335: * src/include/pa_config_auto.h.in: makes
1.95 moko 20336:
20337: 2001-09-03 parser
20338:
20339: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
20340:
20341: 2001-09-01 parser
20342:
20343: * src/classes/image.C: letter_spacing
20344:
20345: * src/classes/image.C: image: font params changed
20346:
20347: * src/classes/image.C: image: as_int as_string used
20348:
20349: * src/types/pa_vmethod_frame.h: $result[] now gets properly
20350: analized
20351:
20352: 2001-08-31 parser
20353:
20354: * src/targets/cgi/parser3.C: z
20355:
1.116 moko 20356: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
20357: cygwin
1.95 moko 20358:
20359: * src/classes/void.C: void:int/double += (default)
20360:
20361: * src/classes/image.C: image:font added space param image:font
20362: changed charwidth alg, added kerning const[for now]
20363:
20364: * src/classes/: string.C, table.C: string:int/double (defaults)
20365:
20366: 2001-08-29 parser
20367:
20368: * src/main/pa_exception.C: exception redundant debug info
20369:
20370: 2001-08-28 parser
20371:
20372: * src/classes/image.C: image error msgs
20373:
20374: * src/classes/image.C: image: gifsize little endian
20375:
20376: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
20377: doxygeneration
20378:
20379: * src/: classes/Makefile.am, main/Makefile.am,
20380: targets/cgi/Makefile.am, types/Makefile.am: .am-s
20381:
20382: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
20383: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
20384:
20385: * src/main/compile.C: NO_STRING_ORIGIN check2
20386:
20387: * src/classes/table.C: NO_STRING_ORIGIN check
20388:
20389: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
20390: storage class specifiers invalid in friend function declarations
20391:
20392: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
20393: main/untaint.C, targets/cgi/parser3.C,
20394: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
20395: case of limit
20396:
20397: * src/: classes/file.C, main/pa_common.C: file:move
20398: autocreate/remove dest/src dir
20399:
20400: * src/: classes/string.C, include/pa_dictionary.h,
20401: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
20402: main/untaint.C: pa_directory speeded up. moved zero 'from' check
20403: to directory constructor. string:replace
20404:
20405: 2001-08-27 parser
20406:
20407: * src/classes/image.C: fixed jpgsize alg
20408:
20409: * src/classes/image.C: fixed jpgsize alg
20410:
20411: * src/main/pa_exception.C: z
20412:
20413: * src/main/pa_common.C: removed debug info from pa_common
20414:
20415: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
20416: [auto.p from current dir loading]
20417:
1.116 moko 20418: * src/: main/pa_common.C, main/pa_exception.C,
20419: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
20420: for solaris -lsocket
1.95 moko 20421:
20422: 2001-08-24 parser
20423:
20424: * src/targets/cgi/parser3.C: not cgi extra \n 3
20425:
20426: * src/targets/cgi/parser3.C: not cgi extra \n 2
20427:
20428: * src/targets/cgi/parser3.C: not cgi extra \n
20429:
20430: * src/main/pa_sql_driver_manager.C: z
20431:
20432: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
20433: sql* removed services from disconnect - cross-request ideological
20434: probs.
20435:
20436: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
20437: cross-request ideological probs. oracle - fixed bug: cs
20438: allocated on request.pool and got freed before disconnect
20439:
20440: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
20441: mallocs fixed
20442:
20443: 2001-08-23 parser
20444:
20445: * src/classes/file.C: minor bug in file:save fixed
20446:
20447: * src/main/pa_sql_driver_manager.C: oracle: dlink
20448:
20449: 2001-08-22 parser
20450:
20451: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
20452: types/pa_vfile.h: file:load|save[text|binary;
20453:
20454: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
20455:
20456: 2001-08-21 parser
20457:
20458: * src/classes/: file.C, table.C: ^file:list
20459:
20460: 2001-08-20 parser
20461:
20462: * src/: main/compile.tab.C, main/compile.y,
20463: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
20464: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
20465: recousively caused problems: inc incremeted 123 literal!! fixed
20466:
20467: 2001-08-10 parser
20468:
20469: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
20470:
20471: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
20472: added
20473:
20474: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
20475: added
20476:
20477: * src/classes/table.C: table:sort restored [it was bad test :(]
20478:
20479: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
20480: ''
20481:
20482: * src/main/: pa_request.C: wanted to make const int
20483: MAX_EXECUTE_SECONDS=1;
20484:
20485: but couldnt, set_callback_and_alarm appeared to be not exported
20486: :(
20487:
20488: * src/main/pa_string.C: string.match hanged on. there were a hang
20489: check but it weren't wise enough
20490:
20491: @parse[dateString][tmp]
20492: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
20493: #end
20494:
20495: @main[] ^parse[2001-02-03]
20496:
20497: * src/classes/: table.C: table:sort now default desc
20498:
20499: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20500: table.sort now creates new sorted table
20501:
20502: 2001-08-09 parser
20503:
20504: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
20505:
20506: * src/classes/hash.C: hash:_default now [was hash:default]
20507:
20508: * src/classes/op.C: case without switch check added
20509:
20510: * src/types/pa_vcookie.C: cookie name&value origins added, more
20511: precise $ORIGINS(1)
20512:
20513: * src/main/Makefile.am: .am
20514:
20515: * src/classes/void.C: void: int double copy/paste from int: bug
20516: fixed
20517:
20518: * src/classes/void.C: void: int double copy/paste from int: bug
20519: fixed
20520:
20521: 2001-08-07 parser
20522:
20523: * src/: classes/double.C, classes/int.C, classes/string.C,
20524: classes/table.C, include/pa_globals.h, main/pa_globals.C:
20525: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
20526: string, table
20527:
20528: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
20529: srand made working
20530:
20531: 2001-08-06 parser
20532:
20533: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
20534: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
20535: main/compile.tab.C, main/compile.y, main/pa_array.C,
20536: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
20537: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
20538:
20539: * src/main/pa_exec.C: exec win32 real filename
20540:
20541: * src/classes/file.C: exec stderr out
20542:
20543: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
20544:
20545: 2001-08-03 parser
20546:
20547: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
20548:
20549: 2001-08-02 parser
20550:
20551: * src/: classes/string.C, classes/table.C, include/pa_array.h,
20552: main/execute.C, main/pa_exec.C: introducing Array_iter
20553:
20554: * src/main/execute.C: detected quick_get recursion bug. changed to
20555: get@execute, but needs array iterator, separate from array to
20556: avoid it & use caching
20557:
20558: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
20559: bug fixed
20560:
20561: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
20562: main/execute.C, main/pa_globals.C: found another multithread bug
20563: in op.C (last, last global var killed) :)
20564:
20565: 2001-08-01 parser
20566:
20567: * src/: include/pa_dictionary.h, include/pa_globals.h,
20568: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
20569: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
20570: main/untaint.C: speeded up typo-html replacements. introducing
20571: Dictionary with first-char caching
20572:
20573: 2001-07-31 parser
20574:
20575: * src/types/Makefile.am: pa_vtable.C added to .am
20576:
20577: * src/main/compile.tab.C: added, so that could be compiled even on
20578: non-bison-enabled platforms
20579:
20580: 2001-07-28 parser
20581:
20582: * src/classes/table.C: table:hash always produces hash, when can't
20583: - empty
20584:
20585: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
20586: skipped \n
20587:
20588: 2001-07-27 parser
20589:
20590: * src/classes/: double.C, int.C, string.C: provided meaningful msg
20591: on int/double/string :sql without result and default
20592:
20593: 2001-07-26 parser
20594:
20595: * src/classes/op.C: fixed bad multithread bug with strangly global
20596: OP
20597:
20598: * src/main/compile.y: $man[$.age[zzz]] 0
20599:
20600: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
20601: creation syntax problem persists. restored $: for a while.
20602: thinking of $man[$.age[zzz]] syntax now
20603:
20604: * src/: classes/double.C, classes/int.C, classes/string.C,
20605: include/pa_opcode.h, main/compile.C, main/compile.y,
20606: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
20607: types/pa_vmethod_frame.h, types/pa_wcontext.h,
20608: types/pa_wwrapper.h: fixing :: realization #1
20609:
20610: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
20611: main/compile_tools.h, main/execute.C, main/pa_request.C,
20612: types/pa_vmethod_frame.h: introducing :: this is constructor call
20613: prefix. ordinary : remains for static accesses
20614:
20615: 2001-07-25 parser
20616:
20617: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
20618: fields 2. methods 3. columns
20619:
20620: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
20621: quote. optimized double&int tostring-s
20622:
20623: * src/main/: compile.C, compile.y, compile_tools.h: allowed
20624: whitespace before first method decl
20625:
20626: * src/classes/table.C: allowed nontable result in table:sql,
20627: results in empty table
20628:
20629: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
20630: lines before first method decl
20631:
20632: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
20633: types/pa_vtable.h: ^table.record[] now $table.fields
20634:
20635: * src/main/compile.y: $var[] is now empty string, not void
20636:
20637: * src/main/: compile.y, execute.C: $var[] is now empty string, not
20638: void
20639:
20640: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
20641: main/pa_globals.C: match replace code context moved to implicit
20642: $match context
20643:
20644: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
20645: main/compile_tools.h, main/execute.C: with killed, code storage
20646: introduced with former 'with' syntax
20647:
20648: 2001-07-24 parser
20649:
20650: * src/: main/compile.C, main/execute.C, main/pa_string.C,
20651: types/pa_value.h: first get_element, next get operator
20652:
20653: * src/main/compile.y: removed @end handling
20654:
20655: * src/main/: compile.C, compile.y: @end handling method2
20656:
20657: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
20658: file:move
20659:
20660: * src/main/pa_common.C: file_read close @ eof when imgsize bug
20661: fixed
20662:
20663: 2001-07-23 parser
20664:
20665: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
20666: driver
20667:
20668: * src/classes/hash.C: changed sql driver query interface
20669:
20670: * src/: classes/hash.C, classes/string.C, classes/table.C,
20671: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
20672: changed sql driver query interface
20673:
20674: 2001-07-20 parser
20675:
20676: * src/types/pa_vrequest.C: X!$browser:type
20677:
20678: * src/: classes/file.C, classes/string.C, include/pa_string.h,
20679: main/execute.C, main/pa_string.C, types/pa_valiased.C,
20680: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
20681: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
20682: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
20683: types/pa_vobject.h, types/pa_vrequest.C,
20684: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
20685: ^class:method dynamic calls allowed. ^BASE.method call disabled.
20686: BASE element globally removed
20687:
20688: 2001-07-18 parser
20689:
20690: * src/classes/file.C: file:exec/cgi msg
20691:
20692: * src/classes/file.C: $file:exit-code renamed to 'status'
20693:
20694: * src/: classes/file.C, main/pa_exec.C: file:exec
20695:
1.116 moko 20696: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
20697: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
20698: removed $id from *.in *.am
1.95 moko 20699:
20700: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
20701: abbrevations
20702:
20703: * src/: classes/date.C, classes/mail.C, classes/math.C,
20704: classes/string.C, classes/table.C, include/pa_globals.h,
20705: include/pa_string.h, main/execute.C, main/pa_globals.C,
20706: main/pa_request.C, main/pa_string.C, main/untaint.C,
20707: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
20708: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
20709: $ORIGINS(1) output tracing mode
20710:
20711: 2001-07-13 parser
20712:
20713: * src/: classes/double.C, classes/int.C, classes/string.C,
20714: include/pa_request.h, main/execute.C, main/pa_request.C:
20715: auto.p[@auto], /news/auto.p[no @auto], so that initializing
20716: second would not call first @auto
20717:
20718: * src/main/: execute.C, pa_request.C: order of MAIN parents was
20719: wrong, fixed
20720:
20721: 2001-07-12 parser
20722:
20723: * src/types/pa_value.h: pa_value.putelement modification of system
20724: classes prevented
20725:
20726: 2001-07-11 parser
20727:
20728: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
20729: table $piece
20730:
20731: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
20732: types/pa_vstateless_class.h: $file created by file:state +=
20733: .atime .mtime .ctime +found&fixed bug with exceptions on
20734: get_junction-created objects [they were on wrong pool]
20735:
20736: 2001-07-09 parser
20737:
20738: * src/main/untaint.C: qp wrong name
20739:
20740: * src/: classes/date.C, classes/string.C, classes/table.C,
20741: main/compile.y: date format 0
20742:
20743: 2001-07-07 parser
20744:
20745: * src/: classes/date.C, classes/table.C, include/pa_common.h,
20746: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
20747: roll table calendar
20748:
20749: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
20750: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
20751: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
20752: include/pa_request.h, main/main.dsp, types/pa_value.h,
20753: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
20754: string. todo: sql, calendar
20755:
20756: 2001-07-06 parser
20757:
20758: * src/: classes/math.C, include/pa_request.h, main/execute.C,
20759: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
20760:
20761: 2001-07-03 parser
20762:
20763: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
20764: classes/random.C, main/main.dsp: class random renamed to math,
20765: operators became methods
20766:
20767: * src/classes/op.C: pow sqrt
20768:
20769: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
20770:
20771: 2001-07-02 parser
20772:
20773: * src/classes/table.C: ^table.columns column renamed from 'name' to
20774: 'column'
20775:
20776: * src/classes/hash.C: ^hash.keys[]
20777:
20778: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
20779:
20780: * src/main/: compile.y, compile_tools.h: in expressions now allowed
20781: 'strings'
20782:
20783: 2001-06-29 parser
20784:
20785: * src/main/: execute.C: /0 %0 checkes ver 2
20786:
20787: * src/main/execute.C: /0 %0 checke
20788:
20789: * src/classes/Makefile.am: nothing - void
20790:
20791: * src/classes/table.C: empty strings @ sql
20792:
20793: 2001-06-28 parser
20794:
20795: * src/: classes/double.C, classes/file.C, classes/form.C,
20796: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
20797: classes/op.C, classes/random.C, classes/response.C,
20798: classes/string.C, classes/table.C, classes/void.C,
20799: main/compile.C, main/compile_tools.C, main/execute.C,
20800: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
20801: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20802: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20803: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20804: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
20805: targets/isapi/parser3isapi.C, main/compile.y: */ static const
20806: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
20807: $";
20808:
20809: * src/: classes/double.C, classes/file.C, classes/form.C,
20810: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
20811: classes/op.C, classes/random.C, classes/response.C,
20812: classes/string.C, classes/table.C, classes/void.C,
20813: main/compile.C, main/compile.y, main/compile_tools.C,
20814: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
20815: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20816: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20817: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20818: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 20819: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 20820:
20821: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
20822: $class:name: == ${class:name}:
20823:
20824: * src/classes/string.C: exactly one
20825:
20826: 2001-06-27 parser
20827:
20828: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
20829: types/pa_vvoid.h: nothing renamed to void
20830:
20831: * src/classes/op.C: ^switch ^case
20832:
20833: * src/main/compile.y: nothing renamed to void
20834:
20835: * src/: classes/hash.C, classes/table.C, main/compile.y,
20836: main/execute.C, main/main.dsp, main/pa_request.C,
20837: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
20838: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
20839: void
20840:
20841: * src/main/compile.y: lexer: $zzzz^zzzz were name part
20842:
20843: 2001-05-28 parser
20844:
20845: * src/doc/html2chm.cmd: removed >a
20846:
20847: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
20848: project options [some bugs]
20849:
20850: * src/doc/sources2html.cmd: z
20851:
20852: * src/: classes/classes.C, main/compile.C, main/compile.y,
20853: main/execute.C: operators are not in root class again
20854:
20855: 2001-05-24 parser
20856:
20857: * src/targets/cgi/parser3.dsp: project file
20858:
20859: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
20860: ^log ^exp
20861:
20862: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
20863: conversions in @exception[params]
20864:
20865: * src/main/pa_request.C: // no _ conversions in @exception[params]
20866:
20867: 2001-05-23 parser
20868:
20869: * src/main/pa_string.C: string cmp bug
20870:
20871: * src/classes/: mail.C, op.C: rem max 1000
20872:
20873: * src/: classes/op.C, main/compile.y: allow one empty line before
20874: LS_DEF_NAME
20875:
20876: 2001-05-22 parser
20877:
20878: * src/classes/op.C: if params code-required
20879:
20880: 2001-05-21 parser
20881:
20882: * src/types/pa_vstring.C: eoleof
20883:
20884: * src/classes/Makefile.am: .AM
20885:
20886: * src/classes/nothing.C: resultless ^sql moved to nothing:
20887:
20888: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
20889:
20890: * src/: classes/double.C, classes/nothing.C, classes/string.C,
20891: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
20892: types/pa_vunknown.h, classes/hash.C, main/compile.y,
20893: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
20894: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
20895: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
20896: 'nothing'
20897:
20898: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
20899: vstring::set_string
20900:
20901: * src/classes/: double.C, int.C, string.C: int,double;sql
20902:
20903: * src/: classes/hash.C, classes/int.C, classes/string.C,
20904: classes/table.C, include/pa_string.h, main/pa_string.C,
20905: types/pa_vstring.C, types/pa_vstring.h: started int:sql
20906:
20907: * src/: classes/classes.C, classes/hash.C, classes/op.C,
20908: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
20909: hash:sql moved to main trunc. operators.txt updated
20910:
20911: * src/classes/: hash.C, op.C, table.C: hash:sql
20912:
20913: * src/classes/op.C: z
20914:
20915: * src/: main/compile.C, classes/classes.C: 1
20916:
20917: * src/: classes/classes.C, main/compile.C, main/compile.y,
20918: main/execute.C: 0
20919:
20920: * src/main/execute.C: z
20921:
20922: * src/targets/cgi/parser3.C: z
20923:
20924: * src/targets/cgi/parser3.C: argv can be just "parser3". made
20925: site_auto_path "." in that case
20926:
20927: * src/targets/cgi/: parser3.C: z
20928:
20929: * src/main/pa_request.C: .am
20930:
20931: * src/: main/pa_request.C, targets/cgi/parser3.C:
20932: pcre_tables=pcre_default_tables;
20933:
20934: 2001-05-19 parser
20935:
20936: * src/main/pa_string.C: z
20937:
20938: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
20939: introducing String::cstr_bufsize, returns just size+1 for as_is
20940: target.
20941:
20942: * src/: main/untaint.C, targets/cgi/pa_pool.C,
20943: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
20944: used, 4* mem wasted
20945:
20946: * src/classes/string.C: root context in match replace body now
20947: unchanged
20948:
20949: * src/types/pa_value.h: parameter # 1 based
20950:
20951: * src/main/pa_common.C: common: actual filename '%s'
20952:
20953: * src/classes/string.C: z
20954:
20955: * src/classes/Makefile.am: classes/.am
20956:
20957: * src/classes/: Makefile.am: classes/.am
20958:
20959: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
20960: targets/cgi/pa_pool.C: classes/.am
20961:
20962: 2001-05-18 parser
20963:
1.116 moko 20964: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
20965: pa_threads.C ins
1.95 moko 20966:
20967: * src/targets/cgi/Makefile.am: .am pa_threads.C added
20968:
20969: 2001-05-17 parser
20970:
20971: * src/: classes/string.C, include/pa_config_fixed.h,
20972: include/pa_config_includes.h, main/compile.y,
20973: main/compile_tools.h, main/execute.C, main/pa_array.C,
20974: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
20975: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
20976: types/pa_vform.C: #include "pa_config_includes.h" removed from
20977: most .C
20978:
20979: * src/doc/html2chm.cmd: z
20980:
20981: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
20982: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
20983:
20984: * src/main/pa_sql_driver_manager.C: moved expiration to
20985: get_connection_from_cache
20986:
20987: * src/main/pa_sql_driver_manager.C: cache expiration bf
20988:
20989: * src/: classes/classes.h, include/pa_sql_connection.h,
20990: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
20991: cache expiration[use SQL_Driver::disconnect]
20992:
20993: * src/main/pa_table.C: table.locate current restored on "not found"
20994:
20995: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
20996: line no
20997:
20998: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
20999: ANTI_ENDLESS_EXECUTE_RECOURSION
21000:
21001: * src/: classes/op.C, include/pa_sql_connection.h,
21002: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
21003: sql/pa_sql_driver.h: fixed problem at last: 2connections own
21004: 1driver and set_services fight for driver::fservices. before fix
21005:
21006: * src/: classes/op.C, include/pa_config_fixed.h,
21007: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21008: main/pa_sql_driver_manager.C: found problem at last: 2connections
21009: own 1driver and set_services fight for driver::fservices. before
21010: fix
21011:
21012: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21013: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21014: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
21015: pa_threads.C
21016:
21017: * src/include/pa_threads.h: removed targets/parser
21018:
21019: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
21020: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
21021: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
21022: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
21023: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
21024: headers
21025:
21026: * src/: classes/image.C, include/pa_sql_driver_manager.h,
21027: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
21028: order prevented sqlmanager to see MULTYTHREAD define
21029:
21030: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21031: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
21032: put/gets
21033:
21034: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
21035: from hash.h
21036:
21037: * src/: classes/op.C, include/pa_sql_connection.h,
21038: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
21039: from cache ->set_services(&services);
21040:
21041: 2001-05-16 parser
21042:
21043: * src/targets/cgi/parser3.C: z
21044:
21045: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
21046: debug, #ifdefed some. would debug later, on more precise sample
21047: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
21048: $name.$tail[$tail!] $name.$tail } ok3
21049:
21050: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
21051: removed array debug. before vstring rebasing
21052:
21053: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
21054: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
21055: array debugged; adjusted
21056:
21057: * src/main/: pa_sql_driver_manager.C, pa_string.C:
21058: SQL_Driver_manager line no for connect/charset errors
21059:
21060: 2001-05-15 parser
21061:
21062: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
21063: main/pa_string.C: string+array made linear grows
21064:
21065: * src/: include/pa_string.h, main/pa_string.C,
21066: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
21067: grow lineary, not exponentialy
21068:
21069: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
21070: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
21071: with fullchunk cmps
21072:
21073: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
21074: 70041= 81
21075:
21076: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
21077: targets/cgi/parser3.C: detected huge mem allocation: size/times
21078: malloc 27809390/368771, calloc 3232/83. would test now
21079:
21080: * src/: classes/random.C, main/compile.y, main/execute.C,
21081: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
21082: numbered params had wrong name - for instance: bad error message
21083: in ^for[] bad body type. fixed
21084:
21085: 2001-05-14 parser
21086:
21087: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
21088: main/untaint.C: ^string.upper|lower[]
21089:
21090: 2001-05-11 parser
21091:
21092: * src/: classes/double.C, classes/image.C, classes/op.C,
21093: classes/string.C, classes/table.C, classes/unknown.C,
21094: main/execute.C, types/pa_value.h, types/pa_vbool.h,
21095: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
21096: types/pa_vunknown.h: op: MAX_LOOPS as_int
21097:
21098: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
21099: .dsp for win32tools
21100:
21101: 2001-05-11 paf
21102:
21103: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
21104: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
21105: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
21106: targets/isapi/kill.pl: moved win32 helpers to /win32tools
21107:
21108: 2001-05-10 paf
21109:
21110: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
21111: for C++, that's all
21112:
1.116 moko 21113: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
21114: pa_config_includes.h: inline wonders
1.95 moko 21115:
21116: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
21117: doc/doxygen.cmd: hash.C added
21118:
21119: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
21120:
21121: * src/main/compile.y: @end grammar: allowed zero strings in control
21122: menthod
21123:
21124: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
21125: pa_vstateless_object.h: changed priority: field before method
21126: lookup in vclass & vobject
21127:
21128: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
21129: grammar: priorities changes [lowerd && prior] vobject: now first
21130: fields, next methods
21131:
21132: 2001-05-08 paf
21133:
21134: * src/main/pa_table.C: table columnname2item on nameless ignored
21135: bark=false. fixed
21136:
21137: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
21138: types/pa_vmethod_frame.h: hash:default works at last!
21139:
21140: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
21141: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
21142: hash:default
21143:
21144: * src/classes/table.C: z
21145:
21146: * src/classes/table.C: table:hash always hash of hash now
21147:
21148: * src/classes/table.C: table:empty return bool now
21149:
21150: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
21151: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21152: types/pa_vtable.h: table:hash
21153:
21154: * src/classes/table.C: table:record have name
21155:
21156: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
21157: returns vunknown
21158:
21159: * src/classes/: double.C, int.C, op.C, string.C:
21160: int,double,string:int[] double[] string:length[] results now have
21161: hames
21162:
21163: * src/: classes/op.C, classes/table.C, main/main.dsp,
21164: types/pa_vtable.h: removed table:find. table:locate and op:eval
21165: now return bool
21166:
21167: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
21168: in method checkparams again. fixed
21169:
21170: 2001-05-07 paf
21171:
21172: * src/doc/chm.cmd: cmd
21173:
21174: * src/: classes/image.C, classes/mail.C, classes/string.C,
21175: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
21176: types/pa_value.h: method reported errors on wrong pool
21177:
21178: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
21179: now
21180:
21181: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
21182: include/code.h, include/pa_opcode.h, main/compile.C,
21183: main/compile_tools.h, main/execute.C, types/pa_value.h,
21184: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21185: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
21186: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
21187: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21188: types/pa_vmethod_frame.h, types/pa_vobject.h,
21189: types/pa_vrequest.h, types/pa_vresponse.h,
21190: types/pa_vstateless_class.h, types/pa_vstring.h,
21191: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
21192: types/pa_wwrapper.h: pa_code.h
21193:
21194: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
21195:
21196: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
21197: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
21198: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
21199: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
21200: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
21201: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
21202: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
21203: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
21204: types/pa_vtable.h: dox, split by not clean parts also
21205:
21206: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21207: types/pa_vtable.h: table: fields, then methods. so to enable
21208: 'dir' fields & co. more
21209:
21210: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
21211: so to enable 'dir' fields & co.
21212:
21213: * src/main/compile.y: grammar: @end
21214:
21215: 2001-05-04 paf
21216:
21217: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
21218: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
21219:
21220: * src/: classes/classes.h, classes/double.C, classes/file.C,
21221: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
21222: classes/op.C, classes/random.C, classes/response.C,
21223: classes/string.C, classes/table.C, classes/unknown.C,
21224: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
21225: method dox
21226:
21227: 2001-05-03 paf
21228:
21229: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
21230: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
21231: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
21232: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
21233: doc/string.dox, doc/targets.dox, doc/value.dox,
21234: main/pa_request.C: dox splitted .dox files and added some
21235:
21236: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
21237:
21238: 2001-05-02 paf
21239:
21240: * src/classes/: image.C, table.C: table:dir result are not tainted
21241: by file_name language now
21242:
21243: 2001-04-28 paf
21244:
21245: * src/classes/classes.inc: removed classes.inc
21246:
21247: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
21248: from .am
21249:
21250: * src/classes/classes.awk: skipped classes in .awk
21251:
21252: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
21253: classes/classes.inc, classes/double.C, classes/file.C,
21254: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
21255: classes/string.C, classes/table.C, classes/unknown.C,
21256: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
21257: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
21258: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
21259: pa_methoded back to classes/classes.h
21260:
21261: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
21262:
21263: * src/: classes/Makefile.am, classes/classes.awk,
21264: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
21265: classes/ls.exe, main/bison.exe: classes.inc autogenerator
21266:
21267: * src/: classes/classes.C, classes/classes.h, classes/double.C,
21268: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
21269: classes/response.C, classes/string.C, classes/table.C,
21270: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
21271: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
21272: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
21273: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
21274: include|main/pa_methoded
21275:
21276: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
21277: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
21278:
21279: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
21280: moved some configured data to request::classes_conf moved some
21281: string crations from globals to M... [works]
21282:
21283: * src/: classes/form.C, classes/mail.C, classes/op.C,
21284: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
21285: main/pa_request.C: moved some configured data to
21286: request::classes_conf moved some string crations from globals to
21287: M...
21288:
21289: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
21290: about to move configured data to special request hash
21291:
21292: * src/: classes/classes.C, classes/classes.h, classes/file.C,
21293: classes/form.C, classes/mail.C, include/pa_request.h,
21294: main/pa_request.C: configure started
21295:
21296: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
21297: 2. todo: methoded-configure
21298:
21299: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
21300: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21301: classes/_random.h, classes/_response.h, classes/_string.h,
21302: classes/_table.h, classes/_unknown.h, classes/classes.inc,
21303: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
21304: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21305: classes/random.C, classes/response.C, classes/string.C,
21306: classes/table.C, classes/unknown.C, include/pa_globals.h,
21307: include/pa_request.h, main/compile.y, main/execute.C,
21308: main/main.dsp, main/pa_globals.C, main/pa_request.C,
21309: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21310: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
21311: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
21312: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
21313: types/pa_vrequest.h, types/pa_vresponse.h,
21314: types/pa_vstateless_class.h, types/pa_vstring.h,
21315: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
21316: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
21317: methoded-configure
21318:
21319: * src/: classes/file.C, classes/table.C, main/compile.y,
21320: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
21321: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
21322: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
21323:
21324: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
21325: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
21326: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21327: classes/random.C, classes/response.C, classes/string.C,
21328: classes/table.C, classes/unknown.C, include/pa_request.h,
21329: main/compile.y, main/execute.C, main/pa_globals.C,
21330: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
21331: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
21332: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
21333: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
21334: beautifying just compiled. todo: debug, configure
21335:
21336: 2001-04-27 paf
21337:
21338: * src/: classes/file.C, classes/image.C, classes/table.C,
21339: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
21340: beautifying -99
21341:
21342: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
21343: classes/_response.h, classes/_unknown.h, classes/classes.C,
21344: classes/classes.h, classes/double.C, classes/file.C,
21345: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
21346: classes/op.C, classes/random.C, classes/response.C,
21347: classes/string.C, include/pa_globals.h, main/main.dsp,
21348: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
21349: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
21350: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
21351: types/pa_vunknown.h: beautifying -100
21352:
21353: * src/main/compile.y: serge@ found @CLASS bug. fixed
21354:
21355: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
21356: classes/_op.h, classes/_random.h, classes/_table.h,
21357: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
21358: classes/op.C, classes/random.C, classes/response.C,
21359: classes/string.C, classes/table.C, classes/unknown.C,
21360: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
21361: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
21362: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
21363: beautifying
21364:
21365: 2001-04-26 paf
21366:
21367: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
21368:
21369: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
21370: documentation ++
21371:
21372: * src/: classes/_exec.h, doc/doxygen.cfg,
21373: include/pa_config_fixed.h, include/pa_config_includes.h,
21374: targets/cgi/pa_pool.C: code documentation ++
21375:
21376: * src/: classes/_image.h, classes/op.C, classes/random.C,
21377: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21378: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
21379: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
21380: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21381: types/pa_vmethod_frame.h, types/pa_vobject.h,
21382: types/pa_vrequest.C, types/pa_vrequest.h,
21383: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
21384: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
21385: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
21386: code documentation ++
21387:
21388: * src/: classes/image.C, classes/mail.C, classes/string.C,
21389: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
21390: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
21391: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
21392: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21393: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
21394: types/pa_vobject.h, types/pa_vstateless_class.h,
21395: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
21396:
21397: * src/main/: pa_request.C, pa_string.C: z
21398:
21399: * src/: include/pa_common.h, include/pa_types.h,
21400: main/pa_sql_driver_manager.C: module [and, guess, isapi]
21401: connection caching fixed. request-pooled-url were stored into
21402: global connectioncache
21403:
21404: 2001-04-25 paf
21405:
21406: * src/: doc/doxygen.cfg, doc/doxygen.txt,
21407: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
21408:
21409: * src/: include/code.h, include/pa_common.h, main/compile.y,
21410: main/execute.C, main/pa_common.C: -d
21411:
21412: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
21413: illegal call check a bit improved, but still under iis no mapping
21414: of dir with parser allowed!
21415:
21416: 2001-04-24 paf
21417:
21418: * src/targets/Makefile.am: apache module lib .am
21419:
21420: * src/main/pa_exec.C: windows32 buildCommand
21421:
21422: 2001-04-23 paf
21423:
21424: * src/targets/cgi/Makefile.am: win32 conditional
21425:
21426: * src/targets/cgi/Makefile.am: win32 conditional
21427:
21428: * src/targets/cgi/Makefile.am: liblink
21429:
21430: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
21431: vfile fields return type
21432:
21433: * src/types/pa_vfile.h: vfile fields return type
21434:
21435: * src/include/pa_config_auto.h.in: .h.in
21436:
21437: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
21438: types/Makefile: makefiles removed
21439:
21440: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
21441: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
21442:
21443: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
21444: [tested: i & g ]
21445:
21446: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
21447: @test noticed series in isapi, check how initialize_random_class
21448: is called! [must be called only once]
21449:
21450: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
21451: would not be 'unknown column'
21452:
21453: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
21454: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
21455:
21456: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
21457: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
21458: [now doesnt]
21459:
21460: * src/targets/cgi/parser3.C: cgi cmdline ver
21461:
21462: * src/targets/cgi/parser3.C: cgi /// @test disable
21463: /cgi-bin/parser3/auto.p
21464:
21465: * src/main/untaint.C: untaint without charset
21466:
21467: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
21468: main/pa_common.C: common: file_write /// @test mkdirs
21469: file_delete rmdirs
21470:
21471: * src/main/untaint.C: mail header only once to =?
21472:
21473: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
21474: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
21475: main/untaint.C: untaint - @test optimize whitespaces for
21476: all but 'html'
21477:
21478: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
21479: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
21480: main/untaint.C: untaint - @test mail-header
21481:
21482: 2001-04-20 paf
21483:
21484: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21485: include/pa_request.h, include/pa_string.h, main/compile.y,
21486: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
21487: targets/cgi/parser3.C: $MAIN:LOCALE
21488:
21489: * src/main/untaint.C: z
21490:
21491: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
21492:
21493: 2001-04-19 paf
21494:
21495: * src/main/compile_tools.h: $a$b bugfix
21496:
21497: * src/targets/cgi/parser3.C: z
21498:
21499: * src/classes/file.C: z
21500:
21501: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
21502: done: header to $fields. waits for header '\' tricks
21503:
21504: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
21505: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
21506: changed urlencode here and in untaint.C to HTTP standard's " and
21507: \" mech
21508:
21509: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
21510: http://alx/~paf/ doesnt load /auto.p
21511:
21512: 2001-04-18 paf
21513:
21514: * src/main/pa_request.C: 1
21515:
21516: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
21517: linux @alx
21518:
21519: 2001-04-17 paf
21520:
21521: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
21522: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
21523: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
21524: enabled
21525:
21526: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
21527: classes/_exec.h, classes/_file.h, classes/_form.h,
21528: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21529: classes/_random.h, classes/_response.h, classes/_string.h,
21530: classes/_table.h, classes/_unknown.h, classes/file.C,
21531: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
21532: include/pa_config_fixed.h, include/pa_config_includes.h,
21533: include/pa_hash.h, include/pa_sql_driver_manager.h,
21534: include/pa_version.h, main/Makefile.am, main/compile.y,
21535: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
21536: main/pa_sql_driver_manager.C, sql/Makefile.am,
21537: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
21538: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
21539: types/pa_vform.C, types/pa_vimage.h: exec @jav
21540:
21541: * src/: include/pa_sql_driver_manager.h,
21542: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21543: types/pa_vimage.h: sql driver interface now has initialize(client
21544: .so)
21545:
21546: 2001-04-16 paf
21547:
21548: * src/Makefile.am: compile2 cygwin
21549:
21550: * src/: include/pa_config_includes.h, main/pa_exec.C,
21551: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
21552:
21553: * src/targets/cgi/Makefile.am: compile0 jav
21554:
21555: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
21556: classes/_exec.h, classes/_file.h, classes/_form.h,
21557: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21558: classes/_random.h, classes/_response.h, classes/_string.h,
21559: classes/_table.h, classes/_unknown.h, classes/image.C,
21560: classes/mail.C, classes/op.C, classes/random.C,
21561: include/pa_config_fixed.h, include/pa_config_includes.h,
21562: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
21563: main/compile.y, main/pa_common.C, main/pa_exec.C,
21564: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
21565: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
21566: compile-1
21567:
21568: 2001-04-15 paf
21569:
21570: * src/classes/op.C: z
21571:
21572: * src/classes/table.C: table:empty +=process
21573:
21574: * src/types/pa_value.h: MethodParams !junction
21575:
21576: * src/: classes/_string.h, classes/double.C, classes/file.C,
21577: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21578: classes/random.C, classes/response.C, classes/string.C,
21579: classes/table.C, classes/unknown.C, main/pa_request.C:
21580: MethodParams everywhere
21581:
21582: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
21583: types/pa_vmethod_frame.h: MethodParams in op.C
21584:
21585: 2001-04-12 paf
21586:
21587: * src/: classes/image.C, types/pa_vimage.h: image:font :text
21588:
21589: * src/: classes/_unknown.h, classes/unknown.C,
21590: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
21591: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
21592:
21593: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
21594:
21595: * src/classes/image.C: image:gif now does not have params
21596:
21597: * src/classes/image.C:
21598: image:line/fill/rectangle/bar/replace/polygon/polybar
21599:
21600: * src/: classes/image.C, classes/op.C, main/execute.C,
21601: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
21602: for var now written not to r.wcontext, but to r.root cleared
21603: "entered_object" state
21604:
21605: 2001-04-11 paf
21606:
21607: * src/classes/image.C: image:create image:load
21608:
21609: * src/: classes/image.C, main/main.dsp: gd with mem write + image
21610: just compiled
21611:
21612: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
21613: todo: gif without file
21614:
21615: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
21616: started porting to Pooled descendant
21617:
21618: * src/: classes/image.C, main/execute.C, main/main.dsp,
21619: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
21620: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
21621: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
21622:
21623: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
21624: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
21625: end. switching to python imaging lib
21626:
21627: * src/main/main.dsp: gd+smtp made separate libs
21628:
21629: * src/: include/pa_globals.h, include/pa_string.h,
21630: main/pa_common.C, main/pa_request.C, main/untaint.C,
21631: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
21632: length
21633:
21634: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
21635: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
21636: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
21637: UL_FILE_NAME of posted file name
21638:
21639: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
21640: post [broke when moved post read to core]
21641:
21642: 2001-04-10 paf
21643:
21644: * src/classes/image.C: image:html done
21645:
21646: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
21647:
21648: * src/classes/image.C: z
21649:
21650: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
21651: forgotten!
21652:
21653: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
21654: main/pa_request.C, main/pa_string.C, main/untaint.C,
21655: types/pa_vimage.h: image:measure -90
21656:
21657: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
21658: classes/_int.h, classes/_mail.h, classes/_op.h,
21659: classes/_random.h, classes/_response.h, classes/_string.h,
21660: classes/_table.h, classes/file.C, classes/mail.C,
21661: include/pa_common.h, include/pa_globals.h, main/execute.C,
21662: main/main.dsp, main/pa_common.C, main/pa_globals.C,
21663: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
21664: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
21665: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
21666: compiled
21667:
21668: * src/classes/mail.C: minor bug with unclear from/to
21669:
21670: * src/classes/mail.C: sendmail unix skipping defaults
21671:
21672: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
21673: sendmail unix added defaults
21674:
21675: * src/classes/mail.C: unix sendmail compiled. todo:testing
21676:
21677: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
21678:
21679: 2001-04-09 paf
21680:
21681: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
21682: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
21683: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21684: targets/isapi/parser3isapi.dsp: all targets exec
21685:
21686: * src/: include/pa_sapi.h, include/pa_string.h,
21687: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21688: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
21689: args in apache:util.script
21690:
21691: * src/include/pa_string.h: written but not tested exec with env for
21692: unix
21693:
21694: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
21695: targets/cgi/parser3.C: exec win32 env
21696:
21697: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
21698: 0
21699:
21700: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
21701: main/execute.C, main/main.dsp, main/pa_globals.C,
21702: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
21703: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
21704:
21705: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
21706: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
21707:
21708: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
21709: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
21710:
21711: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
21712: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
21713: main/pa_common.C, main/pa_request.C, main/pa_string.C,
21714: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21715: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
21716: exec class just compiled. moved post read to request core
21717:
21718: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
21719: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
21720: main/pa_globals.C, targets/cgi/parser3.C,
21721: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
21722: are already read by vform
21723:
21724: 2001-04-08 paf
21725:
21726: * src/: classes/file.C, classes/mail.C, classes/string.C,
21727: include/pa_request.h, include/pa_string.h, main/pa_request.C:
21728: uuencode. string<<
21729:
21730: 2001-04-07 paf
21731:
21732: * src/classes/mail.C: z
21733:
21734: * src/classes/mail.C: z
21735:
21736: * src/classes/mail.C: ^mail[$attach
21737:
21738: * src/classes/mail.C: ^attach dead end
21739:
21740: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
21741: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21742: targets/isapi/parser3isapi.C: mail:send 1
21743:
21744: * src/: classes/mail.C, main/pa_request.C: z
21745:
21746: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
21747: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
21748: compiled
21749:
21750: * src/classes/mail.C: +=
21751:
21752: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
21753: prepared
21754:
21755: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
21756: include/pa_globals.h, include/pa_string.h, main/main.dsp,
21757: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
21758: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
21759:
21760: 2001-04-06 paf
21761:
21762: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
21763: main/pa_string.C: table:dir 1
21764:
21765: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
21766: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
21767:
21768: * src/: classes/_op.h, classes/_root.h, classes/op.C,
21769: classes/root.C, include/pa_globals.h, include/pa_request.h,
21770: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
21771: main/pa_request.C: renamed 'root' to 'op'
21772:
21773: * src/classes/: _op.h, op.C: renamed from 'root'
21774:
21775: * src/types/pa_valiased.C: another root inherititance skipped
21776:
21777: * src/main/: compile.C, compile.y, execute.C: operators are now not
21778: root methods of parent class. just 'ROOT' class
21779:
21780: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
21781: @office
21782:
21783: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
21784:
21785: 2001-04-05 paf
21786:
21787: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
21788: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
21789: constructor flag dropped at get_method_frame and remembered into
21790: method_frame
21791:
21792: * src/: classes/file.C, classes/root.C, classes/string.C,
21793: classes/table.C, main/pa_request.C: junction to code&expression
21794: in errors
21795:
21796: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
21797: main/pa_string.C, targets/isapi/parser3isapi.dsp:
21798: $LOCALE:ctype[Russian_Russia.1251]
21799:
21800: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
21801: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
21802: main/pa_table.C: hash now not thread-safe.
21803:
21804: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
21805: main/untaint.C: z
21806:
21807: * src/: classes/random.C, classes/root.C, classes/table.C,
21808: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
21809: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
21810: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
21811: types/pa_wcontext.h: sql quote. string untaint UL_SQL
21812:
21813: * src/: classes/table.C, include/pa_sql_connection.h,
21814: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
21815:
21816: * src/classes/table.C: select * from hren error contains statement
21817:
21818: * src/: classes/table.C, include/pa_sql_connection.h,
21819: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
21820: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
21821:
21822: * src/: classes/root.C, include/pa_sql_connection.h,
21823: include/pa_sql_driver.h, main/main.dsp,
21824: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
21825: services for conv memory & error reporting
21826:
21827: 2001-04-04 paf
21828:
21829: * src/doc/doxygen.cfg: z
21830:
21831: * src/include/pa_sql_driver.h: mysql connect
21832:
21833: * src/include/pa_sql_driver.h: mysql info
21834:
21835: * src/: classes/root.C, include/pa_sql_driver.h,
21836: include/pa_sql_driver_manager.h, main/main.dsp,
21837: main/pa_sql_driver_manager.C: more manager&connection&driver
21838:
21839: * src/sql/Makefile.am: forgot to add mysql client
21840:
21841: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
21842: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
21843: [forgot to add libltdl, added]
21844:
21845: * src/: Makefile.am, classes/root.C, classes/string.C,
21846: classes/table.C, include/pa_globals.h, include/pa_hash.h,
21847: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
21848: include/pa_string.h, include/pa_table.h, main/main.dsp,
21849: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
21850: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
21851: -1000 just compiled
21852:
21853: * src/: classes/random.C, classes/root.C, classes/table.C,
21854: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
21855: main/pa_request.C, types/pa_vclass.h: sql frame -10
21856:
21857: 2001-04-03 paf
21858:
21859: * src/types/pa_vform.C: z
21860:
21861: * src/: classes/string.C, types/pa_vform.C: string:match replace
21862: assigned lang
21863:
21864: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
21865: {}[]< empty []
21866:
21867: * src/: classes/file.C, classes/string.C, classes/table.C,
21868: include/pa_string.h, main/pa_common.C, main/pa_string.C,
21869: main/untaint.C: string:match replace 2. string.cstr(forced lang)
21870:
21871: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21872: string:match replace strange matches
21873:
21874: * src/classes/string.C: string:match replace 0
21875:
21876: * src/: classes/string.C, main/pa_string.C: string:match replace
21877: prepared 2
21878:
21879: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21880: string:match replace prepared
21881:
21882: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21883: string:match replace -11
21884:
21885: * src/: classes/string.C, include/pa_globals.h,
21886: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
21887: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
21888:
21889: * src/: classes/string.C, include/pa_globals.h,
21890: include/pa_string.h, main/main.dsp, main/pa_globals.C,
21891: main/pa_string.C: string:match [search] -1 just compiled
21892:
21893: * src/types/pa_vstring.C: z
21894:
21895: * src/: classes/double.C, classes/file.C, classes/form.C,
21896: classes/int.C, classes/response.C, classes/root.C,
21897: classes/string.C, classes/table.C, include/pa_string.h,
21898: main/pa_string.C: string:match -10 [frame]
21899:
21900: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
21901: main/pa_request.C: z
21902:
21903: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
21904: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
21905: todo/tests
21906:
21907: * src/include/pa_common.h: z
21908:
21909: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
21910: main/pa_request.C, targets/cgi/parser3.C,
21911: targets/isapi/parser3isapi.C, types/pa_vfile.C:
21912: content-disposition
21913:
21914: * src/: include/pa_common.h, include/pa_globals.h,
21915: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
21916: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
21917:
21918: * src/: include/pa_common.h, include/pa_request.h,
21919: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
21920: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
21921: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
21922: response:body
21923:
21924: * src/classes/table.C: table:append now uses string::split
21925:
21926: * src/classes/table.C: z
21927:
21928: * src/: classes/file.C, classes/root.C, classes/string.C,
21929: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
21930: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
21931: include/pa_string.h, main/execute.C, main/pa_string.C,
21932: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
21933: string::pos & cmp & piece bugs fixed. string::split new
21934: table:load separated from set table:set implemented with clean \n
21935: \t searches
21936:
21937: 2001-04-02 paf
21938:
21939: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
21940: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
21941: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
21942: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
21943: it in table:set/load
21944:
21945: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
21946: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
21947:
21948: * src/classes/random.C: random:generate 1
21949:
21950: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
21951: main/main.dsp, main/pa_globals.C, main/pa_request.C,
21952: types/pa_value.h: random:generate
21953:
21954: 2001-03-30 paf
21955:
21956: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
21957: todo: table flip and append. string::pos
21958:
21959: * src/: classes/double.C, classes/file.C, classes/int.C,
21960: classes/response.C, classes/root.C, classes/string.C,
21961: classes/table.C, main/compile.y, main/execute.C,
21962: types/pa_value.h, types/pa_vstateless_class.C,
21963: types/pa_vstateless_class.h: static|dynamic|any method
21964: registration
21965:
21966: * src/: classes/file.C, classes/table.C, include/pa_table.h,
21967: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
21968: table:flip
21969:
21970: 2001-03-29 paf
21971:
21972: * src/classes/string.C: string:xsplit forgot that they must result
21973: in 1 row N column [not vice versa]
21974:
21975: * src/classes/string.C: z
21976:
21977: * src/classes/string.C: string: rsplit
21978:
21979: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21980: string: lsplit
21981:
21982: * src/: classes/string.C, include/pa_string.h, main/execute.C,
21983: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
21984: lsplit -1
21985:
21986: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
21987: string: pos
21988:
21989: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21990: string: pos -1
21991:
21992: * src/: classes/string.C, classes/table.C, include/pa_string.h,
21993: main/compile.y, main/pa_request.C, main/pa_string.C,
21994: main/untaint.C: string: left right mid
21995:
21996: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
21997: main/compile_tools.h, main/main.dsp, types/pa_value.h,
21998: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
21999: and [;] are different now.
22000:
22001: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22002: main/untaint.C: pool.request undone
22003:
22004: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22005: main/untaint.C: pool.request
22006:
22007: 2001-03-28 paf
22008:
22009: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22010: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22011: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
22012: $request:browser [.type .version]; unknown.get_double now = 0.
22013:
22014: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22015: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
22016: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
22017: types/pa_vform.C: file:load autodetection of mime-type by
22018: user-file-name
22019:
22020: * src/: classes/file.C, main/execute.C, main/pa_common.C,
22021: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
22022: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
22023:
22024: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22025: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
22026: write. must be self.set
22027:
22028: * src/: classes/file.C, classes/root.C, classes/table.C,
22029: include/pa_table.h, main/pa_table.C: table:locate1, file:test
22030:
22031: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
22032: include/pa_table.h, main/pa_array.C, main/pa_table.C,
22033: types/pa_vtable.h: table:locate just compiled
22034:
22035: 2001-03-27 paf
22036:
22037: * src/main/: execute.C, pa_common.C: fixed r/w context of
22038: code-params2, fixed ntfs hardlink slow dir update
22039:
22040: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
22041: types/pa_wcontext.h: fixed r/w context of code-params
22042:
22043: * src/: classes/table.C, main/execute.C: about to change junction
22044: rcontext!!
22045:
22046: * src/: classes/double.C, classes/int.C, classes/root.C,
22047: classes/string.C, classes/table.C, main/compile_tools.C,
22048: main/execute.C, main/pa_request.C, main/untaint.C,
22049: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
22050: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22051: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
22052: types/pa_vunknown.h: sort 0
22053:
22054: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
22055: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
22056: renamed to are_static_calls_disabled
22057:
22058: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
22059: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
22060: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22061: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
22062:
22063: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
22064:
22065: * src/: classes/table.C, include/pa_common.h, main/compile.y:
22066: started table:sort fixed minor bug in #...^{
22067:
22068: * src/: classes/table.C, include/pa_common.h, main/compile.y,
22069: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
22070: decided to have as it were. stepped back. grammar: added 'in'
22071: 'is' 'lt'&co follow-space check
22072:
22073: 2001-03-26 paf
22074:
22075: * src/: classes/file.C, classes/root.C, classes/table.C,
22076: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
22077: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22078: main/pa_table.C: moved ::save to pa_table. disabled @auto
22079: invocation in ^process
22080:
22081: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
22082:
22083: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
22084: main/pa_array.C: table:record
22085:
22086: * src/: main/untaint.C, targets/cgi/parser3.C,
22087: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22088: targets/isapi/pool_storage.h, types/pa_valiased.h,
22089: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
22090: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
22091: types/pa_vtable.h: z
22092:
22093: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
22094: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
22095: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
22096: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
22097: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
22098: method realisations on 'self' validity - they now can simply
22099: assume that 'self' is V{Proper} .
22100:
22101: 2001-03-25 paf
22102:
22103: * src/main/untaint.C: z
22104:
22105: * src/main/: pa_request.C, untaint.C: moved default typo-table to
22106: lowlevel - it initialization could be skipped if failed in @auto.
22107: so that exception report would use some table
22108:
22109: * src/main/pa_request.C: table empty lines ignored. system-default
22110: content type assigned in output:result [can fail in main:auto and
22111: skipped normal defaults extraction]
22112:
22113: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
22114: bug
22115:
22116: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
22117: processing to table [except preliminary \r\n \r \n replacements
22118: to "\n"]
22119:
22120: * src/: classes/table.C, main/untaint.C: html-typo - decided to
22121: move all the processing to table
22122:
22123: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
22124: main/pa_table.C, main/untaint.C: returned table originating.
22125: useful for reporting typo table problems origin. think would be
22126: useful somewhere else
22127:
22128: * src/main/untaint.C: typo \r \r\n \n properly handled
22129:
22130: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
22131: include/pa_table.h, main/compile.y, main/compile_tools.C,
22132: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
22133: main/pa_string.C, main/pa_table.C, main/untaint.C,
22134: types/pa_vcookie.h: typo & typo-default
22135:
22136: 2001-03-24 paf
22137:
22138: * src/main/pa_common.C: z
22139:
22140: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
22141: targets/cgi/parser3.C: html-typo 2
22142:
22143: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
22144: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
22145: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
22146: main/execute.C, main/pa_array.C, main/pa_globals.C,
22147: main/pa_request.C, main/pa_string.C, main/untaint.C,
22148: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22149: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
22150: noticed double default content-type prob. run cgi.cmd tomorrow
22151: first html-typo sample. detected << problem: they become ltlt too
22152: fast
22153:
22154: * src/main/compile.y: z
22155:
22156: * src/main/: compile.y, compile_tools.h: #comment
22157:
22158: * src/: classes/file.C, classes/root.C, classes/table.C,
22159: include/pa_common.h, include/pa_request.h, main/compile.y,
22160: main/pa_common.C, main/pa_request.C, main/pa_string.C,
22161: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
22162: stringified
22163:
22164: * src/types/pa_valiased.C: decided to String-ify file_read
22165:
22166: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
22167: isapi/parser3isapi.dsp: cgi: sapi::log
22168:
22169: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
22170: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
22171: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
22172: error log experiments failed - cgi under iis got no access to
22173: log. registereventsource simply failed with 5(illegal call) code,
22174: while worked OK as standalone executable. isapi: used
22175: HSE_APPEND_LOG_PARAMETER feature
22176:
22177: * src/: include/pa_common.h, include/pa_globals.h,
22178: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22179: targets/isapi/parser3isapi.C: fixed default content-type
22180: allocation storage
22181:
22182: * src/: include/pa_globals.h, include/pa_request.h,
22183: main/pa_globals.C, main/pa_request.C: z
22184:
22185: * src/: include/pa_array.h, include/pa_hash.h,
22186: include/pa_request.h, main/compile.y, main/pa_array.C,
22187: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22188: types/pa_vcookie.C: cyclic uses ignored. defaulted default
22189: content-type
22190:
22191: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
22192: sanity
22193:
22194: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
22195: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
22196: away freeze mech. no danger now for you can't do
22197: ^request:process[@new-method[] body] trick anymore. still
22198: remains $some_instance.process[@new-method[] possibility] but
22199: would leave it as a feature. see index for sample
22200:
22201: * src/: include/pa_common.h, main/pa_common.C,
22202: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
22203: monkey every target
22204:
22205: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22206: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
22207: types/pa_vform.C, types/pa_vform.h: auto.p monkey
22208:
22209: 2001-03-23 paf
22210:
22211: * src/: include/pa_pool.h, main/pa_request.C,
22212: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
22213: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22214: targets/isapi/pool_storage.h: isapi: dumb pool storage
22215:
22216: * src/targets/isapi/pa_pool.C: decided to continue with extension
22217:
22218: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
22219: it would be better to rewrite as filter then to deal with pool
22220:
22221: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
22222: now like in cgi, not from APPL_PHYSICAL_PATH
22223:
22224: * src/: classes/root.C, classes/table.C, include/pa_common.h,
22225: include/pa_config_fixed.h, include/pa_config_includes.h,
22226: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
22227: include/pa_version.h, main/compile.y, main/execute.C,
22228: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
22229: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22230: main/untaint.C, targets/cgi/parser3.C,
22231: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
22232: cgi: reinvent document_root and request_uri under iis. autoconf
22233: updated. introducing ap_config_includes
22234:
22235: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
22236:
22237: * src/targets/cgi/parser3.C: cgi: only one pool now
22238:
22239: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
22240: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22241: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
22242: types/pa_venv.h, types/pa_vform.C: sapi made object
22243:
22244: * src/: include/pa_globals.h, main/pa_request.C,
22245: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22246: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
22247: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
22248:
22249: * src/: main/pa_request.C, targets/cgi/parser3.C,
22250: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
22251: isapi minor env beauty
22252:
22253: * src/: main/pa_request.C, targets/cgi/parser3.C,
22254: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
22255: isapi document_root 0
22256:
22257: 2001-03-22 paf
22258:
22259: * src/targets/isapi/parser3isapi.C: isapi keep-alive
22260:
22261: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
22262: isapi/parser3isapi.C: z
22263:
22264: * src/: include/pa_pool.h, main/pa_request.C,
22265: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
22266:
22267: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
22268: kill.pl: isapi added utils
22269:
22270: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
22271: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22272: types/pa_vform.C: isapi 0
22273:
22274: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
22275: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22276: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
22277: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
22278: started isapi
22279:
22280: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
22281: some comments
22282:
22283: * src/: include/pa_globals.h, include/pa_request.h,
22284: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
22285: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
22286: parser_root_auto_path parser_site_auto_path
22287:
22288: * src/types/pa_vcookie.C: cookie attr decoded
22289:
22290: 2001-03-21 paf
22291:
22292: * src/targets/cgi/parser3.C: z
22293:
22294: * src/include/pa_globals.h: post. todo: config of auto.p path
22295:
22296: * src/: include/pa_globals.h, targets/cgi/parser3.C,
22297: types/pa_venv.h: in cookie & env. todo:post
22298:
22299: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
22300: classes/root.C, classes/table.C, include/pa_array.h,
22301: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
22302: include/pa_request.h, include/pa_string.h, main/Makefile.am,
22303: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
22304: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22305: main/pa_table.C, main/untaint.C, targets/Makefile.am,
22306: targets/cgi/Makefile.am, targets/cgi/parser3.C,
22307: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
22308: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
22309: shifted apache branch on main trunc
22310:
22311: * src/: include/pa_common.h, include/pa_globals.h,
22312: include/pa_pool.h, include/pa_request.h, main/main.dsp,
22313: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
22314: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
22315: starting mod_parser3
22316:
22317: * src/targets/cgi/parser3.C: starting mod_parser3
22318:
22319: 2001-03-20 paf
22320:
22321: * src/: main/pa_common.C, targets/cgi/Makefile.am,
22322: targets/cgi/parser3.C: automake compiled and works. todo:make
22323: win32 ifdefs work and add ifdef unistd
22324:
22325: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
22326: main/Makefile.am, main/pa_common.C, main/pa_request.C,
22327: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
22328: z
22329:
22330: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
22331: main/execute.C, main/pa_common.C, types/Makefile.am: removing
22332: locking
22333:
22334: * src/: classes/Makefile.am, types/Makefile.am: z
22335:
22336: * src/: Makefile.am, classes/file.C, classes/root.C,
22337: classes/table.C, include/pa_array.h, include/pa_request.h,
22338: include/pa_string.h, main/Makefile.am, main/execute.C,
22339: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22340: main/pa_string.C, main/untaint.C, targets/Makefile.am,
22341: targets/cgi/Makefile.am, targets/cgi/parser3.C,
22342: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
22343:
22344: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
22345: main/pa_request.C, types/pa_vfile.h: ^table:save
22346:
22347: * src/: classes/file.C, classes/table.C, include/pa_array.h,
22348: include/pa_common.h, include/pa_request.h, include/pa_string.h,
22349: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
22350: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
22351: types/pa_vform.h: z
22352:
22353: * src/include/pa_string.h: z
22354:
22355: * src/: classes/_request.h, classes/request.C, main/main.dsp,
22356: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
22357: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
22358: :Value
22359:
22360: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
22361: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
22362: :VStateless_object
22363:
22364: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
22365: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
22366: :VStateless_object
22367:
22368: * src/: main/main.dsp, targets/cgi/parser3.dsp,
22369: types/pa_valiased.C, types/pa_vform.h: commented VForm
22370:
22371: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
22372: types/pa_valiased.h, types/pa_value.h,
22373: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
22374: types/pa_vstateless_object.h: moved common get_element part from
22375: stateless object&class into VAliased
22376:
22377: * src/: classes/_env.h, classes/_table.h, classes/env.C,
22378: classes/table.C, main/execute.C, main/main.dsp,
22379: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
22380: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
22381: now :Value
22382:
22383: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
22384: main/execute.C, main/main.dsp, main/pa_globals.C,
22385: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
22386:
22387: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
22388: doxx
22389:
22390: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
22391: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22392: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
22393: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
22394: and ^file:save
22395:
22396: 2001-03-19 paf
22397:
22398: * src/types/pa_vfile.C: z
22399:
22400: * src/: classes/file.C, classes/request.C, classes/table.C,
22401: include/pa_string.h, main/main.dsp, main/pa_pool.C,
22402: main/pa_request.C, main/untaint.C, types/pa_value.h,
22403: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
22404:
22405: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
22406: include/pa_string.h, include/pa_table.h, main/main.dsp,
22407: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
22408: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
22409: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
22410: classes/_file.h, classes/file.C, types/pa_vfile.C,
22411: types/pa_vfile.h: file class just compiled
22412:
22413: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
22414: include/pa_table.h, include/pa_types.h, main/execute.C,
22415: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22416: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
22417: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
22418:
22419: * src/include/pa_pool.h: z
22420:
22421: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
22422: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
22423: Hash::Value to Val so to doxygen would finlly stop confusing
22424: those Value-s
22425:
22426: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
22427: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
22428: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22429: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22430: include/pa_types.h, main/compile.C, main/compile.y,
22431: main/compile_tools.C, main/compile_tools.h, main/execute.C,
22432: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
22433: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
22434: main/pa_request.C, main/pa_string.C, main/pa_table.C,
22435: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
22436:
22437: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
22438: derivates somehow unlinked. don't know why yet
22439:
22440: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
22441: include/pa_string.h, include/pa_threads.h, main/compile.C,
22442: main/compile.y, main/compile_tools.C, main/compile_tools.h,
22443: main/execute.C, main/pa_array.C, main/pa_common.C,
22444: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
22445: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22446: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
22447:
22448: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
22449: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
22450: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
22451: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
22452: types/pa_vrequest.h: doc: detected Value derivates prob
22453:
22454: * src/include/pa_globals.h: z
22455:
22456: * src/: classes/_request.h, classes/request.C, include/code.h,
22457: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
22458: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
22459: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
22460: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
22461: main/execute.C, main/pa_pool.C, main/pa_request.C,
22462: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
22463: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
22464:
22465: 2001-03-18 paf
22466:
22467: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
22468: cookie: allowed access to hash-assigned
22469:
22470: * src/targets/cgi/parser3.C: z
22471:
22472: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
22473: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
22474: include/pa_types.h, main/main.dsp, main/pa_common.C,
22475: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22476: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
22477: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
22478: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
22479: types/pa_vunknown.h: cookie class
22480:
22481: * src/main/pa_request.C: zero length output allowed
22482:
22483: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
22484: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
22485:
22486: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
22487: lang switch
22488:
22489: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
22490: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22491: types/pa_value.h, types/pa_vhash.h:
22492: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
22493:
22494: * src/main/execute.C: z
22495:
22496: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
22497: targets/cgi/parser3.C: taint[uri
22498:
22499: * src/: classes/request.C, classes/response.C, classes/root.C,
22500: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
22501: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
22502: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
22503:
22504: * src/: classes/root.C, classes/string.C, include/pa_string.h,
22505: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22506: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
22507: types/pa_vstateless_class.C: convinient string(pool, char *src,
22508: bool tainted) ctor
22509:
22510: * src/: include/pa_hash.h, include/pa_request.h,
22511: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
22512: main/pa_request.C, main/pa_string.C, main/untaint.C,
22513: targets/cgi/parser3.C: proper @exceptions params tainting
22514:
22515: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
22516: response fields to header
22517:
22518: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
22519: z
22520:
22521: * src/: classes/_response.h, classes/response.C,
22522: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22523: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
22524: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22525: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
22526: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
22527: $response: 0 request::core exception rethrow
22528:
22529: 2001-03-16 paf
22530:
22531: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
22532: types/pa_vrequest.h: native method' class call with less params
22533: then needed error reporting
22534:
22535: * src/: classes/_request.h, classes/request.C,
22536: include/pa_globals.h, include/pa_request.h, main/execute.C,
22537: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22538: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
22539: types/pa_vrequest.h: $request : query :uri
22540:
22541: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
22542: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
22543: types/pa_wcontext.h: $result
22544:
22545: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
22546:
22547: * src/: classes/double.C, include/code.h, main/compile.y,
22548: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
22549: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
22550:
22551: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
22552: main/compile.y, main/execute.C, types/pa_value.h,
22553: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
22554: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
22555: wcontext conflict
22556:
22557: * src/: main/execute.C, types/pa_value.h,
22558: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
22559: $string.field
22560:
22561: 2001-03-15 paf
22562:
22563: * src/main/pa_request.C: news sample
22564:
22565: * src/: main/compile.y, main/execute.C, main/pa_request.C,
22566: targets/cgi/parser3.C, types/pa_vstring.h: @exception
22567:
22568: * src/main/: compile.y, execute.C: z
22569:
22570: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
22571: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
22572: pre pre works
22573:
22574: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22575: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
22576: fillfields just compiled
22577:
22578: 2001-03-14 paf
22579:
22580: * src/: include/pa_request.h, main/pa_request.C,
22581: targets/cgi/parser3.C: z
22582:
22583: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22584: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
22585: types/pa_vstring.h: limits -1
22586:
22587: * src/: include/pa_globals.h, include/pa_request.h,
22588: include/pa_types.h, main/main.dsp, main/pa_globals.C,
22589: main/pa_request.C, targets/cgi/parser3.C,
22590: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
22591: request_info -1
22592:
22593: * src/: include/pa_globals.h, main/pa_globals.C,
22594: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22595: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
22596: vform_fields_fill
22597:
22598: * src/targets/cgi/parser3.C: # if MSVC
22599:
22600: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
22601: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
22602:
22603: * src/targets/cgi/parser3.C: z
22604:
22605: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
22606: include/pa_string.h, include/pa_types.h, main/compile.y,
22607: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
22608: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
22609: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
22610: types/pa_vunknown.h: global handler, exceptions in parser3
22611:
22612: 2001-03-13 paf
22613:
22614: * src/: classes/form.C, main/compile.y, main/core.C,
22615: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
22616: types/pa_vform.h, types/pa_vstateless_class.C,
22617: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
22618: instead
22619:
22620: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
22621: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
22622: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
22623: started cgi target
22624:
22625: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
22626: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
22627: before error show with parser
22628:
22629: * src/: classes/_form.h, classes/form.C, include/core.h,
22630: include/pa_request.h, main/core.C, main/pa_request.C,
22631: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
22632:
22633: * src/targets/cgi/: parser.dsp, parser3.dsp: z
22634:
22635: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
22636: parser3.C: renamed targets/ parser to cgi
22637:
22638: * src/: classes/double.C, classes/env.C, classes/int.C,
22639: classes/root.C, classes/string.C, classes/table.C,
22640: include/pa_request.h, types/pa_vhash.h: z
22641:
22642: * src/: classes/_env.h, classes/env.C, classes/root.C,
22643: include/core.h, include/pa_pool.h, include/pa_request.h,
22644: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
22645: main/pa_common.C, main/pa_request.C, types/pa_value.h,
22646: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
22647: [historical moment :)]
22648:
22649: * src/: include/code.h, include/pa_string.h, main/compile.y,
22650: main/execute.C, main/pa_string.C: 'value is type' expr operator
22651:
22652: * src/types/pa_venv.h: $ENV 1
22653:
22654: * src/main/execute.C: z
22655:
22656: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
22657: future methods of ENV constructor if
22658:
22659: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
22660: class
22661:
22662: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22663: classes/_root.h, classes/_string.h, classes/_table.h,
22664: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
22665: classes/string.C, classes/table.C, include/pa_request.h,
22666: main/compile.C, main/compile_tools.h, main/core.C,
22667: main/execute.C, main/main.dsp, main/pa_request.C,
22668: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
22669: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
22670: types/pa_vobject.h, types/pa_vstateless_class.C,
22671: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
22672: types/pa_wcontext.h: $ENV: re 0, stateless classes
22673:
22674: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22675: classes/_root.h, classes/_string.h, classes/_table.h,
22676: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
22677: classes/string.C, classes/table.C, include/pa_request.h,
22678: main/compile.C, main/compile_tools.h, main/core.C,
22679: main/execute.C, main/main.dsp, main/pa_request.C,
22680: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
22681: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
22682: types/pa_vobject.h, types/pa_vstateless_class.C,
22683: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
22684: types/pa_wcontext.h: $ENV: re 0, stateless classes
22685:
22686: * src/: include/pa_request.h, main/compile.C, main/execute.C,
22687: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
22688: yesterdays bad decision on execute_static_method
22689:
22690: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
22691:
22692: * src/: classes/double.C, classes/int.C, classes/root.C,
22693: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
22694:
22695: * src/main/pa_request.C: z
22696:
22697: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
22698: include/pa_pool.h: skipped_restructure_exceptions_dead_end
22699:
22700: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
22701: include/pa_pool.h, main/pa_request.C:
22702: restructure_exceptions_dead_end
22703:
22704: * src/: classes/root.C, main/compile.y: ^if required junctions.
22705: allowed ; inside {} to break params
22706:
22707: * src/classes/root.C: ^eval
22708:
22709: * src/: classes/_string.h, classes/double.C, classes/int.C,
22710: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
22711: string ^format
22712:
22713: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
22714: 'bad' but not 'enough'
22715:
22716: * src/: classes/double.C, classes/root.C, classes/table.C,
22717: include/pa_common.h, include/pa_types.h, main/compile.y,
22718: main/pa_common.C, main/pa_request.C, main/untaint.C,
22719: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
22720: types/pa_wwrapper.h: think constructing flag as is is bad
22721:
22722: * src/: classes/double.C, classes/int.C, classes/root.C,
22723: classes/string.C, classes/table.C, main/core.C, main/execute.C,
22724: types/pa_vint.h: ^for
22725:
22726: 2001-03-12 paf
22727:
22728: * src/classes/table.C: table ^empty
22729:
22730: * src/: classes/table.C, include/pa_table.h: table ^menu
22731:
22732: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
22733: ^offset ^line ^count
22734:
22735: * src/classes/root.C: ^round() ^floor() ^ceiling()
22736: ^abs() ^sign()
22737:
22738: * src/classes/: root.C, table.C: ^use
22739:
22740: * src/: classes/root.C, classes/table.C, include/pa_request.h,
22741: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
22742: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
22743: ^while. switched off wcontext.constructing after write(value) or
22744: auto-vhash-constructing
22745:
22746: * src/: classes/root.C, classes/table.C, include/pa_request.h,
22747: main/pa_request.C: fail_if_junction_ helper func
22748:
22749: * src/: classes/root.C, classes/table.C, include/pa_common.h,
22750: include/pa_request.h, main/execute.C, main/main.dsp,
22751: main/pa_common.C, main/pa_request.C: ^process error point by
22752: actual method_name, not source. ^load
22753:
22754: * src/types/pa_vtable.h: table: no, better with string in cells...
22755:
22756: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
22757: classes/_table.h, classes/table.C, main/untaint.C: z
22758:
22759: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
22760: include/pa_table.h, main/core.C, main/execute.C,
22761: main/pa_common.C, main/pa_request.C, main/pa_table.C,
22762: types/pa_value.h: table:set 0
22763:
22764: * src/: classes/root.C, include/core.h, include/pa_array.h,
22765: include/pa_request.h, include/pa_table.h, main/core.C,
22766: main/main.dsp, main/pa_request.C, main/pa_table.C,
22767: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
22768: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
22769: types/pa_vstring.h: freeze, ^table:create[] -1
22770:
22771: * src/: classes/root.C, types/pa_value.h: z
22772:
22773: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
22774: get_method in couple places optimizing them
22775:
22776: * src/classes/root.C: z
22777:
22778: * src/: classes/root.C, types/pa_vclass.h: process temp main
22779: zeroing
22780:
22781: * src/: classes/double.C, classes/int.C, classes/root.C,
22782: classes/string.C, include/pa_common.h, include/pa_request.h,
22783: include/pa_string.h, include/pa_types.h, main/compile.C,
22784: main/compile.y, main/compile_tools.h, main/execute.C,
22785: main/pa_common.C, main/pa_request.C, types/pa_value.h,
22786: types/pa_vmframe.h: ^process. actual names to store param and
22787: check_actual_numbered_params for better place diagnostics
22788:
22789: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
22790: method-junctions bug fixed
22791:
22792: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
22793: pa_vstateless_object.h, pa_vstring.h: stateless_object
22794:
22795: 2001-03-11 paf
22796:
22797: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
22798: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
22799: VDouble VInt base now VObject_base - without fields
22800:
22801: * src/: classes/root.C, include/core.h, main/core.C: z
22802:
22803: * src/: classes/double.C, classes/int.C, classes/root.C,
22804: classes/string.C, include/core.h, include/pa_hash.h,
22805: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
22806: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
22807:
22808: * src/: classes/double.C, classes/int.C, classes/root.C,
22809: include/pa_request.h, main/execute.C: intercept_string
22810:
22811: * src/: classes/double.C, classes/int.C, classes/root.C,
22812: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
22813:
22814: * src/: classes/double.C, classes/int.C, include/pa_request.h:
22815: ^inc-s(expr)
22816:
22817: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22818: classes/_root.h, classes/_string.h, classes/double.C,
22819: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
22820: include/code.h, include/core.h, include/pa_array.h,
22821: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
22822: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22823: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22824: include/pa_types.h, main/compile.C, main/compile.y,
22825: main/compile_tools.C, main/compile_tools.h, main/core.C,
22826: main/execute.C, main/pa_array.C, main/pa_common.C,
22827: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
22828: main/pa_request.C, main/pa_string.C, main/pa_table.C,
22829: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
22830: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
22831: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
22832: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
22833: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
22834: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
22835:
22836: * src/: main/pa_request.C, types/pa_vhash.h: z
22837:
22838: * src/: include/core.h, include/pa_request.h, main/core.C,
22839: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
22840:
22841: * src/: include/pa_valiased.h, include/pa_value.h,
22842: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
22843: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
22844: include/pa_vjunction.h, include/pa_vmframe.h,
22845: include/pa_vobject.h, include/pa_vstring.h,
22846: include/pa_vunknown.h, include/pa_wcontext.h,
22847: include/pa_wwrapper.h, main/compile.y, main/core.C,
22848: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
22849: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
22850: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
22851: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
22852: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
22853: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
22854: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
22855: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
22856: include/
22857:
22858: 2001-03-10 paf
22859:
22860: * src/: include/core.h, include/pa_request.h, main/core.C,
22861: main/pa_request.C: run+auto=run
22862:
22863: * src/: classes/root.C, include/pa_request.h: minor if junction bug
22864:
22865: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22866: classes/_root.h, classes/_string.h, classes/double.C,
22867: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
22868: include/code.h, include/core.h, include/pa_array.h,
22869: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
22870: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22871: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22872: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
22873: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
22874: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
22875: include/pa_vjunction.h, include/pa_vmframe.h,
22876: include/pa_vobject.h, include/pa_vstring.h,
22877: include/pa_vunknown.h, include/pa_wcontext.h,
22878: include/pa_wwrapper.h, main/compile.C, main/compile.y,
22879: main/compile_tools.C, main/compile_tools.h, main/core.C,
22880: main/execute.C, main/pa_array.C, main/pa_cframe.C,
22881: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
22882: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22883: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
22884: main/pa_wcontext.C: sources header
22885:
22886: * src/main/pa_request.C: auto..
22887:
22888: * src/: include/pa_request.h, main/compile.C, main/compile.y,
22889: main/pa_request.C: auto tree0
22890:
22891: * src/: include/core.h, include/pa_request.h, main/compile.y,
22892: main/core.C, main/pa_request.C: names to core.C
22893:
22894: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
22895: include/pa_request.h, main/core.C, main/execute.C,
22896: main/pa_common.C, main/pa_request.C: root auto.p loaded
22897:
22898: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
22899: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
22900: main/compile_tools.C, main/compile_tools.h, main/execute.C:
22901: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
22902:
22903: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22904: @auto[] realised. auto.p scan togo
22905:
22906: * src/: include/pa_request.h, main/execute.C: autocalc
22907: code-junctions result now have names
22908:
22909: * src/: classes/double.C, classes/int.C, classes/root.C,
22910: classes/string.C, include/pa_request.h, include/pa_string.h,
22911: include/pa_wcontext.h, main/compile.y, main/execute.C,
22912: main/pa_string.C, main/pa_wcontext.C: tainting 0
22913:
22914: * src/classes/env.C: env:file/line
22915:
22916: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
22917: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
22918: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
22919: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
22920: main/compile_tools.C, main/compile_tools.h, main/core.C,
22921: main/execute.C, main/main.dsp, main/pa_cframe.C,
22922: main/pa_request.C, main/pa_wcontext.C: const fight finished
22923:
22924: * src/include/pa_vclass.h: const fight to go
22925:
22926: * src/: classes/_env.h, classes/env.C, classes/root.C,
22927: include/pa_request.h, include/pa_vclass.h, main/core.C,
22928: main/main.dsp: env0
22929:
22930: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
22931: classes/_string.h, classes/double.C, classes/int.C,
22932: classes/root.C, classes/string.C, include/pa_request.h,
22933: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
22934: include/pa_wcontext.h, main/core.C, main/main.dsp,
22935: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
22936: main/pa_wcontext.C: ^lang prepare0
22937:
22938: 2001-03-09 paf
22939:
22940: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
22941: construct proper naming
22942:
22943: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
22944: classes/double.C, classes/int.C, classes/root.C,
22945: classes/string.C, include/code.h, include/pa_value.h,
22946: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
22947: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
22948: main/compile.y, main/compile_tools.C, main/core.C,
22949: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
22950: and ^double[]. fixed expr type
22951:
22952: * src/: classes/root.C, include/pa_request.h, main/execute.C:
22953: ^string.length[]
22954:
22955: 2001-03-08 paf
22956:
22957: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
22958:
22959: * src/: include/pa_vclass.h, include/pa_vstring.h,
22960: include/pa_wcontext.h, main/compile.y, main/core.C,
22961: main/execute.C, main/main.dsp: dead end: vstring can't be
22962: derivated from vobject
22963:
22964: * src/: include/pa_vclass.h, include/pa_vhash.h,
22965: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
22966:
22967: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
22968: remained clone conseqs
22969:
22970: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
22971:
22972: * src/main/pa_vclass.C: wow! vclass were out of vcs
22973:
22974: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
22975: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
22976: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
22977: include/pa_vobject.h, include/pa_vstring.h,
22978: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
22979: main/execute.C: withoud cloning. didn't need it actually, params
22980: got passed from out unnamed ewpool
22981:
22982: * src/: include/pa_vdouble.h, include/pa_vhash.h,
22983: include/pa_vjunction.h, include/pa_vobject.h,
22984: include/pa_vunknown.h, main/compile.y: cloning dead end
22985:
22986: * src/: include/pa_bool.h, include/pa_double.h,
22987: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
22988: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
22989: include/pa_vjunction.h, include/pa_vmframe.h,
22990: include/pa_vobject.h, include/pa_vstring.h,
22991: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
22992: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
22993: to give params proper names
22994:
22995: * src/main/pa_wcontext.C: z
22996:
22997: * src/: include/pa_vmframe.h, main/execute.C: added names to
22998: unknown values in get_element and unfilled params. removed wrong
22999: name change in get_element
23000:
23001: * src/main/execute.C: z
23002:
23003: * src/main/execute.C: fixed problems calling operators in
23004: constructors
23005:
23006: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
23007: detected problems calling operators in constructors
23008:
23009: * src/: classes/root.C, include/pa_request.h, main/execute.C:
23010: autocalc def to string
23011:
23012: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
23013: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
23014:
23015: * src/classes/root.C: added root.c
23016:
23017: * src/: include/pa_request.h, include/pa_value.h,
23018: include/pa_vcframe.h, include/pa_vmframe.h,
23019: include/pa_wcontext.h, main/compile.C, main/compile.y,
23020: main/core.C, main/execute.C, main/pa_cframe.C,
23021: main/pa_wcontext.C: 'if' just compiled
23022:
23023: * src/: include/pa_vbool.h, include/pa_vdouble.h,
23024: include/pa_vjunction.h, include/pa_vmframe.h,
23025: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
23026: main/pa_wcontext.C: z
23027:
23028: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
23029: main/core.C, main/execute.C, main/main.dsp: z. detected probs
23030: with parameter names in operator methods
23031:
23032: * src/main/compile.y: minor renamings in .y
23033:
23034: * src/: include/pa_request.h, main/compile.C, main/compile.y,
23035: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
23036: @BASE. changed 'RUN' assignment mech
23037:
23038: * src/main/execute.C: z
23039:
23040: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23041: main/compile_tools.h, main/execute.C: made class: dynamic, not
23042: static. so to enable runtime ^use
23043:
23044: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
23045:
23046: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23047: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
23048:
23049: * src/main/execute.C: root root in code-junction
23050:
23051: 2001-03-07 paf
23052:
23053: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
23054: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
23055:
23056: * src/: include/pa_stack.h, include/pa_value.h,
23057: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
23058: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
23059: fixed rwcontext of {} params up
23060:
23061: * src/main/: compile.y, compile_tools.h: ^func(params)
23062:
23063: * src/main/compile.y: .y priorities syntax shaped up a bit
23064:
23065: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
23066: include/pa_vunknown.h, main/compile.y, main/execute.C,
23067: main/pa_hash.C: expr def in -f
23068:
23069: * src/main/: compile.y, execute.C: expr calls
23070:
23071: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
23072: fixed
23073:
23074: * src/main/compile.y: expr quoted code
23075:
23076: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
23077: support0
23078:
23079: * src/main/compile.y: expr string comparisons 0
23080:
23081: * src/: include/pa_string.h, main/compile.y, main/execute.C,
23082: main/pa_string.C: just compiled lt&co
23083:
23084: * src/main/execute.C: ^var.menu{$field} problem detected. that
23085: $field not a $var.field
23086:
23087: 2001-03-06 paf
23088:
23089: * src/main/compile.y: .y expr visible-shorter
23090:
23091: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
23092: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
23093: logical
23094:
23095: * src/: include/pa_vstring.h, main/compile.y: problems with
23096: skipping whitespace in yylex
23097:
23098: * src/include/pa_vbool.h: forgot this
23099:
23100: * src/: include/code.h, main/compile.y, main/execute.C: without
23101: string ops in expressions 0
23102:
23103: * src/: include/pa_value.h, include/pa_vdouble.h,
23104: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
23105: main/execute.C, main/main.dsp: !~
23106:
23107: * src/: include/pa_vcframe.h, include/pa_vclass.h,
23108: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
23109: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23110: include/pa_vunknown.h, include/pa_wcontext.h,
23111: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23112: main/compile_tools.h, main/execute.C: +-*/
23113:
23114: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
23115: main/compile_tools.h: grammar-1.1 $a(z) $a=0
23116:
23117: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
23118: main/execute.C: expr grammar-1 2*2=4.000000 :)
23119:
23120: * src/main/compile.y: expr grammar-1
23121:
23122: * src/main/compile.y: expr lexx1
23123:
23124: * src/main/: compile.y, execute.C, main.dsp: z
23125:
23126: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
23127: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
23128: main/execute.C: expr lex0 exec-1
23129:
23130: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
23131:
23132: 2001-02-26 paf
23133:
23134: * src/main/compile.y: max_string in yyerror bug fix
23135:
23136: 2001-02-25 paf
23137:
23138: * src/: include/pa_value.h, include/pa_vmframe.h,
23139: include/pa_wcontext.h, main/execute.C: VAliased3
23140:
23141: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
23142:
23143: * src/main/execute.C: VAliased1
23144:
23145: * src/: include/pa_request.h, include/pa_value.h,
23146: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
23147: VAliased0
23148:
23149: * src/: include/pa_pool.h, include/pa_request.h,
23150: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
23151: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
23152: VAliased just compiled
23153:
23154: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
23155: include/pa_vobject.h, main/execute.C: alias dead end
23156:
23157: * src/: include/pa_value.h, include/pa_vclass.h,
23158: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23159: main/main.dsp: no not get fields into interm VFielded class.
23160: fields & staticfields 1
23161:
23162: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
23163: include/pa_vobject.h, include/pa_wcontext.h,
23164: include/pa_wwrapper.h, main/core.C, main/execute.C,
23165: main/main.dsp: would now get fields into interm VFielded class
23166:
23167: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23168: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23169: include/pa_wcontext.h, main/compile.y, main/core.C,
23170: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
23171: main/pa_wcontext.C: virtuals2
23172:
23173: * src/main/compile.y: : 1
23174:
23175: * src/main/compile.y: rethought to $class:static.field.subfield
23176:
23177: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
23178: $class:element
23179:
23180: * src/: include/pa_value.h, include/pa_vmframe.h,
23181: include/pa_wwrapper.h, main/compile.y, main/execute.C,
23182: main/pa_wcontext.C: before execute class calls rewrite
23183:
23184: * src/: include/pa_request.h, main/compile.C, main/core.C: default
23185: name RUN, also alias
23186:
23187: * src/main/compile.y: escaping bug
23188:
23189: * src/: include/pa_request.h, include/pa_value.h,
23190: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
23191: main/core.C, main/execute.C, main/pa_common.C: vobject1
23192:
23193: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
23194: include/pa_vmframe.h, include/pa_vobject.h,
23195: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23196: main/compile_tools.h, main/execute.C: ^class:method() just
23197: compiled
23198:
23199: 2001-02-24 paf
23200:
23201: * src/main/main.dsp: no bison -d
23202:
23203: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
23204: class' err msg wrong
23205:
23206: * src/main/compile.y: z
23207:
23208: * src/main/: compile.y, core.C: yylex need some @special lines adj
23209:
23210: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
23211: main/compile.y, main/compile_tools.h, main/core.C: modules0
23212:
23213: * src/: include/pa_vclass.h, main/core.C: z
23214:
23215: * src/: include/pa_value.h, include/pa_vclass.h,
23216: include/pa_vobject.h, main/main.dsp: vobject00
23217:
23218: * src/main/pa_array.C: minor bug in expanding very small arrays.
23219: 60% from 1 were 0
23220:
23221: * src/: include/pa_value.h, include/pa_wcontext.h,
23222: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
23223: as bad as you've named it: wcontext.value() was not a perfect
23224: idea
23225:
23226: * src/main/execute.C: codeframe1
23227:
23228: * src/: include/pa_value.h, include/pa_vcframe.h,
23229: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
23230: include/pa_vjunction.h, include/pa_vmframe.h,
23231: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23232: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
23233: just compiled
23234:
23235: * src/: include/pa_vframe.h, main/compile.y: found junction
23236: ideology @: ^x{$a()) must construct current wcontext element, so
23237: smart wcontext handling needed
23238:
23239: * src/main/compile.y: fixed grammar bugs in constructor/params
23240: klinch
23241:
23242: * src/main/: compile.y, execute.C: fixed empty constructor
23243: optimized empty case. failed on calls - produced empty string
23244: param
23245:
23246: * src/main/compile.y: fixed last \n macrotemplate strip bug
23247:
23248: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
23249: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
23250: main/compile_tools.C, main/compile_tools.h, main/core.C,
23251: main/execute.C: code junctions0. something wrong with last \n
23252: macrotemplate strip
23253:
23254: * src/: include/pa_value.h, main/compile.C, main/core.C,
23255: main/pa_value.C: minor error reporting format beautifyings
23256:
23257: * src/: include/pa_value.h, include/pa_vclass.h,
23258: include/pa_vframe.h, main/core.C, main/execute.C,
23259: main/pa_value.C: get_method RIP. junctions everywhere. call with
23260: junctions0
23261:
23262: 2001-02-23 paf
23263:
23264: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
23265: pa_wwrapper.h: lara came, can't work, sorry :(
23266:
23267: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
23268: junction
23269:
23270: * src/: include/pa_vframe.h, include/pa_vunknown.h,
23271: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
23272: main/execute.C, main/main.dsp, main/pa_value.C: call0
23273:
23274: * src/: include/pa_hash.h, include/pa_value.h,
23275: include/pa_wcontext.h, main/core.C, main/execute.C,
23276: main/main.dsp, main/pa_hash.C: started call. store param, vframe
23277: done
23278:
23279: * src/include/pa_wcontext.h: z
23280:
23281: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
23282: wrong grammar in complex constructor case
23283:
23284: * src/main/: compile.y, execute.C: empty constructor bug fixed
23285:
23286: * src/main/execute.C: with result rwpool
23287:
23288: * src/: include/pa_value.h, main/core.C, main/execute.C,
23289: main/main.dsp: value named
23290:
23291: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
23292: strign 2 value in 2 places in execute
23293:
23294: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
23295: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
23296: wcontext.put_element when wcontext fvalue==0
23297:
23298: 2001-02-22 paf
23299:
23300: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23301: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
23302: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
23303:
23304: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
23305: erroreos checkout
23306:
23307: * src/: include/pa_request.h, main/compile.y: $self.put(val)
23308:
23309: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
23310: main/compile_tools.h, main/pa_array.C: $self.get
23311:
23312: * src/main/: compile.C, compile.y, compile_tools.C: z
23313:
23314: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
23315: bit. finished now.
23316:
23317: * src/main/compile.y: $: finished
23318:
23319: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
23320:
23321: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
23322: main/execute.C: OP_STRING better then some xxx _VALUE
23323:
23324: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
23325: main/compile_tools.C, main/compile_tools.h, main/execute.C:
23326: string to vstring it .y all
23327:
23328: * src/: include/pa_request.h, include/pa_stack.h,
23329: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
23330: all
23331:
23332: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
23333: precise parse error line:col
23334:
23335: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
23336: main/pa_hash.C, main/pa_pool.C: TRY...
23337:
23338: * src/: include/pa_exception.h, include/pa_pool.h,
23339: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
23340: main/compile.C, main/compile.y, main/compile_tools.C,
23341: main/core.C, main/pa_array.C, main/pa_exception.C,
23342: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
23343: main/pa_table.C: removed exception from request
23344:
23345: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
23346: some forgotten
23347:
23348: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
23349: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
23350: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
23351: get/put simple vars to VClass works0
23352:
23353: * src/: include/pa_array.h, include/pa_wcontext.h,
23354: main/pa_string.C: in process, but found that exceptions are too
23355: global
23356:
23357: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
23358: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
23359: main/execute.C, main/pa_string.C: write_value write_string 0 it
23360: seems wcontext must write strings regardles of fvalue!=0
23361:
23362: 2001-02-21 paf
23363:
23364: * src/main/execute.C: tired :)
23365:
23366: * src/main/: compile.C, compile.y, execute.C: store0
23367:
23368: * src/: include/compile.h, include/execute.h, include/pa_array.h,
23369: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
23370: include/pa_wcontext.h, main/compile.C, main/compile.y,
23371: main/execute.C, main/main.dsp, main/pa_array.C,
23372: main/pa_request.C: get put -1 [just compiled]
23373:
23374: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
23375: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
23376: main/main.dsp, main/pa_request.C: request core methods0
23377:
23378: * src/: include/compile.h, include/pa_array.h, main/compile.C,
23379: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
23380: execute
23381:
23382: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
23383: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
23384: methods and one_big_piece. now compile returns array<method*>
23385:
23386: * src/main/compile.y: more straightforward yylex[end]
23387:
23388: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
23389: string.operator==(char*)
23390:
23391: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
23392: main/execute.C, main/pa_array.C: after array.const get wonders
23393:
23394: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
23395: pa_string.h, pa_value.h: struck with const array.gets
23396:
23397: * src/main/: execute.C: z
23398:
23399: * src/main/: compile.y, execute.C: z
23400:
23401: * src/main/: compile.C, compile.y, compile_tools.h: error
23402: processing in eval & yyerror so it wouldn't cause memleaks.
23403:
23404: * src/main/: compile.C, compile.y: failed to add absolute precies
23405: parse error positions. leaving RIGHTMOST position as
23406: @file[line:col]
23407:
23408: * src/: include/compile.h, main/compile.C, main/compile.y,
23409: main/compile_tools.h: line numbers needed. would add them to .y
23410: now internally. externally it's not as precise as needed
23411:
23412: * src/: include/code.h, include/pa_types.h, main/compile.C,
23413: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23414: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
23415: compiler works ok
23416:
23417: 2001-02-20 paf
23418:
23419: * src/main/: compile.C, compile.y, compile_tools.C,
23420: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
23421: not perfect
23422:
23423: * src/: include/code.h, include/compile.h, include/execute.h,
23424: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
23425: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23426: main/compile.C, main/compile.y, main/compile_tools.C,
23427: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
23428: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23429: main/pa_string.C, main/pa_table.C: bison[yacc] first time
23430: compiled. execute=dump for now
23431:
23432: * src/main/core.C: core rewrite using yacc investigations now will
23433: be compile[yacc]/execute[opcodes]
23434:
23435: 2001-02-15 paf
23436:
23437: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
23438: rewrite as turing machine? for it seems it would be it's too many
23439: ifs with this syntax now
23440:
23441: 2001-02-14 paf
23442:
23443: * src/main/core.C: get_params 1
23444:
23445: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
23446: :( ]
23447:
23448: * src/main/core.C: varios breaks
23449:
23450: * src/main/core.C: get names 3
23451:
23452: * src/main/core.C: get names 2
23453:
23454: * src/main/core.C: get names 1
23455:
23456: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
23457: names 0
23458:
23459: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
23460: text repassing2 operator static vars
23461:
23462: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
23463: main/pa_string.C: process text repassing
23464:
23465: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
23466: module:calls changes
23467:
23468: 2001-02-13 paf
23469:
23470: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
23471: ^class:calls[] started
23472:
23473: * src/: include/pa_value.h, main/core.C: z
23474:
23475: * src/main/core.C: operators : and self. prefixes
23476:
23477: * src/main/core.C: z
23478:
23479: * src/: include/pa_string.h, main/pa_string.C: String_iterator
23480: tested
23481:
23482: * src/: include/pa_string.h, main/pa_string.C: String_iterator
23483: optimized
23484:
23485: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
23486: would change privates to better support optimization
23487:
23488: * src/: include/pa_string.h, main/pa_string.C:
23489: String_iterator::skip_to todo:optimize
23490:
23491: 2001-02-12 paf
23492:
23493: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
23494: String_iterator
23495:
23496: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
23497: comments
23498:
23499: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
23500: self/methodref joined
23501:
23502: 2001-02-11 paf
23503:
23504: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
23505: main/main.dsp: core started. core.C, context&value .h
23506:
23507: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23508: include/pa_string.h, main/main.dsp, main/pa_array.C,
23509: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
23510:
23511: 2001-01-30 paf
23512:
23513: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
23514: comments
23515:
23516: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
23517: main/pa_pool.C: moved pa_pool.C to be target specific
23518:
23519: * src/: include/pa_exception.h, include/pa_pool.h,
23520: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
23521: to & changes
23522:
23523: * src/: include/pa_exception.h, include/pa_pool.h,
23524: include/pa_request.h, include/pa_table.h, main/pa_array.C,
23525: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
23526: re-associated. that's much better even removed 'die' necessety
23527:
23528: * src/: include/pa_error.h, include/pa_exception.h,
23529: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23530: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
23531: targets/Makefile.am: lowered targets/parser into subdir, added
23532: parser_Pool(Pool) failed to add. would think..
23533:
23534: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
23535: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
23536: main/pa_string.C, main/pa_table.C: Table more like C++ style
23537: hence lots of 'const'
23538:
23539: * src/: include/pa_error.h, include/pa_request.h,
23540: include/pa_string.h, include/pa_table.h, main/pa_error.C,
23541: main/pa_table.C: Error fixed
23542:
23543: 2001-01-29 paf
23544:
23545: * src/: include/pa_array.h, include/pa_common.h,
23546: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
23547: include/pa_request.h, include/pa_string.h, include/pa_table.h,
23548: main/Makefile.am, main/pa_array.C, main/pa_common.C,
23549: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
23550:
23551: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23552: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23553: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
23554: main/pa_string.C, main/pa_table.C: Request Error Table
23555:
23556: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
23557: templates"
23558:
23559: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
23560: main/main.dsp, main/pa_array.C: templates failed no template
23561: specializations [VC6], no library auto instantation [VC6, GNU c++
23562: 2.95.2-6 from latest cygwin]
23563:
23564: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23565: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23566: main/main.dsp, main/pa_array.C, main/pa_string.C,
23567: main/pa_table.C: Table started would test template Array now
23568:
23569: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
23570: String originating
23571:
23572: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
23573: main/pa_hash.C: made local Hash-es not thread safe=quicker by
23574: SYNCHRONIZED(thread_safe)
23575:
23576: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
23577: parts to top
23578:
23579: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
23580: main/pa_threads.C: decided on one global_mutex, like PHP as I can
23581: see: needed only in global Hash now, made Hash:: put/get
23582: SYNCHRONIZED
23583:
23584: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
23585: main/pa_threads.C: added pa_threads
23586:
23587: Mutex
23588:
23589: * src/include/pa_hash.h: some comments
23590:
23591: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
23592: Array& operator += (Array& src)
23593:
23594: * src/main/pa_array.C: expand not convinient, would rewrite
23595:
23596: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
23597: (Array& src)
23598:
23599: rethought, would change now
23600:
23601: 2001-01-27 paf
23602:
23603: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
23604: caching
23605:
23606: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23607: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
23608: cache rethought to chunk caching
23609:
23610: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23611: include/pa_string.h, main/main.dsp, main/pa_array.C,
23612: main/pa_hash.C, main/pa_string.C: Array 0
23613:
23614: * src/main/pa_string.C: String::operator ==
23615:
23616: * src/main/pa_hash.C: String(&String)
23617:
23618: * src/main/pa_hash.C: added pa_hash.C [forgotten]
23619:
23620: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
23621: main/main.dsp, main/pa_string.C: uint, and added pa_types &
23622: pa_hash[forgotten]
23623:
23624: 2001-01-26 paf
23625:
23626: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
23627: removed templates [vc++ suxx]
23628:
23629: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
23630: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
23631:
23632: * src/include/: pa_pool.h, pa_string.h: pa_pool split
23633:
1.119 moko 23634: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 23635:
1.119 moko 23636: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 23637: check
23638:
23639: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
23640: dynamic row_count
23641:
23642: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
23643: main/main.dsp, main/pa_pool.C, main/pa_string.C,
23644: targets/Makefile.am: Initial revision
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: creating parser3 module
23649:
E-mail: