Annotation of parser3/ChangeLog, revision 1.104
1.104 ! moko 1: 2016-05-25 moko
! 2:
! 3: * src/main/compile.y: minor cleanup + beauty
! 4:
! 5: 2016-05-24 moko
! 6:
! 7: * tests/: 333.html, results/333.processed: more exceptions testing
! 8:
! 9: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
! 10: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
! 11: features #1056, #1026)
! 12:
! 13: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
! 14: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
! 15: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
! 16: (implements feature #1056)
! 17:
! 18: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
! 19: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
! 20: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
! 21: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
! 22: feature #1026)
! 23:
! 24: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
! 25: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
! 26: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
! 27: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
! 28: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
! 29: feature #1026)
! 30:
! 31: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
! 32: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
! 33: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
! 34: SYMBOLS_CACHING define implemented (related to feature #1026)
! 35:
! 36: * src/main/main.vcproj: + ps_symbols
! 37:
! 38: * src/: include/Makefile.am, include/pa_string.h,
! 39: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
! 40: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
! 41: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
! 42: types/pa_vstateless_class.C: initial implementation for symbols
! 43: cache (related to feature #1026)
! 44:
! 45: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
! 46:
! 47: * src/main/pa_globals.C: minor cleanup
! 48:
! 49: 2016-05-19 moko
! 50:
! 51: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
! 52: (related to feature #1046)
! 53:
! 54: * tests/: 331.html, results/331.processed: test for
! 55: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
! 56: (related to feature #1051)
! 57:
! 58: * src/main/compile.y:
! 59: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
! 60: (implements feature #1054)
! 61:
! 62: 2016-05-18 moko
! 63:
! 64: * src/types/pa_vtable.C, tests/results/324.processed: no more
! 65: "column not found" exception for ^table.no-such-method[] (related
! 66: to feature #1046)
! 67:
! 68: * tests/: 261.html, results/261.processed: test added and updated
! 69: after feature #1046 implementation
! 70:
! 71: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
! 72: types/pa_vvoid.h: $string.anything works for whitespace strings,
! 73: ^string.contains added for hash compatibility, $string.method no
! 74: longer returns stting method (implements feature #1046)
! 75:
! 76: 2016-05-12 moko
! 77:
! 78: * src/classes/curl.C: content-type response header no longer
! 79: ignored (fixes issue #1045)
! 80:
! 81: * tests/: 330.html, results/330.processed: test for incomplete
! 82: finally execution when break occures added (related to issue
! 83: #1077)
! 84:
! 85: * src/classes/op.C: bugfix: Request::skip reset is called before
! 86: executing catch and finally code (fixes issue #1062)
! 87:
! 88: 2016-05-11 moko
! 89:
! 90: * tests/: 329.html, results/329.processed: test for invalid
! 91: ^break[] behavour added (bug #1077)
! 92:
! 93: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
! 94:
! 95: 2016-04-24 moko
! 96:
! 97: * src/types/pa_vstateless_class.h: warning war
! 98:
! 99: 2016-04-17 moko
! 100:
! 101: * tests/: 328.html, results/328.processed: test for
! 102: ^break(condition) and ^continue(condition) (related to feature
! 103: #1063)
! 104:
! 105: * src/classes/op.C: ^break(condition) and ^continue(condition)
! 106: implemented (feature #1063)
! 107:
! 108: 2016-04-12 moko
! 109:
! 110: * tests/results/280.processed: ordered hash now used for class
! 111: methods and properties (test results updated for feature #1069)
! 112:
! 113: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
! 114: to xdoc.C as under FreeBSD it was inited after and inheritance
! 115: failed (related to issue #1051)
! 116:
! 117: * tests/: 320.html, results/320.processed: xdoc and xnode methods
! 118: are printed to check inheritance (related to feature #1051)
! 119:
1.103 moko 120: 2016-04-09 moko
121:
122: * tests/results/320.processed: ordered hash now used for class
123: methods and properties (test results updated for feature #1069)
124:
125: * src/types/pa_vstateless_class.h: ordered hash now used for class
126: methods and properties (implements feature #1069)
127:
128: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
129: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
130: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
131: feature #1051)
132:
133: 2016-04-07 moko
134:
135: * src/main/execute.C: returned Value in .CLASS case for VJunction
136: (related to feature #1051)
137:
138: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
139: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
140: string constants deduplication (related to feature #1051)
141:
142: * tests/results/224.processed: test result updated (related to
143: feature #1051)
144:
145: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
146: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
147: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
148: types/pa_vstatus.h: classes hash now contains only
149: VStateless_class derived objects, .CLASS is also allways
150: VStateless_class derived object (related to feature #1051).
151:
152: 2016-04-06 moko
153:
154: * tests/results/323.processed: test result updated after feature
155: #1051 implementation
156:
157: * src/: classes/classes.h, classes/op.C, classes/response.C,
158: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
159: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
160: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
161: types/pa_vresponse.C, types/pa_vresponse.h,
162: types/pa_vstateless_class.h: base -> methoded_donor for static
163: classes, type() moved from VStateless_class to VClass and
164: Methoded (implements feature #1051)
165:
166: 2016-04-04 moko
167:
168: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
169: beauty: put_class added (related to feature #1051)
170:
171: 2016-04-01 moko
172:
173: * tests/results/: 175.processed, 192.processed, 224.processed,
174: 229.processed, 244.processed, 246.processed, 316.processed: test
175: results updated as class.type() removed from error messages, only
176: type() left (related to feature #1051)
177:
178: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
179: classes/op.C, classes/reflection.C, main/compile.y,
180: main/compile_tools.h, main/execute.C, main/pa_request.C,
181: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
182: types/pa_vmethod_frame.h, types/pa_vobject.h,
183: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
184: from VStateless_class, type() is used instead (related to feature
185: #1051)
186:
187: * src/classes/mail.C: old logic restored.
188:
189: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
190: classes/classes.h, classes/curl.C, classes/date.C,
191: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
192: classes/hashfile.C, classes/image.C, classes/inet.C,
193: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
194: classes/memcached.C, classes/memory.C, classes/reflection.C,
195: classes/regex.C, classes/response.C, classes/string.C,
196: classes/table.C, classes/xdoc.C, classes/xnode.C,
197: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
198: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
199: feature #1051)
200:
201: 2016-03-30 moko
202:
203: * tests/: 327.html, results/224.processed, results/327.processed:
204: test for TZ specification in ^date::create[], TZ is kept during
205: ^date::create[$dt] (related to feature #1048)
206:
207: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
208: ^date::create[], TZ is kept during ^date::create[$dt] (implements
209: feature #1048)
210:
211: 2016-03-29 moko
212:
213: * tests/: 315.html, results/315.processed: test for timezone format
214: +HHmm added (related to feature #1065)
215:
216: * src/classes/date.C: timezone format +HHmm now supported
217: (implements feature #1065)
218:
219: 2016-03-28 moko
220:
221: * tests/: 202.html, results/131.processed, results/202.processed,
222: results/224.processed, results/256.processed,
223: results/315.processed: test results updated after %.2d now
224: default for hours offset in iso-string (was %2d), test for
225: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
226: added (related to feature #1065)
227:
228: 2016-03-27 moko
229:
230: * src/types/pa_vdate.C: '+' sign for zero offset (related to
231: feature #1065)
232:
233: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
234: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
235: added (implements feature #1065)
236:
237: 2016-03-24 moko
238:
239: * tests/: 202.html, results/202.processed: test $date.week added
240: (related to bug #1067)
241:
242: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
243: date (fix for bug #1067)
244:
245: 2016-03-10 moko
246:
247: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
248:
1.102 moko 249: 2015-12-07 moko
250:
251: * tests/: 326.html, results/326.processed: test for .CLASS &
252: .CLASS_NAME optimization added (related to feature #844)
253:
254: 2015-11-17 moko
255:
256: * tests/: 323.html, results/323.processed: order added
257:
258: * tests/: 325.html, results/325.processed: double range test added
259: (related to bug #1049)
260:
261: 2015-11-16 moko
262:
263: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
264: added to disallow NaN and Infinity (fixes bug #1049)
265:
266: 2015-11-11 moko
267:
268: * tests/324.html: parser 3.4.3 execution support added (related to
269: feature #1017)
270:
271: * tests/: 324.html, results/324.processed: test for
272: GET_ELEMENT4CALL feature added (feature #1017)
273:
1.101 moko 274: 2015-10-29 moko
275:
276: * operators.txt: updated for 3.4.4
277:
278: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
279:
280: * src/main/pa_exec.C: get_exit_status implemented for Windows
281: (related to bug #1043)
282:
283: 2015-10-28 moko
284:
285: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
286: hangup during ^file::exec (fixes bug #1043)
287:
1.100 moko 288: 2015-10-27 moko
289:
290: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
291:
1.99 moko 292: 2015-10-26 moko
293:
1.100 moko 294: * tests/322.html, src/classes/reflection.C: arguments reorder
295: (related to issue #1041)
296:
297: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
298: Copyright year updated
299:
1.99 moko 300: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
301: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
302: classes/form.C, classes/hash.C, classes/hashfile.C,
303: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
304: classes/mail.C, classes/math.C, classes/memcached.C,
305: classes/memory.C, classes/op.C, classes/reflection.C,
306: classes/regex.C, classes/response.C, classes/string.C,
307: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
308: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
309: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
310: include/pa_config_fixed.h, include/pa_config_includes.h,
311: include/pa_dictionary.h, include/pa_dir.h,
312: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
313: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
314: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
315: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
316: include/pa_request_charsets.h, include/pa_request_info.h,
317: include/pa_sapi.h, include/pa_socks.h,
318: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
319: include/pa_stack.h, include/pa_string.h,
320: include/pa_stylesheet_connection.h,
321: include/pa_stylesheet_manager.h, include/pa_table.h,
322: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
323: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
324: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
325: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
326: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
327: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
328: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
329: main/compile.y, main/compile_tools.C, main/compile_tools.h,
330: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
331: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
332: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
333: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
334: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
335: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
336: main/pa_string.C, main/pa_stylesheet_connection.C,
337: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
338: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
339: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
340: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
341: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
342: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
343: targets/isapi/parser3isapi.C, types/pa_junction.h,
344: types/pa_method.h, types/pa_property.h, types/pa_value.C,
345: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
346: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
347: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
348: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
349: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
350: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
351: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
352: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
353: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
354: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
355: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
356: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
357: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
358: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
359: types/pa_vresponse.C, types/pa_vresponse.h,
360: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
361: types/pa_vstateless_object.h, types/pa_vstatus.C,
362: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
363: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
364: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
365: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
366: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
367:
368: * src/targets/cgi/parser3.C: year updated
369:
370: * src/classes/reflection.C: VS2003 compatibility fixed (related to
371: issue #1041)
372:
373: * tests/: 323.html, results/323.processed: test for base classes
374: added
375:
376: * tests/: 261.html, results/261.processed: updated after better
377: error reporting done for $string.key exception
378:
379: * src/types/pa_vstring.h: better error report for $string.key
380: exception
381:
382: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
383: copied as VObject::get_element4call to remove extra virtual call
384:
385: * tests/: 322.html, results/322.processed: test for
386: ^reflection:is[] added (related to feature #1041)
387:
388: * src/classes/reflection.C: ^reflection:is empty value is void
389: (related to feature #1041)
390:
391: * src/classes/reflection.C:
392: ^reflection:is[class_name|code|method;[context;]element_name]
393: added (implements feature #1041)
394:
395: 2015-10-24 moko
396:
397: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
398:
1.98 moko 399: 2015-10-22 moko
400:
401: * tests/: 321.html, results/321.processed: test for
402: ^reflection:method_info[] file detection added
403:
404: * tests/: 320.html, results/320.processed: test for
405: ^reflection:class_by_name[class_name] added (related to feature
406: #993)
407:
408: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
409: added (implements feature #993)
410:
411: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
412: (related to feature #1017)
413:
414: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
415: added (related to issue #1039)
416:
417: * src/main/pa_request.C: ^throw origin fixed (related to feature
418: #1039)
419:
420: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
421: for VDate
422:
423: * tests/results/182.processed: updated after feature #1038
424: implemented
425:
426: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
427: compile-time exception origin added (test for feature #1039)
428:
429: * src/: include/pa_request.h, main/compile.C, main/compile.y,
430: main/pa_request.C: exception unification: compile-time exceptions
431: now have origin, @USE origins also tracked (implements feature
432: #1039)
433:
434: 2015-10-20 moko
435:
436: * src/main/pa_request.C: cleanup
437:
438: 2015-10-15 moko
439:
440: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
441:
442: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
443: types/pa_vtable.C: new feature: no more $table.method and
444: $hash.method, aliases for _at, _count, _key (related to feature
445: #1017)
446:
1.97 moko 447: 2015-10-14 moko
448:
1.98 moko 449: * tests/: 317.html, results/317.processed: test for
450: ^string.unescape[] added (related to feature #120)
451:
1.97 moko 452: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
453: defined" bug (described in issue #1036)
454:
455: * tests/: 247.html, results/247.processed: test for checkBOM added
456: (test for bug #1037)
457:
458: * src/: include/pa_charsets.h, main/pa_charsets.C,
459: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
460: it's not enforced, skips BOM signature if it complies charset
461: (fixes bug #1037)
462:
463: 2015-10-13 moko
464:
465: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
466: linking
467:
468: * src/classes/inet.C: vs2003 compilation fix
469:
470: * src/classes/math.C: warning war
471:
472: * src/lib/punycode/pa_punycode.c: warning war
473:
474: 2015-10-12 moko
475:
476: * src/lib/punycode/pa_punycode.c: warning war
477:
478: * parser3.sln: moved parser3 first, to make it default startup
479: project
480:
481: * buildall: parser "mirror" now used for external libs sources
482: (implements feature #1036)
483:
484: * buildall: most external libs are updated to their current
485: versions (related to feature #1036)
486:
487: * src/classes/image.C: more tags added
488:
489: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
490:
491: 2015-10-11 moko
492:
493: * src/classes/curl.C: minor optimization (related to feature #1035)
494:
495: 2015-10-09 moko
496:
497: * src/classes/curl.C: pa_strdup added for strings from curl
498: (related to feature #1035)
499:
500: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
501: ULLONG_MAX definition
502:
503: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
504: (implements feature #1035)
505:
506: * src/main/pa_charset.C: String::Body(String::C) used
507:
508: * src/main/pa_charset.C: exceptions unified
509:
510: * src/: include/pa_charset.h, main/pa_charset.C: declarations
511: unified
512:
513: * src/: classes/file.C, classes/image.C, classes/mail.C,
514: classes/op.C, classes/xdoc.C, classes/xnode.C,
515: include/pa_string.h, main/pa_request.C, main/pa_string.C,
516: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
517: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
518: String::Body(String::C) constructor added (related to bug #957)
519:
520: * src/classes/file.C: minor optimization
521:
522: * src/include/pa_hash.h: hash.get(char*) added, to minimize
523: Cord(char*) autocreation (related to bug #957)
524:
525: * src/: classes/string.C, main/untaint.C: minor optimizations
526:
527: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
528: String(char*, Lang, length) removed, String(C(), Lang) used
529: instead (related to bug #957)
530:
531: 2015-10-08 moko
532:
533: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
534: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
535: main/untaint.C: Now char * is converted to CORD only using
536: AS_CORD() to check for empty cord bug (fixes bug #957)
537:
538: * src/include/pa_hash.h: fixed compilation without
539: HASH_CODE_CACHING
540:
541: * src/classes/string.C:
542: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
543: feature #120)
544:
545: * src/main/pa_common.C: reduce js flags checks count (related to
546: feature #120)
547:
1.96 moko 548: 2015-10-07 moko
549:
550: * tests/: 275.html, results/275.processed: test modified after
551: unsigned long long int support implemented (feature #1034)
552:
553: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
554: pa_atoul added for unsigned long long int support
555:
556: 2015-10-06 moko
557:
558: * src/types/pa_vdate.C: INT_MAX used
559:
560: 2015-10-03 moko
561:
562: * tests/: 302.html, results/302.processed: test for bug #1023
563: (\u2028, \u2029 escaping) added
564:
565: * src/main/untaint.C: \u2028, \u2029 are now escaped in
566: json:string[] (fixes bug #1023)
567:
568: 2015-09-29 moko
569:
570: * tests/305.html: try-catch added for OS without ipv6 support
571:
572: * src/lib/json/pa_json.C: more unique prefixes for Solaris
573: compilation
574:
575: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
576: main/execute.C, types/pa_value.h, types/pa_vhash.h,
577: types/pa_vtable.C, types/pa_vtable.h: get_element4call
578: implemented to distinguish ^hash.method from $hash.field
579: (implements feature #1017)
580:
581: * src/lib/punycode/pa_punycode.c: warning war
582:
583: * src/include/pa_config_includes.h: warning war
584:
585: * src/include/pa_config_includes.h: pragma warning actualized a bit
586:
587: * src/include/pa_config_includes.h: warning war
588:
589: * src/include/pa_hash.h: clang compilation fix
590:
591: 2015-09-27 moko
592:
593: * src/main/compile.tab.C: Bison 3 is now default
594:
595: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
596:
597: 2015-09-25 moko
598:
599: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
600: works with undefined HASH_ORDER (related to feature #196)
601:
602: 2015-09-24 moko
603:
604: * tests/: 027.html, results/027.processed: test modified to test
605: ^hash.sort (feature #196)
606:
607: * src/: classes/hash.C, include/pa_hash.h:
608: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
609: added (implements feature #196)
610:
611: * tests/: 316.html, results/316.processed: Added test for bug #1025
612: (exception handling in non-cached ^cache), plus for "it does not
613: have logical value" and "$exception.handled value must be either
614: boolean or string 'cache'" exceptions.
615:
616: * src/classes/op.C: ^cache: exceptions now handled in non-cached
617: code (fixes bug #1025)
618:
1.95 moko 619: 2015-09-23 moko
620:
621: * src/classes/table.C: warning war
622:
623: * src/: classes/math.C, types/pa_vcookie.C: warning war
624:
625: * src/classes/file.C: warning war
626:
627: * src/: include/pa_table.h, main/pa_table.C: warning war
628:
629: * src/: main/pa_request.C, classes/date.C: warning war
630:
631: * src/: types/pa_vdate.C, classes/op.C: warning war
632:
633: * tests/: 122.html, results/122.processed: win sync: to remove
634: differences with OS that doesn't keep timezone change history
635:
636: * src/types/pa_vdate.C: tzset() should be called in Windows after
637: TZ change (related to feature #36)
638:
639: * tests/: 075.html, results/075.processed: win sync: to remove
640: differences with OS that doesn't keep timezone change history
641:
642: * tests/: 315.html, results/315.processed: win sync: to remove
643: differences with OS that doesn't keep timezone change history
644:
645: * tests/: 256.html, results/256.processed: win sync: to remove
646: differences with OS that doesn't keep timezone change history
647:
648: * tests/: 124.html, results/124.processed: win results sync: to
649: avoid hitting time change hole.
650:
651: * src/types/pa_vdate.C: static returned. :)
652:
653: 2015-09-22 moko
654:
655: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
656:
657: * tests/results/131.processed: more tests for feature #1032
658:
659: * src/classes/date.C: minor fix related to feature #1032
660:
661: * operators.txt: ISO date creation documented (related to feature
662: #1032)
663:
664: * operators.txt: iso-string documented (related to feature #1032)
665:
666: * tests/: 315.html, results/315.processed: more tests added
667: (related to feature #1032)
668:
669: * tests/: 131.html, results/131.processed: date range checks
670: updated (related to feature #36)
671:
672: * tests/: 315.html, results/057.processed, results/315.processed:
673: test added for ISO date support (related to issue #315)
674:
675: * src/classes/date.C: more readable exceptions in date creation
676: (related to ticket #1032)
677:
678: 2015-09-18 moko
679:
680: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
681: added (related to issue #1032)
682:
683: * tests/results/256.processed, src/classes/json.C: iso-string
684: documented (related to issue #1032)
685:
686: * tests/: 256.html, results/256.processed: ISO date check added
687: (related to issue #1032)
688:
689: * tests/: 057.html, results/057.processed, results/224.processed:
690: tests results updated after ISO date support implemented (related
691: to feature #1032)
692:
693: * src/: classes/date.C, classes/image.C, types/pa_value.h,
694: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
695: ^date::create[string] constructor formalized, ^date.iso-string[]
696: added (implements feature #1032)
697:
698: 2015-09-05 moko
699:
700: * operators.txt: actualized
701:
702: * operators.txt: date changes documented (related to ticket #36)
703:
704: 2015-09-04 moko
705:
706: * src/types/pa_vdate.C: warning war
707:
708: * src/: classes/op.C, types/pa_vhashfile.C: warning war
709:
710: 2015-09-03 moko
711:
712: * tests/results/096.processed: test result updated for 0..9999 year
713: date range support (related to feature #36)
714:
715: * tests/: 314.html, results/314.processed: test for
716: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
717: bug #1031)
718:
719: * src/classes/string.C: Static calls fixed for ^string:base64[],
720: ^string:idna[], ^string:js-escape[] (closes bug #1031)
721:
1.101 moko 722: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
723: configure.in -> configure.ac
1.95 moko 724:
1.101 moko 725: * configure, configure.in, src/include/pa_config_auto.h.in: more
726: correct timezone check for FreeBSD Warning war: configure.in ->
727: configure.ac
1.95 moko 728:
729: * configure, configure.in, src/classes/Makefile.am,
1.101 moko 730: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
731: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
732: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
733: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
734: src/main/Makefile.am, src/targets/apache/Makefile.am,
735: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 736: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
737: check added
738:
739: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
740:
741: * tests/results/: 124.processed, 224.processed: test resuls updated
742: for new date implementation (related to feature #36)
743:
744: * src/: classes/date.C, classes/image.C, include/pa_common.h,
745: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
746: types/pa_vdate.h: new double date implementation with internal
747: support for extended 0..9999 year range, default timezone support
748: (related to feature #36)
749:
750: 2015-08-28 moko
751:
752: * src/types/pa_vmail.C: fixed $mail:received.date calculations
753: (fixes bug #1030)
754:
755: 2015-08-21 moko
756:
757: * src/classes/inet.C: snprintf size "bug" commented
758:
759: * src/main/pa_common.C: snprintf comments updated
760:
761: 2015-08-16 moko
762:
763: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
764:
765: 2015-08-11 moko
766:
767: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
768: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
769: can be null (fixes bug #1029)
770:
771: 2015-08-06 moko
772:
1.101 moko 773: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
774: pa_vdate.C added
1.95 moko 775:
776: 2015-08-05 moko
777:
778: * tests/: 313.html, results/313.processed: test for
779: ^table.count[columns] and ^table.flip[] with nameless tables
780: (feature #1003)
781:
782: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
783: max_cell added, now ^table.count[columns] and ^table.flip[] works
784: correctly for nameless tables (implements feature #1003)
785:
786: 2015-08-03 moko
787:
788: * tests/312.html: test for ^table.append[$hash] and
789: ^table.insert[$hash] added (related to feature #1028)
790:
791: * src/classes/table.C: ^table.append[$hash] and
792: ^table.insert[$hash] now supported (implements feature #1028)
793:
794: * tests/: 312.html, results/312.processed: test row copy in
795: ^table.hash[; $.type[table] ] added (related to feature #1016)
796:
797: * src/classes/table.C: row copy now created in ^table.hash[;
798: $.type[table] ] (related to feature #1016)
799:
800: 2015-07-29 moko
801:
802: * tests/: 312.html, results/312.processed: test for ^table.delete[]
803: added (related to feature #1016)
804:
805: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
806: ^table.delete[] added to delete current row (related to feature
807: 1016)
808:
809: 2015-07-28 moko
810:
811: * tests/: 312.html, results/312.processed: test for
812: $table.column[value] and ^table.insert{row} (related to feature
813: #1016)
814:
815: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
816: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
817: ^table.insert{row} are now implemented (feature #1016)
818:
819: * src/include/pa_array.h: Optimization: bool reverse removed from
820: append(), insert() added, memmove arguments order in remove()
821: fixed (related to feature #1016)
822:
823: 2015-07-23 moko
824:
825: * src/classes/json.C: tainted json and empty json exception added
826: (implements feature #1015)
827:
828: * tests/: 311.html, results/311.processed: empty json and tainted
829: json exception test added (related to issue #1015)
830:
831: 2015-07-22 moko
832:
833: * tests/: 311.html, results/311.processed: test for UTF-8
834: processing added
835:
836: * tests/: 311.html, results/311.processed: test for
837: json_exception_with_source added (related to issue #394)
838:
839: * src/classes/json.C: json_exception_with_source added (implements
840: feature #394)
841:
842: 2015-06-29 moko
843:
844: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
845: directories are now correctly determined if _d_type == DT_UNKNOWN
846: (closes bug #1027)
847:
848: 2015-06-10 moko
849:
850: * src/types/pa_vxnode.h: extern "C" not requred and causes build
851: error if libxml has LIBXML_ICU_ENABLED.
852:
853: 2015-06-04 moko
854:
855: * tests/099.html: ups, reverting
856:
857: * tests/: 099.html, 309.html, 310.html, results/309.processed,
858: results/310.processed: tests for $response:body[ $.file[] ] and
859: $response:last-modified added
860:
861: * src/main/pa_request.C: last-modified check fixed
862:
863: 2015-06-03 moko
864:
865: * tests/: 204.html, 205.html, 293.html, results/204.processed,
866: results/205.processed, results/293.processed: $response:headers
867: logging added (tests for feature #1007)
868:
869: * src/: include/pa_common.h, include/pa_request.h,
870: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
871: $response:headers are now in uppercase (closes feature #1007)
872:
873: 2015-06-02 moko
874:
875: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
876: build errors reverted for clang compatibility
877:
878: 2015-06-01 moko
879:
880: * src/include/pa_memory.h: -pedantic build errors fixed
881:
882: * src/classes/math.C: -pedantic build error fixed
883:
884: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
885:
886: 2015-05-31 moko
887:
888: * src/classes/table.C: USE_STRINGSTREAM optimized
889:
890: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
891: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
892: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
893: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
894: types/pa_vxnode.h: warning war (-pedantic flag)
895:
896: 2015-05-28 moko
897:
898: * tests/: 308.html, results/308.processed: test for
899: ^table::create[$t;], etc work added (related to bug #975)
900:
901: * src/classes/table.C: check_option_param removed,
902: ^table::create[$t;], etc now works (fixes bug #975)
903:
904: 2015-05-27 moko
905:
906: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
907: (Debian jessie) fixed (closes issue #1024)
908:
909: * tests/Makefile: sort added as in Debian jessie list become
910: unsorted
911:
912: 2015-05-18 moko
913:
914: * tests/: 201.html, results/201.processed: test for
915: ^string.trim[what] feature #1022
916:
917: * src/classes/string.C: ^string.trim[what] now supported,
918: implements feature #1022
919:
920: 2015-05-17 moko
921:
922: * tests/results/185.processed: test result updated as feature #1021
923: implemented (left/right accept negative parameter)
924:
925: * src/classes/string.C: left/right now accept negative parameter
926: (implements feature #1021)
927:
928: 2015-05-08 moko
929:
930: * src/classes/math.C: isalnum -> pa_isalnum
931:
932: * src/main/execute.C: optimization in getter-junction processing
933: (related to issue #997)
934:
935: 2015-05-07 moko
936:
937: * tests/: 307.html, results/307.processed: test for issue #997
938: added
939:
940: * src/main/execute.C: process_getter result now checked if junction
941: returned (closes issue #997)
942:
943: * tests/: 305.html, results/305.processed: sort added to ignore
944: different order
945:
946: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
947: assignment (closes issue #994)
948:
949: * tests/: 306.html, results/306.processed: test for issue #994
950: added
951:
952: * tests/: 303.html, results/303.processed: two more errors tested
953:
954: 2015-05-06 moko
955:
956: * tests/: 305.html, results/305.processed: test for name2ip &
957: ip2name added (related to feature #992)
958:
959: * tests/: 303.html, 304.html, results/303.processed,
960: results/304.processed: tests for idna conversion added (related
961: to issue #849)
962:
963: 2015-05-02 moko
964:
965: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
966: implemented
967:
968: 2015-04-30 moko
969:
970: * src/main/pa_http.C: idna_host added, related to issue #849
971:
972: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
973: (related to issue #849)
974:
975: 2015-04-24 moko
976:
977: * src/types/pa_vjunction.C: warning war
978:
979: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
980: unification
981:
982: * src/lib/punycode/pa_idna.c: warning war
983:
984: 2015-04-22 moko
985:
986: * src/main/main.vcproj: punycode include path added
987:
988: * src/lib/punycode/pa_idna.c: windows compile error fixed
989:
990: * src/lib/punycode/pa_idna.c: warning war
991:
992: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
993: project file added
994:
995: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
996:
997: * src/include/pa_memory.h: warning war
998:
999: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
1000: ^string:idna[xn--...], ^string.idna[] - idna conversion support
1001: implemented (related to feature #849)
1002:
1003: * configure.in, src/main/Makefile.am,
1004: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
1005: libpunycode added in Unix
1006:
1007: 2015-04-21 moko
1008:
1009: * configure.in: large files support
1010:
1011: 2015-04-15 moko
1012:
1013: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
1014: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
1015: pa_punycode.h: initial version for punycode/idna support library
1016: (ticket #849)
1017:
1018: 2015-04-08 moko
1019:
1020: * src/: classes/curl.C, classes/date.C, classes/file.C,
1021: classes/image.C, classes/mail.C, classes/reflection.C,
1022: classes/string.C, classes/xnode.C, include/pa_request.h,
1023: include/pa_string.h, include/pa_stylesheet_connection.h,
1024: main/compile.y, main/compile_tools.h, main/execute.C,
1025: main/pa_common.C, main/pa_request.C, main/pa_string.C,
1026: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
1027: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
1028: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
1029: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
1030: clang compiler warnings (closes issue #1018)
1031:
1032: * src/include/pa_string.h: String::Body comparation operators with
1033: char * added (related to issue #958)
1034:
1035: 2015-04-07 moko
1036:
1037: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
1038: pa_malloc/pa_free to remove system malloc/free usage (related to
1039: issue #1018)
1040:
1041: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
1042: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
1043: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
1044: main/pa_http.C, main/pa_request.C, main/pa_string.C,
1045: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
1046: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
1047: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
1048: malloc/strdup/free replaced with pa_ version and checks for
1049: accidental use of non-pa_ version added (related to issue #1018)
1050:
1051: 2015-04-03 moko
1052:
1053: * buildall: pcre-8.33 -> pcre-8.36
1054:
1055: * src/: main/compile.y, classes/form.C, classes/mail.C,
1056: classes/op.C, classes/string.C, main/compile.tab.C,
1057: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
1058: main/pa_sql_driver_manager.C, types/pa_vfile.C,
1059: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
1060: ticket #958)
1061:
1062: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
1063: main/pa_common.C, main/pa_http.C, main/pa_request.C,
1064: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1065: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
1066: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
1067: $request:headers, $request:method added (implements feature
1068: #1007)
1069:
1070: 2015-03-17 misha
1071:
1072: * tests/302.html: - test for
1073: ^json:string[...;$._default[method-name]]
1074:
1075: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
1076: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
1077: option $._default[method-name] is specified in ^json:string[], a
1078: method with specified name will be called for classes/objects
1079: serialization ( new feature: #982 )
1080:
1081: 2015-03-16 misha
1082:
1083: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
1084: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
1085: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
1086: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
1087: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
1088: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
1089: types/pa_vmemory.h, types/pa_vmethod_frame.C,
1090: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
1091: types/pa_vrequest.h, types/pa_vstateless_class.C,
1092: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
1093: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
1094: $var.CLASS_NAME now have special opcodes. This can be switched
1095: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
1096: on pa_opcode.h ( new feature: #844 )
1097:
1098: 2015-03-15 misha
1099:
1100: * tests/075.html: - test for $response:header[]
1101:
1102: * src/types/pa_vresponse.C: - $response:header[] deletes header
1103: that was set earlie ( new feature: #1001 )
1104:
1105: 2015-03-12 misha
1106:
1107: * tests/246.html: - more tests for ^hash._at[]
1108:
1109: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
1110: accepts second param [key|value|hash] ( new feature: #1012 )
1111:
1112: 2015-03-09 moko
1113:
1114: * src/types/pa_vmail.C: exception for everything but
1115: $mail:received, closes issue #1011
1116:
1117: 2015-02-20 moko
1118:
1119: * tests/: 275.html, results/275.processed: hex detection in
1120: pa_atoui fix test (closes issue #1010)
1121:
1122: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
1123: issue #1010)
1124:
1125: 2015-02-17 moko
1126:
1127: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
1128: tainted.
1129:
1130: 2015-02-03 misha
1131:
1132: * tests/301.html: - test for ^json:string($double) causes
1133: exception. bugfix: #1008
1134:
1135: * src/classes/json.C: - ^json:string($double) causes exception.
1136: bugfix: #1008
1137:
1138: * tests/014.html: - updated for work with ^hash.delete[]
1139:
1140: 2015-01-12 misha
1141:
1142: * src/: classes/form.C, include/pa_common.h,
1143: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
1144: types/pa_vform.h: - supports body with PUT method as well ( new
1145: feature: #1006 )
1146:
1147: * src/classes/file.C: - warnings war
1148:
1149: 2015-01-11 misha
1150:
1151: * tests/300.html: - test for ^hash.delete[] is added
1152:
1153: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
1154: feature: #989 ) - tiny optimization in intersects
1155:
1156: 2015-01-06 moko
1157:
1158: * src/types/pa_vmail.C: file names transcode added, to and cc added
1159: with transcode, attachments detection fixed
1160:
1161: * src/main/pa_request.C: filling mail received after cgi/auto.p
1162: load to allow charset switch (related to issue #996)
1163:
1164: 2014-12-31 moko
1165:
1166: * src/types/pa_vmail.C: from and subject now transcoded if not
1167: UTF-8 source charset (fixes issue 996)
1168:
1169: * src/main/pa_exception.C: fixed string from stack bug (closes
1170: issue #1000)
1171:
1172: 2014-12-11 misha
1173:
1174: * src/types/pa_vhashfile.C: - check if key is not empty before
1175: access ( bug fix: #1005 )
1176:
1177: 2014-11-13 misha
1178:
1179: * src/main/compile.y: - PC.append does not reset to false while
1180: creating a new class. bugfix: #990
1181:
1182: * tests/299.html: - test for creation class after working with
1183: partial class (create+append)
1184:
1185: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
1186: #995
1187:
1188: * tests/232.html: - test for @get[def] added
1189:
1190: 2014-10-12 moko
1191:
1192: * src/lib/pcre/pcre_internal.vcproj: correct path
1193:
1194: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1195: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
1196: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
1197: targets/apache/ApacheModuleParser3.vcproj,
1198: targets/apache/ApacheModuleParser3Core.vcproj,
1199: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1200: types/types.vcproj: project GUID inserted in *.vcproj for correct
1201: conversion in newer VS versions
1202:
1203: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
1204: pcre_internal.vcproj added
1205:
1206: 2014-08-28 moko
1207:
1208: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
1209: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
1210: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
1211:
1212: 2014-06-30 misha
1213:
1214: * tests/298.html: - tests for ^reflection:def[class;className]
1215: added
1216:
1217: * src/classes/reflection.C: - ^reflection:def[class;className]
1218: added ( new feature: #918 )
1219:
1220: 2014-06-29 misha
1221:
1222: * src/classes/table.C: - ^table::create[unsupported data] -
1223: exception comment changed to "body must be table or code" ( bug
1224: fix: #951 )
1225:
1226: * tests/: 261.html, results/261.processed: - tests for
1227: ^json:string[...;$.void[null|string]] added
1228:
1229: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
1230: option $.void[string|null] added to ^json:string[...] ( new
1231: feature: #952 )
1232:
1233: 2014-06-28 moko
1234:
1235: * src/classes/curl.C: $.charset now processed before other curl
1236: options (closes issue #980)
1237:
1238: 2014-05-23 misha
1239:
1240: * src/classes/json.C: - bug fix: #987
1241:
1242: 2014-05-04 misha
1243:
1244: * tests/: 253.html, 253_json.txt: - test for
1245: ^json:parse[$.int(false)] is added
1246:
1247: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
1248: default true). The option is similar to $.double(bool) but for
1249: integers.
1250:
1251: 2014-05-01 moko
1252:
1253: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
1254: #12 )
1255:
1256: 2014-04-16 moko
1257:
1258: * src/main/pa_http.C: response-charset option should finally work
1259: now (fix for issue #867)
1260:
1261: * src/main/pa_http.C: response-charset option should work now (fix
1262: for issue #867)
1263:
1264: 2014-03-07 moko
1265:
1266: * buildall: libgc moved
1267:
1268: * buildall: libgc moved
1269:
1270: 2013-12-29 moko
1271:
1272: * src/classes/string.C: ^string:js-unescape result now tainted,
1273: closes issue #966
1274:
1275: * tests/: 186.html, results/186.processed: ^string:js-unescape
1276: result now tainted, issue #966
1277:
1278: 2013-12-03 moko
1279:
1280: * src/: classes/memcached.C, types/pa_vmemcached.C,
1281: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
1282: option was added for http://www.parser.ru/forum/?id=79343
1283:
1284: * src/classes/file.C: bugfix for
1285: http://www.parser.ru/forum/?id=79337
1286:
1287: 2013-11-05 moko
1288:
1289: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
1290:
1291: * src/main/pa_globals.C: spelling fixed
1292:
1293: 2013-10-29 moko
1294:
1295: * src/lib/json/json.vcproj: json.c -> pa_json.C
1296:
1297: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
1298: #892
1299:
1300: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
1301: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
1302: exceptions to be thrown thougth json library), related to issue
1303: #892
1304:
1305: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
1306: related to issue #896
1307:
1308: 2013-10-24 moko
1309:
1310: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
1311:
1312: 2013-10-23 moko
1313:
1314: * README: actualization
1315:
1316: 2013-10-22 moko
1317:
1318: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
1319: compatibility patch from Sergey Kirpichev
1320:
1321: * tests/: 297.html, results/297.processed: non-working getter fix
1322: test for issue #948
1323:
1324: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
1325: called when saving value of $match variable in ^string.match[] to
1326: increase compatibility (related to issue #948).
1327:
1328: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
1329: usage optimization
1330:
1331: 2013-10-21 moko
1332:
1333: * tests/: 182.html, results/182.processed: local path removed for
1334: compatibility
1335:
1336: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
1337: results/244.processed, results/253.processed,
1338: results/254.processed, results/275.processed,
1339: results/281.processed: try_catch -> try-catch
1340:
1341: * tests/: 288.html, 294.html, 296.html, results/288.processed,
1342: results/294.processed, results/296.processed: try_catch ->
1343: try-catch
1344:
1345: 2013-10-20 moko
1346:
1347: * tests/: 296.html, results/296.processed: test for xsl exception
1348: for issue #938 added.
1349:
1350: * src/: include/pa_xml_exception.h,
1351: main/pa_stylesheet_connection.C: forgotten to be replaced
1352: XmlException is now replaced (once again closes issue #938)
1353:
1354: 2013-10-19 misha
1355:
1356: * bin/auto.p.dist.in: - more mime-types are added
1357:
1358: 2013-10-18 moko
1359:
1360: * buildall: disable clock_gettime detection to avoid librt linking
1361: (which in turn depends on libpthread), related to issue #943
1362:
1363: 2013-10-18 misha
1364:
1365: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
1366: lib/smtp/smtp.vcproj, main/main.vcproj,
1367: targets/apache/ApacheModuleParser3Core.vcproj,
1368: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1369: types/types.vcproj: - new locations for libxml2 includes where
1370: added to vcproj files
1371:
1372: 2013-10-18 moko
1373:
1374: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
1375: fix
1376:
1377: * tests/: 295.html, results/295.processed: test for issue #948
1378: updated
1379:
1380: * src/classes/table.C: hopefully last lost part for issue #948 fix.
1381: :)
1382:
1383: * tests/: 295.html, results/295.processed: test for issue #948
1384: added
1385:
1386: * src/: classes/hash.C, classes/string.C, classes/table.C,
1387: include/pa_request.h, types/pa_method.h: for getters and setters
1388: to be executed request.put_element should be called, not
1389: context.put_element (fixes issue #948)
1390:
1391: 2013-10-17 moko
1392:
1393: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
1394: LIBXML2_NEW_BUFFER check (closes issue #943)
1395:
1396: * buildall: libxml 2.9.1 build is broken --without-reader.
1397:
1398: 2013-10-16 moko
1399:
1400: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
1401:
1402: * tests/: 294.html, results/294.processed: test for issue #938
1403:
1404: * src/: classes/xdoc.C, classes/xnode.C,
1405: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
1406: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
1407:
1408: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
1409: libxslt-1.1.26 -> libxslt-1.1.28
1410:
1411: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
1412: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
1413: to '?', related to issue #938
1414:
1415: 2013-10-15 moko
1416:
1417: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
1418: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
1419: minor optimizations (closes issue #896)
1420:
1421: * tests/results/: 292.processed, 293.processed: results updated to
1422: comply with issue #896
1423:
1424: * tests/: 292.html, 293.html, results/292.processed,
1425: results/293.processed: tests for json escaping
1426:
1427: 2013-10-14 moko
1428:
1429: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
1430: and cleanup, code moved from .h to .C, no changes in code
1431:
1432: 2013-10-12 moko
1433:
1434: * tests/results/119.processed: updated test result commited
1435:
1436: * tests/: 291.html, results/291.processed: test for issue #894
1437: added
1438:
1439: * src/types/pa_wcontext.h: base methods call support function
1440: get_somebody_entered_some_class should not be true forever, as
1441: wcontext can have many get_elements calls (fixes issue #894)
1442:
1443: 2013-10-11 moko
1444:
1445: * tests/: 290.html, results/290.processed: test for junction GPF
1446: issue #942 added
1447:
1448: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
1449: to native method fixed (closes issue #942)
1450:
1451: * tests/: 158.html, results/158.processed: test for csv-string[]
1452: added
1453:
1454: * src/classes/table.C: minor fixes for table.csv-string[] (closes
1455: feature #907)
1456:
1457: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
1458: feature #907)
1459:
1460: 2013-10-09 moko
1461:
1462: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
1463: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
1464: types/pa_vstateless_class.C: GET_default, SET_default now works
1465: properly not only in objects, but in classes as well (closes
1466: issue #903)
1467:
1468: * tests/: 289.html, results/289.processed: GET/SET_default now
1469: works in classes, not only objects, test case added, related to
1470: issue #903
1471:
1472: * tests/: 288.html, results/288.processed: test for endless
1473: recursion bug added (related to issue #903)
1474:
1475: 2013-10-05 moko
1476:
1477: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
1478: classes/table.C, main/execute.C, types/pa_method.h,
1479: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
1480: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
1481: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
1482: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
1483: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
1484: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
1485: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
1486: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
1487: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
1488: optimization: put_element no longer has "bool areplace" argument,
1489: related to issue #903
1490:
1491: 2013-10-03 moko
1492:
1493: * tests/results/182.processed: result for $.replace(false) test
1494: commited
1495:
1496: * src/classes/date.C: ^date::create(number) processed correctly
1497: (fixes issue #901)
1498:
1499: * src/classes/image.C: as_no_junction removed, as param can be
1500: expression (closes issue #931)
1501:
1502: * tests/233.html: test for issue #931 added
1503:
1504: 2013-10-02 moko
1505:
1506: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
1507: modified, test for $.replace(false) added
1508:
1509: * src/main/compile_tools.h: forgotten class replace returned. :)
1510:
1511: 2013-09-30 moko
1512:
1513: * tests/: 141.html, results/141.processed: md5 tainting test added
1514:
1515: * src/: classes/op.C, include/pa_request.h, main/compile.y,
1516: main/compile_tools.h, main/pa_request.C: allow_class_replace
1517: implemented; $.replace option added to ^process and ^use
1518:
1519: 2013-08-27 moko
1520:
1521: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
1522: cstr_to_string_body_untaint should be called with charsets for
1523: possible uri language and connection for possible sql language.
1524: related to issue #857
1525:
1526: * buildall: and -> or fixed
1527:
1528: 2013-08-26 moko
1529:
1530: * buildall: prepare_ functions logic changed to support
1531: gc-7.2d.tar.gz extracting to gc-7.2 directory
1532:
1533: 2013-08-23 moko
1534:
1535: * src/include/pa_config_fixed.h: gc and xml libs are now linked
1536: statically
1537:
1538: 2013-08-22 moko
1539:
1540: * src/classes/string.C: String::Empty used (related to issue #912)
1541: append_know_length removed (related to old GPF bug)
1542:
1543: 2013-08-21 moko
1544:
1545: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
1546:
1547: * src/classes/math.C: ^math:digest[...;$file] support added
1548: (related to ticket #857
1549:
1550: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
1551: implemented
1552:
1553: * src/types/pa_vhashfile.h: warning war
1554:
1555: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
1556: include/pa_request.h, main/pa_request.C, types/pa_value.h:
1557: anti_endless_json_string_recoursion removed from request;
1558: json_string_recoursion added to json_options; $.indent[indent
1559: value] now supported and passed within recoursion closes feature
1560: #937
1561:
1562: * tests/: 287.html, results/287.processed: test for feature #937
1563:
1564: 2013-07-31 moko
1565:
1566: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
1567: compilation having #define _S
1568:
1569: * src/main/pa_globals.C: cleanup
1570:
1571: 2013-07-30 moko
1572:
1573: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
1574: main/pa_common.C: vs2003 warning war
1575:
1576: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
1577:
1578: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
1579:
1580: * src/lib/md5/pa_sha2.c: warning war
1581:
1582: 2013-07-29 moko
1583:
1584: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
1585: patches from github
1586:
1587: * src/: classes/bool.C, classes/double.C, classes/int.C,
1588: classes/memcached.C, include/pa_config_includes.h,
1589: types/pa_vfile.C, types/pa_vfile.h: warning war
1590:
1591: * src/lib/json/json.vcproj: C++ -> C
1592:
1593: * src/lib/json/: json.c, pa_json.C: C++ warning revert
1594:
1595: * src/lib/json/: json.c, pa_json.C: windows compatibility
1596:
1597: * src/lib/json/: json.c, pa_json.C: windows compatibility
1598:
1599: * src/lib/json/: json.c, pa_json.C: warning war
1600:
1601: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
1602:
1603: * src/include/pa_config_fixed.h: uint16_t added
1604:
1605: * configure.in: uint16_t check added
1606:
1607: * src/: classes/json.C, lib/json/JSON_parser.C,
1.101 moko 1608: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
1609: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
1610: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
1611: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 1612:
1613: 2013-07-25 moko
1614:
1615: * parser3.sln: dependencies added
1616:
1617: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
1618: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
1619: module support
1620:
1621: * src/targets/apache/mod_parser3_core.C: win32 cleanup
1622:
1623: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
1624:
1625: 2013-07-23 moko
1626:
1627: * src/: include/pa_memory.h, main/pa_memory.C: non-working
1628: PA_DEBUG_GC_MEMORY removed
1629:
1630: * src/: main/pa_globals.C, targets/cgi/parser3.C:
1631: PA_DEBUG_DISABLE_GC compilation fix
1632:
1633: * src/: classes/op.C, classes/table.C, include/pa_request.h,
1634: main/pa_request.C: outdated RESOURCES_DEBUG removed
1635:
1636: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
1637: garbage cleanup
1638:
1639: * src/main/pa_common.C: warning war
1640:
1641: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
1642:
1643: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
1644: minor cleanup
1645:
1646: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
1647: uses cygwin, not WIN32 implementation
1648:
1649: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
1650: able to exec shell scripts
1651:
1652: * src/classes/math.C: ifdef WIN32 cleanup
1653:
1654: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
1655:
1656: * bin/auto.p.dist.in: libpq.so -> libpq.
1657:
1658: * src/classes/curl.C: LT_MODULE_EXT used
1659:
1660: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
1661:
1662: 2013-07-22 moko
1663:
1664: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
1665: includes fix
1666:
1667: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
1668:
1669: * configure.in, src/include/pa_config_includes.h,
1670: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1671: src/main/pa_exec.C: includes cleanup
1672:
1673: * src/targets/cgi/parser3.C: 2012->2013
1674:
1675: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
1676:
1677: * configure.in, src/include/pa_config_includes.h,
1678: src/include/pa_http.h, src/lib/json/JSON_parser.h,
1679: src/main/pa_random.C, src/main/pa_socks.C,
1680: src/types/pa_vstatus.C: cygwin support cleanup
1681:
1682: * configure.in: dirent.h check added
1683:
1684: * src/: include/pa_config_includes.h, include/pa_dir.h,
1685: main/pa_dir.C: includes cleanup, dirent.h check added filePath
1686: not copied
1687:
1688: 2013-07-21 moko
1689:
1690: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
1691:
1692: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
1693: parser3.vcproj: unused getopt.h / getopt.c removed
1694:
1695: * operators.txt, src/classes/file.C, tests/022.html,
1696: tests/results/022.processed: ^file:list[path][$.filter[regexp]
1697: $.stat(true)] usage commented
1698:
1699: * configure.in, src/classes/file.C, src/include/pa_dir.h,
1700: src/main/pa_dir.C: ^file:list[] now has dir column and when
1701: $.stat(true) it has size/*date columns modified patch from misha@
1702: that closes issue #914.
1703:
1704: * src/: include/pa_config_includes.h, main/pa_globals.C:
1705: PA_RELEASE_ASSERTS removed
1706:
1707: * src/lib/md5/pa_md5c.c: minor cleanup
1708:
1709: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
1710: localeconv()->decimal_point usage remoed (related to issue #934)
1711:
1712: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
1713: cordprnt.c removed
1714:
1715: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
1716: pa-include/pa_errno.h, pa-include/pa_file_io.h,
1717: pa-include/pa_strings.h: includes cleanup
1718:
1719: * src/lib/md5/pa_md5c.c: headers cleanup
1720:
1721: 2013-07-20 moko
1722:
1723: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
1724: cleanup
1725:
1726: 2013-07-19 moko
1727:
1728: * src/classes/math.C: extern "C" added for crypt
1729:
1730: 2013-07-18 moko
1731:
1732: * src/classes/math.C: fix redhat7.2 build
1733:
1734: 2013-07-17 moko
1735:
1736: * configure.in, src/include/pa_config_includes.h,
1737: src/include/pa_config_fixed.h: headers actualized (inttypes.h
1738: added for uint8/32/64_t)
1739:
1740: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
1741: pa_config_includes.h used for uint32/64_t
1742:
1743: 2013-07-16 moko
1744:
1745: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
1746: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
1747: war
1748:
1749: * src/main/compile.tab.C: compile.y was updated
1750:
1751: * src/main/compile.y: warning war
1752:
1753: * src/: include/pa_exception.h, main/pa_exception.C,
1754: main/pa_xml_exception.C: warning war
1755:
1756: * src/: include/pa_common.h, main/pa_common.C: warning war
1757:
1758: * configure.in: beauty :)
1759:
1760: * tests/: 141.html, results/141.processed: sha256/512 added
1761:
1762: 2013-07-13 moko
1763:
1764: * src/lib/md5/md5.vcproj: sha2 added
1765:
1766: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
1767: classes/math.C: sha2 support (sha256/sha512 digest)
1768:
1769: 2013-07-08 moko
1770:
1771: * src/classes/image.C: directory read or other read problem message
1772: fixed (related to issue #933)
1773:
1774: 2013-07-07 moko
1775:
1776: * bin/auto.p.dist.in: windows-1251 commented to remove auto.p
1777: dependense from $charsetsdir directory existance and content (and
1778: UTF-8 is default allready)
1779:
1780: * AUTHORS: + misha + moko. :)
1781:
1782: 2013-07-06 moko
1783:
1784: * src/: classes/curl.C, include/pa_globals.h,
1785: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
1786: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
1787: for lt_dlinit to be called once and lt_dlexit called at right
1788: place (related to issue #925)
1789:
1790: 2013-07-04 moko
1791:
1792: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
1793: VString::as_vfile now uses vfile.set_binary_string to avoid
1794: content-type to be set, as it brokes badly designed logic in
1795: response output. This hopefully finishes issue #928.
1796:
1797: * tests/results/: 256.processed, 286.processed: file now displayed
1798: as name, size, mode, content-type
1799:
1800: * src/main/pa_common.C: read error now reported cottectly (fixes
1801: issue #933
1802:
1803: 2013-06-28 moko
1804:
1805: * tests/: 286.html, results/286.processed: test extended
1806:
1807: * tests/: 286.html, results/286.processed: Test for issue #928
1808: added. it tests default content-type change.
1809:
1810: * src/types/pa_vfile.C: closes issue #928 - default content-type
1811: now updated
1812:
1813: 2013-06-25 moko
1814:
1815: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
1816: content-type for text/binary files without name added;
1817: ^file::create[$f;...] options now works properly and $f
1818: properties are default (fixes issue #928)
1819:
1820: 2013-05-16 misha
1821:
1822: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
1823: added
1824:
1825: * src/main/pa_table.C: - a tiny memory optimisation while creating
1826: table if specified limit is bigger than source rows count
1827:
1828: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
1829: added ( new feature: #858 )
1830:
1831: 2013-04-29 moko
1832:
1833: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
1834: $.ipresolve(0|1|2) added (closes issue #891)
1835:
1836: * src/lib/curl/curl.h: CURL_IPRESOLVE added
1837:
1838: 2013-04-24 moko
1839:
1840: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
1841: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
1842: types/pa_vmemcached.h: ^memcache.release[] added, calls
1843: memcached_quit (refs #893)
1844:
1845: 2013-04-22 moko
1846:
1847: * src/: include/pa_string.h, main/pa_common.C: no more double
1848: slashes in file path (fixes bug #872)
1849:
1850: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
1851: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
1852: #739)
1853:
1854: * tests/results/266.processed: $.max_params added (feature #915)
1855:
1856: * src/: include/pa_common.h, main/pa_http.C: response-charset
1857: option added to file::load (closes issue #867)
1858:
1859: 2013-04-20 misha
1860:
1861: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
1862: commited
1863:
1864: 2013-03-15 misha
1865:
1866: * src/classes/: hash.C, table.C: - Optimisation: do not create
1867: multiple empty strings while ::sql. uae String::Empty instead
1868:
1869: 2013-03-14 misha
1870:
1871: * src/classes/reflection.C: - for user classes
1872: ^reflection:method_info[] returns $.max_params and $.extra_param
1873: with $.call_type if they available ( new feature: #915 )
1874:
1875: * src/classes/file.C: - ^file:delete[] now supports an option
1876: $.exception(false) that suppress any exception while deleting
1877: file ( new feature: #916 )
1878:
1879: * src/classes/curl.C: - parsing cookies after curl:load now should
1880: work :)
1881:
1882: 2013-03-12 misha
1883:
1884: * src/types/pa_vfile.C: - if specified file_name is empty string
1885: set default name for the file
1886:
1887: 2013-03-11 misha
1888:
1889: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
1890: also available in $f.cookies
1891:
1892: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
1893: moved to a separate method
1894:
1895: 2013-03-10 moko
1896:
1897: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
1898: added
1899:
1900: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
1901: removed (declared by autoconf)
1902:
1903: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
1904: uint32_t define
1905:
1906: 2013-03-10 misha
1907:
1908: * src/classes/file.C: ^file:delete and ^file:move now support
1909: option $.keep-empty-dirs(true) ( new feature: #884 )
1910:
1911: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
1912: empty dirs is added
1913:
1914: 2013-03-10 moko
1915:
1916: * src/classes/: bool.C, double.C, int.C: default can be present,
1917: but default check removed from ^int/double/bool.int/double/bool
1918: for string.int/double/bool compatibility (related to issue #913)
1919:
1920: * src/classes/string.C: ^string.int/dobule/bool no longer
1921: internally throws exception if default is present (closes issue
1922: #913)
1923:
1924: 2013-03-09 misha
1925:
1926: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
1927: optimisations ( #845 )
1928:
1929: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
1930:
1931: 2013-03-08 moko
1932:
1933: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
1934: creates correct table (fixes issue #910)
1935:
1936: * src/classes/op.C: r.connection() -> r.connection(false) to allow
1937: use outside of 'connect' operator (fixes issue #911)
1938:
1939: * tests/results/: 096.processed, 122.processed: test results
1940: updated as doubles now printed with 15 significant digits, not 5
1941: (fixes issue #882)
1942:
1943: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
1944: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
1945:
1946: 2013-02-21 moko
1947:
1948: * src/classes/table.C: _locate_name_value does not check arguments
1949: count, so we check it in advance (fixes issue #905)
1950:
1951: 2012-10-23 moko
1952:
1953: * buildall: old shell for and echo compatibility (for six)
1954:
1955: 2012-10-19 moko
1956:
1957: * buildall: --strip added --disable-safe-mode listed in usage
1958:
1959: 2012-10-17 misha
1960:
1961: * src/classes/op.C: - apply-taint should not throw "outside
1962: connect" exception with sql lang now
1963:
1964: 2012-10-17 moko
1965:
1966: * src/main/pa_request.C: bugfix: safe mode should be inited for
1967: each request (for apache module)
1968:
1969: 2012-09-26 moko
1970:
1971: * src/doc/doxygen.cfg: png -> svg
1972:
1973: 2012-09-25 moko
1974:
1975: * tests/: 141.html, results/141.processed: md5 hmac added, long key
1976: test added
1977:
1978: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
1979: double use when key is long
1980:
1981: 2012-09-16 moko
1982:
1983: * src/classes/math.C: Format -> Method Encode -> Format
1984:
1985: * tests/: 141.html, results/141.processed: math:digest hmac test
1986: added
1987:
1988: 2012-09-14 moko
1989:
1990: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
1991: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
1992: implementation added
1993:
1994: 2012-09-12 moko
1995:
1996: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
1997: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
1998: targets.dox and string.dox slightly actualized
1999:
2000: 2012-08-31 moko
2001:
2002: * ChangeLog: now generated with patched cvs2cl.pl
2003:
2004: 2012-07-29 moko
2005:
2006: * tests/285.html, src/main/execute.C, tests/results/285.processed:
2007: result should be pushed after VMethodFrame destructor is called,
2008: as it deletes junctions from stack params (fixes issue #868)
2009:
2010: 2012-07-23 moko
2011:
2012: * INSTALL, README: buildall script usage documented, other outdated
2013: info updated.
2014:
2015: * buildall-with-xml, buildall-without-xml: replaced by buildall
2016:
2017: 2012-07-21 moko
2018:
2019: * buildall: glib does not compile when threads are disabled...
2020:
2021: * src/types/pa_vmail.C: g_assertion fixes for empty input
2022:
2023: * src/types/pa_vmail.C: yet another fix (strange GPF on object
2024: unref, can't unref nested objects)
2025:
2026: * src/types/pa_vmail.C: another check added
2027:
2028: 2012-07-19 moko
2029:
2030: * buildall: usage added
2031:
2032: * buildall: new buildall script that unites buildall-with-xml,
2033: buildall-without-xml, --with-apache and --with-mailreceive
2034:
2035: * configure.in: support for static gmime and dynamic glib linking.
2036: fixes for FreeBSD
2037:
2038: 2012-07-17 moko
2039:
2040: * configure.in: --with-mailreceive replaced
2041: --with-static-mailreceive and --with-shared-mailreceive pathlink
2042: removed
2043:
2044: 2012-07-16 moko
2045:
2046: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
2047: capitalized, content now decoded and text content converted to
2048: $request:charset. all properties are accessed by functions, this
2049: ready for dynamic load.
2050:
2051: 2012-06-28 moko
2052:
1.101 moko 2053: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
2054: 32 bit
1.95 moko 2055:
2056: 2012-06-27 moko
2057:
2058: * buildall-with-xml, buildall-without-xml: fetch requires -p for
2059: passive ftp
2060:
2061: * src/lib/ltdl/ltdl.vcproj: release build fixed
2062:
2063: * configure.in: 3.4.2 RC -> 3.4.2
2064:
2065: 2012-06-22 moko
2066:
2067: * src/types/pa_vfile.C: returned empty mode to stated files (issue
2068: #815)
2069:
2070: * tests/: 284.html, results/284.processed: output options test
2071: (feature #265)
2072:
2073: 2012-06-22 misha
2074:
2075: * tests/215.html: - little changes
2076:
2077: 2012-06-21 moko
2078:
2079: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
2080: types/pa_vxdoc.h: output_options returned and used (bugfix for
2081: feature #265)
2082:
2083: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
2084: breaks long .*, default 10M restored. (issue #216)
2085:
2086: * tests/: 283.html, results/283.processed: test for issue #815
2087: added
2088:
2089: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
2090: again, cstrm not required.
2091:
2092: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
2093: Win32 and broken FreeBSD (issue #45)
2094:
2095: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
2096:
2097: * src/main/pa_string.C: warnings war
2098:
2099: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
2100: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
2101: main/pa_socks.C, targets/apache/pa_threads.C,
2102: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2103: types/pa_vstatus.C: compilation under cygwin fixed
2104:
2105: 2012-06-19 moko
2106:
2107: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
2108: Windows fixed
2109:
2110: * parser3.sln: removed antique pcre_ctype
2111:
2112: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
2113:
2114: * src/include/pa_config_fixed.h: undefined reference to
2115: __imp__pcre_* fix for Windows
2116:
2117: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.101 moko 2118: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
2119: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
2120: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
2121: define fixed
1.95 moko 2122:
2123: 2012-06-18 moko
2124:
2125: * src/classes/memcached.C: flush -> clear
2126:
2127: * src/classes/memcached.C: memcached does not support quotes even
2128: in server name
2129:
2130: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
2131: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
2132: called on open to check servers existance. $.key(true) syntax
2133: now supported
2134:
2135: 2012-06-17 moko
2136:
2137: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
2138: cleanup
2139:
2140: * src/classes/table.C, tests/282.cfg, tests/282.html,
2141: tests/results/282.processed: encloser at the EOF bug fixed,
2142: incorrectly enclosed data now processed more logicaly (fixes
2143: #339)
2144:
2145: 2012-06-15 moko
2146:
2147: * buildall-without-xml: sync with buildall-with-xml
2148:
2149: * buildall-with-xml: download auto-detected between fetch and curl
2150:
2151: * configure.in: --with-gc and --with-pcre now also processed
2152: correctly
2153:
1.101 moko 2154: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
2155: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
2156: should be run on rol1 using automake / aclocal (GNU automake)
2157: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 2158:
2159: * configure.in: new PARSER_VERSION logic
2160:
2161: * src/include/pa_version.h: new pa_version.h logic
2162:
2163: * src/: classes/curl.C, classes/file.C, classes/image.C,
2164: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
2165: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
2166: feols_normalized -> fis_text_content set_binary added
2167:
2168: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
2169:
2170: 2012-06-15 misha
2171:
2172: * src/: classes/curl.C, classes/file.C, classes/image.C,
2173: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
2174: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
2175: ^file::create[text;content] EOLs in content now is normalized. (
2176: new feature: #815 )
2177:
2178: 2012-06-15 moko
2179:
2180: * configure.in: --disable-version-update added to disable version
2181: update with host information (for debian package) whitespace
2182: optimized
2183:
2184: * configure.in: version changed to 3.4.2 RC no-pic added for
2185: libtool
2186:
2187: * src/include/pa_version.h: Nice pa_version.h default. Please keep
2188: it.
2189:
2190: 2012-06-14 moko
2191:
2192: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
2193: tests/results/281.processed: "hash flocked" error removed for
2194: safe operations like ^h._count[] ( new feature: #335 )
2195:
1.101 moko 2196: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 2197:
2198: * buildall-with-xml, buildall-without-xml: --with-static -> --with
2199:
2200: * configure.in: --with-static/shared xml replaced with --with-xml,
2201: xml compilation check added
2202:
2203: * configure.in: --with-static/shared-gc, --with-static-pcre are
2204: replaced with --with-gc and --with-pcre test for pcre linking
2205: added
2206:
2207: 2012-06-13 moko
2208:
2209: * configure.in: apxs2 check optimized
2210:
2211: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
2212: .la, includes optimized
2213:
2214: * buildall-with-xml: --with-pic looks better for -fPIC
2215:
2216: * configure.in: switched to convenience library in static linking
2217:
2218: * src/targets/apache/Makefile.am: switched to convenience library
2219: usage to avoid libtool warnings
2220:
2221: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
2222: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
2223: smtp/Makefile.am: switched to convenience library usage
2224:
2225: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
2226:
2227: * src/targets/apache/Makefile.am: updated for libtool usage
2228:
2229: * bin/auto.p.dist.in: .cfg removed from charset names.
2230:
2231: * buildall-without-xml: --with-included-ltdl added
2232:
2233: * buildall-without-xml: sync with buildall-with-xml
2234:
2235: * buildall-with-xml: --with-included-ltdl added $cflags added for
2236: -fPIC for x64 $download added for wget success check added
2237:
2238: * buildall-without-xml: --with-dynamic-stdcpp removed
2239:
2240: * configure.in: disable-static returned
2241:
2242: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
2243: LIBTOOLFLAGS
2244:
2245: 2012-06-12 moko
2246:
2247: * configure.in, src/targets/cgi/Makefile.am: disable-static not
2248: compatible with LIBTOOLFLAGS for unknown reasons
2249:
2250: * buildall-with-xml: --with-dynamic-stdcpp removed
2251:
2252: * configure.in: static/dynamic -lstdc++ linking option removed
2253: apxs2 check added
2254:
2255: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
2256: option removed
2257:
2258: 2012-06-10 moko
2259:
2260: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
2261: added
2262:
2263: * src/targets/cgi/pp3.cmd: old PAF stuff
2264:
1.101 moko 2265: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
2266: beauty
1.95 moko 2267:
2268: * depcomp: from libtool 2.4.2
2269:
2270: * configure.in: ltdl directory removed, it has correct Makefile.in
2271:
2272: 2012-06-09 moko
2273:
1.101 moko 2274: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
2275: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 2276: autogenerated files updated after libtool update
2277:
1.101 moko 2278: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
2279: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 2280: config_auto.h.in, config_fixed.h, configure, configure.ac,
2281: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
2282: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
2283: config/compile, config/config.guess, config/config.sub,
2284: config/depcomp, config/install-sh, config/ltmain.sh,
2285: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
2286: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
2287: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
2288: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
2289: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
2290: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
2291: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
2292: m4/lt~obsolete.m4: libtool updated to version 2.4.2
2293:
2294: * configure.in: preparation for new libtool
2295:
2296: * configure.in: Some beauty added :)
2297:
2298: * src/targets/apache/Makefile.am: := -> =
2299:
2300: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
2301: again. :)
2302:
2303: * src/include/pa_config_includes.h, configure.in: limits.h added,
2304: previously was taken from pcre_internal.h. :)
2305:
2306: * src/lib/pcre/Makefile.am: config.h returned
2307:
2308: * src/lib/pcre/config.h: still need this. :)
2309:
2310: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
2311:
2312: * configure.in: --with-charsets removed; --with-mysql-client & co
2313: removed
2314:
2315: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
2316: now in parser tree, no need to copy
2317:
2318: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
2319: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
2320: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
2321: debian/patches/101_pcre.patch - local copy of pcre_internal.h
2322: extracts now used old trash removed
2323:
2324: * bin/auto.p.dist.in: all charsets are listed, utf-8 by default,
2325: rare charsets/drivers are commented, sql driver quessing removed
2326: (debian/patches/103_auto_p.patch)
2327:
2328: * etc/parser3.charsets/Makefile.am: charsets now in share
2329: (debian/patches/104_automake.patch) + all charsets are copied
2330:
2331: * buildall-with-xml, buildall-without-xml: curl option removed +
2332: extra arguments now supported
2333:
2334: 2012-06-08 misha
2335:
2336: * src/classes/table.C: - one params.as_hash usage was rolled back:
2337: the 2nd option in ^table.hash[] could be hash or table so
2338: .as_hash will throw an exception when table option is specified
2339:
2340: * src/: classes/curl.C, classes/file.C, classes/hash.C,
2341: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
2342: classes/table.C, classes/void.C, classes/xdoc.C,
2343: include/pa_exception.h, types/pa_vmethod_frame.C,
2344: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
2345: and improved (whitespaces are allowed as empty options) -
2346: MethodParams::as_table is added - above methods are used for
2347: parsing methods' options ( new feature: #9 )
2348:
2349: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
2350: to vclass. now class fields can be accessible as a hash:
2351: $h[^hash::create[$asd:CLASS]]
2352:
2353: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
2354: have get_fields method so their fields can be accessed with
2355: ^reflection:fields[...] & ^reflection:field[...]
2356:
2357: 2012-06-06 misha
2358:
2359: * tests/280.html: - tests for
2360: ^reflection:method[obj-or-class;method],
2361: ^reflection:field[obj-or-class;field] and
2362: ^reflection:fields[obj-or-class] are added
2363:
2364: 2012-06-05 misha
2365:
2366: * src/classes/reflection.C: - ^reflection:method[class or
2367: object;method name] and ^reflection:field[class or object;field
2368: name] are added
2369:
2370: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
2371: is used
2372:
2373: * src/types/pa_method.h: - Method::as_vjunction method is added
2374:
2375: 2012-06-05 moko
2376:
1.101 moko 2377: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 2378:
2379: * src/classes/memcached.C: flish ttl fixed
2380:
2381: 2012-06-04 moko
2382:
2383: * src/classes/json.C, src/classes/op.C, tests/279.html,
2384: tests/results/279.processed: ^json:parse[] now supports $.taint
2385: option (new feature #833)
2386:
2387: 2012-06-04 misha
2388:
2389: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
2390: - search_stop method was moved from pa_vcookie.C to pa_common.C
2391:
2392: 2012-06-03 misha
2393:
2394: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
2395: cookies are parced and stored into $.cookies ( new feature: #31 )
2396:
2397: 2012-05-30 misha
2398:
2399: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
2400: incomplete class into a scope while @USE is found
2401:
2402: * src/main/compile.y: - add incomplete class into a scope while
2403: @USE and @CLASS instructions are found ( bugfix: #838 )
2404:
2405: 2012-05-30 moko
2406:
2407: * src/types/pa_vclass.C, tests/278.html,
2408: tests/results/278.processed: removed "property has no getter
2409: method" exception when GET_DEFAULT present (fixes #269)
2410:
2411: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
2412: $._default
2413:
2414: 2012-05-29 moko
2415:
2416: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
2417: uninitialized values usage (new feature: #154)
2418:
2419: 2012-05-28 moko
2420:
2421: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
2422: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
2423: src/types/pa_vdate.h, src/types/pa_vdouble.h,
2424: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
2425: src/types/pa_vobject.C, src/types/pa_vobject.h,
2426: src/types/pa_vstring.h, src/types/pa_vtable.C,
2427: tests/results/277.processed, src/types/pa_vtable.h,
2428: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
2429: ^json:string[$o; $.default[$method]] implemented for VObject (new
2430: feature #803)
2431:
2432: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
2433: tests/results/277.processed: json numbers are now treated as
2434: double ( new feature: #834 )
2435:
2436: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
2437: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
2438: added for out of range checks, zero division in vint/vdouble
2439: check added ( fixes #832 )
2440:
2441: * tests/: 275.html, results/275.processed: tests for pa_atoui added
2442: ( fixes #832 )
2443:
2444: 2012-05-28 misha
2445:
2446: * buildall-with-xml: - --without-lzma option is added to libxml2
2447: configure
2448:
2449: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
2450: added - tests for unsupported values for options $.file, $.table
2451: and $.date are added
2452:
2453: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
2454: accepts "stat" $.file[] option's value in addition to existed
2455: "text" and "base64" ( new feature: #835 )
2456:
2457: * tests/276.html: - test for
2458: ^reflection:delete[$object-or-class;field-name]
2459:
2460: * src/classes/reflection.C: -
2461: ^reflection:delete[$object-or-class;field-name] is added ( new
2462: feature: #268 )
2463:
2464: 2012-05-27 misha
2465:
2466: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
2467:
2468: 2012-05-24 misha
2469:
2470: * src/include/pa_common.h: - method lastposafter was removed
2471:
2472: * src/classes/file.C: - use strrpbrk & rskipchars instead of
2473: lastposafter - ^file:dirname[] & Co proper handle windows file
2474: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
2475: work as *nix commands
2476:
2477: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
2478:
2479: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
2480: rskipchars were added
2481:
2482: * tests/270.html: - more tests for ^file:find[]
2483:
2484: * tests/065.html: - more tests for ^file:dirname[] & Co
2485:
2486: * src/include/pa_version.h: - must be "win32" here. it is
2487: auto-generated on *nix
2488:
2489: 2012-05-24 moko
2490:
2491: * src/classes/math.C: ^math:convert[] now supports uint32 and
2492: throws overflow exception ( new feature: #830 )
2493:
2494: * tests/: 275.html, results/275.processed: test for ^math:convert[]
2495: uint32 support and overflow added ( new feature: #830 )
2496:
2497: 2012-05-23 moko
2498:
2499: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
2500: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
2501: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
2502: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
2503: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2504: types/pa_vregex.h, types/pa_vstateless_class.C,
2505: types/pa_vstateless_class.h, types/pa_vstring.h,
2506: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
2507: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
2508: "return string as-is" removed from as_expr_result. ( new feature:
2509: #831 )
2510:
2511: * tests/results/244.processed: test changed after bug #782 fix
2512: commited
2513:
2514: * tests/results/229.processed: test results for bug #782 commited
2515:
2516: * tests/: 254.html, results/254.processed: uid now just compared,
2517: not printed. :)
2518:
2519: 2012-05-20 moko
2520:
2521: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
2522: feature: #341 )
2523:
2524: * tests/: 254.html, results/254.processed: test for
2525: ^reflection:uid[] added
2526:
2527: * tests/: 254.html, results/254.processed: test for
2528: ^reflection:uid[$obj] added
2529:
2530: 2012-05-17 misha
2531:
2532: * src/main/untaint.C: - do not replace ' char by _26 while
2533: exploding filespec-tainting ( new feature: #829 )
2534:
2535: 2012-05-12 moko
2536:
2537: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
2538: not.
2539:
2540: 2012-05-08 moko
2541:
2542: * src/types/pa_vmethod_frame.h: bug #782 fixed
2543:
2544: * tests/229.html: test for bug #782
2545:
2546: * tests/results/259.processed, src/main/pa_request.C,
2547: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
2548: src/types/pa_vstring.h, src/types/pa_vvoid.C,
2549: src/types/pa_vvoid.h: feature #154 - first empty param now
2550: string; defined locals are empty strings; $STRICT-VARS(true)
2551: added
2552:
2553: 2012-04-27 moko
2554:
1.101 moko 2555: * src/targets/apache/Makefile.am:
1.95 moko 2556: ../../lib/memcached/libmemcached.a added
2557:
2558: 2012-04-27 misha
2559:
2560: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
2561: ( #827 )
2562:
2563: 2012-04-25 moko
2564:
2565: * src/: classes/json.C, classes/memcached.C,
2566: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2567: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
2568: implemented.
2569:
2570: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
2571:
2572: 2012-04-23 moko
2573:
2574: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
2575: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
2576: types/pa_vmemcached.h: open allows options hash for new
2577: memcached(options) function
2578:
2579: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
2580: not appended
2581:
2582: 2012-04-21 moko
2583:
2584: * src/classes/curl.C: '' added. :)
2585:
2586: * src/classes/classes.vcproj: new curl.h location
2587:
2588: * src/classes/curl.C: verbose output redirection from stderr to
2589: file curl option added
2590:
2591: 2012-04-20 moko
2592:
2593: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
2594: contains what we need from curl, #ifdef HAVE_CURL removed
2595:
1.101 moko 2596: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 2597: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.101 moko 2598: src/lib/Makefile.am, src/lib/curl/Makefile.am,
2599: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 2600: configure option
2601:
2602: 2012-04-19 moko
2603:
2604: * src/: classes/double.C, classes/inet.C, classes/int.C,
2605: classes/string.C, lib/gc/include/gc_allocator.h,
2606: types/pa_vform.C: PVS-Studio detected errors fixes, unused
2607: options from sql_result_string removed. (closes issue #468)
2608:
2609: * src/types/pa_vmemcached.C: empty string fix
2610:
2611: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
2612: pa_vstring.C, pa_vstring.h: serialization helpers moved to
2613: pa_vmemcached.C
2614:
2615: 2012-04-18 moko
2616:
2617: * src/targets/apache/mod_parser3.c: "Parser3 module requires
2618: apache2-mpm-prefork" error displayed in threaded mpm.
2619:
2620: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
2621: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
2622: installed (issue #354)
2623:
2624: 2012-04-16 moko
2625:
2626: * src/types/pa_vmemcached.C: call to memcached_result_create and
2627: memcached_result_free removed
2628:
2629: 2012-04-14 moko
2630:
2631: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
2632:
2633: * src/types/pa_vmemcached.C: check_key added and used
2634:
2635: 2012-04-13 moko
2636:
2637: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
2638: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
2639: Serialization_data now added and used, VString now serialized
2640: with languages into memcached.
2641:
2642: 2012-03-28 moko
2643:
2644: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
2645: lib/memcached/pa_memcached.h: result lengths added
2646:
2647: 2012-03-27 moko
2648:
2649: * src/types/pa_vmemcached.C: strdup added
2650:
2651: 2012-03-24 moko
2652:
2653: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
2654: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
2655: types/pa_vmemcached.h: memcached: mget, flush, fttl added
2656:
2657: 2012-03-20 moko
2658:
1.101 moko 2659: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 2660:
2661: * src/targets/cgi/Makefile.am: cleanup
2662:
2663: * src/: types/Makefile.am, types/pa_vmemcached.C,
2664: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
2665:
2666: * src/: classes/Makefile.am, classes/memcached.C,
2667: lib/memcached/Makefile.am, lib/memcached/constants.h,
2668: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2669: lib/memcached/types.h, lib/Makefile.am: memcached initial
2670:
2671: 2012-03-16 moko
2672:
2673: * src/main/execute.C: ident now works under Linux + ident displays
2674: filenames (closes issue #818)
2675:
1.101 moko 2676: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 2677: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
2678: pa_vmethod_frame_local.h removed
2679:
2680: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2681: classes/classes.h, classes/curl.C, classes/date.C,
2682: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2683: classes/hashfile.C, classes/image.C, classes/inet.C,
2684: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2685: classes/memory.C, classes/op.C, classes/reflection.C,
2686: classes/regex.C, classes/response.C, classes/string.C,
2687: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
2688: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
2689: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2690: include/pa_config_fixed.h, include/pa_config_includes.h,
2691: include/pa_dictionary.h, include/pa_dir.h,
2692: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2693: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2694: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2695: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2696: include/pa_request_charsets.h, include/pa_request_info.h,
2697: include/pa_sapi.h, include/pa_socks.h,
2698: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2699: include/pa_stack.h, include/pa_string.h,
2700: include/pa_stylesheet_connection.h,
2701: include/pa_stylesheet_manager.h, include/pa_table.h,
2702: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
2703: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
2704: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
2705: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
2706: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2707: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2708: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2709: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2710: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2711: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2712: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2713: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2714: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2715: main/pa_string.C, main/pa_stylesheet_connection.C,
2716: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
2717: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
2718: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
2719: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2720: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2721: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2722: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2723: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2724: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2725: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
2726: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
2727: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
2728: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
2729: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
2730: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
2731: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
2732: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
2733: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
2734: types/pa_vmemory.h, types/pa_vmethod_frame.C,
2735: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
2736: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
2737: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
2738: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
2739: types/pa_vresponse.h, types/pa_vstateless_class.C,
2740: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
2741: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
2742: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
2743: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
2744: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
2745: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
2746: ident now works under Linux + ident displays filenames (closes
2747: issue #818) Copyright updated
2748:
2749: 2012-03-13 moko
2750:
2751: * src/main/pa_string.C: compilation fix for feature #741
2752:
2753: 2012-03-09 misha
2754:
2755: * tests/193.html: - tests for ^string:base64[encoded] are updated
2756:
2757: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
2758: now detects invalid base64 chars in the middle of encoded stricg
2759: ( new feature: #55 )
2760:
2761: * src/include/pa_exception.h: - new exception type for base64
2762: decoding is added
2763:
2764: 2012-03-06 misha
2765:
2766: * tests/274.html: - tests for ^date::today[] and
2767: ^date.sql-string[datetime|date|time] are added
2768:
2769: * src/classes/date.C: - constructor ^date::today[] is added ( new
2770: feature: #811 ) - ^date.sql-string[] now can accept one param --
2771: strings "datetime", "date" or "time" - comments tidying up
2772:
2773: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
2774: date and time
2775:
2776: 2012-03-03 misha
2777:
2778: * tests/193.html: - tests for
2779: ^string:base64[encoded;$.strict(true)] are added
2780:
2781: * tests/results/auto.p: - try-catch operator is added
2782:
2783: * src/: classes/file.C, classes/string.C, include/pa_common.h,
2784: main/pa_common.C: - $.strict(true|false) option is added to
2785: base64 decode methods ( new feature: #55 )
2786:
2787: * src/main/pa_common.C: - base64 decode memory usage was decreased
2788: ( new feature: #819 )
2789:
2790: 2012-02-28 moko
2791:
2792: * src/classes/hash.C: ident test
2793:
2794: 2012-02-27 misha
2795:
2796: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
2797:
2798: 2012-01-08 misha
2799:
2800: * tests/273.html: - tests for ^string.replace[from;to] are added
2801:
2802: * src/: classes/string.C, include/pa_dictionary.h,
2803: main/pa_dictionary.C, main/pa_string.C: -
2804: ^string.replace[from;to] is added ( new feature: #741 ) -
2805: ^string.replace[one subst here] is slightly optimized
2806:
2807: 2011-12-07 misha
2808:
2809: * src/classes/table.C: - $t[^table::create{$empty}] now creates
2810: named table with one empty column ( bugfix: #63 )
2811:
2812: 2011-11-30 misha
2813:
2814: * src/classes/json.C: - it's possible to set user's method for
2815: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
2816: #763 )
2817:
2818: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
2819:
2820: 2011-11-23 misha
2821:
2822: * src/: classes/curl.C, classes/file.C, classes/image.C,
2823: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
2824: types/pa_vfile.h, types/pa_vform.C: - constructor
2825: ^file::create[mode;filename;content[;options]] now accepts binary
2826: mode and file-content - new constructor's format:
2827: ^file::create[string-or-file-content[;$.name[filename]
2828: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
2829: feature: #65 )
2830:
2831: * src/: include/pa_request.h, main/pa_request.C: - new method
2832: mime_type_of(const String*) is added
2833:
2834: * src/include/pa_exception.h: - new exception constant
2835: FILE_NAME_MUST_BE_SPECIFIED is added
2836:
2837: * src/classes/table.C: - bug with negative offset transformed into
2838: a feature. it means pointing to a row from the end of the table (
2839: new feature: #810 )
2840:
2841: 2011-11-19 misha
2842:
2843: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
2844: â ìåòîäå _select ( new feature: #810 )
2845:
2846: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
2847: options were specified together is simplified
2848:
2849: 2011-11-12 misha
2850:
2851: * src/main/pa_request.C: - forgotten fix for escaping filename in
2852: HTTP content-disposition header (a part of bug #361 )
2853:
2854: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
2855: checks for ancestors' classes as well ( new feature: #456 )
2856:
2857: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
2858: "without cycle" now have types "parser.break" and
2859: "parser.continue" instead of "parser.runtime" ( new feature: #799
2860: )
2861:
2862: 2011-11-11 misha
2863:
2864: * tests/results/: 099.processed, 100.processed, 205.processed,
2865: 237.processed: - since bug #361 was fixed the content of filename
2866: in HTTP headers is quoted
2867:
2868: * tests/results/270.processed: - result for test 270
2869:
2870: * tests/: 065.html, results/065.processed: - more tests for
2871: ^file:basename[] & Co were added
2872:
2873: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
2874:
2875: * tests/270.html: - tests for ^file:find[] are added
2876:
2877: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
2878: using option $.charset. option $.engoding is still supported but
2879: these options can not be specified together
2880:
2881: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
2882: comparation charset name with string "UTF-8" ( bugfix: #759 )
2883:
2884: 2011-10-11 misha
2885:
2886: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
2887: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
2888: #622)
2889:
2890: 2011-09-30 misha
2891:
2892: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
2893: exception "saving stat-ed file" ( bugfix: #395 )
2894:
2895: 2011-05-30 misha
2896:
2897: * src/classes/string.C: - fixed bug which was added with
2898: params.as_hash into string:sql
2899:
2900: 2011-05-29 misha
2901:
2902: * src/types/pa_value.C: - filename in content-disposition header
2903: must be quoted ( bugfix: #361 )
2904:
2905: 2011-05-27 misha
2906:
2907: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
2908: created file
2909:
2910: * src/classes/: hash.C, mail.C: - little tunning with get_hash
2911: usage
2912:
2913: * src/include/pa_exception.h: - one more string for exception was
2914: added
2915:
2916: 2011-05-25 misha
2917:
2918: * tests/269.html: - tests for checking input params in some dom
2919: methods
2920:
2921: * src/classes/: xdoc.C, xnode.C: - validation of some input params
2922: was added. it isn't possible not wo create xdoc with invalid
2923: tagName. ( bugfix: #160 )
2924:
2925: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
2926: string "data must be string" was mover from pa_exception.h to
2927: pa_xml_exception.h
2928:
2929: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
2930: as_xmlncname, as_xmlname and as_xmlnsuri were added
2931:
2932: * src/main/pa_xml_exception.C: - XmlException accepts more options
2933:
2934: * src/include/pa_xml_exception.h: - XmlException accepts more
2935: options - XML-related exception's strings were added
2936:
2937: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
2938: output_options were removed)
2939:
2940: 2011-05-19 misha
2941:
2942: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
2943: params.as_hash is used more while parsing methods hash-options
2944:
2945: 2011-05-18 misha
2946:
2947: * operators.txt: - info about json-serialization of xdoc was added
2948:
2949: * tests/256.html: - tests for json-serialization xdoc were added
2950:
2951: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
2952:
2953: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2954: classes/json.C, classes/xdoc.C: - now json:string can serialize
2955: xdoc-objects. options (the same as ^xdoc.string[]) could be
2956: specified in $.xdoc[] ( new feature: #265 )
2957:
2958: 2011-05-15 misha
2959:
2960: * tests/268.html: - tests for ^table.count[with options] were added
2961:
2962: * src/classes/table.C: - method ^table.count[] now can accept
2963: options ( new feature: #93 ): ^table.count[column] returns number
2964: of columns for named table; ^table.count[cells] returns number of
2965: cells in the current row; ^table.count[] & ^table.count[rows]
2966: return number of rows in a table.
2967:
2968: * tests/267.html: - test for checking switch/case in boolean mode
2969: was added
2970:
2971: * src/classes/op.C: - if switch's or case's value is bool, they are
2972: compared as bool values, not as double values: new feature: #351
2973:
2974: 2011-05-06 misha
2975:
2976: * tests/242.html: - EOL before EOF was added
2977:
2978: * tests/169.html: - tests for splitting empty string and void were
2979: added
2980:
2981: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
2982: returned table with one empty cell)
2983:
2984: 2011-04-03 misha
2985:
2986: * src/include/pa_version.h, configure.in: - version in head was
2987: changed to 3.4.2b
2988:
2989: 2011-03-30 misha
2990:
2991: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
2992: as well ( new feature #294 )
2993:
2994: 2011-03-29 misha
2995:
2996: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
2997: limited to approx. 6 MB. previous limits were too big for real
2998: life. bugfix: #216
2999:
3000: 2011-03-04 moko
3001:
3002: * etc/parser3.charsets/cp866.cfg: Conforms to
3003: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
3004:
3005: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
3006: vlalek@
3007:
3008: 2011-02-22 misha
3009:
3010: * src/include/pa_charset.h, operators.txt: - some methods mustn't
3011: be under #ifdef XML or parser can't be compiled without xml
3012: support
3013:
3014: 2011-02-21 misha
3015:
1.101 moko 3016: * src/targets/apache/: Makefile.am: - mention
1.95 moko 3017: ApacheModuleParser3.vcproj was removed
3018:
3019: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
3020: removed)
3021:
3022: 2011-02-20 misha
3023:
3024: * tests/: 266.html, 266.p: - tests for checking $.inherited and
3025: $.overridden in ^reflection:method_info[...] were added
3026:
3027: * src/classes/reflection.C: - beautifying result of
3028: ^reflection:method_info[] ($.overridden/inherited)
3029:
3030: 2011-02-18 misha
3031:
3032: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
3033: and pa_isalnum instead of isalpha and isalnum - bug with
3034: redundand quoting lowercased latin chars while building email
3035: body was fixed
3036:
3037: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
3038: added (they check for latin chars only)
3039:
3040: 2011-02-16 misha
3041:
3042: * src/main/pa_charset.C: - bugfix: in some cases the calculating
3043: string size for transcoding gave too small value (should ever
3044: look for availability char in dest charset inspite of the char
3045: size)
3046:
3047: 2011-02-04 moko
3048:
3049: * tests/223.html: header values now not url-encoded (issue #195)
3050:
3051: 2011-02-01 misha
3052:
3053: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
3054:
3055: 2011-01-31 misha
3056:
3057: * src/main/pa_request.C: - throw exception if param file_name in
3058: use_file is empty
3059:
3060: 2011-01-08 moko
3061:
3062: * src/classes/curl.C: compilations errors fixed
3063:
3064: 2010-12-29 moko
3065:
3066: * tests/: 265.html, results/265.processed: test for issue #200
3067: added
3068:
3069: * src/main/pa_string.C: empty regex result check added (fixes issue
3070: #200)
3071:
3072: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
3073:
3074: * tests/results/223.processed: header values now not url-encoded
3075: (issue #195)
3076:
3077: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
3078: main/untaint.C: L_HTTP_HEADER now used in http headers values,
3079: pa_http_safe_header_name added for headers names (fixes bug #195)
3080:
3081: 2010-12-18 misha
3082:
3083: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
3084: => pa-include
3085:
3086: 2010-11-28 moko
3087:
3088: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
3089:
3090: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
3091: -> pa
3092:
3093: * configure.in: apr -> pa
3094:
3095: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
3096:
3097: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
3098: classes/Makefile.am, types/Makefile.am: apr -> pa
3099:
3100: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
3101: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
3102: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
3103: pa-include/pa_apr.h, pa-include/pa_errno.h,
3104: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
3105: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
3106: module apr name conflict resolved)
3107:
3108: 2010-11-27 misha
3109:
3110: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
3111: libbz2
3112:
3113: 2010-11-26 misha
3114:
3115: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
3116: warnings removed
3117:
3118: 2010-11-25 moko
3119:
3120: * operators.txt: $.indent(true)
3121:
3122: * operators.txt: another bugfix. :)
3123:
3124: * operators.txt: bugfix. :)
3125:
3126: * buildall-with-xml: libxml2-2.7.8 + with-apache
3127:
3128: 2010-11-24 moko
3129:
1.101 moko 3130: * configure: apxs support
1.95 moko 3131:
3132: * configure.in: apxs support -Bstatic gc removed for OS X
3133:
3134: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
3135:
3136: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
3137: THREAD_LOCAL usage
3138:
3139: * src/: classes/curl.C, include/pa_config_includes.h,
3140: main/pa_globals.C: THREAD_LOCAL defined and used
3141:
3142: 2010-11-23 moko
3143:
3144: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
3145: should be passed to pa_sleep, and only fractional part (bugfix:
3146: #188)
3147:
3148: * src/targets/apache/mod_parser3.c: 1.3 compatibility
3149:
3150: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
3151: GC_dont_gc=1, as in cgi version
3152:
3153: * src/targets/apache/mod_parser3.c: warning war
3154:
3155: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
3156: pa_httpd.h: version removed, some trash removed
3157:
3158: * src/targets/apache/mod_parser3.c: version removed (we don't want
3159: to show it), warning war
3160:
3161: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
3162: pa_httpd.h: parser_status_allowed removed + merge config
3163: functions removed (override is the default) + beauty
3164:
3165: * src/: include/pa_request.h, main/pa_request.C,
3166: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
3167: hide $status used in apache module removed
3168:
3169: 2010-11-18 moko
3170:
3171: * operators.txt: $.table[compact] added for ^json:string[]
3172:
3173: 2010-11-16 moko
3174:
3175: * src/targets/apache/mod_parser3.c: some cleanup done
3176:
3177: * src/main/untaint.C: bugfix: first, second String::Body argument
3178: is hashcode; second, info.fragment_begin is original, not
3179: resulting length
3180:
3181: * src/classes/file.C: new feature: $.stdin now untainted
3182:
3183: * tests/results/264.processed: new feature: $.stdin[] now untainted
3184:
3185: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
3186:
3187: * src/classes/op.C: ^apply-taint[] method added
3188:
3189: * tests/: 264.html, results/264.processed: ^apply-taint[] test
3190: added; $.stdin untaint test added
3191:
3192: 2010-11-15 moko
3193:
3194: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
3195: removed
3196:
3197: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
3198: pa_httpd.h: 2x2 calculated under apache2. :)
3199:
3200: 2010-11-13 moko
3201:
3202: * src/targets/apache/mod_parser3.c: initial changes to build module
3203: with apache 2.x includes
3204:
3205: * src/targets/apache/: Makefile.am, mod_parser3.c,
3206: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
3207: united apache 1.3 / apache 2.x DSO module
3208:
3209: 2010-11-09 moko
3210:
3211: * src/types/pa_method.h: check added to dissallow @method[name;*]
3212: syntax
3213:
3214: * tests/: 263.html, results/263.processed: test from method[*args]
3215: added
3216:
3217: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
3218: number of params can now be passed to a method declared with *arg
3219:
3220: 2010-11-06 moko
3221:
3222: * src/classes/table.C: formating fixed. :)
3223:
3224: * src/classes/table.C: closes #4: ^table.select now supports
3225: $.limit(), $.offset, $.reverse() options
3226:
3227: * tests/: 262.html, results/262.processed: test for ^table:select
3228: with options added (feature #4)
3229:
3230: * src/include/pa_array.h: remove function added
3231:
3232: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
3233: object in get_element/put_element, using static one.
3234:
3235: 2010-11-04 moko
3236:
3237: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
3238: options is passed
3239:
3240: * tests/: 256.html, results/256.processed: $.table[compact] feature
3241: now tested; k and p in handler now tested.
3242:
3243: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
3244: $.table[compact] feature added
3245:
3246: * src/classes/json.C: key is now passed to handler in
3247: value_json_string; ^json:string result now process tainting
3248: inside and returns clean string, related to issue #153
3249:
3250: * src/main/untaint.C: bugfix: charset can be null (in
3251: ^string:save[] as example), thus check is added
3252:
3253: 2010-10-31 moko
3254:
3255: * src/classes/string.C: error message changed (fixes issue #149)
3256:
3257: 2010-10-29 moko
3258:
3259: * src/main/pa_http.C: ":port" is now added to "Host:" header if
3260: port is not default (fixes issue #155); exception on invalid port
3261: added.
3262:
3263: * src/main/untaint.C: '*' is now not urlencoded to allow header
3264: "Accept: */*" to be passed
3265:
3266: 2010-10-28 moko
3267:
3268: * src/classes/curl.C: bugfix: detect_charset() was throwing
3269: exception on unknown charset even if response_charset was
3270: specified
3271:
3272: 2010-10-27 moko
3273:
3274: * src/classes/string.C: ^string.append removed for void
3275: compatibility
3276:
3277: 2010-10-26 moko
3278:
3279: * src/classes/json.C: libjson supports array at top level, we too
3280: (GPF fixed)
3281:
3282: 2010-10-25 moko
3283:
3284: * tests/: 253.html, results/253.processed: libjson supports array
3285: at top level, parser now supports it as well.
3286:
3287: * tests/261.html, tests/results/261.processed,
3288: src/types/pa_vstring.h: empty string is now void compatible
3289: (allows $empty.key)
3290:
3291: 2010-10-22 misha
3292:
3293: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
3294: while adding additional expires checkout)
3295:
3296: * tests/030.html: - test for session cookie was added
3297:
3298: 2010-10-21 moko
3299:
3300: * src/: classes/string.C, classes/void.C, main/execute.C,
3301: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
3302: string (feature #111)
3303:
3304: * tests/: 261.html, results/261.processed: checks void from string
3305: inheritance (feature #111)
3306:
3307: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
3308: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
3309: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
3310: now true by default
3311:
3312: 2010-10-17 moko
3313:
3314: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
3315: upload now uses binary blocks instead of L_FILE_POST tainting.
3316: (bugfix: #128)
3317:
3318: * tests/: 223.html, results/223.processed: binary file upload test
3319: added, GPF (issue #128) also checked in this test
3320:
3321: 2010-10-13 misha
3322:
3323: * tests/260.html: - test for math:convert
3324:
3325: * src/classes/math.C: - error in math:convert was fixed
3326:
3327: * operators.txt: - info about
3328: ^math:convert[number](from-base;to-base) was added
3329:
3330: * src/classes/math.C: - method
3331: ^math:convert[number](from-base;to-base) for converting number
3332: represention from one base to another was added ( new feature:
3333: #23 )
3334:
3335: 2010-10-13 moko
3336:
3337: * src/main/compile.tab.C: [] now is empty string, not void
3338:
3339: * src/main/compile.y: [] now is empty string, not void
3340:
3341: * src/types/pa_vvoid.h: void now passed as parameter
3342:
3343: * tests/: 259.html, results/259.processed: to test difference
3344: between void and empty string (see ticket #111)
3345:
3346: * tests/results/152.processed: $sEmpty[] is now empty string, not
3347: void
3348:
3349: * tests/256.html: $s[$void] is no longer empty string
3350:
3351: * tests/254.html: empty string is no longer void
3352:
3353: 2010-10-12 misha
3354:
3355: * src/types/pa_vcookie.C: - check if $.expires value can be
3356: converted to date during cookies set up ( bugfix: #104 )
3357:
3358: * tests/041.html: - more tests for ^table.locate were added
3359:
3360: * src/classes/table.C: - ^table.locate[field;value;options] didn't
3361: work ( bugfix: #129 ) - exception comment for incorrect options
3362: ^table.locate[field;value;options] was fixed
3363:
3364: 2010-10-10 moko
3365:
3366: * src/: classes/reflection.C, main/execute.C: constructor returning
3367: another object feature returned
3368:
3369: * tests/results/258.processed: test result updated as constructor
3370: returning another object feature returned
3371:
3372: * tests/: 258.html, results/258.processed: test for constructor
3373: returning another object
3374:
3375: 2010-10-08 misha
3376:
3377: * tests/257.html: - whitespaces after @METACOMMANDS and their
3378: options shouldn't cause exceptions any longer
3379:
3380: 2010-10-06 moko
3381:
3382: * src/classes/: hash.C, table.C: length from sql server is now
3383: ignored, as sql string can contain 0x00 inside (bugfix: #119)
3384:
3385: 2010-10-02 misha
3386:
3387: * operators.txt: - the X mark was removed from ^cache[file]. it is
3388: usable to delete cache file.
3389:
3390: 2010-10-02 moko
3391:
3392: * tests/: 253.html, results/253.processed: hook_key added for key
3393: checking
3394:
3395: * src/classes/json.C: null key bug fixed
3396:
3397: 2010-09-29 misha
3398:
3399: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
3400:
3401: 2010-09-25 moko
3402:
3403: * src/classes/json.C: small fixed
3404:
3405: * tests/results/: 253.processed, 255.processed: just updated
3406:
3407: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
3408: results/255.processed: charset transcode test added for
3409: json:parse
3410:
3411: 2010-09-24 moko
3412:
3413: * src/types/pa_value.h: warning war :)
3414:
3415: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
3416: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
3417: ^json:string
3418:
3419: 2010-09-22 moko
3420:
3421: * src/main/pa_charset.C: parser charset tables declare only
3422: white-space before 0x20, thus adding the missing chars
3423:
3424: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
3425: to http://unicode.org/Public/MAPPINGS/VENDORS/
3426:
3427: 2010-09-21 misha
3428:
3429: * src/main/compile.y: - some semicolons were added (VS2010 don't
3430: want to compile grammar if they are absent)
3431:
3432: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
3433:
3434: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
3435:
3436: * src/main/main.vcproj: - path to bison is changed
3437:
3438: 2010-09-21 moko
3439:
1.101 moko 3440: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
3441: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
3442: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 3443:
3444: 2010-09-20 misha
3445:
3446: * src/types/pa_vtable.C: - add EOLs while json-serializing table
3447:
3448: * src/classes/json.C: - add EOL while json-serializing hash
3449:
3450: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
3451: compilers don't like 'ES'.
3452:
3453: 2010-09-17 misha
3454:
3455: * operators.txt: - info about json class was added
3456:
3457: * src/classes/json.C: - ^json:string[object]
3458:
3459: * src/: include/pa_request.h, main/pa_request.C: - stuff for
3460: preventing infinite recursion while executing json:string was
3461: added
3462:
3463: * src/include/pa_string.h: - method append_quoted was added
3464:
3465: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
3466: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
3467: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
3468: was added to Value & Co
3469:
3470: * src/classes/date.C: - methods get_gmt_string and get_sql_string
3471: were used
3472:
3473: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
3474: were added
3475:
3476: 2010-09-10 moko
3477:
3478: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
3479: die_or_abort (backport from 3.4.1)
3480:
3481: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
3482: die_or_abort (bugfix: #106)
3483:
3484: 2010-09-09 moko
3485:
3486: * src/classes/json.C: warning war. :)
3487:
3488: 2010-09-08 misha
3489:
3490: * src/lib/json/Makefile.am: - additional include directories were
3491: added (for pa_memory.h and gc.h)
3492:
3493: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
3494: compile as C++ instead default - additional include directory was
3495: added (for gc.h)
3496:
3497: * src/types/pa_vform.C: - little code reformating
3498:
3499: * src/classes/file.C: - $.content-type option now can be specified
3500: in ^file::create ( new feature: #102 )
3501:
3502: 2010-09-08 moko
3503:
3504: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
3505: pa_malloc/pa_free
3506:
3507: 2010-09-07 moko
3508:
3509: * tests/results/254.processed: VStateless_class:put_element
3510: exception was fixed
3511:
3512: * src/types/: pa_value.h, pa_vstateless_class.h: now
3513: VStateless_class:put_element barks self.type, not this.type
3514: (bugfix: #105)
3515:
3516: 2010-09-06 moko
3517:
3518: * src/classes/reflection.C: bugfix: new String() is required for
3519: exception handling
3520:
3521: * tests/: 254.html, results/254.processed: test modified
3522:
3523: 2010-09-05 moko
3524:
3525: * tests/: 254.html, results/254.processed: ^reflection:copy test
3526: added
3527:
3528: * src/: classes/reflection.C, include/pa_request.h:
3529: ^reflection:copy implemented (new feature: #100)
3530:
3531: 2010-09-03 moko
3532:
3533: * src/lib/json/JSON_parser.C: c++ compatiblity
3534:
3535: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
3536: option testing added
3537:
3538: 2010-09-02 moko
3539:
3540: * src/classes/json.C: $.distinct[first|last|all] added
3541:
3542: 2010-09-01 moko
3543:
3544: * tests/results/253.processed: json test result
3545:
3546: * tests/: 253.html, 253_json.txt: json test added
3547:
3548: * src/classes/json.C: json.C update to actual version + hash key
3549: creation bugfix
3550:
3551: 2010-08-31 misha
3552:
3553: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
3554: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
3555: src/lib/Makefile.am, src/classes/Makefile.am,
3556: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
3557: json library was added
3558:
3559: 2010-08-30 moko
3560:
3561: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
3562: types/pa_vobject.C: cosmetic optimization in
3563: request:execute_method usage
3564:
3565: * src/: include/pa_charset.h, main/pa_charset.C: small
3566: optimization, just to decrease number of lines. :)
3567:
3568: 2010-08-27 misha
3569:
3570: * src/classes/op.C: - taint[json] was added
3571:
3572: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
3573: were added
3574:
3575: * src/main/pa_exec.C: - warning fix was rolled back.
3576:
3577: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
3578: include/pa_string.h: - taint[json] was added - escaping was
3579: slightly modified
3580:
3581: 2010-08-25 misha
3582:
3583: * src/classes/file.C: - typo in file:sql exception was fixed
3584:
3585: * src/main/pa_exec.C: - warning about declared and not used
3586: variable forced_allow was removed
3587:
3588: 2010-08-14 misha
3589:
3590: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
3591: were removed
3592:
3593: 2010-08-11 moko
3594:
3595: * tests/: 249.html, results/249.processed: default setter and
3596: anti-recursive default getter test added
3597:
3598: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
3599: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
3600: types/pa_vobject.h, types/pa_vstateless_class.C,
3601: types/pa_vstateless_class.h: default setter support +
3602: anti-recursive default getter support ( new feature: #13 )
3603:
3604: * src/include/pa_hash.h: optimization: threshold member removed
3605: from hash, reducing sizeof(hash)
3606:
3607: 2010-08-10 misha
3608:
3609: * tests/196.html: - junction-method was added to the test
3610:
3611: * tests/248.html: - ups. typo :)
3612:
3613: * tests/248.html: - test for checking .match with 4 params
3614:
3615: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
3616: 247_windows1251.txt: - test for "transcode file from utf-8 to
3617: $request:charset during loading if the BOM code is detected"
3618:
3619: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
3620: $request:charset during loading if the BOM code is detected ( new
3621: feature: #98 )
3622:
3623: 2010-08-05 misha
3624:
3625: * src/classes/image.C: - ^image.replace now can accept only 2
3626: params. in this case the whole image is affected ( new feature:
3627: #95 )
3628:
3629: 2010-08-04 misha
3630:
3631: * tests/246.html: - test tor ^hash._at[] was added
3632:
3633: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
3634: #53 )
3635:
3636: * src/include/pa_hash.h: - methods for accessing the first and the
3637: last values of ordered hash were added (first_value and
3638: last_value)
3639:
3640: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
3641: (similar to others file's methods):
3642: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
3643: #68 )
3644:
3645: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
3646:
3647: 2010-08-01 moko
3648:
3649: * src/classes/op.C: to correctly process $result[] in code, called
3650: from ^process
3651:
3652: * tests/245.html: $result in ^process[] test added
3653:
3654: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
3655: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
3656: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
3657: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
3658: caller, self) op_call(VMethodFrame &frame, bool constructing)
3659: removed, construct(class,method) added
3660:
3661: * tests/results/: 192.processed, 244.processed: request::construct
3662: added
3663:
3664: * tests/: 244.html, 245.html, results/244.processed,
3665: results/245.processed: object creation exceptions and ^process
3666: tests added
3667:
3668: 2010-07-28 misha
3669:
3670: * tests/make_tests.cmd: - win32 EOLs
3671:
3672: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
3673: tests on Win32 were added (The system timezone should be GMT+3)
3674:
3675: 2010-07-26 misha
3676:
3677: * tests/: 212.html, results/212.processed: - sizes were removed
3678: mecause they could be different on different OSs
3679:
3680: * tests/065.html: - make it "win32 friendly"
3681:
3682: 2010-07-25 misha
3683:
3684: * src/main/compile.y: - all EOLs between methods are removed during
3685: compilation ( new feature: #47 )
3686:
3687: * tests/results/149.processed: - prepare tests to trim trailing
3688: methods' EOLs
3689:
3690: * tests/149.html: - prepare tests to trim trailing methods' EOLs
3691:
3692: * tests/: results/006.processed, results/014.processed, 006.html,
3693: 014.html, 022.html: - prepare tests to trim trailing methods'
3694: EOLs
3695:
3696: * tests/: 059.html, 071.html, 149.html, results/059.processed,
3697: results/071.processed, results/022.processed: - prepare tests to
3698: trim trailing methods' EOLs
3699:
3700: * tests/: results/073.processed, results/109.processed,
3701: results/142.processed, results/144.processed,
3702: results/149.processed, 073.html, 096.html, 109.html, 142.html,
3703: 144.html: - prepare tests to trim trailing methods' EOLs
3704:
3705: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
3706: 149.html, 152.html, results/096.processed, results/107.processed,
3707: results/109.processed, results/142.processed,
3708: results/144.processed: - prepare tests to trim trailing methods'
3709: EOLs
3710:
3711: 2010-07-24 moko
3712:
3713: * tests/results/: 156.processed, 224.processed: fix for #54 changed
3714: the hash order in this test
3715:
3716: * tests/014.html: to check hash order, hash no is longer sorted
3717: before print
3718:
3719: * src/include/pa_hash.h: hash copy constructor now keeps order
3720: (bugfix: #54)
3721:
3722: 2010-07-23 moko
3723:
3724: * tests/results/224.processed: @auto[] is no longer inherited
3725:
3726: * src/types/pa_vstateless_class.C, tests/227.html,
3727: tests/results/227.processed: @auto[] is no longer inherited
3728: (bugfix: #57)
3729:
3730: 2010-07-22 misha
3731:
3732: * src/classes/table.C: - don't skip comment lines during
3733: table::load if encloser or separator is set as '#' ( new feature:
3734: #30 )
3735:
3736: * src/targets/cgi/parser3.C: - don't run as cgi if
3737: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
3738: #12 )
3739:
3740: * src/classes/file.C: - set PARSER_VARSION env before external
3741: script executing
3742:
3743: 2010-07-13 misha
3744:
3745: * tests/058.html: - test for suppressing @border was added - test
3746: for user attribute was added
3747:
3748: * tests/results/186.processed: unescaping from \uXXXX
3749:
3750: * tests/186.html: unescaping from \uXXXX
3751:
3752: * tests/: 239.html, results/239.processed: method call type
3753:
3754: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
3755: $junction_method.CLASS_NAME (+CLASS)
3756:
3757: 2010-07-07 misha
3758:
3759: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
3760: *nix
3761:
3762: 2010-07-05 misha
3763:
3764: * src/: classes/curl.C, classes/file.C, classes/hash.C,
3765: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
3766: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
3767: comment strings "options must be hash", "options must be hash,
3768: not code" and "called with invalid option" were replaced by
3769: constatns - exception comment string "invalid option passed" was
3770: replaced by "called with invalid option" (now in different
3771: methods are the same exception comment string)
3772:
3773: * src/include/pa_exception.h: - more exception strings were defined
3774:
3775: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
3776: types/pa_vstateless_class.h: - now we can define possible
3777: method's call type ( new feature: #5 ) 1.
3778: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
3779: methods 2. @static:method[params] (only static keyword could be
3780: used here) -- for specified methods
3781:
3782: * src/main/pa_common.C: - junction points should not be deleted on
3783: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
3784: cleanup
3785:
3786: 2010-07-03 misha
3787:
3788: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
3789: results/158.processed, results/160.processed,
3790: results/161.processed, results/162.processed,
3791: results/163.processed: - prepare tests to trim trailing methods'
3792: EOLs
3793:
3794: * tests/results/169.processed: - prepare tests to trim trailing
3795: methods' EOLs
3796:
3797: * tests/results/: 168.processed, 169.processed: - prepare tests to
3798: trim trailing methods' EOLs
3799:
3800: * tests/: results/170.processed, results/167.processed,
3801: results/168.processed, results/169.processed, 167.html, 168.html,
3802: 169.html: - prepare tests to trim trailing methods' EOLs
3803:
3804: * tests/: results/170.processed, results/171.processed,
3805: results/172.processed, results/173.processed,
3806: results/174.processed, results/175.processed, 170.html, 171.html,
3807: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
3808: trailing methods' EOLs
3809:
3810: * tests/: results/176.processed, results/180.processed,
3811: results/184.processed, results/185.processed,
3812: results/191.processed, results/192.processed,
3813: results/196.processed, results/197.processed,
3814: results/198.processed, 176.html, 180.html, 184.html, 185.html,
3815: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
3816: to trim trailing methods' EOLs
3817:
3818: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
3819: results/199.processed, results/208.processed,
3820: results/209.processed, results/213.processed,
3821: results/214.processed: - prepare tests to trim trailing methods'
3822: EOLs
3823:
3824: 2010-06-29 misha
3825:
3826: * tests/: 220.html, 218.html, results/218.processed,
3827: results/215.processed, results/217.processed, 215.html, 217.html:
3828: - prepare tests to trim trailing methods' EOLs
3829:
3830: * tests/: results/224.processed, 224.html, 223.html,
3831: results/223.processed, results/220.processed: - prepare tests to
3832: trim trailing methods' EOLs
3833:
3834: * tests/results/: 226.processed, 230.processed: - prepare tests to
3835: trim trailing methods' EOLs
3836:
3837: * tests/: 229.html, results/229.processed: - prepare tests to trim
3838: trailing methods' EOLs
3839:
3840: * tests/: 232.html, 235.html, results/232.processed,
3841: results/235.processed, 226.html, 227.html, 228.html, 230.html,
3842: results/226.processed, results/227.processed,
3843: results/228.processed, results/230.processed: - prepare tests to
3844: trim trailing methods' EOLs
3845:
3846: 2010-06-16 moko
3847:
3848: * tests/: 229.html, results/229.processed: elseif now supported in
3849: ^if
3850:
3851: * src/classes/op.C: new feature: #56 elseif now supported in ^if
3852:
3853: 2010-06-03 misha
3854:
3855: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
3856: instead of memcopy for overlaped regions
3857:
3858: 2010-05-25 misha
3859:
3860: * src/main/pa_common.C: - wanring about unused vars was removed
3861:
3862: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
3863: get_method_filename was moved to execute.C
3864:
3865: 2010-05-23 misha
3866:
3867: * src/main/pa_request.C: - more accurate detection of method's file
3868:
3869: 2010-05-22 misha
3870:
3871: * src/classes/reflection.C: - bugfix: core during detection of
3872: .file if filespec isn't detected successfully
3873:
3874: 2010-05-20 misha
3875:
3876: * src/main/pa_request.C: - fix in get_method_filename
3877:
3878: * src/include/pa_request.h: - new feature: #24 -- searching
3879: included file in @USE/^use is changed. if its filespec doesn't
3880: start from '/' it will be searched in caller file directory
3881:
3882: * src/classes/reflection.C: - ^reflection:method_info returns file
3883: where the method is defined
3884:
3885: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
3886: classes/op.C: - new feature: #24 -- searching included file in
3887: @USE/^use is changed. if its filespec doesn't start from '/' it
3888: will be searched in caller file directory
3889:
3890: * src/: classes/file.C, include/pa_common.h: - method lastposafter
3891: is moved to pa_common.h
3892:
3893: 2010-05-18 misha
3894:
3895: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
3896: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
3897: cookie parser decode \uXXXX as well as %uXXXX
3898:
3899: 2010-05-17 misha
3900:
3901: * src/classes/curl.C: beauty: - unused param is removed in method
3902: _curl_version_action - some spaces were removed or replaced by
3903: tabs
3904:
3905: * src/classes/table.C: - bugfix: #72 core with empty value during
3906: ^table.hash[...;name_of_the_last_column][$.type[string]]
3907:
3908: 2010-05-16 misha
3909:
3910: * src/classes/curl.C: new: #61 more curl options were added
3911: (contributed by Sumo)
3912:
3913: 2010-04-29 pretender
3914:
3915: * src/main/pa_string.C: fixes #63 Split result from empty string
3916: now empty string.
3917:
3918: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
3919: string type.
3920:
3921: 2010-04-28 pretender
3922:
3923: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
3924: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
3925: macrodefinition removed
3926:
3927: 2010-04-19 pretender
3928:
3929: * src/main/execute.C: fixes #60 Stacktrace now contains info for
3930: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
3931:
3932: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
3933: fixes #64 Now file.missing exception generates in unsafe mode to.
3934:
3935: * src/classes/file.C: fixes #48 Now not throw "not save environment
3936: variable" exception in grpunlim version.
3937:
3938: 2010-04-05 misha
3939:
3940: * src/classes/string.C: - new feature: 4th param was added to
3941: match. if specified its value is returned in case of nothing was
3942: found
3943:
3944: 2010-04-01 misha
3945:
3946: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
3947: multiple execution of /a/b/auto.p
3948:
3949: 2010-03-19 misha
3950:
3951: * src/main/execute.C: - core in $table1.$table2 was fixed
3952:
3953: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
3954:
3955: 2010-01-27 misha
3956:
3957: * src/main/pa_common.C: - bugfix: there are no excaption.type if
3958: trying to open file by path /existing-file/non-exixting-file
3959:
3960: 2010-01-26 misha
3961:
3962: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
3963: was added (returns file)
3964:
3965: 2009-12-22 misha
3966:
3967: * src/classes/curl.C: - method 'option' was renamed to 'options' -
3968: now parser doesn't have class curl if it was built without it
3969:
3970: 2009-12-15 misha
3971:
3972: * configure.in: - little cheat with curl include dir was added
3973:
3974: 2009-12-05 misha
3975:
3976: * src/classes/curl.C: - some fixes
3977:
3978: 2009-12-04 misha
3979:
3980: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
3981: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
3982: buildall-with-xml, buildall-without-xml, configure.in: - curl
3983: class was added
3984:
3985: * src/include/pa_hash.h: - hash-iterator was added
3986:
3987: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
3988: was added to pcre
3989:
3990: 2009-11-27 misha
3991:
3992: * src/classes/image.C: - don't add @border attribute to output of
3993: ^image.html[] if it was specified by user with empty value
3994:
3995: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
3996: root element and we are trying to access .documentElement
3997:
3998: 2009-11-11 misha
3999:
4000: * src/classes/table.C: - in ^table.flip[] look at number of columns
4001: instead of number of items in first row for named tables
4002:
4003: 2009-11-10 misha
4004:
4005: * operators.txt: - info about hash-options in ^file::create was
4006: added
4007:
4008: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
4009: added
4010:
4011: 2009-11-09 misha
4012:
4013: * buildall-with-xml: - moving to libxml 2.7.6
4014:
4015: * tests/236.html: - tests for comparations cords with functions
4016: were added
4017:
4018: * src/include/pa_string.h: - optimisation: cacheing of cstr was
4019: added
4020:
4021: * src/main/pa_http.C: - little optimisation
4022:
4023: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
4024: GPF mallocs + stringstream (table.save)
4025:
4026: * src/classes/file.C: - file::create now accepts 4th param: options
4027: with $.charset
4028:
4029: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
4030: bug in cord (comparation cords with functions was buggy)
4031:
4032: 2009-11-06 misha
4033:
4034: * src/main/pa_string.C: - bugfix: calculation string.length
4035: sometimes was buggy
4036:
4037: * src/classes/string.C: - bugfix: Temp_value_element wasn't
4038: destroyed if exception occured during match/replace
4039:
4040: * src/: main/pa_charset.C, include/pa_charset.h: - method
4041: lengthUTF8Char was added
4042:
4043: * src/classes/op.C: - clean tainting lang was added for user's
4044: usage
4045:
4046: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
4047: fixed: checkouts are required after GC_MALLOC
4048:
4049: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
4050:
4051: * operators.txt: - actually, there is no ^untaint[xml] in
4052: file::create
4053:
4054: 2009-10-15 misha
4055:
4056: * tests/: 235.html, 235_attach.txt: - tests for preparing email
4057: were added
4058:
4059: * tests/234.html: - more tests for checking ^taint[uri] escaping
4060: were added
4061:
4062: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
4063: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
4064: hacking: for dealing with transcoding+^taint[uri]
4065: transcode_and_untaint was replaced by untaint_and_transcode
4066:
4067: 2009-10-13 misha
4068:
4069: * tests/: 121.html, results/121.processed: - test transcoding +
4070: url-escaping now
4071:
4072: * tests/results/auto.p: - more helpers' methods were added
4073:
4074: * src/main/pa_globals.C: - die instead of abort
4075:
4076: 2009-10-06 misha
4077:
4078: * src/main/pa_common.C: - don't allocate memory during
4079: capitalization if input string is already capitalized
4080:
4081: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
4082:
4083: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
4084: use format function because it calls malloc
4085:
4086: * src/include/pa_common.h: - more capitalized headers were added
4087:
4088: * src/main/pa_common.C: - in safe mode clear executable bits during
4089: file writing
4090:
4091: 2009-10-05 misha
4092:
4093: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
4094:
4095: 2009-10-03 misha
4096:
4097: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
4098: ^img.text[] & ^img.length[] can work in utf-8 now
4099:
4100: * src/: include/pa_charset.h, main/pa_charset.C: - class
4101: UTF8_string_iterator was added
4102:
4103: * src/classes/image.C: - respect utf-8 when calculate alphabet
4104: length
4105:
4106: * src/classes/mail.C: - check from before get message.cstr
4107:
4108: 2009-10-02 misha
4109:
4110: * tests/233.html: - test for image.font, image.length, image.text
4111: with text in utf-8 were added
4112:
4113: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
4114:
4115: * buildall-with-xml, buildall-without-xml: - comment about gc
4116: version for freebsd 4 was added
4117:
4118: 2009-10-01 misha
4119:
4120: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
4121: terminator) - read_pipe were slightly optimized
4122:
4123: 2009-09-28 misha
4124:
4125: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
4126: removed
4127:
4128: * src/types/pa_vmail.C: - forgot about space after ':'
4129:
4130: * src/types/pa_vmail.C: - escape filenames while preparing mail
4131: body - small simplifications
4132:
4133: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
4134: inout params like pa_base64
4135:
4136: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
4137: option $.debug-print(1) was added to mail:send - changes for
4138: using uue_encode which uses less memory
4139:
4140: * src/main/pa_common.C: - pa_base64_encode uses less memory now
4141:
4142: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
4143: memory now
4144:
4145: 2009-09-26 misha
4146:
4147: * src/types/pa_vmail.C: - default encoding now is base64
4148:
4149: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
4150:
4151: 2009-09-25 misha
4152:
4153: * src/types/pa_vmail.C: - capitalization of headers was added to
4154: sending mail as well
4155:
4156: * buildall-with-xml: - catalog package was removed from libxml
4157:
4158: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
4159: win32 absolute path
4160:
4161: * src/include/pa_common.h: - one more capitalized header was added
4162:
4163: 2009-09-22 misha
4164:
4165: * INSTALL: - comment about building just httpd binary while
4166: building apache module was added
4167:
4168: 2009-09-21 misha
4169:
4170: * buildall-with-xml: - moving to the latest versions of xml libs:
4171: libxml 2.7.4 and libxslt 1.1.25
4172:
4173: 2009-09-19 misha
4174:
4175: * tests/231.html: - test for encoding cookie in win-1251
4176:
4177: 2009-09-18 misha
4178:
4179: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
4180: object] were added
4181:
4182: * operators.txt: - info about method ^reflection:fields[class or
4183: object] was added
4184:
4185: * src/classes/reflection.C: - method ^reflection:fields[class or
4186: object] was added
4187:
4188: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
4189: methods get_fields were added
4190:
4191: * tests/232.html: - tests for @GET[name]
4192:
4193: * src/classes/table.C: - some changes in handling hash-options for
4194: creare, join and locate
4195:
4196: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
4197: defined with option: the type of requested value
4198:
4199: 2009-09-17 misha
4200:
4201: * tests/212.html: - tests for .pattern and .options were added
4202:
4203: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
4204: $regex.options were added
4205:
4206: 2009-09-11 misha
4207:
4208: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
4209: rewrited. it checks not just one case of sending cookies during
4210: file::load[http], but also sending headers and fields (including
4211: files)
4212:
4213: 2009-09-10 misha
4214:
4215: * src/main/untaint.C: - workaround in file-spec lang for old Macs
4216: was removed => now parser can open files with Russian 'r' in
4217: filename
4218:
4219: * src/main/untaint.C: - bugfix: client charset whould be analized
4220: while escaping cookies but now source charset
4221:
4222: * src/main/pa_http.C: - bugfix: the values of http headers didn't
4223: ^tainted[uri] so it was possible to make request with incorrect
4224: http header
4225:
4226: * src/main/pa_http.C: - capitalization of http headers during
4227: file::load[http was slightly changes - bugfix: all headers which
4228: parser sends during file::load[http should be transcoded and only
4229: then escaped
4230:
4231: * src/main/untaint.C: - a bit more comments were added
4232:
4233: * src/classes/: file.C, string.C: - types where changes (minus 2
4234: warnings)
4235:
4236: * src/include/pa_common.h: - 2 capitalized strings for making http
4237: headers during file::load[http were added
4238:
4239: 2009-09-08 misha
4240:
4241: * operators.txt: - changes in file.save and string.save were added
4242:
4243: * tests/: 230.html, 230.txt: - tests for checking options in
4244: file.save and string.save were added
4245:
4246: * src/main/pa_request.C: - http headers names, which are passed to
4247: SAPI::add_header_attribute are lowercased now (it'll be
4248: capitalized in that method)
4249:
4250: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
4251: classes/string.C: - file_write accepts Request_charsets and asked
4252: charset and cound transcode content before writing - string.save
4253: and file.save have option $.charset now
4254:
4255: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
4256: classes/xdoc.C: - file_write accepts Request_charsets and asked
4257: charset and cound transcode content before writing
4258:
4259: * src/include/pa_exception.h: - new exception comment string was
4260: defined
4261:
4262: 2009-09-07 misha
4263:
4264: * src/main/compile.y: - grammar $name\ name stops now for regex
4265: sub-pattern\s
4266:
4267: 2009-09-04 misha
4268:
4269: * src/main/pa_http.C: - capitalization of http headers during
4270: file::load[http was implemented
4271:
4272: 2009-09-03 misha
4273:
4274: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4275: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
4276: types/pa_vmail.C, targets/cgi/parser3.C,
4277: targets/isapi/parser3isapi.C: - back to storing response http
4278: headers in lowercase - capitalize them during output
4279:
4280: 2009-08-31 misha
4281:
4282: * src/classes/table.C: - allow call with any brackets (it could be
4283: useful in methods with explict result declaration)
4284:
4285: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
4286: correctly if $request:charset==koi8-r
4287:
4288: 2009-08-30 misha
4289:
4290: * src/: include/pa_common.h, main/pa_request.C: - http headers were
4291: changed: content-type => Content-type and so on
4292:
4293: * src/classes/file.C, src/include/pa_common.h,
4294: src/include/pa_request.h, src/main/pa_http.C,
4295: src/main/pa_request.C, src/types/pa_vcookie.C,
4296: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
4297: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
4298: tests/results/002.processed, tests/results/003.processed,
4299: tests/results/004.processed, tests/results/005.processed,
4300: tests/results/006.processed, tests/results/007.processed,
4301: tests/results/008.processed, tests/results/009.processed,
4302: tests/results/010.processed, tests/results/011.processed,
4303: tests/results/012.processed, tests/results/013.processed,
4304: tests/results/014.processed, tests/results/015.processed,
4305: tests/results/016.processed, tests/results/017.processed,
4306: tests/results/018.processed, tests/results/019.processed,
4307: tests/results/020.processed, tests/results/021.processed,
4308: tests/results/022.processed, tests/results/023.processed,
4309: tests/results/024.processed, tests/results/025.processed,
4310: tests/results/026.processed, tests/results/027.processed,
4311: tests/results/028.processed, tests/results/029.processed,
4312: tests/results/030.processed, tests/results/031.processed,
4313: tests/results/032.processed, tests/results/033.processed,
4314: tests/results/034.processed, tests/results/035.processed,
4315: tests/results/036.processed, tests/results/037.processed,
4316: tests/results/038.processed, tests/results/039.processed,
4317: tests/results/040.processed, tests/results/041.processed,
4318: tests/results/042.processed, tests/results/043.processed,
4319: tests/results/044.processed, tests/results/045.processed,
4320: tests/results/046.processed, tests/results/047.processed,
4321: tests/results/048.processed, tests/results/049.processed,
4322: tests/results/050.processed, tests/results/051.processed,
4323: tests/results/052.processed, tests/results/053.processed,
4324: tests/results/054.processed, tests/results/055.processed,
4325: tests/results/056.processed, tests/results/057.processed,
4326: tests/results/058.processed, tests/results/059.processed,
4327: tests/results/060.processed, tests/results/061.processed,
4328: tests/results/062.processed, tests/results/063.processed,
4329: tests/results/064.processed, tests/results/065.processed,
4330: tests/results/066.processed, tests/results/067.processed,
4331: tests/results/068.processed, tests/results/069.processed,
4332: tests/results/070.processed, tests/results/071.processed,
4333: tests/results/072.processed, tests/results/073.processed,
4334: tests/results/074.processed, tests/results/075.processed,
4335: tests/results/076.processed, tests/results/077.processed,
4336: tests/results/078.processed, tests/results/079.processed,
4337: tests/results/080.processed, tests/results/081.processed,
4338: tests/results/082.processed, tests/results/083.processed,
4339: tests/results/084.processed, tests/results/085.processed,
4340: tests/results/086.processed, tests/results/087.processed,
4341: tests/results/088.processed, tests/results/089.processed,
4342: tests/results/090.processed, tests/results/091.processed,
4343: tests/results/092.processed, tests/results/093.processed,
4344: tests/results/094.processed, tests/results/095.processed,
4345: tests/results/096.processed, tests/results/097.processed,
4346: tests/results/098.processed, tests/results/099.processed,
4347: tests/results/100.processed, tests/results/101.processed,
4348: tests/results/102.processed, tests/results/103.processed,
4349: tests/results/104.processed, tests/results/105.processed,
4350: tests/results/106.processed, tests/results/107.processed,
4351: tests/results/108.processed, tests/results/109.processed,
4352: tests/results/110.processed, tests/results/111.processed,
4353: tests/results/112.processed, tests/results/113.processed,
4354: tests/results/114.processed, tests/results/115.processed,
4355: tests/results/116.processed, tests/results/117.processed,
4356: tests/results/118.processed, tests/results/119.processed,
4357: tests/results/120.processed, tests/results/121.processed,
4358: tests/results/122.processed, tests/results/123.processed,
4359: tests/results/124.processed, tests/results/125.processed,
4360: tests/results/126.processed, tests/results/127.processed,
4361: tests/results/128.processed, tests/results/129.processed,
4362: tests/results/130.processed, tests/results/131.processed,
4363: tests/results/132.processed, tests/results/133.processed,
4364: tests/results/134.processed, tests/results/135.processed,
4365: tests/results/136.processed, tests/results/138.processed,
4366: tests/results/139.processed, tests/results/140.processed,
4367: tests/results/141.processed, tests/results/142.processed,
4368: tests/results/143.processed, tests/results/144.processed,
4369: tests/results/145.processed, tests/results/146.processed,
4370: tests/results/147.processed, tests/results/148.processed,
4371: tests/results/149.processed, tests/results/150.processed,
4372: tests/results/151.processed, tests/results/152.processed,
4373: tests/results/153.processed, tests/results/154.processed,
4374: tests/results/155.processed, tests/results/156.processed,
4375: tests/results/157.processed, tests/results/158.processed,
4376: tests/results/159.processed, tests/results/160.processed,
4377: tests/results/161.processed, tests/results/162.processed,
4378: tests/results/163.processed, tests/results/164.processed,
4379: tests/results/165.processed, tests/results/166.processed,
4380: tests/results/167.processed, tests/results/168.processed,
4381: tests/results/169.processed, tests/results/170.processed,
4382: tests/results/171.processed, tests/results/172.processed,
4383: tests/results/173.processed, tests/results/174.processed,
4384: tests/results/175.processed, tests/results/176.processed,
4385: tests/results/177.processed, tests/results/178.processed,
4386: tests/results/179.processed, tests/results/180.processed,
4387: tests/results/181.processed, tests/results/182.processed,
4388: tests/results/183.processed, tests/results/184.processed,
4389: tests/results/185.processed, tests/results/186.processed,
4390: tests/results/187.processed, tests/results/188.processed,
4391: tests/results/189.processed, tests/results/190.processed,
4392: tests/results/191.processed, tests/results/192.processed,
4393: tests/results/193.processed, tests/results/194.processed,
4394: tests/results/195.processed, tests/results/196.processed,
4395: tests/results/197.processed, tests/results/198.processed,
4396: tests/results/199.processed, tests/results/200.processed,
4397: tests/results/201.processed, tests/results/202.processed,
4398: tests/results/203.processed, tests/results/204.processed,
4399: tests/results/205.processed, tests/results/206.processed,
4400: tests/results/207.processed, tests/results/208.processed,
4401: tests/results/209.processed, tests/results/210.processed,
4402: tests/results/211.processed, tests/results/212.processed,
4403: tests/results/213.processed, tests/results/214.processed,
4404: tests/results/215.processed, tests/results/216.processed,
4405: tests/results/217.processed, tests/results/218.processed,
4406: tests/results/219.processed, tests/results/220.processed,
4407: tests/results/221.processed, tests/results/222.processed,
4408: tests/results/223.processed, tests/results/224.processed,
4409: tests/results/225.processed, tests/results/226.processed,
4410: tests/results/227.processed, tests/results/228.processed,
4411: tests/results/229.processed: - http headers were changed:
4412: content-type => Content-type and so on
4413:
4414: 2009-08-27 misha
4415:
4416: * src/: main/pa_random.C, include/pa_random.h,
4417: targets/cgi/parser3.C: - year was updated :)
4418:
4419: 2009-08-26 misha
4420:
4421: * tests/: 224.html, 224.p: - test for creating of parser object
4422: using constructor without params - little bugfix in test
4423:
4424: * src/main/compile_tools.h: - bugfix: should't call autouse while
4425: checking existed class while processing partial option
4426:
4427: * src/classes/reflection.C: - bugfix: core when creating object
4428: with reflection and constructor doesn't have params
4429:
4430: 2009-08-24 misha
4431:
4432: * tests/229.html: - tests for checking the number of parameters
4433: were added
4434:
4435: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
4436: number of method's parameters wasn't checked correctly (the bug
4437: was introduced in 3.4.0)
4438:
4439: 2009-08-22 misha
4440:
4441: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
4442: transcoded, but tainted pieces are escaped only when
4443: content-type==url-encoding
4444:
4445: * tests/228.html: - test for checking
4446: ^file::load[http://...;$.body[]]
4447:
4448: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
4449: post charset was too early (charsets is empty at this moment)
4450:
4451: 2009-08-21 misha
4452:
4453: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
4454: main/untaint.C: - some fixes with transcode+untaint
4455:
4456: 2009-08-15 misha
4457:
4458: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
4459: was increaced to 100 (was 50)
4460:
4461: * tests/227.html: - test for checking overriding properties in
4462: static classes was added
4463:
4464: * tests/: 226.html, 226.p: - test for @autoload[] was added
4465:
4466: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
4467: main/execute.C, main/pa_request.C, classes/reflection.C: -
4468: autouse was implemented
4469:
4470: 2009-08-14 misha
4471:
4472: * src/classes/reflection.C: - outdated checkout was removed
4473:
4474: * src/classes/reflection.C: - optimization - method ^dynamical was
4475: added.
4476:
4477: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
4478: types/pa_vstateless_class.h, main/execute.C: - optimization
4479:
4480: * src/types/pa_vclass.C: - exception if base on sytem class
4481:
4482: 2009-08-12 misha
4483:
4484: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
4485: pa_vstateless_class.h: - little optimisation
4486:
4487: 2009-08-11 misha
4488:
4489: * tests/224.html: - method_params => method_info - checking for
4490: $.inherited
4491:
4492: * src/classes/reflection.C, operators.txt: - method method_params
4493: was renamed to method_info and now it returns class name, if
4494: method was defined in ancestor
4495:
4496: * tests/225.html: - tests for cheching properties in hierarhical
4497: classes were added
4498:
4499: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
4500: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
4501: main/compile.y, main/execute.C, classes/classes.C: - problems
4502: with properties in new classes implementation were fixed
4503:
4504: 2009-08-10 misha
4505:
4506: * src/main/execute.C: - now constructor shouldn't be defined in
4507: class. it could be defined in parent.
4508:
4509: 2009-08-09 misha
4510:
4511: * src/classes/reflection.C: - ^reflection:methods doesn't return
4512: base's methods
4513:
4514: 2009-08-08 misha
4515:
4516: * src/: classes/classes.h, classes/date.C, classes/file.C,
4517: classes/form.C, classes/hash.C, classes/hashfile.C,
4518: classes/image.C, classes/mail.C, classes/op.C,
4519: classes/reflection.C, classes/regex.C, classes/string.C,
4520: classes/table.C, classes/xdoc.C, classes/xnode.C,
4521: classes/xnode.h, include/pa_hash.h, main/execute.C,
4522: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
4523: types/pa_method.h, types/pa_property.h, types/pa_value.C,
4524: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
4525: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
4526: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
4527: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4528: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
4529: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
4530: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
4531: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
4532: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
4533: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
4534: types/pa_vresponse.C, types/pa_vresponse.h,
4535: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
4536: types/pa_vstateless_object.h, types/pa_vstatus.C,
4537: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
4538: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
4539: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
4540: types/pa_wwrapper.h, types/types.vcproj: - new classes
4541: implementation
4542:
4543: * buildall-with-xml, buildall-without-xml: - gc has a bug if
4544: USE_MUNMAP is used. so it is disabled as a workaround.
4545:
4546: 2009-08-05 misha
4547:
4548: * src/: main/pa_common.C, include/pa_common.h: - not needed
4549: parameter was removed
4550:
4551: * src/main/pa_http.C: - bugfix: error was during detecting
4552: content-type of file which was loaded by http
4553:
4554: 2009-08-01 misha
4555:
4556: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
4557: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
4558: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
4559: can't be disabled with defines any longer
4560:
4561: 2009-07-29 misha
4562:
4563: * src/classes/reflection.C, tests/results/224.processed: - for
4564: native methods with any call type now returned empty call_type
4565: value
4566:
4567: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
4568: classes/table.C, include/pa_hash.h, include/pa_request.h,
4569: main/pa_request.C: - break in cycles was optimized
4570:
4571: * INSTALL: - more defines were described
4572:
4573: 2009-07-28 misha
4574:
4575: * operators.txt: - some changes in information about reflection
4576: class
4577:
4578: * tests/: 224.html, 224.p: - tests for reflection class
4579:
4580: * src/classes/reflection.C: - some bugs were fixed, method classes
4581: was added, refactoring
4582:
4583: 2009-07-26 misha
4584:
4585: * src/classes/classes.vcproj: - reflection class wass added to
4586: project
4587:
4588: * operators.txt: - information about reflection class was added
4589:
4590: * src/classes/reflection.C: - class was redesigned
4591:
4592: 2009-07-24 misha
4593:
4594: * src/classes/: Makefile.am, reflection.C: - class reflection was
4595: added
4596:
4597: * src/types/pa_vstateless_class.h: - method for reflection method's
4598: in classes was added
4599:
4600: 2009-07-22 misha
4601:
4602: * src/main/compile_tools.h: - bugfix: $object.$var was
4603: over-optimized. it failed if $object1.$object2.field
4604:
4605: 2009-07-16 misha
4606:
4607: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
4608: lib/cord/cordxtra.c, lib/cord/include/cord.h,
4609: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
4610: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
4611: one more arg: length of cord
4612:
4613: 2009-07-15 misha
4614:
4615: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
4616: tainted in ^file::load[http://...;$.cookies[]]
4617:
4618: * src/classes/: op.C, regex.C, string.C: - new string with
4619: exception was used
4620:
4621: * src/include/pa_exception.h: - new string with exception was added
4622:
4623: * tests/223.html: - test for checking cookie-encoding during
4624: ^file::load[http was added
4625:
4626: * tests/: 221.html, 222.html: - tests for checking type of
4627: $table.fields.field were added
4628:
4629: * src/types/pa_vtable.C: - not used var decl was removed
4630:
4631: * src/include/pa_string.h: - use cached string length in Body::mid.
4632: it improves speed of match with brackets in pattern
4633:
4634: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
4635: outside
4636:
4637: 2009-07-14 misha
4638:
4639: * src/types/pa_vtable.C: - $table.fields.a return string even if
4640: column is empty (sometime returned void) - $table.fields was
4641: added for nameless tables
4642:
4643: * src/targets/cgi/getopt.c: - one warning resolved
4644:
4645: * src/main/pa_string.C: - potentian bug fixed
4646:
4647: * src/classes/op.C: - small optimization in taint/untaint
4648:
4649: 2009-07-13 misha
4650:
4651: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
4652: added
4653:
4654: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
4655: souldn't add the attribut to output
4656:
4657: 2009-07-11 misha
4658:
4659: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
4660: stack size was increaced to 2MB (default=1MB)
4661:
4662: 2009-07-08 misha
4663:
4664: * src/main/pa_string.C: - link to UTF-8 description was added
4665:
4666: * src/include/pa_hash.h: - hash keeps element's order in more
4667: places (ex: ._keys[])
4668:
4669: * tests/220.html: - test for checking order of elements in hash in
4670: foreach was added
4671:
4672: * tests/172.html: - small changes in printing hash
4673:
4674: * tests/129.html: - small changes in printing hash
4675:
4676: * src/: include/pa_common.h, include/pa_hash.h,
4677: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
4678: types/pa_vmethod_frame.h: - hash now keeps order of elements
4679:
4680: * tests/014.html: - small changes in printing hash
4681:
4682: 2009-07-07 misha
4683:
4684: * src/classes/op.C: - new taint language "parser-code" was added
4685:
4686: * tests/219.html: - test for auto untaint parser code in process
4687: was added
4688:
4689: * src/classes/op.C: - tainted pieces in body of process are
4690: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
4691:
4692: * src/: include/pa_string.h, main/untaint.C: - new language
4693: L_PARSER_CODE for auto-untaint in process was added
4694:
4695: * src/: classes/file.C, classes/hash.C, classes/image.C,
4696: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
4697: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
4698: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
4699: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
4700: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
4701: code cleanup
4702:
4703: 2009-07-06 misha
4704:
4705: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
4706: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
4707: deleted. taint_cstr[m] and untaint_cstr[m] should be used
4708:
4709: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
4710: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
4711: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
4712: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
4713: should be used
4714:
4715: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
4716: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
4717: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
4718: untaint_cstr[m] should be used
4719:
4720: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
4721: deleted. taint_cstr[m] and untaint_cstr[m] should be used
4722:
4723: * tests/218.html: - test for checking automatic file-spec-taint was
4724: added
4725:
4726: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
4727: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
4728: classes/file.C, classes/hash.C, classes/image.C,
4729: classes/string.C, classes/table.C, classes/void.C,
4730: classes/xdoc.C: - optimizations and simplification of
4731: string.cstr(...)
4732:
4733: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
4734: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
4735: - optimizations and simplification of string.cstr(...)
4736:
4737: 2009-07-04 misha
4738:
4739: * tests/217.html: - test for recursion detection was added
4740:
4741: * src/: types/types.vcproj, main/main.vcproj,
4742: classes/classes.vcproj, targets/cgi/parser3.vcproj,
4743: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
4744: from .vcproj
4745:
4746: * src/types/pa_wwrapper.h: - dynamic_cast was removed
4747:
4748: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
4749: uploading files and case-insensitive http-method were added
4750:
4751: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
4752: tainted pattern in ^file:list[] was added
4753:
4754: 2009-07-03 misha
4755:
4756: * src/: classes/classes.vcproj, main/main.vcproj,
4757: types/types.vcproj, targets/cgi/parser3.vcproj,
4758: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
4759: for dynamic_cast) - little options changes
4760:
4761: * src/main/pa_http.C: - file::load[http works now with uploading
4762: files _and_ changing $.charset
4763:
4764: 2009-06-29 misha
4765:
4766: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
4767: while creating pattern
4768:
4769: 2009-06-25 misha
4770:
4771: * src/classes/image.C, operators.txt: - options' names for
4772: ^image.font were changed to $.space, $.width and $spacing -
4773: default space width now == gif's width
4774:
4775: 2009-06-24 misha
4776:
4777: * tests/215.html: - tests for $file.mode were added
4778:
4779: * operators.txt: - added info about $file.mode and changes in
4780: ^image.font[
4781:
4782: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
4783: param now could be omited - third param now could be hash (with
4784: all widths options: $.space-width, $.letter-width) - it's
4785: possible to specify tracking ($.letter-space)
4786:
4787: * src/classes/file.C: - file objects now could have mode field
4788: (text|binary)
4789:
4790: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
4791:
4792: 2009-06-23 misha
4793:
4794: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
4795: trim can work with utf-8 chars now
4796:
4797: 2009-06-20 misha
4798:
4799: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
4800: was implemented
4801:
4802: * src/classes/table.C: - string length cacheing was implemented
4803:
4804: * src/include/pa_string.h: - string length cacheing was implemented
4805:
4806: 2009-06-17 misha
4807:
4808: * src/main/execute.C: - value param was removed from
4809: WContext::WContext
4810:
4811: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
4812: pa_wwrapper.h: - value param was removed from WContext::WContext
4813: - field wcontext was removed from VCodeFrame (using fparent
4814: instead)
4815:
4816: * tests/214.html: - test with hash copying
4817:
4818: 2009-06-16 misha
4819:
4820: * tests/: 062.html, results/062.processed: - evaluation hardcoded
4821: strings doesn't work in expression anymore
4822:
4823: * src/main/execute.C: - less calls for get_constructing() - little
4824: refactoring
4825:
4826: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
4827: include/pa_request.h: - less calls for get_constructing()
4828:
4829: * src/classes/: hash.C, hashfile.C: - fixed bug which was
4830: introduced with OPTIMIZE_SINGLE_STRING optimization
4831:
4832: 2009-06-14 misha
4833:
4834: * src/: classes/date.C, classes/file.C, classes/hash.C,
4835: classes/hashfile.C, classes/image.C, classes/regex.C,
4836: classes/table.C, classes/xdoc.C, classes/xnode.h,
4837: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
4838: types/pa_vstateless_class.h, main/execute.C: - create object for
4839: storing object's fields only for parser objects
4840:
4841: 2009-06-13 misha
4842:
4843: * buildall-with-xml, buildall-without-xml: - new option was added
4844: for building GC (it slightly reduces memory usage)
4845:
4846: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
4847: single string write
4848:
4849: * src/main/execute.C: - bytecode optimization of ^class:constructor
4850: - optimization of single string write
4851:
4852: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
4853: - bytecode optimization of ^class:constructor
4854:
4855: 2009-06-09 misha
4856:
4857: * src/targets/cgi/parser3.C: - type size_t was changed to int in
4858: main (better compatibility)
4859:
4860: 2009-06-08 misha
4861:
4862: * src/main/compile.y: - I've forgot to commit it :(
4863:
4864: 2009-06-07 misha
4865:
4866: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
4867: WITH_READ and WITH_ROOT
4868:
4869: * src/main/: compile.y, compile_tools.C, compile_tools.h,
4870: execute.C: - more optimizations for WITH_SELF, WITH_READ and
4871: WITH_ROOT - little refactoring
4872:
4873: 2009-06-06 misha
4874:
4875: * tests/213.html: - tests for 3rd match string-param were added
4876:
4877: * src/classes/string.C: - 3rd match param could be string now
4878:
4879: * src/main/: compile.y, compile_tools.h: - much more bytecode's
4880: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
4881: GET_OBJECT_ELEMENT
4882:
4883: 2009-06-05 misha
4884:
4885: * src/main/pa_http.C: - bugfix: content-length was not calculated
4886: if $.body was specified
4887:
4888: 2009-06-04 misha
4889:
4890: * src/classes/op.C: - optimizing write_assign_lang in connect
4891:
4892: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
4893:
4894: * src/main/execute.C: - little refactoring - optimizing
4895: write_assign_lang in taint/untaint
4896:
4897: * src/include/pa_opcode.h: - little refactoring
4898:
4899: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
4900: main/compile_tools.h, main/execute.C: - optimizations for
4901: $self.field, ^self.method, $self.field[...] and $self.field(...)
4902: were added
4903:
4904: 2009-06-03 misha
4905:
4906: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
4907:
4908: 2009-06-02 misha
4909:
4910: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
4911: include/pa_opcode.h: - refactoring in last optimizations
4912: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
4913: now but code is much easy and it is ready for further
4914: improvements.
4915:
4916: 2009-05-27 misha
4917:
4918: * src/: types/pa_junction.h, types/pa_vjunction.C,
4919: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
4920: changed in destructing junctions
4921:
4922: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
4923: String:Body
4924:
4925: 2009-05-26 misha
4926:
4927: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
4928: one method detect_charset was deleted - bug was fixed in this
4929: method (error while detecting charset in content_type withot last
4930: ';')
4931:
4932: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
4933: once
4934:
4935: 2009-05-25 misha
4936:
4937: * src/classes/file.C: - bugfix: file::exec didn't work after
4938: optimizing of helper_length
4939:
4940: 2009-05-24 misha
4941:
4942: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
4943: were added - little refactoring
4944:
4945: * src/main/execute.C: - core while printing in debug log
4946: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
4947: optimisations were added
4948:
4949: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
4950: were added
4951:
4952: 2009-05-23 misha
4953:
4954: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
4955: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
4956: CORD_cat optimization
4957:
4958: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
4959: - call constr optimisation under separate define now
4960:
4961: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
4962: in $b should be string, not void
4963:
4964: * src/main/compile.y: - little fix for rem-cut optimisation
4965:
4966: * src/: include/pa_opcode.h, main/compile_tools.C,
4967: main/compile_tools.h, main/execute.C: - optimisations for
4968: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
4969:
4970: * INSTALL: - description of some #defined were added
4971:
4972: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
4973: before 1st access (memory usage is reduced if don't access to
4974: .text field)
4975:
4976: * src/include/pa_array.h: - array grows step now not static (it
4977: reduces numbers of reallocs)
4978:
4979: 2009-05-20 misha
4980:
4981: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
4982: $.b(2), $c[d] and $.e[f] was added
4983:
4984: * src/main/: compile.y, compile_tools.C, compile_tools.h,
4985: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
4986: $.e[f] was added
4987:
4988: * src/main/execute.C: - debug printing moved in defines
4989:
4990: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
4991: and little refactoring for OP_GET_OBJECT_ELEMENT +
4992: OP_GET_OBJECT_VAR_ELEMENT optimisation
4993:
4994: 2009-05-19 misha
4995:
4996: * src/main/: compile.y, compile_tools.C, compile_tools.h,
4997: execute.C: - $a.$b & ^a.$b bytecode optimisation
4998:
4999: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
5000: ^a.$b optimisation)
5001:
5002: * src/main/compile.y: - compiler now generate new opcodes:
5003: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
5004: ^a.b - compiler now cut off ^rem{ with all content ; any number
5005: of params }
5006:
5007: * src/main/execute.C: - code for handle new opcodes
5008: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
5009:
5010: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
5011: added for LA2V and LA2S
5012:
5013: * src/include/pa_opcode.h: - new defines which can be used for
5014: disable some bytecode optimisation and new opcodes were added
5015:
5016: 2009-05-17 misha
5017:
5018: * src/lib/cord/cordxtra.c: - bugfix.
5019:
5020: * tests/212.html: - .size[] and .study_size[] were added to tests
5021:
5022: * operators.txt: - info about regex class was added
5023:
5024: * tests/212.html: - tests for regex class were added
5025:
5026: 2009-05-16 misha
5027:
5028: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
5029: gc7.1
5030:
5031: * tests/022.html: - test for ^file:list[path;] (empty second param)
5032: was added
5033:
5034: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
5035: param) should work
5036:
5037: 2009-05-15 misha
5038:
5039: * src/classes/table.C: - automatically disable stringstream usage
5040: on freebsd4
5041:
5042: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
5043: scope
5044:
5045: * tests/211.html: - test with different types of access to hash was
5046: added
5047:
5048: * tests/210.html: - test which checks for loosing tainting in
5049: hash's keys was added
5050:
5051: * tests/208.html: - some parser work added. or stime == 0 %-)
5052:
5053: * src/lib/cord/cordbscs.c: - little hack was added to cord
5054:
5055: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
5056:
5057: * src/include/pa_version.h, configure.in: - moko have made a lot of
5058: optimisations for increacing version number more dramatically :)
5059:
5060: * src/classes/date.C: - little refactoring: use constructor which
5061: accepts formated string
5062:
5063: * src/: include/pa_string.h, main/pa_string.C: - String constructor
5064: which can print formatted string was added
5065:
5066: 2009-05-14 misha
5067:
5068: * src/include/pa_string.h: - type was fixed
5069:
5070: * src/: classes/hashfile.C, classes/op.C,
5071: include/pa_cache_managers.h, include/pa_charset.h,
5072: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
5073: include/pa_request.h, include/pa_sql_driver_manager.h,
5074: include/pa_string.h, include/pa_stylesheet_manager.h,
5075: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
5076: main/pa_charsets.C, main/pa_string.C,
5077: main/pa_stylesheet_connection.C, types/pa_value.h,
5078: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
5079: types/pa_vobject.C, types/pa_vstateless_class.C,
5080: types/pa_vstateless_class.h: - hash_code caching was implemented
5081: (seaches should be faster now)
5082:
5083: * src/: classes/file.C, classes/hash.C, classes/image.C,
5084: classes/string.C, classes/table.C, include/pa_string.h,
5085: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
5086: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
5087: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
5088: types/pa_vrequest.C: - String constructors don't have that stupid
5089: true/false param which means 'tainted'. they accept lang instead.
5090:
5091: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
5092: with OPTIMIZE_RESULT
5093:
5094: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
5095: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
5096:
5097: 2009-05-13 misha
5098:
5099: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
5100: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
5101: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
5102: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
5103: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
5104: main/pa_common.C, main/pa_request.C, main/pa_string.C,
5105: include/pa_string.h, classes/date.C, classes/file.C,
5106: classes/hash.C, classes/image.C, classes/string.C,
5107: classes/table.C, classes/xdoc.C: - result optimisation -
5108: helper_length parameter removed from string constructors
5109:
5110: 2009-05-11 misha
5111:
5112: * tests/209.html: - tests for ^hash::create[hash] were added
5113:
5114: * tests/208.html: - tests for $status:rusage, $status:memory,
5115: ^memory:compact[] were added
5116:
5117: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
5118: log10 were added
5119:
5120: * tests/206.html: - test for try with finally was added
5121:
5122: 2009-05-10 misha
5123:
5124: * tests/205.html: - test for ^file::create[...] was added
5125:
5126: * tests/204.html: - test for ^response:clear[] was added
5127:
5128: * tests/038.html: - tests for trigonometric functions were added
5129:
5130: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
5131: added - more tests for .add, .sub, .union, .intersects and
5132: .intersections
5133:
5134: * tests/065.html: - test for ^file:dirname was added
5135:
5136: * tests/030.html: - test for $cookie:fields was added
5137:
5138: * tests/203.html: - test for ^h._keys[column name] was added
5139:
5140: * tests/201.html: - tests for .trim were added
5141:
5142: * tests/202.html: - tests for last-day,
5143: date:calendar[type](YYYY;MM;DD) were added
5144:
5145: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
5146: .offset[type](N) were added
5147:
5148: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
5149: and .pos[c](N) were added
5150:
5151: * tests/141.html: - test for math:sha1 was added
5152:
5153: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
5154:
5155: 2009-05-09 misha
5156:
5157: * src/main/compile.y: - rollback
5158:
5159: 2009-05-05 misha
5160:
5161: * src/main/pa_exec.C: - little optimisation: somewhere length() was
5162: replaced by is_empty()
5163:
5164: * src/: include/pa_string.h, main/pa_charset.C: - little
5165: optimisation: somewhere length() was replaced by is_empty()
5166:
5167: * src/classes/table.C: - little optimisation: somewhere length()
5168: was replaced by is_empty()
5169:
5170: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
5171: classes/op.C, classes/table.C, main/pa_exception.C: - little
5172: optimisation: somewhere length() was replaced by is_empty()
5173:
5174: 2009-05-04 misha
5175:
5176: * src/: types/pa_method.h, types/pa_vstateless_class.C,
5177: types/pa_vstateless_class.h, main/execute.C,
5178: include/pa_request.h, classes/hash.C, classes/op.C,
5179: classes/table.C: - more optimisations were added: some operators
5180: don't switch write context anylonger
5181:
5182: 2009-05-01 misha
5183:
5184: * src/main/compile.y: - slightly more opcode optimisations for
5185: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
5186:
5187: * src/main/execute.C: - simplifying process for getters
5188:
5189: 2009-04-30 misha
5190:
5191: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
5192:
5193: * tests/results/199.processed: - test for checking $result into
5194: ^rem was added
5195:
5196: * tests/199.html: - test for checking $result into ^rem was added
5197:
5198: * tests/: 022.html, 096.html: - þsort after :list was asses (on
5199: some OS it returns list in different order)
5200:
5201: * src/: include/pa_array.h, include/pa_request.h,
5202: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
5203: changes in stack impl - get_element() optimisation: 3rd param
5204: removed - bugfix: problems with reading empty input param -
5205: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
5206:
5207: * tests/results/198.processed: - test for reading empty local var
5208: was added
5209:
5210: * tests/198.html: - test for reading empty local var was added
5211:
5212: 2009-04-29 misha
5213:
5214: * src/main/compile.y: - bugfix: couldn't compile because
5215: OP_VALUE__GET_ELEMENT should be unde #ifdef
5216:
5217: * src/: include/pa_array.h, include/pa_opcode.h,
5218: include/pa_request.h, main/compile.y, main/execute.C,
5219: main/pa_request.C, types/pa_vmethod_frame.C,
5220: types/pa_vmethod_frame.h: - we can work without opcode
5221: OP_STORE_PARAM, so it was removed
5222:
5223: 2009-04-28 misha
5224:
5225: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
5226: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
5227: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
5228: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
5229: 4.
5230: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
5231:
5232: * src/main/compile_tools.h: - new stuff for op-codes optimisation
5233:
5234: * src/: main/pa_string.C, classes/string.C: - !length() =>
5235: is_empty()
5236:
5237: 2009-04-27 misha
5238:
5239: * src/types/pa_vregex.h: - back explicit vars initialisation
5240:
5241: 2009-04-24 misha
5242:
5243: * src/classes/string.C: - ups. typo fixed
5244:
5245: * src/main/execute.C: - more replacements '*new VBool' to
5246: 'VBool::get' - checks for ^break[], ^continue[] and
5247: parser.interrupted were optimised
5248:
5249: * src/classes/string.C: - number of params.count() calls was
5250: slightly reduced
5251:
5252: 2009-04-23 misha
5253:
5254: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
5255: make it x64 friendly
5256:
5257: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
5258: parser is x64 friendly now
5259:
5260: 2009-04-22 misha
5261:
5262: * src/types/pa_vhashfile.C: - coder friendly exception about
5263: exceeding record size was added
5264:
5265: * src/classes/file.C: - use vregex object instead of direct calls
5266: methods from pcre lib
5267:
5268: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
5269: classes/string.C: - use vregex object instead of direct calls
5270: methods from pcre lib
5271:
5272: * src/: include/pa_common.h, main/pa_common.C: - method
5273: print_pcre_exec_error_text was moved to class vregex
5274:
5275: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
5276: was added
5277:
5278: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
5279: - class vregex was added
5280:
5281: 2009-04-21 misha
5282:
5283: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
5284:
5285: * src/: types/pa_junction.h, types/pa_value.C,
5286: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
5287: types/pa_wcontext.h, main/execute.C, classes/op.C: -
5288: junction-optimisation (destructors)
5289:
5290: * src/include/pa_array.h: - free under if now
5291:
5292: 2009-04-19 misha
5293:
5294: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
5295:
5296: 2009-04-18 misha
5297:
5298: * src/include/pa_version.h:
5299: :q :
5300:
5301: CV:
5302: ----------------------------------------------------------------------
5303:
5304: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
5305: refactoring
5306:
5307: * src/: include/pa_array.h, include/pa_hash.h,
5308: types/pa_vmethod_frame.h: - destructors under #ifdef now
5309:
5310: * src/include/pa_memory.h: - define for using destructors was added
5311:
5312: * src/: types/pa_method.h, types/pa_vstateless_class.C,
5313: main/execute.C: - some junctions will be cached now
5314:
5315: * src/include/pa_hash.h: - hash destructor frees pairs now
5316:
5317: * src/include/pa_array.h: - inline was added to destructor
5318:
5319: * src/types/pa_method.h: - comment was changed
5320:
5321: 2009-04-17 misha
5322:
5323: * src/: include/pa_array.h, include/pa_hash.h,
5324: types/pa_vmethod_frame.h: - destructors were added
5325:
5326: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
5327: renamed to always_use_result
5328:
5329: * src/main/: compile.y, compile_tools.h: - rollback changes in
5330: compiler: full backward compatibility is better
5331:
5332: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
5333: result in var's hash
5334:
5335: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
5336: optimisation in method_frame
5337:
5338: * src/include/pa_array.h: - optimisation in array (allocate
5339: elements only when needed)
5340:
5341: * src/types/pa_vresponse.C: - check for $response:headers field
5342: before looking at custom fields
5343:
5344: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
5345: not needed to check existance var with name 'result' in var's
5346: hash
5347:
5348: * src/main/compile.y: - compiler was changed: now it detects
5349: writings to $result and set flag writo_to_result in method
5350:
5351: * src/classes/string.C: - little optimisation: no needed to write
5352: number with lang
5353:
5354: * src/main/pa_charset.C: - methods readChar and skipChar which is
5355: used for read utf8-strings were renamed - is_escaped was renamed
5356: to isEscaped (to the same name convention)
5357:
5358: * src/: types/pa_method.h, main/compile_tools.h: - flag
5359: write_to_result added. compiler get this info from code.
5360:
5361: 2009-04-16 misha
5362:
5363: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
5364: String only before 1st write
5365:
5366: * src/include/pa_string.h: - not needed template removed
5367:
5368: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
5369: types/pa_vjunction.C, types/pa_vproperty.C,
5370: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
5371: main/pa_request.C, classes/bool.C, classes/double.C,
5372: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
5373: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
5374: bool objects)
5375:
5376: 2009-04-15 misha
5377:
5378: * src/lib/cord/cordxtra.c: - more optimisation
5379:
5380: * src/: include/pa_string.h, main/untaint.C: - String::append
5381: optimisation
5382:
5383: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
5384: then get and can sometime be used)
5385:
5386: * src/main/pa_string.C: - String::length optimisation
5387:
5388: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
5389: these methods read different strings
5390:
5391: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
5392: fresult_initial_void removed + some optimisation - if $result
5393: defined we don't write to context anymore
5394:
5395: * src/main/pa_charset.C: - readChar => skipChar (in this place we
5396: need just skip char)
5397:
5398: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
5399: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
5400: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
5401:
5402: * src/types/pa_vvoid.h: - added get() method for retreave one
5403: instance
5404:
5405: 2009-04-11 misha
5406:
5407: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
5408:
5409: * tests/197.html: - test for parser://test in xml was added
5410:
5411: * src/classes/string.C: - small optimisation
5412:
5413: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
5414: optimisation
5415:
5416: 2009-04-10 misha
5417:
5418: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
5419: to pcre-7.8
5420:
5421: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
5422:
5423: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
5424: added
5425:
5426: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
5427: $request:CLASS_NAME were added
5428:
5429: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
5430: were added
5431:
5432: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
5433: $env:CLASS_NAME were added
5434:
5435: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
5436: '@todo' now
5437:
5438: * src/targets/cgi/parser3.C: - size_t -> int for calming down
5439: compirer
5440:
5441: * src/main/pa_string.C: - little code cleanup
5442:
5443: * src/main/pa_common.C: - describe one more UTF-8 related error
5444: during PCRE compile/execute
5445:
5446: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
5447: normalizing todo-comments: '@todo' now
5448:
5449: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
5450:
5451: * src/main/pa_charset.C: - type changed for making compiler happy
5452:
5453: 2009-03-10 misha
5454:
5455: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
5456: in main()
5457:
5458: 2009-02-01 misha
5459:
5460: * src/main/pa_http.C: - bugfix: double CRLF before the end of
5461: boundary
5462:
5463: 2009-01-25 misha
5464:
5465: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
5466:
5467: * src/classes/file.C: - more changes for parsing different number
5468: of params for file::load
5469:
5470: * tests/193.html: - tests for exception while base64-decode binary
5471: to string was added
5472:
5473: * tests/192.html: - tests for file::load with different number of
5474: options
5475:
5476: * src/classes/math.C: - ups. forgot '+1'
5477:
5478: * src/: classes/table.C, classes/file.C, include/pa_common.h,
5479: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
5480: main/pa_http.C: - ^file::load[...;http://...;] now can post files
5481: (new option $.encode[multipart-form/data] should be specified) -
5482: $.method[] option for file::load now is not case-sensitive
5483:
5484: * src/: include/pa_string.h, main/untaint.C: - for file post the
5485: new taint language L_FILE_POST was added
5486:
5487: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
5488: main/main.vcproj, classes/math.C, include/Makefile.am: - some
5489: stuff was moved to separate files
5490:
5491: 2009-01-23 misha
5492:
5493: * src/classes/math.C: - little optimisation in ^math:sha1[] -
5494: spaces to tabs were converted
5495:
5496: 2009-01-12 misha
5497:
5498: * src/main/pa_http.C: - value of $.method[] option force uppercased
5499: now
5500:
5501: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
5502: types/pa_vform.C, types/pa_vmail.C: - some constants changed
5503: their names
5504:
5505: * src/main/pa_common.C: - changes in formating
5506:
5507: * src/: classes/file.C, main/pa_http.C: - some constants changed
5508: their names
5509:
5510: * src/include/pa_http.h: - some spaces were converted to tabs
5511:
5512: * src/include/pa_common.h: - some constants changed their names
5513:
5514: * src/classes/file.C: - fixed 4-th paramether for file::load -
5515: little code rewriting
5516:
5517: * src/types/pa_vfile.C: - little code rewriting
5518:
5519: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
5520: types/pa_value.h: - some formating changes
5521:
5522: * src/include/pa_common.h: - some formating spaces transformed to
5523: tabs
5524:
5525: * src/classes/string.C: - exception while base64-decode binary to a
5526: string
5527:
5528: 2009-01-11 misha
5529:
5530: * configure.in: - version changed to 3.3.1b
5531:
5532: 2008-09-05 misha
5533:
5534: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
5535: release_3_3_0 on 2008-09-05 10:59:35 +0000
5536:
5537: 2008-09-04 misha
5538:
5539: * tests/: 130.html, 131.html: - these exceptions not typeless
5540: anymore
5541:
5542: * src/classes/op.C: - exception with 'invalid taint language' not
5543: typeless anylonger
5544:
5545: * src/classes/image.C: - some exceptions while operations with
5546: image not typeless anymore
5547:
5548: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
5549: main/pa_exec.C, main/pa_http.C: - some exceptions while
5550: operations with files not typeless anymore
5551:
5552: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
5553: types/pa_vdate.h: - exceptions while checking date range not
5554: typeless anymore
5555:
5556: * src/include/pa_exception.h: - exception type string for invalid
5557: date range was added
5558:
5559: 2008-09-03 misha
5560:
5561: * src/: classes/file.C, main/pa_string.C: - exception while pce
5562: operations not typeless anymore
5563:
5564: * src/include/pa_exception.h: - exception type for pce operations
5565: was added
5566:
5567: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
5568: and .CLASS_NAME insite classes
5569:
5570: * src/classes/table.C: - don't save table header whiile
5571: ^table.save[append;filename] if file exists
5572:
5573: 2008-09-02 misha
5574:
5575: * src/main/compile.y, src/main/compile_tools.h,
5576: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
5577: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
5578: renamed to partial and it login changed: we must mark class as
5579: partial for allow their modifications in future.
5580:
5581: 2008-08-29 misha
5582:
5583: * tests/results/022.processed: - testing taint[regex] in mask for
5584: file:list
5585:
5586: * tests/022.html: - testing taint[regex] in mask for file:list
5587:
5588: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
5589: for file:list was added
5590:
5591: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
5592: file:list
5593:
5594: 2008-08-26 misha
5595:
5596: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
5597: last derived object
5598:
5599: * src/classes/image.C: - many strings "image.format" replaced by
5600: IMAGE_FORMAT constant string - handle GPS info while parse exif -
5601: understand some more exif tags
5602:
5603: * src/include/pa_exception.h: - string "image.format" was added
5604:
5605: 2008-08-21 misha
5606:
5607: * src/: main/pa_string.C, classes/file.C: - use method for print
5608: pcre_exec text error
5609:
5610: * src/main/pa_common.C: - method for print pcre_exec text error was
5611: added
5612:
5613: * src/include/pa_common.h: - method declaration for print pcre_exec
5614: text error was added
5615:
5616: 2008-08-19 misha
5617:
5618: * src/main/execute.C: - bugfix: opcodes must be in separate
5619: namespace while debug execution as well
5620:
5621: * tests/: 015.html, results/015.processed: - test for escaping some
5622: parser chars was added
5623:
5624: 2008-08-18 misha
5625:
5626: * tests/: 190.html, 190.p, results/190.processed: - test for
5627: $caller.self.field + default getter in one class was added
5628:
5629: * tests/: 189.html, results/189.processed: - test for
5630: ^date::create[date object]
5631:
5632: * tests/: 188.html, results/188.processed: - tests for match with
5633: UTF-8 strings
5634:
5635: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
5636: ^string.match[]
5637:
5638: * ChangeLog: - parser 3.3.0 beta13
5639:
5640: 2008-08-15 misha
5641:
1.101 moko 5642: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
5643: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
5644: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
5645: dftables.c: - old PCRE files removed
1.95 moko 5646:
5647: * src/lib/pcre/config.h: - configuration for PCRE library
5648:
5649: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
5650: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
5651:
5652: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
5653: library and set flag UTF8 if $request:charset is UTF-8
5654:
5655: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
5656: include/pa_config_fixed.h: - moved to new PCRE library
5657:
5658: * src/: main/main.vcproj, types/types.vcproj,
5659: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
5660: win32\pcre instead of parser3\src\lib\pcre
5661:
5662: * src/: include/pa_opcode.h, include/pa_operation.h,
5663: main/compile.C, main/compile.y, main/compile_tools.C,
5664: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
5665: opcodes were moved to separate namespace
5666:
5667: 2008-08-14 misha
5668:
5669: * src/types/pa_vstateless_class.C: - newline at the end missed
5670:
5671: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
5672: tainting
5673:
5674: 2008-08-11 misha
5675:
5676: * tests/: 187.html, 187.p, results/187.processed: - tests for
5677: $caller.self, $caller.self.field and $caller.self.field[value]
5678: were added
5679:
5680: * src/types/pa_vmethod_frame.h: - still need to check 'self'
5681: runtime as well (for $caller.self)
5682:
5683: 2008-07-25 misha
5684:
5685: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
5686: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
5687: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
5688: tests with international characters
5689:
5690: 2008-07-23 misha
5691:
5692: * src/main/pa_http.C: - escape $cookies as %uXXXX while
5693: file::load[...;http://
5694:
5695: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
5696: now everywhere in separate namespace
5697:
5698: * src/types/pa_vmethod_frame.h: - looking for caller before looking
5699: for vars
5700:
5701: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
5702: can be escaped by '^'
5703:
5704: 2008-07-22 misha
5705:
5706: * src/classes/string.C, tests/186.html: - names changes:
5707: escape=>js-escape, unescape=>js-unescape
5708:
5709: 2008-07-21 misha
5710:
5711: * tests/results/186.processed: - test for string escape/unescape
5712:
5713: * tests/186.html: - test for string escape/unescape
5714:
5715: * src/classes/string.C: - string has escape and unescape methods
5716: now
5717:
5718: * src/: include/pa_string.h, main/pa_string.C: - escape method was
5719: added
5720:
5721: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
5722: method-layers added (with different params)
5723:
5724: 2008-07-18 misha
5725:
5726: * tests/results/185.processed: - test for ^str.pos[substr](offset)
5727: was added
5728:
5729: * tests/185.html: - test for ^str.pos[sub](offset) added
5730:
5731: * src/classes/string.C, src/classes/void.C, operators.txt: -
5732: ^string.pos[substr](offset) -- 2nd param accepted now
5733:
5734: * src/main/pa_string.C: - .pos works fine with offset for utf-8
5735: strings
5736:
5737: 2008-07-17 misha
5738:
5739: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
5740: helper length added for mid for small optimisation
5741:
5742: 2008-07-16 misha
5743:
5744: * tests/: 185.html, results/185.processed: - tests for
5745: length/left/right/mid/pos with utf-8 strings
5746:
5747: * src/classes/string.C: - left/right/mid/length/pos works fine for
5748: utf-8 strings
5749:
5750: * src/main/untaint.C: - comments removed
5751:
5752: * src/: include/pa_string.h, main/pa_string.C,
5753: include/pa_charset.h, main/pa_charset.C: - methods for working
5754: with pos/mid for strings in utf-8 were added
5755:
5756: 2008-07-15 misha
5757:
5758: * tests/: 184.html, results/184.processed: - test for case body as
5759: expression: $var(^switch(1){^case(1)(true)..})
5760:
5761: * src/classes/op.C: - case body can be expression now:
5762: $var(^switch(1){^case(1)(true)..})
5763:
5764: * tests/: results/183.processed, 183.html: - added test for testing
5765: new cookie encoding (%uXXXX)
5766:
5767: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
5768: decoding for backward compatibility they decoded from %XX in
5769: request:charset too
5770:
5771: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
5772: - cookie class now decode cookies before first access after last
5773: request:charset changing (as form class).
5774:
5775: * src/main/pa_charset.C: - added method escape for escaping cookies
5776: as %uXXXX - before transcode calculate required space for dest
5777: string. it reduce mem usage for transcode
5778:
5779: * src/include/pa_charset.h: - added method escape for escaping
5780: cookies as %uXXXX
5781:
5782: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
5783: was added. will used for escaping cookies as %uXXXX
5784:
5785: * src/include/pa_common.h: - escape method has new option for skip
5786: converting '+' to a space char
5787:
5788: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
5789: transcode - escape method has new option for skip converting '+'
5790: to a space char
5791:
5792: 2008-07-08 misha
5793:
5794: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
5795: (no UE if more then 1 case matches anylonger) - optimization:
5796: doing searching.as_string() || searching.as_double() only once
5797:
5798: 2008-07-04 misha
5799:
5800: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
5801: now ^date::create[date object] works
5802:
5803: * src/classes/string.C: - left and right added as aliases for start
5804: and end in ^string.trim[]
5805:
5806: 2008-07-03 misha
5807:
5808: * src/classes/file.C: - allow $.limit for file::sql as well
5809:
5810: * src/classes/file.C: - allow $.offset option for file::sql - force
5811: send limit=1 to query for use sql specifics authomatically
5812:
5813: * src/classes/: hash.C, string.C, table.C: - don't throw exception
5814: if $.limit value if empty. autoconvert it as everywere
5815:
5816: 2008-07-02 misha
5817:
5818: * configure.in: - time to change version number to 3.3.0 %-)
5819:
5820: * src/include/pa_version.h: - time to change version number to
5821: 3.3.0 %-)
5822:
5823: 2008-06-26 misha
5824:
5825: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
5826: $.limit(0) fixes
5827:
5828: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
5829: - $.limit(0) fixes
5830:
5831: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
5832: new API)
5833:
5834: * src/: include/pa_sql_driver_manager.h,
5835: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
5836: classes/op.C: - document_root added
5837:
5838: * src/main/compile.tab.C: - error message was changed
5839:
5840: 2008-06-25 misha
5841:
5842: * src/main/compile.y: - error message was changed
5843:
5844: 2008-06-24 misha
5845:
5846: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
5847:
5848: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
5849: tests for @OPTIONS\nappend
5850:
5851: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
5852:
5853: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
5854:
5855: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
5856:
5857: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
5858: compile.y
5859:
5860: 2008-06-17 misha
5861:
5862: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
5863: compilation: ^if(default){true. it's incorrect. must be
5864: exception}
5865:
5866: 2008-06-16 misha
5867:
5868: * tests/: 181.ent, 181.html, results/181.processed: - test for
5869: checking external reference loading with 'http://localhost'
5870: prefix while creating xdoc
5871:
5872: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
5873: ^math:long2ip[] and ^math:ip2long[]
5874:
5875: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
5876: added which use scalar stateless class method when user object
5877: used in scalar context - use get_scalar_value when user object
5878: requested in scalar context
5879:
5880: * src/main/pa_common.C: - size must be int but not size_t or we
5881: can't compare with 0 sprintf result
5882:
5883: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
5884: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
5885: with internal switch between local/global vars
5886:
5887: * src/types/pa_vclass.C: - register scalar if method @GET[] was
5888: specified
5889:
5890: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
5891: pa_vstateless_object.h: - stateless class and object now has
5892: private scalar field and getter/setter for working with it
5893:
5894: * src/classes/math.C: - methods math:long2ip & math:ip2long were
5895: moved to inet static class
5896:
5897: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
5898: class added (^inet:aton[IP], ^inet:ntoa(number))
5899:
5900: * tests/: 180.html, results/180.processed: - tests for
5901: ^math:long2ip(long) and ^math:ip2long[IP]
5902:
5903: * src/classes/math.C: - ^math:ip2long[IP] added
5904:
5905: 2008-06-11 misha
5906:
5907: * src/main/pa_xml_io.C: - use file_read_text again because of we
5908: need cut BOM code and remove DOS newline chars. but don't
5909: transcode it anyway.
5910:
5911: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
5912: main/pa_http.C: - option for disable transcoding while file_read
5913: and file_read_text added
5914:
5915: 2008-06-10 misha
5916:
5917: * tests/: 179.html, 179.p, results/179.processed: - test for many
5918: classes in 1 file
5919:
5920: * src/main/: compile.C, compile_tools.h: - compile return list of
5921: classes now.
5922:
5923: * src/main/: compile.y, compile.tab.C: - compile return list of
5924: classes now. internals.
5925:
5926: * src/main/pa_request.C: - compile return list of classes now. try
5927: call @conf and @auto for each returned class
5928:
5929: * src/include/pa_request.h: - compile return list of classes now
5930:
5931: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
5932: return list of classes when compile buf)
5933:
5934: 2008-06-07 misha
5935:
5936: * src/main/pa_request.C: - constructing VRequest object with 3rd
5937: param -- form
5938:
5939: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
5940: 3rd param: form. needed for get post_charset
5941:
5942: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
5943: added
5944:
5945: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
5946: types/pa_vform.C, types/pa_vform.h: - some polish
5947:
5948: 2008-06-06 misha
5949:
5950: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
5951: charset and decode chars from it but not from response:charset
5952:
5953: * src/main/pa_http.C: - detect_charset moved out of here
5954:
5955: * src/: include/pa_common.h, main/pa_common.C: - more helpers
5956: methods moved here - unescape_chars accepn one charset now
5957:
5958: * src/main/pa_http.C: - new constants used - don't allow
5959: $.content-type in ^file::load[;http://;$.method[POST]] - add
5960: charset info while ^file::load[;http://;$.method[POST]] - option
5961: $.omit-post-charset(true) added to ^file::load[;http://] for
5962: disabling charset during post
5963:
5964: * src/types/pa_vform.C: - new constants used
5965:
5966: * src/include/pa_common.h: - some constants were added
5967:
5968: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
5969: instead of StrEqNc
5970:
5971: * src/main/pa_common.C: - new method for caseless search
5972: c-substring in c-string - use isxdigit instead of is_hex_digit
5973:
5974: * src/include/pa_common.h: - new method for caseless search
5975: c-substring in c-string
5976:
5977: 2008-06-05 misha
5978:
5979: * tests/results/178.processed: - test for testing default getter
5980:
5981: * tests/178.html: - test for testing default getter
5982:
5983: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
5984: for test for testing default getter
5985:
5986: * src/main/execute.C: - default getter soul
5987:
5988: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
5989: requested objects' field not found
5990:
5991: * src/types/pa_vclass.C: - register default getter if defined - get
5992: default getter if requested field not found
5993:
5994: * src/types/pa_vstateless_object.h: - method get_default_getter was
5995: added
5996:
5997: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
5998: pointer to default getter and methods for get/set it were added
5999:
6000: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
6001: auto_name field (for default getter)
6002:
6003: 2008-06-04 misha
6004:
6005: * src/main/pa_xml_io.C: - load external xml in binary mode (no
6006: transcoding, no cutting BOM code, no fixing line breaks) and get
6007: it to libxml "as is"
6008:
6009: 2008-06-03 misha
6010:
6011: * src/main/pa_common.C: - use store_Char instead of
6012: transcodeCharFromUTF8
6013:
6014: * src/: include/pa_charset.h, main/pa_charset.C: - method
6015: store_Char added, transcodeCharFromUTF8 -- removed
6016:
6017: 2008-06-02 misha
6018:
6019: * tests/: results/177.processed, 177.html: - test for checking
6020: .[acm]date after local ^file::load[] was added
6021:
6022: * tests/: results/176.processed, 176.html: - test for checking
6023: @OPTION\locals + @method[vars][locals] added
6024:
6025: * tests/results/auto.p: - CLASS_PATH specified for checking use
6026:
6027: 2008-05-30 misha
6028:
6029: * src/main/: compile.y, compile.tab.C: - changes in compiler:
6030: @OPTION\nlocals + @method[vars][;locals;] were added
6031:
6032: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
6033: moved to separate method op_code - switch from VMethodFrame to
6034: VMethodFrameGlobal + VMethodFrameLocal
6035:
6036: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
6037: was moved to separate method op_code
6038:
6039: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
6040: VMethodFrame now
6041:
6042: * src/types/pa_vstateless_class.h: - stateless class have bool flag
6043: all_vars_local as well
6044:
6045: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
6046: pa_vmethod_frame_local.h, Makefile.am: - who children for
6047: VMethodFrame were added: one (global) works as VMethodFrame
6048: before and second (local) write all vars in self vars scope
6049:
6050: * src/types/pa_method.h: - method has bool flag all_vars_local now
6051:
6052: 2008-05-29 misha
6053:
6054: * tests/: 129.html, results/129.processed: - more tests for
6055: ^table.hash[]
6056:
6057: * src/classes/hash.C: - ^hash::sql has a new option:
6058: $.type[hash|string|table] as ^table.hash[] one.
6059:
6060: * src/classes/op.C: - ^try has 3rd param now: finally code which
6061: executed anyway after try or catch section
6062:
6063: 2008-05-27 misha
6064:
6065: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
6066: must not fail if $.distinct(1) wasn't specified
6067:
6068: 2008-05-26 misha
6069:
6070: * src/classes/op.C: - allow ^throw[my type]
6071:
6072: 2008-05-22 misha
6073:
6074: * configure.in, configure: - version number updated to 3.2.4b
6075:
6076: * src/classes/: op.C, string.C: - trim format string before
6077: eval/format
6078:
6079: * tests/: results/175.processed, 175.html: - more tests for
6080: different format strings in .format[]
6081:
6082: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
6083: as well (not only %XX)
6084:
6085: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
6086: charset specified - checks for format before print number
6087: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
6088: (instead of tabs) removed
6089:
6090: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
6091: charset specified
6092:
6093: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
6094: char in requested charset from utf code was added
6095:
6096: 2008-05-19 misha
6097:
6098: * tests/: 174.html, results/174.processed: - test for
6099: ^hashfile.cleanup[] added
6100:
6101: * src/classes/hashfile.C: - optimization: don't create any key or
6102: value variable if it's name weren't specified
6103: (^hf.foreach[;v]{...})
6104:
6105: 2008-05-16 misha
6106:
6107: * src/classes/hash.C: - optimization: don't create any key variable
6108: if variable name wasn't specified (^h.foreach[;v]{...})
6109:
6110: 2008-05-15 misha
6111:
6112: * src/classes/op.C: - small changes
6113:
6114: * src/classes/hashfile.C: - code reformating (as hash.foreach)
6115:
6116: * src/classes/hash.C: - calculate var_context once before foreach
6117:
6118: 2008-05-14 misha
6119:
6120: * src/classes/hashfile.C: - incorrect vars context calculation for
6121: ^hashfile.foreach[;]{} fixed
6122:
6123: * src/classes/: hash.C, table.C: - little optimisation
6124:
6125: * src/classes/file.C: - bugfix: double absolute path while loading
6126: file
6127:
6128: * tests/: 174.html, results/174.processed: - tests for hashfile
6129: were added
6130:
6131: * buildall-with-xml: - moving to libxslt 1.1.24
6132:
6133: 2008-04-30 misha
6134:
6135: * src/classes/file.C: - stat file while loading (local only) so
6136: .adate, .mdate and .cdate available without additional ::stat
6137:
6138: 2008-04-28 misha
6139:
6140: * src/classes/file.C: - $.name and $.content-type available for
6141: stated file
6142:
6143: 2008-04-14 misha
6144:
6145: * src/targets/cgi/parser3.C: - new year in copyright %-)
6146:
6147: * src/include/pa_version.h: - new version number in head
6148:
6149: 2008-04-10 misha
6150:
6151: * tests/: 080.html, results/080.processed: - cut '0' from
6152: exponential part because of on diff OS it differ (20 or 020 for
6153: ex)
6154:
6155: * tests/: 119.html, results/119.processed: - check for encoding
6156: while creating xdoc
6157:
6158: 2008-04-09 misha
6159:
6160: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
6161:
6162: * src/main/pa_common.C: - comment added
6163:
6164: * src/classes/date.C: - little refactoring
6165:
6166: 2008-04-07 misha
6167:
6168: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
6169: style of ^table.save[]: prepare one big string and sabe it at
6170: once. it's safe on freebsd 4.x but use much more memory.
6171:
6172: * buildall-with-xml, buildall-without-xml: - option
6173: --disable-stringstream added (under comment. use it on freebsd
6174: 4.x)
6175:
6176: 2008-02-22 misha
6177:
6178: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
6179: specified together in file::load[;http] - get back transcoding
6180: $.body[] in file::load[;http]
6181:
6182: 2008-02-21 misha
6183:
6184: * src/classes/date.C: - ^date.gmt-string[] was added
6185:
6186: * src/types/pa_value.C: - method for output date in RFC 822 format
6187: moved to pa_common.h
6188:
6189: * src/include/pa_common.h: - method for output date in RFC 822
6190: format moved here from pa_value.C
6191:
6192: * src/types/pa_vmail.C: - fixed core in sending mail with
6193: attachment in simple mode ($.file[file here]) introduced in 3.2.2
6194:
6195: 2008-02-20 misha
6196:
6197: * src/main/pa_http.C: - transcode $.headers before escaping into
6198: specified charset while ^file::load[...;http://...] (L_URI
6199: instead of L_HTTP_HEADER) - $.cookies param available in
6200: ^file::load[;http://...] now (but we don't parse set-cookies from
6201: response yet) (cookies not transcoded as common $cookies)
6202:
6203: 2008-02-19 misha
6204:
6205: * src/main/pa_request.C: - rollback: we mustn't force taint
6206: $response:field values because in this case
6207: $response:locateion[http://...] don't works.
6208:
6209: 2008-02-15 misha
6210:
6211: * src/classes/op.C: - little refactoring
6212:
6213: * src/main/pa_http.C: - taint names of $.headers for load[;http
6214:
6215: * src/main/pa_request.C: - force taint values of $response:field
6216:
6217: 2008-02-14 misha
6218:
6219: * src/main/pa_request.C: - $response:field transcoded to
6220: $response:charset before escaping now
6221:
6222: * src/main/pa_http.C: - some outdated comments removed
6223:
6224: * src/classes/date.C: - lastdat -> last-day
6225:
6226: * src/classes/date.C: - ^date:lastday(year;month) and
6227: ^date.lastday[] were added - little code refactoring - comments
6228: changes
6229:
6230: * tests/: 159.html, results/159.processed: - test for number of
6231: days in February
6232:
6233: * src/types/pa_value.C: - fixes in code formatting
6234:
6235: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
6236: and comments
6237:
6238: 2008-02-13 misha
6239:
6240: * src/main/pa_common.C: - bugfix for february at leap year
6241:
6242: 2008-01-28 misha
6243:
6244: * tests/: 160.html, results/160.processed: - more test for cache
6245: added
6246:
6247: * src/classes/op.C: - bugfix: cache body executed twice if contains
6248: unhandled exception
6249:
6250: 2008-01-25 misha
6251:
6252: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
6253: bug when hashfile became inavailable after memory:compact)
6254:
6255: * src/lib/sdbm/apr_strings.C: - +arp_malloc
6256:
6257: 2008-01-22 misha
6258:
6259: * src/classes/table.C: - little refactiring and exception texts
6260: changes in method ^table.hash[]
6261:
6262: * src/types/pa_vcookie.C: - link to cookie specification changed
6263:
6264: 2008-01-21 misha
6265:
6266: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
6267: file::exec/cgi
6268:
6269: * src/classes/file.C: - bugfix: core while processing headers if
6270: executed cgi script don't return content
6271:
6272: 2008-01-18 misha
6273:
6274: * buildall-with-xml: - move to libxml2 version 2.6.31
6275:
6276: * src/include/pa_version.h, configure.in: - version number updated
6277: to '3.2.3b'
6278:
6279: 2007-12-28 misha
6280:
6281: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
6282: hash.contains
6283:
6284: 2007-12-27 misha
6285:
6286: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
6287: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
6288: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
6289: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
6290: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
6291: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
6292: src/targets/cgi/parser3.vcproj,
6293: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
6294: back to VS2003 because of Apache 1.3 module can't work if it was
6295: built in VS 2005. with cgi all file so VS2003 project files can
6296: be easy converted to the new format.
6297:
6298: 2007-12-04 misha
6299:
6300: * src/types/pa_vcode_frame.h: - changes in comment
6301:
6302: 2007-11-29 misha
6303:
6304: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
6305: intercept strings any longer
6306:
6307: * tests/: 173.html, results/173.processed: - tests for
6308: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
6309: but not in main code frame
6310:
6311: * tests/: 172.html, results/172.processed: - more tests for pass
6312: objects from code frames
6313:
6314: 2007-11-27 misha
6315:
6316: * tests/: 152.html, results/152.processed: - tests for converting
6317: strings 'true'/'false' to bool were added
6318:
6319: * tests/152.html: - added checks for converting strings
6320: 'true'/'false' to bool
6321:
6322: * src/classes/string.C: - ^srting.bool[] now can convert to bool
6323: not only strings with numbers but with values 'true'/'false' as
6324: well
6325:
6326: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
6327: for parser3.log increased
6328:
6329: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
6330:
6331: * src/include/pa_common.h: - remove_crlf return cstring size now
6332:
6333: * src/include/pa_types.h: - constant with buffer size for
6334: parser3.log added
6335:
6336: 2007-11-16 misha
6337:
6338: * tests/cat.sh: - script for tests for file::exec/cgi
6339:
6340: * tests/171.html: - tests for file::exec/cgi
6341:
6342: * tests/results/171.processed: - tests results for file::exec/cgi
6343:
6344: 2007-11-15 misha
6345:
6346: * src/main/pa_exec.C: - fixed incorrect exec code for unix
6347:
6348: * src/classes/file.C: - .body must be set before analyzing cgi
6349: headers
6350:
6351: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
6352: only if exec/cgi return anything.
6353:
6354: 2007-11-14 misha
6355:
6356: * operators.txt: - info about new text|binary option for
6357: file::exec/cgi was added
6358:
6359: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
6360: ^file:exec[[text|binary];script;...]
6361:
6362: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
6363: classes/string.C, classes/table.C: - more text strings moved to
6364: the one place
6365:
6366: 2007-11-09 misha
6367:
6368: * src/types/pa_vrequest.C: - $request:argv must be taint
6369:
6370: * ChangeLog: - $request:argv [patch from Sumo]
6371:
6372: * operators.txt: - $request:argv
6373:
6374: * src/: include/pa_request_info.h, types/pa_vrequest.C,
6375: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
6376:
6377: 2007-10-25 misha
6378:
6379: * buildall-with-xml, buildall-without-xml: - options preparations
6380: for ./configure rewrited
6381:
6382: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
6383: error occure in unhandled_exception finally fixed
6384:
6385: 2007-10-23 misha
6386:
6387: * tests/: 170.html, results/170.processed: - test for
6388: @method[][result]
6389:
6390: * operators.txt: - added info about node.prefix and
6391: node.namespaceURI
6392:
6393: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
6394:
6395: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
6396: added for node and attribute
6397:
6398: 2007-10-22 misha
6399:
6400: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
6401:
6402: * src/main/pa_request.C: - added const content-transfer-encoding
6403:
6404: * src/include/pa_request.h: - added const content-transfer-encoding
6405: - ups. constants must be in lowercase (for search)
6406:
6407: * src/types/pa_vmail.C: - more constants used -
6408: content-transfer-encoding: 8bit added
6409:
6410: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
6411:
6412: * src/include/pa_request.h: - more constants
6413:
6414: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
6415: ommit anymore if $.content-disposition was specified - little
6416: refactoring
6417:
6418: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
6419:
6420: 2007-10-17 misha
6421:
6422: * operators.txt: - info about
6423: table::create[nameless]{data}[>options<] was added
6424:
6425: * src/main/: compile.tab.C, compile.y: - if error occure while
6426: compile method don't put this method in methods table anymore.
6427: in other case the parser coredumped if @unhandled_exception
6428: method can't be compiled because of parser.compile error.
6429:
6430: * src/main/execute.C: - little code reformating
6431:
6432: * src/main/pa_request.C: - little code reformating - comment
6433: changed
6434:
6435: 2007-10-16 misha
6436:
6437: * tests/: 035.html, results/035.processed: - tests
6438: table::create[]{}[options] added
6439:
6440: * src/classes/table.C: - table::create[]{} now accept 3rd param:
6441: options (only $.seperator[] yet)
6442:
6443: 2007-10-10 misha
6444:
6445: * src/classes/table.C: - some contstants moved to pa_common.h -
6446: some code changes
6447:
6448: 2007-10-02 misha
6449:
6450: * src/main/pa_uue.C: - memory usage during uuencode reduced more
6451: then three time as much. but base64 encoding method still use
6452: less memory anyway.
6453:
6454: 2007-09-17 misha
6455:
6456: * operators.txt: - added info about $cookie:fields
6457:
6458: * src/types/pa_vcookie.C: - $cookie:fields available now
6459:
6460: * src/classes/hash.C: - some stuff for use with .for_each moved to
6461: common
6462:
6463: * src/include/pa_common.h: - some stuff for use with .for_each
6464: moved here
6465:
6466: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
6467:
6468: 2007-09-14 misha
6469:
6470: * buildall-with-xml: - new xml libs again =)
6471:
6472: 2007-08-28 misha
6473:
6474: * operators.txt: - texts about ^table.columns[[column name]] and
6475: ^string.split[...][v][column name] were added
6476:
6477: * tests/: 168.html, 169.html, results/168.processed,
6478: results/169.processed: - tests for ^table.columns[[column name]]
6479: and ^string.split[...][v][column name] were added
6480:
6481: * src/classes/table.C: - new option ^table.columns[[column name]]
6482: was added
6483:
6484: * src/classes/string.C: - new option ^string.split[...;v;[column
6485: name]]
6486:
6487: * src/include/pa_exception.h: - error text message for
6488: ^hash._keys[], ^table.columns[] and ^string.split[]
6489:
6490: 2007-08-27 misha
6491:
6492: * src/main/untaint.C: - try to fix coredump on unix if print to
6493: body ^taint[sql][something] outside of connect
6494:
6495: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
6496: outside of connect
6497:
6498: * buildall-with-xml, buildall-without-xml: - strip parser3 was
6499: added (commented by default)
6500:
6501: 2007-08-20 misha
6502:
6503: * operators.txt: - comment about new method ^node.hasAttributes[]
6504: was added
6505:
6506: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
6507: duplicated exception text strings were removed
6508:
6509: * src/include/pa_exception.h: - more exception text strings moved
6510: here
6511:
6512: * src/classes/table.C: - some duplicate exceptions' text strings
6513: removed
6514:
6515: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
6516: xdoc.C, xnode.C: - some duplicate exceptions' text strings
6517: removed
6518:
6519: * src/include/pa_exception.h: - some exception text strings movet
6520: to pa_exception
6521:
6522: * tests/: 149.html, results/149.processed: - test for
6523: ^xnode.hasAttributes[] was added - some code changes
6524:
6525: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
6526: added
6527:
6528: 2007-08-17 misha
6529:
6530: * tests/: results/006.processed, results/059.processed, 006.html,
6531: 059.html: - more tests for match
6532:
6533: * tests/: 129.html, results/129.processed: - tests for
6534: ^table.hash[...][$.type[string|hash|table]] added
6535:
6536: * src/targets/cgi/parser3.C: - little syntax changes
6537:
6538: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
6539: syntax changes
6540:
6541: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
6542: messages in parser3.log switched off by default. If someone
6543: really still need it: use $SIGPIPE(1)
6544:
6545: 2007-08-08 misha
6546:
6547: * buildall-with-xml, buildall-without-xml: - remove libs source
6548: files by default since now
6549:
6550: 2007-08-07 misha
6551:
6552: * buildall-without-xml: - some option syntax changes
6553:
6554: * buildall-with-xml: - compile libxml2 without http support - some
6555: option syntax changes
6556:
6557: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
6558:
6559: 2007-08-06 misha
6560:
6561: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
6562:
6563: * tests/: 160.html, results/160.processed: - cache test was
6564: rewrited
6565:
6566: 2007-07-06 misha
6567:
6568: * tests/: 153.html, results/153.processed: - added test for
6569: ^math:sha1[string]
6570:
6571: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
6572: transcoded
6573:
6574: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
6575: were added
6576:
6577: 2007-06-28 misha
6578:
6579: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
6580: some incorrect chars
6581:
6582: 2007-06-19 misha
6583:
6584: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
6585: were moved on top because of gcc 4 had a problems during
6586: building.
6587:
6588: 2007-06-18 misha
6589:
6590: * tests/results/019.processed: - new image commited
6591:
6592: 2007-06-09 misha
6593:
6594: * src/classes/: op.C, table.C: - in while and table.select method
6595: as_expression used now
6596:
6597: * src/types/pa_vmethod_frame.h: - method as_expression was added
6598:
6599: 2007-06-08 misha
6600:
6601: * tests/: 166.html, results/166.processed: - test for
6602: ^match[...][n]
6603:
6604: * tests/: 165.html, results/165.processed: - tests for loops
6605:
6606: * src/lib/cord/include/private/cord_pos.h: - back to origin value
6607: because of no speed/memory optimisation but some proglems with
6608: long cycles occure
6609:
6610: 2007-06-06 misha
6611:
6612: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
6613: ^table.select(true) and ^table.select(1) didn't works because of
6614: awaiting junction-param only. fixed.
6615:
6616: 2007-05-24 misha
6617:
6618: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
6619: with 0.5 secs interval
6620:
6621: * src/classes/op.C: - cache was rewrited. I hope it works with
6622: locking system now on unix
6623:
6624: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
6625: system locks which wait till other threads release it but try get
6626: lock, if fail wait 1 sec and make 10 attempts.
6627:
6628: * src/include/pa_os.h: - consts for blocking locks + some comments
6629: were added
6630:
6631: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
6632: opening files
6633:
6634: * src/classes/table.C: - changes in includes. if unclude <sstream>
6635: after our classes on unix it can't be build
6636:
6637: * src/types/pa_vhashfile.C: - not needed code removed
6638:
6639: 2007-05-23 misha
6640:
6641: * src/: classes/file.C, classes/op.C, main/pa_common.C,
6642: include/pa_common.h: - cosmetic changes
6643:
6644: 2007-05-18 misha
6645:
6646: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
6647: often. it's give some speed increasing
6648:
6649: * tests/results/160.processed: - returned time corrected
6650:
6651: * tests/160.html: - time increased because on unix 1 mean nothing
6652: :(
6653:
6654: * operators.txt: - added info about ^hash.contain[key]
6655:
6656: * src/classes/hash.C: - added ^hash.contain[key]
6657:
6658: * src/include/pa_hash.h: - added method for checking key exists in
6659: hash
6660:
6661: 2007-05-07 misha
6662:
6663: * src/include/pa_string.h: - was compilation error during build on
6664: freebsd4
6665:
6666: 2007-05-03 misha
6667:
6668: * src/classes/table.C: - option $.type[hash|string|table] was added
6669: for ^table.hash[]
6670:
6671: * src/classes/file.C: - comment removed
6672:
6673: 2007-04-26 misha
6674:
6675: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
6676: real files doesn't opened in place anymore
6677:
6678: 2007-04-24 misha
6679:
6680: * src/classes/math.C: - I thought one more time and remove lg(N) :)
6681:
6682: * src/include/pa_exception.h: "static" removed
6683:
6684: 2007-04-23 misha
6685:
6686: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
6687:
6688: * src/classes/math.C: added: - ^math:ln(N) (the same as
6689: ^math:log(N)) - ^math:lg(N)
6690:
6691: * tests/: 097.html, results/097.processed: - charsets converstion
6692: during ^file::load[text;http://...] added
6693:
6694: * tests/: 164.html, results/164.processed: - check for set expires
6695: as a date
6696:
6697: * tests/: 164.html, results/164.processed: - test for hashfile
6698:
6699: * src/classes/hashfile.C: - little comment changes
6700:
6701: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
6702: access
6703:
6704: * src/: classes/date.C, classes/double.C, classes/file.C,
6705: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
6706: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
6707: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
6708: classes/xnode.h, include/pa_request.h, main/execute.C,
6709: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
6710: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
6711: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
6712: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
6713: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
6714: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
6715: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6716: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
6717: "parser.runtime" strings were removed
6718:
6719: * src/classes/hashfile.C: - with .clear[] called files_delete()
6720: now.
6721:
6722: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
6723:
6724: * src/include/pa_exception.h: - string constant with
6725: "parser.runtime" text was added
6726:
6727: 2007-04-20 misha
6728:
6729: * operators.txt: - some comments changing
6730:
6731: * operators.txt: - added info about .^hashfile.release[],
6732: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
6733:
6734: * configure: =cheching for unsetenv
6735:
6736: * src/classes/hashfile.C: - ^hashfile.cleanup[],
6737: ^hashfile.release[] were added
6738:
6739: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
6740: ^string.match[][] understand new option now: return number of
6741: matches but not table wit results
6742:
6743: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
6744: reopen now
6745:
6746: * src/classes/op.C: - bug. must be false
6747:
6748: * configure.in: - checking for unsetenv was added
6749:
6750: * src/types/pa_vform.C: - some comments
6751:
6752: 2007-04-18 misha
6753:
6754: * buildall-with-xml: moving to libxml2-2.6.28
6755:
6756: * buildall-with-xml, buildall-without-xml: added commented lines
6757: with --disable-safe-mode option
6758:
6759: * operators.txt: - info about $form:files
6760:
6761: 2007-04-17 misha
6762:
6763: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
6764: $form:files was added
6765:
6766: * tests/: 163.html, results/163.processed: removing auto format
6767:
6768: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
6769:
6770: 2007-04-16 misha
6771:
6772: * tests/: 163.html, results/163.processed: - test for .int[],
6773: floor, round, ceiling and .format[]
6774:
6775: * src/classes/file.C: - little optimization for getting args in
6776: exec/cgi
6777:
6778: 2007-04-13 misha
6779:
6780: * src/classes/file.C: - arguments for file::exec/cgi can be
6781: specified now as s table with one column
6782:
6783: 2007-03-27 misha
6784:
6785: * tests/: 162.html, results/162.processed: - test for
6786: ^table.select(^condition[$t])
6787:
6788: * tests/results/auto.p: - load windows-1251 charset for some tests
6789:
6790: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
6791:
6792: * tests/: results/161.processed, 161.html, 161_utf8.txt,
6793: 161_windows1251.txt: - added test for
6794: ^file::load[text;/local/file.txt;$.charset[...]]
6795:
6796: * tests/: results/013.processed, 013.html: - added test for
6797: checking $._default value while hash modifications
6798:
6799: * tests/: 160.html, results/160.processed: - add test for
6800: ^cache[key](secs){code}, ^cache[] and ^cache(0)
6801:
6802: 2007-03-22 misha
6803:
6804: * src/include/pa_common.h: - "charset" string defined for
6805: ^file::load[text;/local.txt] and ^table::load[/table.txt]
6806:
6807: * src/main/: pa_common.C, pa_http.C: - $.charset option for
6808: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
6809: added - not needed transcodes were removed from
6810: ^file::load[...;http://...]
6811:
6812: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
6813: added
6814:
6815: * src/classes/date.C: - date.week was fixed
6816:
6817: * operators.txt: - added info about date.weekyear
6818:
6819: * tests/: 159.html, results/159.processed: - tests for date.week
6820: and date.weekyear added
6821:
6822: 2007-03-15 misha
6823:
6824: * src/classes/table.C: - enclose column numbers for nameless tables
6825: as well
6826:
6827: 2007-03-14 misha
6828:
6829: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
6830:
6831: * src/classes/table.C: - table.save optimization: now required much
6832: less memory
6833:
6834: 2007-03-13 misha
6835:
6836: * tests/results/: 158.processed, 158.processes: - tests for
6837: table.save/table.load
6838:
6839: * tests/: 158.html, results/158.processes: - tests for
6840: table.save/table.load
6841:
6842: * buildall-with-xml: libxml2: --without-ftp --without-docbook
6843:
6844: * buildall-with-xml: - pattern needed now for building
6845:
6846: * tests/results/097.processed: - added test results for xdoc::load
6847: & xdoc::load[http://...]
6848:
6849: * tests/097.html: - added test for xdoc::load
6850:
6851: 2007-03-12 misha
6852:
6853: * tests/: 107.html, results/107.processed: - added test for xpath
6854: '//man'
6855:
6856: 2007-03-01 misha
6857:
6858: * tests/: 097.html, results/097.processed: - added test for
6859: creating xdoc from file
6860:
6861: * tests/: results/157.processed, 157.html: - added test for
6862: file:move
6863:
6864: 2007-02-28 misha
6865:
6866: * src/classes/xdoc.C: - another attempt
6867:
6868: * src/classes/xdoc.C: - roll back last changes for a while
6869:
6870: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
6871:
6872: * src/classes/file.C: - under lock we create non-exist dir anyway
6873:
6874: * tests/results/099.processed: - ever send content-disposition to
6875: client with file
6876:
6877: * tests/157.html: + test for file:copy
6878:
6879: 2007-02-26 misha
6880:
6881: * src/classes/file.C: - some similar strings moved to #define
6882: instead of to be copy/pasted many times
6883:
6884: * src/types/pa_vfile.h: - class name string ("file") moved to
6885: #define
6886:
6887: 2007-02-20 misha
6888:
6889: * bin/auto.p.dist.in: - added lines for sqlite
6890:
6891: * configure.in: - added some strings for sqlite detection
6892:
6893: 2007-02-19 misha
6894:
6895: * operators.txt: - some comments changes
6896:
6897: * buildall-with-xml, buildall-without-xml: - some modifications
6898:
6899: 2007-02-17 misha
6900:
6901: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
6902:
6903: * src/main/pa_request.C: - damn, i forgot to commit it while I
6904: change console behaviour
6905:
6906: 2007-02-12 misha
6907:
6908: * src/targets/cgi/parser3.C: - don't print headers if
6909: $console:line[data] was used during cgi execution.
6910:
6911: * src/types/pa_vconsole.h: - console class have bool flag now which
6912: marked as 'true' if class was used.
6913:
6914: * tests/: 152.html, results/152.processed: - more types was added
6915: to test 152
6916:
6917: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
6918: adding 'bool' (^if($image){} caused exception)
6919:
6920: 2007-02-09 misha
6921:
6922: * tests/: 152.html, results/152.processed: - test alightly updated
6923:
6924: * tests/: 152.html, results/152.processed: - test rewrited
6925:
6926: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
6927: bugfix. I broke xdoc & xnode in expression
6928:
6929: 2007-02-08 misha
6930:
6931: * tests/: 152.html, results/152.processed: - add test for checking
6932: 'def' for void, string, bool, int & double
6933:
6934: 2007-02-07 misha
6935:
6936: * operators.txt: - ^file:base64[filespec] was added
6937:
6938: * tests/results/153.processed: - result test for
6939: ^file:base64[filespec] was updated
6940:
6941: * tests/153.html: - test for ^file:base64[filespec] was added
6942:
6943: * src/types/pa_vconsole.h: - little optimization
6944:
6945: * src/classes/file.C: - ^file:base64[filespec]
6946:
6947: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
6948:
6949: * src/include/pa_common.h: - declarations for
6950: ^file:base64[filespec]
6951:
6952: * src/types/pa_vcookie.C: - little optimization
6953:
6954: 2007-02-06 misha
6955:
6956: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
6957: were temporary commented
6958:
6959: * src/types/pa_vbool.h: - bugfix
6960:
6961: * tests/156.html: - added test for bool cookie
6962:
6963: * src/types/pa_vcookie.h: - not needed string "cookie" removed
6964:
6965: * tests/: 155.html, results/155.processed: - added test for check
6966: $.encloser[] option for table save/load
6967:
6968: * tests/: 153.html, 154.html, todo.txt: - two more tests added
6969:
6970: 2007-02-05 misha
6971:
6972: * tests/results/152.processed: - newline at the end was missed
6973:
6974: * tests/results/141.processed: - math:md5 must be lowercased
6975:
6976: * src/targets/cgi/parser3.C: - 2007 in help ;)
6977:
6978: 2007-02-03 misha
6979:
6980: * tests/results/: 150.processed, 151.processed, 152.processed: -
6981: test for bool added and some content length fixes
6982:
6983: * tests/152.html: - test for bool added
6984:
6985: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
6986:
6987: * operators.txt: - info bool class was added
6988:
1.101 moko 6989: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 6990: classes/classes.vcproj, classes/double.C, classes/int.C,
6991: classes/string.C, classes/void.C, classes/xnode.C,
6992: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
6993: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
6994: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
6995: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6996: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
6997: types/types.vcproj: - bool class was added
6998:
6999: * src/main/pa_request.C: - fix
7000:
7001: 2007-01-18 misha
7002:
7003: * src/: main/pa_string.C, classes/string.C: - return table during
7004: ^string.match[][] even if no matched found.
7005:
7006: 2006-12-20 misha
7007:
7008: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
7009: http://www.parser.ru/forum/?id=55598 ]
7010:
7011: 2006-12-19 misha
7012:
7013: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
7014: details: http://www.parser.ru/forum/?id=52359
7015:
7016: * src/main/pa_request.C: - always set content-disposition for
7017: $response:body[hash here]. more details:
7018: http://www.parser.ru/forum/?id=52130
7019:
7020: 2006-12-07 misha
7021:
7022: * operators.txt: - added info about bool params in cookie set
7023:
7024: * src/types/pa_vcookie.C: - bool param in cookies available now
7025: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
7026: ]
7027:
7028: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
7029: was added
7030:
7031: 2006-12-02 misha
7032:
7033: * src/classes/file.C: - file_block_read used instead of native read
7034:
7035: * src/main/pa_common.C: - added file_block_read with read error
7036: detection - file_block_read used instead of native read
7037:
7038: * src/include/pa_common.h: - added file_block_read declaration
7039:
7040: 2006-12-01 misha
7041:
7042: * operators.txt: - info about $var.CLASS_NAME was added
7043:
7044: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
7045: $var.CLASS_NAME added
7046:
7047: * operators.txt: - added info about ^file:copy[]
7048:
7049: * src/classes/file.C: - ^file:copy[from;fo] was added
7050:
7051: 2006-11-20 misha
7052:
7053: * src/classes/date.C: - bug fix :)
7054:
7055: 2006-11-17 misha
7056:
7057: * src/include/pa_common.h: - array in crc32 calculation was changed
7058: to static
7059:
7060: * src/main/pa_common.C: - little optimization in getMonthDays -
7061: small changes in crc32 calculation
7062:
7063: * src/classes/date.C: - not needed code was removed
7064:
7065: 2006-11-16 misha
7066:
7067: * src/types/pa_vmail.C: - fix missed brakes
7068:
7069: * src/types/pa_vmail.C: - mail:send now set content-type:
7070: multipart/related instead of multipart/mixed if file have
7071: $.content-id[]
7072:
7073: 2006-11-15 misha
7074:
7075: * src/types/pa_vdouble.h: abs -> fabs
7076:
7077: 2006-11-14 misha
7078:
7079: * operators.txt: - added info about ^file.md5[] and
7080: ^file:md5[file-name]
7081:
7082: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
7083: added
7084:
7085: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
7086: FILE_BUFFER_SIZE
7087:
7088: * src/classes/math.C: - hex_string was moved to pa_common.h
7089:
7090: * src/include/pa_common.h: - hex_string was moved from math.C -
7091: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
7092:
7093: * src/types/pa_vdouble.h: - incorrect frac detection with negative
7094: values was fixed
7095:
7096: 2006-11-13 misha
7097:
7098: * operators.txt: - added info about ^math:crc32[string],
7099: ^file:crc32[file-name] & ^file.crc32[]
7100:
7101: * src/classes/math.C: - added ^math:crc32[string]
7102:
7103: * src/classes/file.C: - some comments were changed - added
7104: ^file:crc32[file-name] and ^file.crc32[]
7105:
7106: * src/: include/pa_common.h, main/pa_common.C: - some functions for
7107: crc32 calculation added
7108:
7109: 2006-11-03 misha
7110:
7111: * src/include/pa_array.h: - not needed variable removed
7112:
7113: * tests/: 150.html, 151.html, results/150.processed,
7114: results/151.processed: - 2 tests were added
7115:
7116: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
7117: with $.reverse(1) were fixed
7118:
7119: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
7120: query converted to $.charset during ^file::load[http://...]
7121:
7122: 2006-11-02 misha
7123:
7124: * src/include/pa_table.h: ups. forget '=' char
7125:
7126: * src/include/pa_table.h: - one more fix in
7127: .locate[...][$.reverse(1)]
7128:
7129: 2006-11-01 misha
7130:
7131: * src/classes/math.C: - bug fix, details:
7132: http://www.parser.ru/forum/?id=53360
7133:
7134: * src/include/pa_table.h: - bug fix during ^table.locate( condition
7135: false for all records )[$.reverse(1)]
7136:
7137: * src/main/pa_http.C: - second param for this mid method is length
7138: but not end_index so this method has error and can't detect
7139: charsets in next content-types: Content-type: text/html;
7140: charset="windows-1251" Content-type: text/html;
7141: charset="windows-1251"; Content-type: text/html;
7142: charset=windows-1251;
7143:
7144: only Content-type: text/html; charset=windows-1251 was fine
7145:
7146: 2006-10-31 misha
7147:
7148: * src/classes/file.C: - empty args in file::exec removed now
7149:
7150: 2006-09-11 misha
7151:
7152: * bin/auto.p.dist.in: - 2 errors were fixed - table::set was
7153: replaced to table::create - some changes in text/code formatting
7154:
7155: 2006-09-03 paf
7156:
7157: * src/classes/file.C: proper tainting of
7158: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
7159:
7160: 2006-06-09 paf
7161:
7162: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
7163:
7164: * src/classes/table.C: formatting
7165:
7166: * src/classes/table.C: incorporated patch from misha: Sent:
7167: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
7168: ignoring string options for ^table.save[]
7169:
7170: * src/classes/hash.C: incorporated patch from misha Sent:
7171: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
7172: $hash._default disappear while
7173:
7174: * operators.txt: ^mail:send[ $.file1[ $.value[file]
7175: $.format[!uue|!base64] << new base64 option. default uue ] ]
7176:
7177: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
7178: PM Subject: patch for base64 in ^mail:send[] %-)
7179:
7180: 2006-04-09 paf
7181:
7182: * src/main/compile.tab.C: ` change compiled
7183:
7184: * gnu.vcproj, operators.txt, parser3.sln,
7185: src/classes/classes.vcproj, src/classes/file.C,
7186: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
7187: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
7188: src/classes/xnode.C, src/include/pa_array.h,
7189: src/include/pa_config_fixed.h, src/include/pa_dir.h,
7190: src/include/pa_memory.h, src/include/pa_request.h,
7191: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
7192: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
7193: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
7194: src/lib/pcre/pcre_dftables.vcproj,
7195: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
7196: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
7197: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
7198: src/main/pa_cache_managers.C, src/main/pa_charset.C,
7199: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
7200: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
7201: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
7202: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
7203: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
7204: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
7205: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
7206: src/types/pa_value.h, src/types/pa_vcookie.C,
7207: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
7208: src/types/pa_vmail.C, src/types/pa_vresponse.C,
7209: src/types/pa_vstatus.C, src/types/types.vcproj,
7210: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
7211: ^menu, ^hash/hashfile.foreach
7212:
7213: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
7214: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
7215: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
7216: src/classes/xnode.C, src/include/pa_array.h,
7217: src/include/pa_config_fixed.h, src/include/pa_dir.h,
7218: src/include/pa_memory.h, src/include/pa_request.h,
7219: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
7220: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
7221: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
7222: src/lib/pcre/pcre_dftables.vcproj,
7223: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
7224: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
7225: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
7226: src/main/pa_cache_managers.C, src/main/pa_charset.C,
7227: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
7228: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
7229: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
7230: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
7231: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
7232: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
7233: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
7234: src/types/pa_value.h, src/types/pa_vcookie.C,
7235: src/types/pa_vmail.C, src/types/pa_vresponse.C,
7236: src/types/pa_vstatus.C, src/types/types.vcproj,
7237: tests/descript.ion: ! switched to VS2005 (projects and
7238: object<info explicitly typed>.for_each(, info)) +
7239: $response:field[] setting void means removing + grammar $name`
7240: name stops now, for mysql `$field` + started ^break[]
7241: ^continue[], in ^for. TODO: to other iterators (while, menu,
7242: foreach) + all log messages += [uri=, method=, cl=]
7243:
7244: * buildall-with-xml: merged . ftp paths update
7245:
7246: * buildall-with-xml: . ftp paths update
7247:
7248: 2006-03-04 paf
7249:
7250: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
7251: checks++ [thanks to Igor Zinkovsky for detailed report]
7252:
7253: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
7254: Igor Zinkovsky for detailed report]
7255:
7256: 2006-03-01 paf
7257:
7258: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
7259: \n to ' ' in
7260:
7261: 2006-02-18 paf
7262:
7263: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
7264: \n to ' ' in
7265:
7266: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
7267:
7268: 2006-02-03 paf
7269:
7270: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
7271: base64
7272:
7273: * src/main/pa_common.C: ! bugfix: decoding from base64
7274:
7275: 2006-01-20 paf
7276:
7277: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
7278: economy fix
7279:
7280: * src/classes/: table.C: merged from HEAD ! bugfix
7281: ^table.save[$.encloser-s now handled properly
7282:
7283: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
7284: handled properly
7285:
7286: 2006-01-19 paf
7287:
7288: * buildall-with-xml, buildall-without-xml: merged from HEAD !
7289: libgc:USE_MUNMAP activates merging of free memory blocks which
7290: helps a lot in our case: after transform we want
7291: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
7292:
7293: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
7294: economy fix
7295:
7296: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
7297: activates merging of free memory blocks which helps a lot in our
7298: case: after transform we want CORD(main.result)->cstr[big
7299: malloc]->transcode[big malloc]
7300:
7301: 2006-01-17 paf
7302:
7303: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
7304: before reading them. got rid of reallocs = became quicker and
7305: less fragmentated
7306:
7307: 2005-12-29 paf
7308:
1.101 moko 7309: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
7310: configure, configure.in, src/include/pa_version.h,
7311: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 7312: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
7313: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
7314: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
7315: src/lib/ltdl/missing: . merged from 3.2.1
7316:
1.101 moko 7317: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
7318: packaged when 'make dist', so do configure companion files in
7319: src/lib/ltdl
7320:
7321: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
7322: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
7323: missing: . now config_auto.h is created with configure [were
7324: constant]
1.95 moko 7325:
7326: * INSTALL: . references to documentation and some clarification
7327:
7328: * buildall-with-xml, buildall-without-xml: . farawell doc
7329: indication
7330:
1.101 moko 7331: * Makefile.am: . dist+=buildall*
1.95 moko 7332:
7333: 2005-12-28 paf
7334:
7335: * configure: . 3.2.1
7336:
7337: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
7338: simplify build process, see INSTALL
7339:
7340: 2005-12-26 paf
7341:
7342: * configure: ver
7343:
7344: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
7345: version
7346:
7347: 2005-12-21 paf
7348:
7349: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
7350: compiled with bison 1.875b, it reports unexpected token names
7351:
7352: 2005-12-19 paf
7353:
7354: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
7355: holds a link to xmlNode to prevent premature gc(xmlNode)
7356:
7357: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
7358: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
7359: src/main/main.vcproj, src/main/pa_globals.C,
7360: src/targets/cgi/parser3.vcproj,
7361: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
7362: configure, configure.in, src/include/pa_version.h: . killing
7363: gdome [what a relief]
7364:
7365: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
7366: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
7367: run_parser.sh, results/001.processed, results/002.processed,
7368: results/003.processed, results/004.processed,
7369: results/005.processed, results/006.processed,
7370: results/008.processed, results/009.processed,
7371: results/010.processed, results/011.processed,
7372: results/012.processed, results/013.processed,
7373: results/014.processed, results/015.processed,
7374: results/016.processed, results/017.processed,
7375: results/018.processed, results/020.processed,
7376: results/021.processed, results/022.processed,
7377: results/023.processed, results/024.processed,
7378: results/025.processed, results/026.processed,
7379: results/027.processed, results/028.processed,
7380: results/029.processed, results/030.processed,
7381: results/031.processed, results/032.processed,
7382: results/033.processed, results/034.processed,
7383: results/035.processed, results/036.processed,
7384: results/037.processed, results/038.processed,
7385: results/039.processed, results/040.processed,
7386: results/041.processed, results/042.processed,
7387: results/043.processed, results/044.processed,
7388: results/045.processed, results/046.processed,
7389: results/047.processed, results/048.processed,
7390: results/049.processed, results/050.processed,
7391: results/051.processed, results/052.processed,
7392: results/053.processed, results/054.processed,
7393: results/055.processed, results/056.processed,
7394: results/057.processed, results/058.processed,
7395: results/059.processed, results/060.processed,
7396: results/061.processed, results/062.processed,
7397: results/063.processed, results/064.processed,
7398: results/065.processed, results/066.processed,
7399: results/067.processed, results/068.processed,
7400: results/069.processed, results/070.processed,
7401: results/071.processed, results/072.processed,
7402: results/073.processed, results/074.processed,
7403: results/075.processed, results/076.processed,
7404: results/077.processed, results/078.processed,
7405: results/079.processed, results/080.processed,
7406: results/081.processed, results/082.processed,
7407: results/083.processed, results/084.processed,
7408: results/085.processed, results/086.processed,
7409: results/087.processed, results/088.processed,
7410: results/089.processed, results/090.processed,
7411: results/091.processed, results/092.processed,
7412: results/093.processed, results/094.processed,
7413: results/095.processed, results/096.processed,
7414: results/097.processed, results/099.processed,
7415: results/100.processed, results/101.processed,
7416: results/102.processed, results/104.processed,
7417: results/105.processed, results/106.processed,
7418: results/107.processed, results/108.processed,
7419: results/109.processed, results/110.processed,
7420: results/111.processed, results/112.processed,
7421: results/113.processed, results/114.processed,
7422: results/115.processed, results/117.processed,
7423: results/119.processed, results/120.processed,
7424: results/121.processed, results/122.processed,
7425: results/123.processed, results/124.processed,
7426: results/125.processed, results/126.processed,
7427: results/127.processed, results/128.processed,
7428: results/129.processed, results/130.processed,
7429: results/131.processed, results/132.processed,
7430: results/133.processed, results/134.processed,
7431: results/135.processed, results/136.processed,
7432: results/138.processed, results/139.processed,
7433: results/140.processed, results/141.processed,
7434: results/142.processed, results/143.processed,
7435: results/144.processed, results/145.processed,
7436: results/146.processed, results/147.processed,
7437: results/148.processed, results/149.processed, results/auto.p: .
7438: now works if we turn off default auto.p
7439:
1.101 moko 7440: * configure: . makes
1.95 moko 7441:
7442: * src/types/pa_vxnode.C: . less warnings
7443:
7444: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
7445: tests/145.html, tests/149.html, tests/descript.ion,
7446: tests/outputs/d.cmd, tests/results/142.processed,
7447: tests/results/143.processed, tests/results/144.processed,
7448: tests/results/145.processed, tests/results/146.processed,
7449: tests/results/147.processed, tests/results/148.processed,
7450: tests/results/149.processed: . removed .nodeValue from all node
7451: types other than 5 (grabbed piece from gdome)
7452:
7453: * tests/: 137.html, results/137.processed: . not handled this case
7454: yet. code does not hang from inserting parent into child,
7455: considering thing minor issue -- nodes are removed from source
7456: anyway, don't know why shold that be an error after all
7457:
7458: * src/targets/cgi/parser3.C: . style
7459:
7460: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
7461: xdoc too [were barking "not element"]
7462:
7463: 2005-12-16 paf
7464:
7465: * tests/: 146.html, 147.html, 148.html: . more tests
7466:
7467: * src/classes/xnode.C: . also bark on possible errors
7468:
7469: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
7470: props
7471:
7472: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
7473: main/compile.y: merged from HEAD ! fixed overoptimized
7474: ^call(false) case. (confused it with ^call[] case)
7475:
7476: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
7477: ^call(false) case. (confused it with ^call[] case)
7478:
7479: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
7480:
7481: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
7482: results/001.processed, results/002.processed,
7483: results/003.processed, results/004.processed,
7484: results/005.processed, results/006.processed,
7485: results/008.processed, results/009.processed,
7486: results/010.processed, results/011.processed,
7487: results/012.processed, results/013.processed,
7488: results/014.processed, results/015.processed,
7489: results/016.processed, results/017.processed,
7490: results/018.processed, results/019.processed,
7491: results/020.processed, results/021.processed,
7492: results/022.processed, results/023.processed,
7493: results/024.processed, results/025.processed,
7494: results/026.processed, results/027.processed,
7495: results/028.processed, results/029.processed,
7496: results/030.processed, results/031.processed,
7497: results/032.processed, results/033.processed,
7498: results/034.processed, results/035.processed,
7499: results/036.processed, results/037.processed,
7500: results/038.processed, results/039.processed,
7501: results/040.processed, results/041.processed,
7502: results/042.processed, results/043.processed,
7503: results/044.processed, results/045.processed,
7504: results/046.processed, results/047.processed,
7505: results/048.processed, results/049.processed,
7506: results/050.processed, results/051.processed,
7507: results/052.processed, results/053.processed,
7508: results/054.processed, results/055.processed,
7509: results/056.processed, results/057.processed,
7510: results/058.processed, results/059.processed,
7511: results/060.processed, results/061.processed,
7512: results/062.processed, results/063.processed,
7513: results/064.processed, results/065.processed,
7514: results/066.processed, results/067.processed,
7515: results/068.processed, results/069.processed,
7516: results/070.processed, results/071.processed,
7517: results/072.processed, results/073.processed,
7518: results/074.processed, results/075.processed,
7519: results/076.processed, results/077.processed,
7520: results/078.processed, results/079.processed,
7521: results/080.processed, results/081.processed,
7522: results/082.processed, results/083.processed,
7523: results/084.processed, results/085.processed,
7524: results/086.processed, results/087.processed,
7525: results/088.processed, results/089.processed,
7526: results/090.processed, results/091.processed,
7527: results/092.processed, results/093.processed,
7528: results/094.processed, results/095.processed,
7529: results/096.processed, results/097.processed,
7530: results/099.processed, results/101.processed,
7531: results/102.processed, results/104.processed,
7532: results/105.processed, results/106.processed,
7533: results/107.processed, results/108.processed,
7534: results/109.processed, results/110.processed,
7535: results/111.processed, results/112.processed,
7536: results/113.processed, results/114.processed,
7537: results/115.processed, results/116.processed,
7538: results/117.processed, results/118.processed,
7539: results/119.processed, results/120.processed,
7540: results/121.processed, results/122.processed,
7541: results/123.processed, results/124.processed,
7542: results/125.processed, results/126.processed,
7543: results/127.processed, results/128.processed,
7544: results/129.processed, results/130.processed,
7545: results/131.processed, results/132.processed,
7546: results/133.processed, results/134.processed,
7547: results/135.processed, results/136.processed,
7548: results/137.processed, results/138.processed,
7549: results/139.processed, results/140.processed,
7550: results/141.processed: . refreshed old tests, made them work
7551: without auto.p (in utf8) . things noted: . gif got encoded
7552: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
7553: some strange year)
7554:
7555: * INSTALL: . revived linux libgc fix
7556:
7557: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
7558: glib/gdome in INSTALL and patches]
7559:
7560: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
7561: include/pa_charset.h, include/pa_config_includes.h,
7562: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
7563: include/pa_xml_exception.h, lib/cord/Makefile.am,
7564: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
7565: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
7566: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
7567: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
7568: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
7569: types/pa_vxnode.h: . started killing gdome
7570:
7571: 2005-12-13 paf
7572:
7573: * src/main/: pa_request.C: merged from HEAD ! when code in
7574: @unhandled_exception thrown another exception, print correct
7575: origin (earlier code in catch of exception inside of
7576: @unhandled_exception grabbed parent_frame(original_exception)
7577: origin and printed it, instead of true origin)
7578:
7579: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
7580: another exception, print correct origin (earlier code in catch of
7581: exception inside of @unhandled_exception grabbed
7582: parent_frame(original_exception) origin and printed it, instead
7583: of true origin)
7584:
7585: 2005-12-09 paf
7586:
7587: * INSTALL: . updated INSTALL doc to work around linux stack base
7588: detection problem, due to change in gc6.4 code
7589:
7590: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
7591: ignored in ^string.matched :(
7592:
7593: * src/main/pa_string.C: ! regex tainting were ignored in
7594: ^string.matched :(
7595:
7596: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
7597: src/include/pa_config_fixed.h, src/include/pa_version.h,
7598: src/main/compile.y, src/main/compile_tools.h,
7599: src/main/pa_charset.C, src/main/pa_common.C,
7600: src/main/pa_globals.C, src/main/pa_string.C,
7601: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
7602: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
7603:
7604: 2005-12-08 paf
7605:
7606: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
7607: 500 chars now handled OK [were wrapped on 500th char according to
7608: rfc, but sendmail failed to unwrap it properly]
7609:
7610: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
7611: handled OK [were wrapped on 500th char according to rfc, but
7612: sendmail failed to unwrap it properly]
7613:
7614: * src/targets/isapi/parser3isapi.C: . less warnings
7615:
7616: * src/targets/isapi/parser3isapi.C: . undone some strange change
7617: since 3.1.5
7618:
7619: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
7620: link fixes
7621:
7622: * src/: classes/date.C, include/pa_config_fixed.h,
7623: main/compile.tab.C, main/compile.y, main/compile_tools.h,
7624: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
7625: main/pa_string.C, targets/cgi/getopt.c: . less warnings
7626:
7627: * src/include/pa_config_fixed.h: . removed outdated string origins
7628: [in current storage scheme there's no place for them. someday we
7629: can add third CORD to store origins and special version of parser
7630: which stores origins there [separate binary]]
7631:
7632: 2005-12-07 paf
7633:
7634: * src/targets/isapi/parser3isapi.C: . now links in release mode
7635:
7636: * src/include/pa_version.h: makefiles
7637:
7638: * src/include/pa_version.h: . not beta
7639:
7640: * configure, configure.in, src/include/pa_version.h: not beta
7641:
7642: 2005-12-06 paf
7643:
7644: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
7645: [some details here http://i2/tasks/edit/?id=4869912143891354460]
7646: decided to undo the change ^call[$void] passes void. now it will
7647: pass empty string again.
7648:
7649: * src/main/: compile.tab.C, compile.y: . version readded
7650:
7651: * src/classes/op.C: . in this version there is no ^switch[$nothing]
7652: = ^switch[void] problem
7653:
7654: 2005-12-01 paf
7655:
7656: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
7657: caused ^case[string] to be coerced to double since searching
7658: value were not string (it was vvoid)
7659:
7660: * src/classes/op.C: . bugfix ^switch[$void_value] caused
7661: ^case[string] to be coerced to double since searching value were
7662: not string (it was vvoid)
7663:
7664: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
7665: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
7666:
7667: 2005-11-30 paf
7668:
7669: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
7670: win32 must putenv("TZ="), on unix works only putenv("TZ")
7671:
7672: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
7673: putenv("TZ="), on unix works only putenv("TZ")
7674:
7675: * INSTALL: . xml libs versions updated
7676:
7677: * src/main/pa_globals.C: //20051130 trying to remove this, author
7678: claims that fixed a lot there // 20040920 for now both
7679: workarounds needed. wait for new libxml/xsl versions
7680:
7681: 2005-11-28 paf
7682:
7683: * src/classes/table.C: merged from HEAD: ! nameless table has
7684: columns==0
7685:
7686: * src/classes/table.C: ! nameless table has columns==0
7687:
7688: * src/main/pa_http.C: merged from HEAD: ! status line check made
7689: earlier [was totally wrong]
7690:
7691: * src/main/pa_http.C: ! status line check made earlier [was totally
7692: wrong]
7693:
7694: 2005-11-25 paf
7695:
7696: * src/include/pa_array.h: -this reduces speed(table::load) strange.
7697: undoing for now...
7698:
7699: * src/include/pa_version.h: -this reduces speed(table::load),
7700: strange. undoing
7701:
7702: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
7703:
7704: * src/classes/op.C: + ^while(){}[SEPARATOR]
7705:
7706: * src/include/pa_array.h: + optimistics added: all arrays (table
7707: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
7708: this speeds things up and saves memory a LOT! (not noticed
7709: negative effect on syntetic tests, future will tell...)
7710:
7711: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
7712: changed gc_malloc implementation, which obscured profiling
7713:
7714: * src/classes/table.C: merged from HEAD: + optimized
7715: table::load/sql, now row ArrayString-s allocated with
7716: columns.count() elements and don't always grow from
7717: count=3[realloc,realloc]
7718:
7719: * src/classes/table.C: + optimized table::load/sql, now row
7720: ArrayString-s allocated with columns.count() elements and don't
7721: always grow from count=3[realloc,realloc]
7722:
7723: * src/classes/table.C: merged from HEAD: . ^table.save unused
7724: buffer after save
7725:
7726: * src/classes/table.C: . ^table.save unused buffer after save
7727:
7728: 2005-11-24 paf
7729:
7730: * configure.in: . merged glib2-config patch
7731:
7732: * configure.in: + trying to find glib2-config
7733:
7734: * src/: classes/file.C, include/pa_common.h, main/execute.C,
7735: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
7736: file/dir_readable to simple file/dir_exist, this would help in
7737: situations "class not found because .p file has bad rights" << in
7738: that case error would be explicit "access denied to 'this' file"
7739:
1.101 moko 7740: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 7741:
7742: * src/: classes/file.C, include/pa_common.h, main/execute.C,
7743: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
7744: to simple file/dir_exist, this would help in situations "class
7745: not found because .p file has bad rights" << in that case error
7746: would be explicit "access denied to 'this' file"
7747:
7748: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
7749: include/pa_http.h, main/Makefile.am, main/main.vcproj,
7750: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
7751: ^file::exec/cgi[script;$.charset[changed]
7752: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
7753: encoded in $.charset charset
7754:
7755: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
7756: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
7757: encoded in $.charset charset
7758:
7759: * src/: include/Makefile.am, include/pa_common.h,
7760: include/pa_http.h, main/Makefile.am, main/main.vcproj,
7761: main/pa_common.C, main/pa_http.C: . extracted http:// into
7762: separate file [preparation for
7763: ^file::cgi[script;$.form[$.field1[]
7764:
7765: 2005-11-22 paf
7766:
7767: * src/: include/pa_version.h, main/compile.tab.C: makefiles
7768:
7769: * acinclude.m4, configure.in: . merged underquting fixes
7770:
1.101 moko 7771: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 7772:
7773: * src/classes/op.C: . overmerged a little
7774:
7775: * src/main/compile.tab.C: Makefile
7776:
7777: * src/main/: pa_common.C: . less gcc warnings
7778:
7779: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
7780: now reports original exception if we have no old cache
7781:
7782: * src/classes/op.C: + $exception.handled[cache] now reports
7783: original exception if we have no old cache
7784:
7785: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
7786: from HEAD: + ^taint/untaint[regex] << escapes these:
7787: \^$.[]|()?*+{}
7788:
7789: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
7790: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
7791:
7792: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
7793: getenv-ed variable, which does not work both on win32&unix.
7794: copied old TZ value now
7795:
7796: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
7797: stored pointer to getenv-ed variable, which does not work both on
7798: win32&unix. copied old TZ value now
7799:
7800: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
7801: getenv-ed variable, which does not work both on win32&unix.
7802: copied old TZ value now
7803:
7804: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
7805: access to internal hash
7806:
7807: * src/types/pa_vresponse.C: + $response:headers access to internal
7808: hash
7809:
7810: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
7811: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
7812: isapi] this reduces number of "GC Warning: Repeated allocation of
7813: very large block" messages to only important onces
7814:
7815: * src/targets/isapi/parser3isapi.C: +
7816: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
7817: isapi] this reduces number of "GC Warning: Repeated allocation of
7818: very large block" messages to only important onces
7819:
7820: * src/classes/string.C: merged from HEAD: + removed limitation on
7821: ^string/int/double:sql{}[$.default[({param style})] ]
7822:
7823: * src/classes/string.C: + removed limitation on
7824: ^string/int/double:sql{}[$.default[({param style})] ]
7825:
7826: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
7827: with ?params or $.form option" limitation
7828:
7829: * src/main/pa_common.C: + removed "use either uri with ?params or
7830: $.form option" limitation
7831:
7832: * src/: classes/file.C, classes/string.C, include/pa_common.h,
7833: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
7834: ^file::base64[encoded] decode
7835:
7836: * src/: classes/file.C, classes/string.C, include/pa_common.h,
7837: main/pa_common.C: + ^file.base64[] encode +
7838: ^file::base64[encoded] decode
7839:
7840: * src/classes/: file.C, string.C: + ^string.base64[] encode +
7841: ^string:base64[encoded] decode
7842:
7843: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
7844: ^string:base64[in] encode + ^string.base64[] decode
7845:
7846: 2005-11-21 paf
7847:
7848: * src/classes/file.C: + merged from HEAD:
7849: ^file::create[text;file.xml;^untaint[xml]{data}]
7850:
7851: * src/classes/file.C: +
7852: ^file::create[text;file.xml;^untaint[xml]{data}]
7853:
7854: * src/main/pa_request.C: ! merged: $response:body[file] now
7855: differes from :download, it does not return content-disposition
7856: at all now [previusely it returned valueless content-disposition]
7857:
7858: * src/main/pa_request.C: ! $response:body[file] now differes from
7859: :download, it does not return content-disposition at all now
7860: [previusely it returned valueless content-disposition]
7861:
7862: * src/main/: compile.tab.C, compile.y: ! overoptimized void
7863: literals, reverted to just vvod, recreating empty array with each
7864: void_value token. that's absolutely needed, since that array
7865: grows
7866:
7867: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
7868: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
7869: types/pa_vmethod_frame.h: + merged: expression literals:
7870: true/false. ^format[$.indent(true)]
7871:
7872: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
7873: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
7874: types/pa_vmethod_frame.h: + expression literals: true/false.
7875: ^format[$.indent(true)]
7876:
7877: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
7878: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
7879: i386-pc-win32)"
7880:
7881: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
7882: $env:PARSER_VERSION reports "3.1.5beta (compiled on
7883: i386-pc-win32)"
7884:
7885: 2005-11-18 paf
7886:
7887: * src/classes/: double.C, int.C: ! ^int/double:sql{select
7888: null}[$.default(123)] will now return default value
7889:
7890: * src/classes/op.C: + merged ^cache[] << returns current cache
7891: expiration time
7892:
7893: * src/classes/op.C: + ^cache[] << returns current cache expiration
7894: time
7895:
7896: * src/classes/table.C: ! merged ^table::create[not'nameless';
7897: failed << Exception.problem_source pointed to local var!
7898:
7899: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
7900: Exception.problem_source pointed to local var!
7901:
7902: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
7903: now loads VFile.ptr!=0, so such files can be saved now
7904:
7905: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
7906: loads VFile.ptr!=0, so such files can be saved now
7907:
7908: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
7909: only . and .. now removed from list [were removed all .*]
7910:
7911: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
7912: .. now removed from list [were removed all .*]
7913:
7914: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
7915: open error now checked, were not :( [stole that piece from apache
7916: 1.3 sources]
7917:
7918: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
7919: checked, were not :( [stole that piece from apache 1.3 sources]
7920:
7921: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
7922: untainting of @main result if returned by $result or
7923: $response:body
7924:
7925: * src/main/pa_request.C: ! ensured proper untainting of @main
7926: result if returned by $result or $response:body
7927:
7928: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
7929: issue: now tries to guess content-length and allocates one big
7930: piece if possible [regretfully gc_realloc works as malloc+free,
7931: leaving lots of holes behind]
7932:
7933: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
7934: fixed file load memory issue: now tries to guess content-length
7935: and allocates one big piece if possible [regretfully gc_realloc
7936: works as malloc+free, leaving lots of holes behind]
7937:
7938: 2005-11-16 paf
7939:
7940: * src/: include/pa_common.h, classes/file.C, classes/table.C,
7941: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
7942: table::save with enclosers now doubles them: "->"" !
7943: table::save/load do not remove elements from options hash
7944:
7945: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
7946: [were overoptimized ^if(double_literal), compiler confused
7947: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
7948:
7949: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
7950: [were overoptimized ^if(double_literal), compiler confused
7951: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
7952:
7953: * src/: classes/file.C, classes/table.C, include/pa_common.h,
7954: main/pa_common.C: ! table::save with enclosers now doubles them:
7955: "->"" ! table::save/load do not remove elements from options hash
7956:
7957: 2005-11-03 paf
7958:
1.101 moko 7959: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
7960: compilation, not all makefiles liked that
1.95 moko 7961:
7962: 2005-08-30 paf
7963:
7964: * src/classes/op.C: merge . speedup check of [DEFAULT]
7965:
7966: * src/classes/op.C: . speedup check of [DEFAULT]
7967:
7968: 2005-08-26 paf
7969:
7970: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
7971:
7972: * src/: classes/date.C, types/pa_vdate.h: + date.week
7973:
7974: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
7975: complains about bad!=nameless
7976:
7977: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
7978: about bad!=nameless
7979:
7980: * src/classes/: hash.C, string.C, table.C, void.C: merged !
7981: optional options were allowed to be empty. were checked
7982: if(is_string), changed to !defined||is_string to allow void
7983:
7984: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
7985: classes/string.C, classes/table.C, classes/void.C: ! optional
7986: options were allowed to be empty. were checked if(is_string),
7987: changed to !defined||is_string to allow void
7988:
7989: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
7990: as_junction where they needed as_int/double, so failed with
7991: recent "(const) now no junction" optimization
7992:
7993: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
7994: merged ! many classes/* used as_junction where they needed
7995: as_int/double, so failed with recent "(const) now no junction"
7996: optimization
7997:
7998: * src/: classes/double.C, classes/int.C, classes/math.C,
7999: classes/op.C, classes/string.C, classes/table.C,
8000: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
8001: used as_junction where they needed as_int/double, so failed with
8002: recent "(const) now no junction" optimization
8003:
8004: 2005-08-24 paf
8005:
8006: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
8007: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
8008: stripped it
8009:
8010: 2005-08-09 paf
8011:
8012: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
8013: not cleared
8014:
8015: * src/: classes/classes.C, classes/classes.h, classes/date.C,
8016: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
8017: classes/hashfile.C, classes/image.C, classes/int.C,
8018: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
8019: classes/response.C, classes/string.C, classes/table.C,
8020: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
8021: include/pa_array.h, include/pa_cache_managers.h,
8022: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
8023: include/pa_config_fixed.h, include/pa_config_includes.h,
8024: include/pa_dictionary.h, include/pa_dir.h,
8025: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
8026: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
8027: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
8028: include/pa_request_charsets.h, include/pa_request_info.h,
8029: include/pa_sapi.h, include/pa_socks.h,
8030: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
8031: include/pa_stack.h, include/pa_string.h,
8032: include/pa_stylesheet_connection.h,
8033: include/pa_stylesheet_manager.h, include/pa_table.h,
8034: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
8035: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
8036: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
8037: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
8038: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
8039: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
8040: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
8041: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
8042: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
8043: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
8044: main/pa_sql_driver_manager.C, main/pa_string.C,
8045: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
8046: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
8047: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
8048: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
8049: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
8050: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
8051: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
8052: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
8053: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
8054: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
8055: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
8056: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
8057: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
8058: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
8059: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
8060: types/pa_vmemory.h, types/pa_vmethod_frame.C,
8061: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
8062: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
8063: types/pa_vresponse.C, types/pa_vresponse.h,
8064: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8065: types/pa_vstateless_object.h, types/pa_vstatus.C,
8066: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
8067: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
8068: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
8069: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
8070: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
8071:
8072: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
8073: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
8074: speedup consequent checks in vmethod_frame
8075:
8076: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
8077: not cleared
8078:
8079: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
8080: params: 50 max (were 10)
8081:
8082: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
8083: params: 50 max (were 10)
8084:
8085: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
8086: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
8087: pa_wcontext.h: + ^call[$void] param inside now is void (were:
8088: empty string) ! simplified (double) speedup consequent checks in
8089: vmethod_frame
8090:
8091: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
8092: optimized constants in expressions vstring->vdouble + optimized
8093: ^call(vdouble), no junction creation, no calls later
8094:
8095: 2005-08-08 paf
8096:
8097: * bin/auto.p.dist.in: merged . apache bad 404 handling workaround
8098: integrated
8099:
8100: * bin/auto.p.dist.in: . apache bad 404 handling workaround
8101: integrated
8102:
8103: * src/main/: compile.tab.C, compile.y, compile_tools.C,
8104: compile_tools.h: merged + optimized constants in expressions
8105: vstring->vdouble + optimized ^call(vdouble), no junction
8106: creation, no calls later
8107:
8108: * src/types/pa_vdouble.h: merged . double values without fractional
8109: part now default printed as %.0f instead of %g
8110:
8111: * src/types/pa_vdouble.h: . double values without fractional part
8112: now default printed as %.0f instead of %g
8113:
8114: * src/classes/hashfile.C: . merged ! second hashfile::open would
8115: cause an exception
8116:
8117: * src/classes/hashfile.C: ! second hashfile::open would cause an
8118: exception
8119:
8120: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
8121: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8122: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8123: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
8124: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
8125: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
8126: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
8127: types/pa_vresponse.h, types/pa_vstateless_class.C,
8128: types/pa_vstateless_object.h, types/pa_vvoid.h,
8129: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
8130: merged VJunction(new Junction) optimization from 3.1.4
8131:
8132: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
8133: types/pa_vstateless_class.C: + optimized new VJunction(new
8134: Junction(params)) to new VJunction(params), thousands of mallocs
8135: removed
8136:
8137: 2005-08-05 paf
8138:
8139: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
8140: types/pa_vdouble.h, types/pa_vmethod_frame.C,
8141: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
8142: creation, no calls later
8143:
8144: * src/: classes/classes.C, classes/classes.h, classes/date.C,
8145: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
8146: classes/hashfile.C, classes/image.C, classes/int.C,
8147: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
8148: classes/response.C, classes/string.C, classes/table.C,
8149: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
8150: include/pa_array.h, include/pa_cache_managers.h,
8151: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
8152: include/pa_config_fixed.h, include/pa_config_includes.h,
8153: include/pa_dictionary.h, include/pa_dir.h,
8154: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
8155: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
8156: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
8157: include/pa_request_charsets.h, include/pa_request_info.h,
8158: include/pa_sapi.h, include/pa_socks.h,
8159: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
8160: include/pa_stack.h, include/pa_string.h,
8161: include/pa_stylesheet_connection.h,
8162: include/pa_stylesheet_manager.h, include/pa_table.h,
8163: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
8164: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
8165: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
8166: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
8167: lib/smtp/smtp.h, main/compile.C, main/compile.y,
8168: main/compile_tools.C, main/compile_tools.h, main/execute.C,
8169: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
8170: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
8171: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
8172: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
8173: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
8174: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
8175: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
8176: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
8177: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
8178: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
8179: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
8180: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
8181: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
8182: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
8183: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
8184: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
8185: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
8186: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
8187: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
8188: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
8189: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8190: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
8191: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
8192: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8193: types/pa_vstateless_object.h, types/pa_vstatus.C,
8194: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
8195: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
8196: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
8197: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
8198: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
8199:
8200: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
8201: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
8202: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
8203: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
8204: main/compile.y, main/compile_tools.C, main/compile_tools.h,
8205: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
8206: optimized constants in expressions vstring->vdouble
8207:
8208: 2005-07-29 paf
8209:
8210: * src/types/pa_vclass.C: . shaped up error messages a bit
8211:
8212: * src/types/pa_vclass.C: + property getter can now be overridden
8213:
8214: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
8215: bug fix: static parent fields were not replaced in case
8216: $derived:field[put] + property setter can now be overridden
8217:
8218: 2005-07-28 paf
8219:
8220: * configure, configure.in, src/classes/classes.h,
8221: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
8222: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
8223: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
8224: src/classes/xnode.h, src/include/pa_hash.h,
8225: src/include/pa_version.h, src/main/execute.C,
1.101 moko 8226: src/types/Makefile.am, src/types/pa_method.h,
8227: src/types/pa_value.h, src/types/pa_vclass.C,
8228: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
8229: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
8230: src/types/pa_vcookie.h, src/types/pa_vhash.h,
8231: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
8232: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
8233: src/types/pa_vobject.C, src/types/pa_vobject.h,
8234: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
8235: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
8236: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
8237: src/types/pa_vstateless_class.h,
1.95 moko 8238: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
8239: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
8240: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
8241: dynamic_fields_join
8242:
8243: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
8244: classes/xnode.C, include/pa_hash.h, main/execute.C,
8245: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
8246: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
8247: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
8248: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
8249: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
8250: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
8251: types/pa_vresponse.h, types/pa_vstateless_object.h,
8252: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
8253: types/pa_wwrapper.h: ! restored put_element('replace' param), and
8254: restored its checks in vobject.put_element->static fields |
8255: dynamic properties
8256:
8257: 2005-07-27 paf
8258:
8259: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
8260: is some old code containing @set_name $name
8261:
8262: * src/types/pa_vobject.h: . fixed warning
8263:
8264: * configure, configure.in, src/include/pa_version.h,
1.101 moko 8265: src/types/Makefile.am: 3.2.0beta started
1.95 moko 8266:
8267: * src/: classes/xnode.C, include/pa_hash.h,
8268: types/pa_vstateless_class.C: ! new asserts were all false.
8269: regretfully reverted them all to checks
8270:
8271: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
8272: classes/op.C, main/execute.C, types/pa_method.h,
8273: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8274: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8275: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
8276: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
8277: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
8278: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
8279: types/pa_vstateless_object.h, types/pa_vvoid.h,
8280: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
8281: joined_dynamic_fields: removed unused param from put_method
8282: (returned to 3 params)
8283:
8284: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
8285: joined_dynamic_fields: dynamic get/set works with overriding
8286: props [alpha2]
8287:
8288: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
8289: works [alfa]
8290:
8291: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
8292: classes/op.C, include/pa_hash.h, main/execute.C,
8293: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
8294: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
8295: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
8296: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
8297: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
8298: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
8299: types/pa_vresponse.h, types/pa_vstateless_class.C,
8300: types/pa_vstateless_object.h, types/pa_vvoid.h,
8301: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
8302: joined_dynamic_fields: just compiled
8303:
8304: * src/: classes/date.C, classes/file.C, classes/hash.C,
8305: classes/hashfile.C, classes/image.C, classes/table.C,
8306: classes/xdoc.C, classes/xnode.h, main/execute.C,
8307: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8308: types/pa_vstateless_class.h: joined_dynamic_fields: started
8309:
8310: * src/types/pa_vobject.C: . object setters [only started, does not
8311: work yet]
8312:
8313: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
8314: object setters [only started, does not work yet]
8315:
8316: 2005-07-26 paf
8317:
8318: * src/: include/pa_request.h, main/execute.C: . properties: set
8319: works [alpha2]. for classes. todo: for objects
8320:
8321: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
8322: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8323: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8324: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
8325: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
8326: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
8327: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
8328: types/pa_vstateless_object.h, types/pa_vvoid.h,
8329: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
8330: properties: set works [alpha1]
8331:
8332: 2005-07-25 paf
8333:
8334: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
8335: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
8336: properties: started, get works [alpha1, other approach]
8337:
8338: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
8339: properties: started, get works [alpha2]
8340:
8341: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
8342: pa_vstateless_class.h: . properties: started, get works [alpha]
8343:
8344: 2005-07-15 paf
8345:
8346: * src/: classes/classes.h, classes/op.C, main/execute.C,
8347: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
8348: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
8349: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
8350: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
8351: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
8352: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
8353: types/pa_vresponse.C, types/pa_vresponse.h,
8354: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8355: types/pa_vstateless_object.h, types/pa_vvoid.h,
8356: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
8357: types/pa_wwrapper.h, types/types.vcproj: + started property
8358: [getters work but think of changing them too to precaching]
8359:
8360: 2005-07-08 paf
8361:
8362: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
8363: gpf
8364:
8365: 2005-06-28 paf
8366:
8367: * src/: classes/file.C, main/untaint.C: ! string invariant violated
8368: in passing empty strings to file::exec/cgi environment
8369:
8370: 2005-06-06 paf
8371:
8372: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
8373: ^table:sql ^hash:sql now DO process $.bind option
8374:
8375: 2005-05-24 paf
8376:
8377: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
8378: $.limit] now work again [support was broken in 3.1.4]
8379:
8380: * src/: main/pa_string.C, classes/op.C: . steps toward removing
8381: ALL_INTERIOR_POINTERS
8382:
8383: 2005-05-12 paf
8384:
8385: * configure: 3.1.5beta
8386:
8387: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
8388:
8389: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
8390: $.limit] now work again [support was broken in 3.1.4]
8391:
8392: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
8393: line-width [was refusing to fill if line-width >1, thanks to
8394: Seras <seras@pinxit.lt> for repro case
8395:
8396: 2005-04-25 paf
8397:
8398: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
8399: correctly
8400:
8401: 2005-04-19 paf
8402:
8403: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
8404: in VString violating invariant!!
8405:
8406: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
8407: getenv("TZ")==null
8408:
8409: 2005-04-08 paf
8410:
8411: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
8412: bugfix: when there is no char in charset one byte produces 6
8413: (ÿ <<max). increased buffer size!
8414:
8415: 2005-03-23 paf
8416:
8417: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
8418: ^date.sql-string now takes TZ into account
8419:
8420: 2005-03-16 paf
8421:
8422: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
8423: gcc 3.4
8424:
8425: * src/types/pa_vhash.C: . warning about eof eol
8426:
8427: 2005-02-17 paf
8428:
8429: * operators.txt, src/classes/op.C: + operator ^sleep(double
8430: seconds)
8431:
8432: 2005-02-02 paf
8433:
8434: * src/classes/xnode.C: beauty: removed needless includes
8435:
8436: 2005-01-31 paf
8437:
8438: * src/types/pa_vmail.C: change: $.partX now always 1... change:
8439: $.partNoNumber now alias to $.part1
8440:
8441: * src/types/pa_vmail.C: change: incoming letter part contains
8442: "content-disposition" header with any value? now considering that
8443: part to be "file#" [for text/plain text/html were $.text#
8444: $.html#]
8445:
8446: * INSTALL: updatet to latest working versions available
8447:
8448: 2005-01-20 paf
8449:
8450: * configure.in, src/include/pa_version.h: version
8451:
8452: 2005-01-19 paf
8453:
1.101 moko 8454: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
8455: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
8456: couple warnings in parser3.C
1.95 moko 8457:
8458: 2004-12-23 paf
8459:
8460: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
8461:
8462: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
8463: dir to directory of script (when shbang used), not to directory
8464: of its interpreter
8465:
8466: * src/include/pa_version.h: compiled on win32...
8467:
8468: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
8469: we need more hspace
8470:
8471: * configure, configure.in, src/include/pa_version.h: configured
8472: host to pa_version. will be displayed everywhere
8473:
8474: * src/main/pa_request.C: new: @unhandled_exception can prevent
8475: exception from being logged by setting $exception.handled(1)
8476:
8477: * operators.txt, src/classes/file.C: change:
8478: ^file::sql{query}[[options]] options: $.name[file name]
8479: $.content-type[application/what]
8480:
8481: * src/: include/pa_common.h, main/pa_common.C,
8482: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
8483: new file
8484:
8485: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
8486: bugfix: table->hash now regards _default
8487:
8488: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
8489: created by accessing $name_of_method it acquired bad self=closest
8490: methodframe; instead of proper self (current class)
8491:
8492: * src/types/pa_vhashfile.C: bugfix: reading empty string from
8493: hashfile produced bad cord
8494:
8495: 2004-12-10 paf
8496:
8497: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
8498: subsequent failures though defined in .h
8499:
8500: * src/main/pa_common.C: comment on volatile
8501:
8502: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
8503: alarm function were not used since the beginning due to stupid
8504: error [setsigjmp were not checked in configure.in]
8505:
8506: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
8507: unix too
8508:
8509: * src/main/pa_common.C: http: exception status of send/recv errors
8510: change to most probable http.timeout
8511:
8512: * src/main/pa_common.C: win32: http connection $.timeout option now
8513: works [setsockopt on send/receive]
8514:
8515: 2004-12-08 paf
8516:
8517: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
8518: cstr-ed knowing mail charset, and untainting uri lang now knows
8519: proper charset
8520:
8521: 2004-11-24 paf
8522:
8523: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
8524:
8525: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
8526: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
8527:
8528: 2004-11-12 paf
8529:
8530: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
8531: [since 3.0.4]
8532:
8533: 2004-11-09 paf
8534:
8535: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
8536: writes basics to c:\parser3.log
8537:
8538: 2004-10-21 paf
8539:
8540: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
8541: tainted strings [were returning clean onces]
8542:
8543: 2004-10-15 paf
8544:
8545: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
8546: cycles(i=1; i=2), which was wrong, now does ONE
8547:
8548: 2004-10-12 paf
8549:
8550: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
8551:
8552: 2004-10-07 paf
8553:
8554: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
8555: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
8556: release asserts
8557:
8558: * src/: main/pa_string.C, include/pa_string.h: debugger help:
8559: String.dump() to stdout in detailed form [were String.v() in
8560: short form]
8561:
8562: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
8563: \t\r\n as @#| and truncates long char sequences less
8564:
8565: 2004-10-06 paf
8566:
8567: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
8568: win32 beauty: socket errors properly decoded
8569:
8570: 2004-10-05 paf
8571:
8572: * src/: include/pa_request.h, main/pa_request.C: bugfix:
8573: request::configure_user/admin done always, even if no
8574: file-to-process useful in @unhandled_exception [say, if they
8575: would want to mail by SMTP something]
8576:
8577: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
8578: now performed prior to file loading [and @auto executing] thus
8579: making $cookie:value available in @auto and in
8580: @unhandled_exception when IIS is configured to run interpreter
8581: even if no file exist
8582:
8583: 2004-09-20 paf
8584:
8585: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
8586: somewhere where it should have called xmlMalloc and it calls
8587: xmlFree when it should have not called it. inserted two
8588: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
8589: xmlFree just ignored. put away a testcase, maybe someday libxml
8590: author would fix all that. until that day: we have SLOW garbage
8591: collecting when many xml objects are alive hint: do
8592: ^memory:compact[] before xdoc::create
8593:
8594: 2004-09-17 paf
8595:
8596: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
8597: error from 3.0.8 version]
8598:
8599: 2004-09-14 paf
8600:
8601: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
8602: part bugfix: hashfile.foreach iterated only part if hashfile were
8603: modified inside
8604:
8605: 2004-09-13 paf
8606:
8607: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
8608: [were as octal]
8609:
8610: * src/types/pa_vhashfile.C: beauty: not reproduced
8611: $hashfile.key[$novalue] bug [reported by motorin], inserted
8612: safety-check
8613:
8614: * src/types/pa_vhashfile.C: change: empty keys now error in parser
8615: [not something obscure from sdbm lib]
8616:
8617: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
8618: = strerror now returnes something and we can properly report that
8619: to client
8620:
8621: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
8622: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
8623:
8624: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
8625: [tainted as-is] this helps //[space][newline] to remain as-is and
8626: not be unnecessary optimized away [ruining javascript]
8627:
8628: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
8629: [tainted as-is]
8630:
8631: * src/classes/mail.C: bugfix: typo error
8632:
8633: 2004-09-09 paf
8634:
8635: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
8636: separators bugfix: loads header with endings \r\n\r\n and \n\n
8637: (bloody yandex.server)
8638:
8639: 2004-09-06 paf
8640:
8641: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
8642: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
8643: encoded
8644:
8645: 2004-09-01 paf
8646:
8647: * src/types/pa_vmail.C: change: multipart/mixed changed to
8648: multipart/related outlook express have no problems showing
8649: unrelated attachments. todo: someday figure out a way of
8650: multipart/mixed multipart/related text/html
8651: image/xxx application/octet-stream << true attachments
8652:
8653: * src/types/pa_vmail.C: new:
8654: ^mail:send[$.file[$.content-disposition can be overriden new:
8655: empty mail header fields removed from letter
8656:
8657: * src/: classes/mail.C, include/pa_config_fixed.h,
8658: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
8659: ^mail:send[ $.file[ $.any[header]
8660:
8661: 2004-08-30 paf
8662:
8663: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
8664: warnings
8665:
8666: * src/main/pa_common.C: beauty: do not bother with charset
8667: detection when ^file::load[binary
8668:
8669: 2004-08-27 paf
8670:
8671: * src/main/pa_common.C: hack: for yandex.server http server
8672:
8673: 2004-08-18 paf
8674:
8675: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
8676: possibly-chunked response
8677:
8678: 2004-08-17 paf
8679:
8680: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
8681: $f.content-type now = that of http response
8682:
8683: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
8684: $f.content-type now = that of http response
8685:
8686: 2004-07-30 paf
8687:
8688: * src/: include/pa_request.h, main/pa_request.C,
8689: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
8690: win32: system&parser exceptions in release mode reported properly
8691: parser exception in exception handler WERE mistakenly reported as
8692: system exception, without details [in apache & isapi] +some
8693: beauty in exception text
8694:
8695: * src/: include/pa_exception.h, main/pa_request.C,
8696: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
8697: release mode reported properly parser exception in exception
8698: handler WERE mistakenly reported as system exception, without
8699: details
8700:
8701: * src/main/execute.C: beauty: simplified system exception handling
8702:
8703: 2004-07-29 paf
8704:
8705: * src/classes/table.C: bugfix:
8706: ^table.save[export.csv;$.separator[^;]] now works fine [separator
8707: were ignored, and \t used unconditionally]
8708:
8709: * src/types/Makefile.am: added vhash.c
8710:
8711: 2004-07-28 paf
8712:
8713: * src/: classes/date.C, classes/image.C, classes/math.C,
8714: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
8715: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
8716: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
8717: failed on russian letters
8718:
8719: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
8720: bugfix: isspace((unsigned char)c) everywhere. failed on russian
8721: letters
8722:
8723: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
8724: as 'currentDirectory' parameter to CreateProcess
8725:
8726: 2004-07-27 paf
8727:
8728: * src/targets/cgi/parser3.vcproj: beauty: win32:
8729: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
8730: from release somewhere [to help searching for unhandled system
8731: exceptions]
8732:
8733: * src/types/pa_vdate.h: check: for invalid datetime after temporary
8734: TZ shift
8735:
8736: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
8737: but also in ctor
8738:
8739: 2004-07-26 paf
8740:
8741: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
8742: src/main/pa_request.C, src/types/pa_vfile.h,
8743: src/types/pa_vhash.C, src/types/pa_vhash.h,
8744: src/types/types.vcproj: new: $response:body/download[
8745: $.file[name on disk] $.name[of file for user]
8746: $.mdate[date of last-modified. default from directory] ]
8747:
8748: * src/classes/file.C: moving file:send somewhere else..
8749:
8750: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
8751: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
8752: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
8753: $response:download[ $.filename[filename] $.option[] ,, ]
8754:
8755: * src/classes/file.C: beauty: invalid mode thoroughly reported
8756:
8757: 2004-07-21 paf
8758:
8759: * src/types/pa_vmail.C: bugfix: too long header values now splitted
8760: to several lines
8761:
8762: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
8763:
8764: note: ms outlook[!express] shows only first 255 characters of
8765: subject
8766:
8767: 2004-07-15 paf
8768:
8769: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
8770: off]
8771:
8772: 2004-07-14 paf
8773:
8774: * src/classes/table.C: bugfix: $.bind values now got untainted
8775: according to lang [were: as-is]
8776:
8777: 2004-07-07 paf
8778:
8779: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
8780: checked that
8781:
8782: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
8783: now untainted according to their languages. were: as-is.
8784: EVERYWHERE
8785:
8786: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
8787: environment string now untainted according to their languages.
8788: were: as-is. EVERYWHERE
8789:
8790: * src/main/pa_exec.C: bufix: on unix environment string now
8791: untainted according to their languages. were: as-is. on win32:
8792: ok
8793:
8794: * parser3.vssscc: ...would not go unnoticed
8795:
8796: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
8797: fails. in case on input appears nonutf, those bytes will be
8798: printed in %HH form. that can be easily decoded/recovered.
8799:
8800: this form is quite noticable, and hopefully would not go noticed
8801:
8802: 2004-07-06 paf
8803:
8804: * src/main/pa_exec.C: bufix: on unix environment string now
8805: untainted according to their languages. were: as-is. on win32:
8806: ok
8807:
8808: 2004-07-01 paf
8809:
8810: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
8811: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
8812: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
8813: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
8814: main/main.vcproj, targets/cgi/parser3.vcproj,
8815: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
8816: option: global optimization ON
8817:
8818: * src/main/untaint.C: workaround kinda bug in libxml: life requires
8819: to do xdoc::create{invalid chars} standard disables chars less
8820: then \x20, except tab, cr, lf.
8821:
8822: changed tainting so that those become '!'
8823:
8824: 2004-06-25 paf
8825:
8826: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
8827: int on odd address [prev bugfix failed due to superwize
8828: optimizer, which turned memcpy into same 'ld' asm command]
8829:
8830: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
8831: int on odd address
8832:
8833: 2004-06-22 paf
8834:
8835: * src/sql/pa_sql_driver.h: note: about possible optimization
8836:
8837: * operators.txt, src/classes/hash.C, src/classes/memory.C,
8838: src/classes/string.C, src/classes/table.C, src/classes/void.C,
8839: src/include/pa_config_includes.h: new: ^void:sql{call
8840: paf(:a)}[ $.bind[ $.a[2]
8841: ] ] output variables work. todo: check in out
8842: variables
8843:
8844: 2004-06-18 paf
8845:
8846: * src/: classes/file.C, classes/hash.C, classes/string.C,
8847: classes/table.C, classes/void.C, include/pa_globals.h,
8848: include/pa_sql_connection.h, main/compile.tab.C,
8849: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
8850: $.bind[ $.a[2] ]
8851: ] input variables work. todo:output
8852:
8853: * src/targets/cgi/parser3.C: bugfix: iis specific
8854: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
8855: /_bug.html?404;http://hpsv/test/
8856: --------------------------------------------------------------------------------
8857: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
8858: --------------------------------------------------------------------------------
8859: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
8860:
8861: 2004-06-16 paf
8862:
8863: * src/targets/cgi/parser3.C: new: iis specific
8864: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
8865: $request:query
8866: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
8867: $form:fields IIS-STATUS="404"
8868: IIS-DOCUMENT="http://server/_bug.html" f="v"
8869:
8870: todo: isapi too
8871:
8872: 2004-05-26 paf
8873:
8874: * src/include/pa_version.h: 3.1.3
8875:
8876: * operators.txt: beauty: removed outdated level 'table'
8877:
8878: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
8879:
8880: * src/main/pa_string.C: beauty: removed 3 warnings
8881:
8882: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
8883: classes/op.C: beauty: removed outdated level 'table'
8884:
8885: 2004-05-25 paf
8886:
8887: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
8888: implementation. mistery: how anything worked
8889:
8890: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
8891: changed, it is now safe to use url if pointers to it are stored
8892: to gc mem
8893:
8894: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
8895: unknown errors reported and not cause SIGSEGV now
8896:
8897: 2004-05-24 paf
8898:
8899: * src/: include/pa_string.h, lib/cord/cordbscs.c,
8900: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
8901: less memory: CORD_chars_block originally intended to ... it was
8902: good that CORD_chars_block were not used: it consumes more memory
8903: [and, might be slow too] undoing that. [and removed that func so
8904: that it would not confuse parser developer in future]
8905:
8906: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
8907: less memory: CORD_chars_block originally intended to
8908: speedup/reduce mem usage were forgotten, and were used stupid
8909: CORD_chars
8910:
8911: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
8912:
8913: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
8914: BIGENDIAN processors space-conserving mech failed, causing
8915: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
8916: (1|2|3));
8917:
8918: 2004-05-14 paf
8919:
8920: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
8921: bugfix: void now has vfile value, and $response:body[] works OK
8922:
8923: 2004-05-12 paf
8924:
8925: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
8926: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
8927: sources to use is_defined() {return as_bool();} along VBool
8928:
8929: 2004-05-11 paf
8930:
8931: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
8932: referencing to local objects
8933:
8934: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
8935: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
8936: left intact
8937:
8938: 2004-04-15 paf
8939:
8940: * src/classes/date.C: merged: beauty: unused var removed
8941:
8942: * src/classes/date.C: beauty: unused var removed
8943:
8944: * src/include/: pa_exec.h: bugfix: interface without pointer
8945: provoked bug
8946:
8947: 2004-04-09 paf
8948:
8949: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
8950:
8951: * src/types/pa_vform.C: bugfix: form:imap were incorrect
8952:
8953: 2004-04-08 paf
8954:
8955: * src/classes/date.C: new: ^date::create[y-m-d
8956: h-M-s>>.milliseconds<<] now allowed, ignored so far
8957:
8958: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
8959:
8960: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
8961: to consult default catalog [usually, that file belongs to other
8962: user/group]
8963:
8964: 2004-04-06 paf
8965:
8966: * src/main/pa_common.C: beauty: gcc warning removed
8967:
8968: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
8969: accept that trick, trying other
8970:
8971: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
8972: explicit result problem
8973:
8974: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
8975: explicit result problem
8976:
8977: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
8978: explicit result problem
8979:
8980: * operators.txt, src/classes/string.C: new: ^string.append[string]
8981:
8982: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
8983: main/execute.C: attempt_check_call_in_explicit_result_mode:
8984: failed
8985:
8986: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
8987: http://i.p.a.ddress gethostbyaddr added [on some platforms
8988: gethostbyname failed with such 'domains'] now checked properly,
8989: were: needless reverse/forward dns lookup
8990:
8991: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
8992: http://i.p.a.ddress gethostbyaddr added [on some platforms
8993: gethostbyname failed with such 'domains'] now checked properly,
8994: were: needless reverse/forward dns lookup
8995:
8996: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
8997: @method[][result] means "no string output here" moved to lexical
8998: level [on grammar level it were too difficult]
8999:
9000: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
9001: src/main/compile.y, src/main/compile_tools.h,
9002: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
9003: @method[][result] means "no string output here", implemented part
9004: of that idea: compiler throws away string literal generation
9005: code. and barks nonwhitespace chars
9006:
9007: * operators.txt: truth: removed comment about $ORIGIN
9008:
9009: 2004-04-05 paf
9010:
9011: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
9012: src/include/pa_version.h, src/main/pa_common.C,
9013: src/targets/isapi/parser3isapi.C: merged with 3.1.3
9014:
9015: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
9016: Konstantin Tomashevitch [mailto:konst@design.ru]
9017:
9018: * src/doc/html2chm.cmd: beauty: no need in bg here
9019:
9020: * src/doc/sources2html.cmd: beauty: same window, in bg it
9021: interfered with FAR console
9022:
9023: * configure, configure.in: 3.1.3
9024:
9025: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
9026:
9027: * src/main/pa_common.C: removed warning
9028:
9029: * src/include/pa_version.h: 3.1.3
9030:
9031: 2004-04-02 paf
9032:
9033: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
9034:
9035: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
9036: allows to specify where to put parser log file
9037:
9038: 2004-04-01 paf
9039:
9040: * src/classes/table.C: bugfix: bugfix: table::load last line
9041: without tab and enter were ignored
9042:
9043: * src/: include/pa_cache_managers.h, include/pa_globals.h,
9044: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
9045: main/pa_socks.C, targets/cgi/parser3.C,
9046: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
9047: bugfix: sql connections now are disconnected
9048:
9049: 2004-03-30 paf
9050:
9051: * src/classes/table.C: bugfix: table::load last line without tab
9052: and enter were ignored
9053:
9054: * src/classes/table.C: bufix: if last table lines were commented,
9055: gpfed
9056:
9057: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
9058: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
9059: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
9060: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
9061: doc/methoded.dox, doc/object.dox, doc/string.dox,
9062: doc/targets.dox, doc/value.dox, include/pa_version.h,
9063: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
9064: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
9065: bugfixes from 3.1.2, changed version to 3.1.3beta
9066:
9067: 2004-03-29 paf
9068:
9069: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
9070: causes gpf
9071:
9072: * src/doc/: ClassExample1.dox, ClassExample2.dox,
9073: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
9074: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
9075: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
9076: value.dox: translated to english
9077:
9078: 2004-03-25 paf
9079:
9080: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
9081: parser3project dependency removed
9082:
9083: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
9084: bugfix: refused to compile without xml
9085:
9086: * src/types/pa_vform.C: beauty: removed warning
9087:
9088: * src/classes/classes.vcproj: merged bugfix: now all compiles in
9089: any folder [removed last ;) folder dependency]
9090:
9091: * src/classes/classes.vcproj: bugfix: now all compiles in any
9092: folder [removed last ;) folder dependency]
9093:
9094: * src/include/pa_version.h: release
9095:
9096: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
9097:
9098: * src/classes/table.C: beauty: comment& more meaningful error
9099: message
9100:
9101: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
9102: $.hash[$.column_value1(true) ... ] [were producing some strang
9103: thing]
9104:
9105: 2004-03-23 paf
9106:
9107: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
9108: and http status line parsing checked number of columns in table
9109: [user reported an assert]
9110:
9111: * operators.txt: example: on hashfile
9112:
9113: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
9114: bugfix: junction reattach now actually reattaches a junction to
9115: new wcontext [were only assigning it to junction, which caused
9116: junction tracking to loose junction, and it's context were not
9117: killed, and it tried to process in invalid context, gpf]
9118:
9119: * src/targets/cgi/parser3.C: debug helper added
9120:
9121: 2004-03-19 paf
9122:
9123: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
9124: "type(type)" in braces
9125:
9126: 2004-03-10 paf
9127:
9128: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
9129: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
9130: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
9131: solution to search-in-namespaces problem:
9132: $xdoc.search-namespaces.x[http://pif.design.ru/]
9133: $nodes[^xdoc.select[//x:second]]
9134:
9135: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
9136: expression][[NAMESPACES HASH]] allows to search for info in
9137: namespaces
9138:
9139: $nodes[^xdoc.select[//x:second][
9140: $.x[http://pif.design.ru/] ]]
9141:
9142: 2004-03-09 paf
9143:
9144: * operators.txt, src/main/pa_common.C: new:
9145: ^file::load[...][options] $.form[
9146: !$.field1[string]
9147: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
9148: ] !$.body[string]
9149:
9150: GET ?here notGET(POST, HEAD, others) in content-type:
9151: application/x-www-form-urlencoded
9152:
9153: todo: upload files ability
9154:
9155: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
9156: properly, done
9157:
9158: 2004-03-05 paf
9159:
9160: * operators.txt, src/main/pa_common.C: new: file::load[;http://
9161: GET/POST $.form[$.fields started, not tested yet
9162: todo:$.field[table] for multiple values
9163:
9164: * operators.txt: new: http:// options $.user $.password basic
9165: authorization
9166:
9167: * src/main/pa_common.C: beauty: link to rtf added
9168:
9169: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
9170: new: http:// options $.user $.password basic authorization
9171:
9172: * src/main/pa_common.C: beauty: removed needless vars
9173:
9174: * operators.txt: new: pgsql option [like that recently added to
9175: oracle driver] ClientCharset=parser-charset <<
9176: charset in which parser thinks client works
9177:
9178: * operators.txt: new: odbc option [like that recently added to
9179: oracle driver] ClientCharset=parser-charset <<
9180: charset in which parser thinks client works
9181:
9182: * src/sql/pa_sql_driver.h: beauty: important warning added
9183:
9184: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
9185: char!
9186:
9187: * etc/parser3.charsets/windows-1251.cfg: typo
9188:
9189: 2004-03-04 paf
9190:
9191: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
9192: cached, sql transcoding now goes faster
9193:
9194: * operators.txt: new: mysql option [like that recently added to
9195: oracle driver] ClientCharset=parser-charset <<
9196: charset in which parser thinks client works
9197:
9198: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
9199: typo error
9200:
9201: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
9202: chars commented
9203:
9204: 2004-03-03 paf
9205:
9206: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
9207: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
9208:
9209: 2004-03-02 paf
9210:
9211: * operators.txt: new[update typo]: !^void.left(n)
9212: nothing !^void.right(n) nothing !^void.mid(p[;n])
9213: nothing
9214:
9215: * operators.txt, src/classes/void.C: new: !^void.left(n)
9216: nothing !^void.right(n) nothing !^void.pos(p[;n])
9217: nothing
9218:
9219: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
9220: ^file::sql[[name_to_become_$.name]]{} query result must be one
9221: row with columns: first: data second: file name third:
9222: content-type
9223:
9224: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
9225: ^connect gets properly escaped string, which can be passed to
9226: request now this for mysql only. it's up to parser sql driver to
9227: fix zeros properly
9228:
9229: * INSTALL: note: added on building apache with this option:
9230: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
9231:
9232: 2004-03-01 paf
9233:
9234: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
9235: extension memory:compact befor processingrequest
9236:
9237: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
9238: call sole column of result
9239:
9240: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
9241: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
9242: pixel color
9243:
9244: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
9245: beauty: image -- less checks [were ugly impl]
9246:
9247: * src/classes/string.C: bugfix: ^string.left/right/mid with
9248: negative values now considered bad
9249:
9250: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
9251:
9252: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
9253: options now have unified defaults [after transform
9254: indent/omit-xml-declaration/standalone 'default' erroreously
9255: meant 'true']
9256:
9257: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
9258: added [on some platforms gethostbyname failed with such
9259: 'domains']
9260:
9261: * src/include/pa_config_auto.h.in: no select check, no define
9262:
9263: * src/classes/string.C: feature: ^string.trim both parameters may
9264: be empty-strings, meaning kind=both chars=whitespaces
9265:
9266: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
9267: exist
9268:
9269: * src/classes/string.C: check: trim 'chars' must not be empty,
9270: exception if it is
9271:
9272: * src/classes/string.C: changed: ^string.trim [] << both,
9273: whitespaces [start|both|end] << kind, whitespaces
9274: [start|both|end;chars] full
9275:
9276: 2004-02-27 paf
9277:
9278: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
9279: method: ^string.trim[start|both|end[;chars]] default
9280: 'chars' -- whitespace chars finished
9281:
9282: * operators.txt, src/classes/string.C, src/include/pa_string.h,
9283: src/main/pa_string.C: new method:
9284: ^string.trim[start|both|end[;chars]] default 'chars' --
9285: whitespace chars started, only start works
9286:
9287: * src/main/compile.C: bugfix: line numbers after
9288: ^process{}[$.line(-10]] can be negative, allowed to print they as
9289: signed
9290:
9291: * src/main/untaint.C: speed: there's no \n chars in output
9292: [normally], so no need to optimize them they could be retrived
9293: from databases, though. but 1. should be replaced 2. if not
9294: optimized, no harm done
9295:
9296: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
9297: ^file::exec/cgi could return invalid status & zombie child can
9298: remain for short period until process exists [very bad in
9299: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
9300:
9301: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
9302: malicious SMTP server to attack as by returning too long status
9303: responses http://i2/tasks/edit/?id=4629448401140924947
9304:
9305: 2004-02-26 paf
9306:
9307: * operators.txt: feature: ^process...{CODE}[now has options] which
9308: are $.main[to what to rename @main] $.file[file,
9309: from which (user says) goes that CODE] $.lineno(line
9310: number in that file, where CODE starts. may be negative)
9311:
9312: * operators.txt, src/classes/op.C, src/include/pa_request.h,
9313: src/main/compile.C, src/main/compile_tools.h,
9314: src/main/pa_request.C: feature: ^process...{CODE}[now has
9315: options] which are $.main[to what to rename @main]
9316: $.file[file, from which (user says) goes that CODE]
9317: $.lineno(line number in that file, where CODE starts. may be
9318: negative)
9319:
9320: 2004-02-25 paf
9321:
1.101 moko 9322: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
9323: old @charsetsdir@ recently erased from configure.in]
1.95 moko 9324:
9325: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
9326: produces hash of column=>1
9327:
9328: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
9329: with incomplete errno constants set
9330:
9331: 2004-02-24 paf
9332:
9333: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
9334: "man select"
9335:
9336: * src/main/pa_os.C: beauty: <0 better then ==-1
9337:
9338: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
9339:
9340: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
9341:
1.101 moko 9342: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 9343:
9344: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
9345: unix: steps to work on unix [extracted 'to']
9346:
9347: * src/classes/mail.C: smtp on unix: steps to work on unix
9348:
9349: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
9350:
1.101 moko 9351: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
9352: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
9353: unix [testing on solaris]
1.95 moko 9354:
9355: 2004-02-20 paf
9356:
9357: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
9358: pointing that out
9359:
9360: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
9361: fixed again [same solution, mistanenly removed one line]
9362:
9363: 2004-02-19 paf
9364:
9365: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
9366: date::create from bad datetime in spring daylightsaving hole now
9367: OK for all platforms [on some platforms it failed]
9368:
9369: * src/classes/: date.C, image.C: beauty: date::create[bad date time
9370: in daylightsaving hole] now throws error
9371:
9372: * src/classes/date.C: comment: mistake fixed
9373:
9374: 2004-02-18 paf
9375:
9376: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
9377: now renderes in $request:charset, but in header puts
9378: $response:charset todo: make that default only so that coder
9379: could override that
9380:
9381: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
9382: turns off omit-xml-declaration
9383:
9384: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
9385: /.xsl for sample
9386:
9387: 2004-02-17 paf
9388:
9389: * src/classes/xdoc.C: beauty: needless helper class removed
9390:
9391: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
9392: copied extra time
9393:
9394: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
9395: part of libxml
9396:
9397: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
9398: libxml to do the work] <xsl:output method="html"
9399: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
9400: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
9401: />
9402:
9403: * src/classes/xdoc.C: beauty: no <meta ... charset generated
9404:
9405: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
9406: caused assertion
9407:
9408: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
9409: could hang. now such add does nothing, sub clears $hash
9410:
9411: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
9412: not made quoted-printable
9413:
9414: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
9415: string invariant
9416:
9417: 2004-02-16 paf
9418:
9419: * src/main/pa_globals.C: bugfix: xml errors copy from library now
9420: cleared [were not cleared properly]
9421:
9422: 2004-02-13 paf
9423:
1.101 moko 9424: * src/include/pa_version.h: prerelease
1.95 moko 9425:
9426: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
9427: used, introducing dependencies timestamp check
9428:
9429: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
9430: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
9431: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
9432: .xsl.stamp now not used, introducing dependencies timestamp check
9433:
9434: * configure.in, bin/auto.p.dist.in: auto.p: @conf made relative
9435:
9436: 2004-02-12 paf
9437:
9438: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
9439: ruined empty <input type=file> submits. parser thought there were
9440: nameless empty file and $form:field got value of type 'file'
9441:
9442: * INSTALL: --without-threads
9443:
9444: * src/include/pa_sapi.h: 2004
9445:
9446: 2004-02-11 paf
9447:
9448: * src/: classes/classes.C, classes/classes.h, classes/date.C,
9449: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
9450: classes/hashfile.C, classes/image.C, classes/int.C,
9451: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
9452: classes/response.C, classes/string.C, classes/table.C,
9453: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
9454: include/pa_array.h, include/pa_cache_managers.h,
9455: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
9456: include/pa_config_fixed.h, include/pa_config_includes.h,
9457: include/pa_dictionary.h, include/pa_dir.h,
9458: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
9459: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
9460: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
9461: include/pa_request_charsets.h, include/pa_request_info.h,
9462: include/pa_socks.h, include/pa_sql_connection.h,
9463: include/pa_sql_driver_manager.h, include/pa_stack.h,
9464: include/pa_string.h, include/pa_stylesheet_connection.h,
9465: include/pa_stylesheet_manager.h, include/pa_table.h,
9466: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
9467: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
9468: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
9469: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
9470: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
9471: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
9472: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
9473: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
9474: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
9475: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
9476: main/pa_sql_driver_manager.C, main/pa_string.C,
9477: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
9478: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
9479: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
9480: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
9481: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
9482: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
9483: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
9484: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
9485: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
9486: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
9487: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
9488: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
9489: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
9490: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
9491: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
9492: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
9493: types/pa_vresponse.h, types/pa_vstateless_class.C,
9494: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
9495: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
9496: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
9497: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
9498: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
9499: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
9500:
9501: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
9502: debug version of gc.dll
9503:
9504: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
9505: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
9506: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
9507: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
9508: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
9509: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
9510: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
9511: processes
9512:
9513: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
9514: main/pa_globals.C, targets/cgi/parser3.vcproj,
9515: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
9516: changes to reflect libxml xsl new folders
9517:
9518: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
9519: lib/smtp/smtp.vcproj, main/main.vcproj,
9520: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
9521: to reflect libxml xsl new folders
9522:
9523: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
9524: lib/smtp/smtp.vcproj, main/main.vcproj,
9525: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
9526: types/types.vcproj: started changes to reflect libxml xsl new
9527: folders
9528:
9529: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
9530: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
9531: src/main/compile.tab.C, src/main/main.vcproj,
9532: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
9533: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
9534: started changes to reflect libxml xsl new folders
9535:
9536: 2004-02-10 paf
9537:
9538: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
9539: compile. recommened latest libxml up to date
9540:
9541: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
9542: pattern compilation errors", on which spent 4 hours worktime. use
9543: versions higher than that. recommended now latest up to date
9544:
9545: 2004-02-06 paf
9546:
9547: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
9548: beauty: unified destructing style
9549:
9550: * src/main/untaint.C: beauty: removed old def/ifdef
9551:
9552: * src/main/untaint.C: beauty: coredump @unknown untaint language
9553: now
9554:
9555: 2004-02-03 paf
9556:
9557: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
9558: targets/isapi/parser3isapi.C, types/pa_value.C,
9559: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
9560: then %ld/%lu
9561:
9562: * src/main/pa_common.C: typo: %l -> %u
9563:
9564: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
9565: in attributes or documents-results of transform now not xx;
9566:
9567: * src/classes/xnode.C: memleaks found: not fixed yet. todo
9568:
9569: * src/main/pa_charset.C: bugfix: forgot to undo some
9570:
9571: * src/main/pa_charset.C: beauty: uncomment
9572: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
9573: libraries
9574:
9575: 2004-02-02 paf
9576:
9577: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
9578: $cookie:example[ $.value[value] $.path[/there/] ]
9579:
9580: $cookie:example[ $.value[] $.expires[session]
9581: $.path[/there/] $.domain[test.com] ]
9582:
9583: * src/types/pa_vform.C: bugfix: empty values with
9584: enctype=multipart/form-data now produce entries in $form:tables
9585: <form method=post enctype=multipart/form-data> <input type=hidden
9586: name=a> <input type=hidden name=b>
9587:
9588: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
9589: <hr> <pre>$request:body
9590:
9591: 2004-01-30 paf
9592:
9593: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
9594: or documents-results of transform now not xx;
9595:
9596: * src/classes/date.C: bugfix: ^date::create[invalid fields now
9597: produce exception.
9598:
9599: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
9600: bugfix: ^date::create[invalid fields now produce exception.
9601:
9602: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
9603: year] now produces exception. todo: check other fields
9604:
9605: 2004-01-29 paf
9606:
9607: * src/include/pa_memory.h: typo error
9608:
9609: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
9610: more byte then specified, then zeroed it << useless and
9611: potentially harmful(could gpf)
9612:
9613: 2004-01-22 paf
9614:
9615: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
9616:
9617: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
9618: optimization
9619:
9620: * src/main/untaint.C: bugfix: whitespace now optimized properly
9621: [were bug: ^taint[1 & 2]="1 &2"
9622:
9623: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
9624: errors
9625:
9626: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
9627: overflow
9628:
9629: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
9630: error-reporting code * in parser-error reporting code [when no
9631: @unhandled_exception defined]
9632:
9633: fixed in one place: my *snprintf override
9634:
9635: 2004-01-13 paf
9636:
9637: * operators.txt: typo erro
9638:
9639: 2003-12-25 paf
9640:
9641: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
9642: garbled [pieces after zero bytes were removed]
9643:
9644: 2003-12-22 paf
9645:
1.101 moko 9646: * src/include/Makefile.am: bugfix: removed from dist:
9647: src/include/pa_config_auto.h which were configured for
1.95 moko 9648: make-dist-platform and badly updated proper config file in target
9649: [when .tar used for updating existing source tree]
9650:
9651: * ChangeLog, operators.txt, src/classes/op.C,
9652: src/include/pa_sql_connection.h,
9653: src/include/pa_sql_driver_manager.h,
9654: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
9655: feature: sql introducing ability to transcode charsets
9656:
9657: 2003-12-19 paf
9658:
9659: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
9660: error message
9661:
9662: * src/main/pa_charset.C: bugfix: memory for charsethandler
9663: structure for libxml now allocated properly
9664:
9665: 2003-12-17 paf
9666:
9667: * src/types/pa_vfile.C: beauty: removed outdated cast
9668:
9669: * src/main/pa_common.C: bugfix: empty http response caused gpf
9670:
9671: * src/include/pa_string.h: bugfix: removed too strong a assert
9672:
9673: * src/main/pa_globals.C: bugfix: removed false warning [warning:
9674: unreported xmlGenericErrors]
9675:
9676: 2003-12-15 paf
9677:
9678: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
9679: works}
9680:
9681: 2003-12-11 paf
9682:
9683: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
9684: id
9685: !$status:tid thread id
9686:
9687: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
9688: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
9689: bugfix(solaris): removed dependency on object initialization
9690: order [one more place]
9691:
9692: * src/: classes/file.C, classes/mail.C, classes/op.C,
9693: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
9694: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
9695: understand that
9696:
9697: * src/: classes/file.C, classes/mail.C, classes/op.C,
9698: classes/xdoc.C, include/pa_cache_managers.h,
9699: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
9700: include/pa_stylesheet_manager.h, main/pa_request.C,
9701: main/pa_stylesheet_manager.C, types/pa_vimage.C,
9702: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
9703: ctor call [relying on implicit String::Body(cstr) call]
9704:
9705: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
9706: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
9707: object initialization order [two places]
9708:
9709: 2003-12-10 paf
9710:
9711: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
9712: << time now ok
9713:
9714: * operators.txt, src/main/pa_sql_driver_manager.C,
9715: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
9716: operational
9717:
9718: * ChangeLog, operators.txt, src/classes/xdoc.C,
9719: src/include/pa_charset.h, src/include/pa_sql_connection.h,
9720: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
9721: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
9722: back operational
9723:
9724: 2003-12-02 paf
9725:
9726: * src/types/pa_vmail.C: bugfix:
9727: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
9728: as-is forced]
9729:
9730: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
9731: exceptions out of libxml callbacks: reimplemented error handling
9732: of http://localhost, parser://method and safemode check callbacks
9733:
9734: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
9735: [merged from HEAD]
9736:
9737: * src/classes/image.C: nothing: comment removed
9738:
9739: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
9740: addresses to int
9741:
9742: 2003-12-01 paf
9743:
9744: * src/main/pa_xml_io.C: bugfix: typo
9745:
9746: * src/main/pa_globals.C: bugfix: win32: compile prob
9747:
9748: * src/classes/xdoc.C: bugfix: typo
9749:
9750: * src/main/pa_xml_io.C: todo: safe mode check not to throw
9751: exception
9752:
9753: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
9754:
9755: 2003-11-28 paf
9756:
9757: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
9758: all xml documents read
9759:
9760: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
9761:
9762: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
9763: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
9764: replaced original open mech of xdoc::create & co to use libxml
9765: open, so that this would work for root document todo: safe mode
9766: checks to libxml: ideally to some 1 point
9767:
9768: * src/main/pa_xml_io.C: comment
9769:
9770: * operators.txt, src/main/pa_xml_io.C: leading / in
9771: http://parser[abscent params]
9772:
9773: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
9774: works. todo: maybe replace original open mech of xdoc::create &
9775: co to use libxml open, so that this would work for root document
9776:
9777: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
9778: "parser://method/params/here"> <test> &test^; </test> }]
9779:
9780: ^taint[^xdoc.string[]]
9781:
9782: @method[param] <!ENTITY test
9783: "test-entity-value+$form:user+$param!">
9784:
9785: 2003-11-27 paf
9786:
9787: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
9788:
9789: * src/classes/date.C: bugfix: typo error
9790:
9791: 2003-11-26 paf
9792:
9793: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
9794: src/main/Makefile.am, src/main/main.vcproj,
9795: src/main/pa_globals.C, src/main/pa_request.C,
9796: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
9797: xml errors to hash<thread_id,error> reorganization: xml io moved
9798: to pa_xml_io.C/h
9799:
9800: * src/types/pa_value.h: warnings: --
9801:
9802: 2003-11-25 paf
9803:
9804: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
9805: whatever)
9806:
9807: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
9808: a, (c?x:y, z)
9809:
9810: * src/main/untaint.C: bugfix: consequences of not reading this
9811: comment: CORD_pos_chars_left /* Number of characters in cache.
9812: <= 0 ==> none */
9813:
9814: * src/include/pa_array.h: removed needless checks
9815:
9816: 2003-11-24 paf
9817:
9818: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
9819: removed limit: now $form:xxx can be accessed anytime, even in
9820: @auto/conf [and request/response:charset still can be changed
9821: anytime]
9822:
9823: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
9824: now not transcodes response body
9825:
9826: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
9827: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
9828: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
9829: $xdoc.firstChild.firstChild.nodeValue[different]
9830: ^taint[^xdoc.string[]]
9831:
9832: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
9833: workaround: static Hash::allocates -> static Hash_allocates
9834:
9835: 2003-11-21 paf
9836:
1.101 moko 9837: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
9838: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
9839: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 9840:
9841: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
9842:
9843: * src/classes/mail.C: bugfix: typo
9844:
9845: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.101 moko 9846: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
9847: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
9848: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
9849: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 9850: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
9851:
9852: * src/main/pa_exec.C: bug in safe mode
9853:
9854: * src/include/Makefile.am: pa_xml_exception.h
9855:
9856: * src/targets/isapi/parser3isapi.C: more warnings --
9857:
9858: 2003-11-20 paf
9859:
9860: * src/: classes/math.C, classes/op.C, classes/string.C,
9861: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
9862: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
9863: --
9864:
9865: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
9866: more warnings --
9867:
9868: * src/classes/xdoc.C: more warnings --
9869:
9870: * src/classes/: date.C, image.C, xdoc.C: more warnings --
9871:
9872: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
9873: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
9874:
9875: * src/: classes/date.C, classes/file.C, classes/hash.C,
9876: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
9877: classes/table.C, include/pa_cache_managers.h,
9878: include/pa_stylesheet_connection.h, main/pa_request.C,
9879: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
9880: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
9881: --
9882:
9883: * src/main/: execute.C, pa_request.C: old forgotten todo: when
9884: can't report problem (undefined @unhandled_exception) problem
9885: source string were not reported
9886:
9887: * src/: classes/classes.C, classes/classes.h, classes/date.C,
9888: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
9889: classes/hashfile.C, classes/image.C, classes/int.C,
9890: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
9891: classes/response.C, classes/string.C, classes/table.C,
9892: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
9893: include/pa_array.h, include/pa_cache_managers.h,
9894: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
9895: include/pa_config_fixed.h, include/pa_dictionary.h,
9896: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
9897: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
9898: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
9899: include/pa_request.h, include/pa_request_charsets.h,
9900: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
9901: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
9902: include/pa_stack.h, include/pa_string.h,
9903: include/pa_stylesheet_connection.h,
9904: include/pa_stylesheet_manager.h, include/pa_table.h,
9905: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
9906: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
9907: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
9908: main/compile_tools.C, main/compile_tools.h, main/execute.C,
9909: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
9910: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
9911: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
9912: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
9913: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
9914: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
9915: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
9916: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
9917: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
9918: targets/isapi/parser3isapi.C, types/pa_junction.h,
9919: types/pa_method.h, types/pa_value.C, types/pa_value.h,
9920: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
9921: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
9922: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
9923: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
9924: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
9925: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
9926: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
9927: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
9928: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
9929: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
9930: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
9931: types/pa_vresponse.h, types/pa_vstateless_class.C,
9932: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
9933: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
9934: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
9935: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
9936: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
9937: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
9938: const IDENT
9939:
9940: * src/: include/pa_array.h, include/pa_pool.h,
9941: include/pa_request.h, include/pa_string.h, include/pa_table.h,
9942: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
9943: types/pa_wcontext.h: more warnings --
9944:
9945: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
9946: classes/file.C, classes/hash.C, classes/hashfile.C,
9947: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
9948: classes/memory.C, classes/op.C, classes/string.C,
9949: classes/table.C, classes/xdoc.C, classes/xnode.C,
9950: include/pa_config_includes.h, include/pa_operation.h,
9951: include/pa_sql_connection.h, include/pa_table.h,
9952: include/pa_types.h, lib/ltdl/config_fixed.h,
9953: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
9954: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
9955: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
9956: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
9957: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
9958: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
9959: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
9960: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
9961: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
9962: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
9963: types/pa_vmail.C, types/pa_vobject.C,
9964: types/pa_vstateless_class.h, types/pa_vtable.C,
9965: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
9966: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
9967: on all projects (except libltdl=off & libsdbm=level3) found
9968: several unitialized vars
9969:
9970: 2003-11-19 paf
9971:
9972: * src/classes/op.C: more ansi C++ comp
9973:
9974: * operators.txt, src/classes/op.C, src/include/pa_request.h,
9975: src/main/pa_request.C: ^cache[...]{body}{catch block with
9976: $exception.handled[cache] meaning "get expired cache, if any.
9977: else error"}
9978:
9979: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
9980: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
9981: ^cache[...]{body}{catch code with $exception.cache field}
9982:
9983: 2003-11-12 paf
9984:
9985: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
9986: [copy/paste bug]
9987:
9988: 2003-11-11 paf
9989:
9990: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
9991: failed]
9992:
9993: * bin/auto.p.dist.in: colno
9994:
9995: 2003-11-10 paf
9996:
9997: * src/types/pa_vconsole.h: flush
9998:
9999: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
10000: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
10001: read/write [for nntp]
10002:
10003: * operators.txt: mysql: transaction support: ?autocommit=0
10004:
10005: * operators.txt: comment: updated
10006:
10007: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
10008: serialize version and exipire now removes entries
10009:
10010: * operators.txt: ^hashfile.delete[] removes files altogether [and
10011: dir, if could]
10012:
10013: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
10014: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
10015: removes files altogether [and dir, if could]
10016:
10017: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
10018: nonexistent pair. .c coded that that was error. fixed
10019:
10020: * src/types/pa_vhashfile.C: sdbm: exception type change to
10021: file.access [regretfull can't split it to different exceptions
10022: without modifying sdbm source wich would prefer not to]
10023:
10024: 2003-11-07 paf
10025:
10026: * src/: classes/date.C, classes/file.C, classes/hash.C,
10027: classes/hashfile.C, classes/image.C, classes/table.C,
10028: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
10029: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
10030: main/execute.C, main/main.vcproj, main/pa_pool.C,
10031: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
10032: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
10033: types/pa_vstateless_class.h: resurrected: pool idea. now only for
10034: destructing objects at request processing end
10035:
10036: 2003-11-06 paf
10037:
10038: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
10039: updates
10040:
10041: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
10042: to include sdbm
10043:
1.101 moko 10044: * src/include/: pa_config_includes.h, pa_version.h: our
10045: replacements of max& co only for cpp
1.95 moko 10046:
10047: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
10048: upper dir, .am updated
10049:
10050: * tests/todo.txt: hashfile: done
10051:
10052: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
10053: expiration [time in value. todo: move time to key]
10054:
10055: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
10056:
10057: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
10058: to do that in foreach, no errors, but surely wrong]
10059:
10060: * operators.txt, src/types/pa_vhashfile.C,
10061: src/types/pa_vhashfile.h: hashfile: clear and proper locking
10062:
10063: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
10064: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
10065: foreach
10066:
10067: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
10068: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
10069:
10070: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
10071: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
10072:
10073: * src/: include/pa_memory.h, targets/cgi/parser3.C,
10074: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
10075: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
10076: get/put [raw]
10077:
10078: * src/: classes/op.C, main/pa_os.C: just linked
10079:
10080: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
10081: XmlException changes
10082:
10083: * src/: include/pa_charset.h, include/pa_globals.h,
10084: include/pa_stylesheet_connection.h, main/pa_exception.C:
10085: XmlException changes
10086:
10087: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
10088:
10089: * src/: include/pa_common.h, include/pa_exception.h,
10090: main/main.vcproj, main/pa_common.C, include/pa_os.h,
10091: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
10092: main/pa_xml_exception.C: locking move to pa_os [along with
10093: pa_sleep] apr-impl locking done
10094:
10095: * configure, configure.in, operators.txt, parser3.sln,
10096: src/classes/classes.vcproj, src/classes/hashfile.C,
10097: src/classes/xdoc.C, src/include/pa_config_fixed.h,
10098: src/include/pa_exception.h, src/include/pa_globals.h,
10099: src/include/pa_memory.h, src/include/pa_version.h,
10100: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
10101: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
10102: src/main/compile.tab.C, src/main/main.vcproj,
10103: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
10104: src/types/Makefile.am, src/types/pa_vhash.C,
10105: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
10106: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
10107: again with sdbm from apache
10108:
10109: 2003-11-05 paf
10110:
10111: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
10112: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
10113: \parser3project dir anymore
10114:
10115: * src/main/pa_charset.C: bugfix: had broken binary search [copied
10116: thoughtlessly from xalan]
10117:
10118: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
10119: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
10120: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
10121:
10122: * src/main/helpers/CaseFolding.txt:
10123: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
10124:
10125: 2003-11-04 paf
10126:
10127: * operators.txt: comment: ^mail:send[$.options[
10128:
10129: * src/classes/table.C: compiled on unix
10130:
1.101 moko 10131: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 10132:
10133: * src/classes/mail.C: compiled on unix
10134:
10135: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
10136: src/types/pa_vmail.h: !^mail:send[
10137: $.options[unix: string to append to sendmail command
10138: line]
10139:
10140: * operators.txt, src/classes/table.C, src/main/pa_string.C,
10141: tests/todo.txt: ^table.save[... $.separator[^#09]
10142: $.encloser["] <nothing> by default
10143:
10144: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
10145: !$.separator[^#09] !$.encloser["] <nothing> by
10146: default
10147:
10148: 2003-11-03 paf
10149:
10150: * operators.txt, src/classes/table.C, src/main/pa_common.C:
10151: ^table::load[; options: !$.column-separator[^#09]
10152: !$.column-encloser["]
10153:
10154: * operators.txt, src/include/pa_config_fixed.h,
10155: src/types/pa_vrequest.C: $request:document-root
10156:
10157: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
10158: [already included into uri=xxx]
10159:
10160: * operators.txt, src/classes/image.C, tests/todo.txt:
10161: ^image.gif[filename] for $response:download
10162:
10163: * src/classes/date.C: minor precaution
10164:
10165: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
10166: !^date.unix-timestamp[]
10167:
10168: 2003-10-30 paf
10169:
10170: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
10171: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
10172:
10173: * src/classes/: date.C, image.C: improvement diagnostics:
10174: $now[^date::create[$undefined]] now is error
10175:
10176: * src/main/pa_common.C: read errors would now be reported 'actually
10177: read -1 bytes'
10178:
10179: 2003-10-24 paf
10180:
10181: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
10182: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
10183: src/main/Makefile.am, src/targets/cgi/Makefile.am,
10184: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
10185:
10186: 2003-10-22 paf
10187:
10188: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
10189:
10190: 2003-10-21 paf
10191:
10192: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
10193: fixed: string.match[g] without <'> option produced columns with
10194: NULL's, which gpf'ed at table.save time
10195:
10196: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
10197: recoursion' message with intensive throw-catches fixed: incorrect
10198: name and line (one name upper then needed) in error message about
10199: problems inside try block
10200:
10201: 2003-10-10 paf
10202:
10203: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
10204: check offset argument for validity did that in String::Body::pos
10205: myself http://i2/tasks/edit/?id=4577425257580789777
10206:
10207: 2003-10-07 paf
10208:
10209: * src/main/: compile.tab.C, compile.y: ^if ( better error:
10210: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
10211:
10212: 2003-10-03 paf
10213:
10214: * parser3.sln, src/include/pa_dictionary.h,
10215: src/main/pa_dictionary.C, src/main/pa_string.C,
10216: src/targets/cgi/parser3.vcproj: dictionary optimized by
10217: precalculating cstr&length
10218:
10219: 2003-10-02 paf
10220:
10221: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
10222: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
10223: main/pa_stylesheet_manager.C: bugfix: ^throw context were
10224: saved/restored incompletely http://www.parser.ru/forum/?id=21484
10225:
10226: 2003-09-30 paf
10227:
10228: * src/main/pa_string.C: string::replace bug fix [were ignoring
10229: occurrances after lang-mismatched
10230:
10231: 2003-09-29 paf
10232:
10233: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
10234: helper
10235:
10236: * src/main/pa_string.C: string::serialize bug fix with
10237: zero-terminator
10238:
10239: * src/classes/table.C: ^nameless_table.save column row now has no
10240: \t at the end
10241:
10242: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
10243: @postprocess now takes $response:body/download
10244:
10245: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
10246: error message
10247:
10248: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
10249:
10250: * src/classes/table.C: bugfix: flip: must produce nameless
10251: http://i2/tasks/edit/?id=4573405524674081244
10252:
10253: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
10254: main/helpers/simple_folding.pl: utf-8 upper/lower
10255:
10256: * src/main/pa_common.C: bugfix: utf signature were not ignored due
10257: to typo error http://i2/tasks/edit/?id=4573354650786434584
10258:
10259: 2003-09-26 paf
10260:
10261: * src/main/untaint.C: removed needless field
10262:
10263: * src/main/untaint.C: removed needless const
10264:
10265: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
10266: String.for_each bug fixed [omited one-char cases]
10267:
10268: * src/include/pa_stack.h: bugfix: before collecting garbage,
10269: runtime-executor stack were cleared... BADLY
10270:
10271: * src/main/pa_string.C: ^stirng.replace code used old
10272: param-convention on langs.append, fixed that search fo the like,
10273: found none
10274:
10275: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
10276: string::serialize/deserialize implemented Language enum assigned
10277: meaningful letters [more convinient for debugging. read warning
10278: before adding/changing anything]
10279:
10280: 2003-09-25 paf
10281:
10282: * src/: include/pa_string.h, include/pa_version.h,
10283: main/pa_string.C, main/untaint.C: templates and anonymous unions
10284: differences on unix
10285:
10286: * parser3.sln, src/classes/file.C, src/classes/image.C,
10287: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
10288: src/classes/xdoc.C, src/classes/xnode.C,
10289: src/include/pa_cache_managers.h, src/include/pa_charset.h,
10290: src/include/pa_charsets.h, src/include/pa_common.h,
10291: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
10292: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
10293: src/include/pa_table.h, src/lib/cord/cordbscs.c,
10294: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
10295: src/lib/cord/include/cord.h, src/main/compile.tab.C,
10296: src/main/compile_tools.h, src/main/pa_charset.C,
10297: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
10298: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
10299: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
10300: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
10301: src/types/pa_vmail.C, src/types/pa_vmath.C,
10302: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
10303: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
10304:
10305: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
10306: functions aligned to that of eeparser3 look
10307:
10308: * src/lib/cord/cordprnt.c: removed warnings
10309:
10310: 2003-09-24 paf
10311:
10312: * src/: classes/file.C, classes/image.C, classes/mail.C,
10313: classes/op.C, classes/xdoc.C, classes/xnode.C,
10314: include/pa_cache_managers.h, include/pa_charset.h,
10315: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
10316: include/pa_sql_driver_manager.h, include/pa_string.h,
10317: include/pa_stylesheet_manager.h, include/pa_table.h,
10318: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
10319: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
10320: main/pa_sql_driver_manager.C, main/pa_string.C,
10321: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
10322: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
10323: types/pa_vstateless_class.h, types/pa_vstatus.C,
10324: types/pa_vxnode.C: v() functions of String::Body,
10325: String::Languages and String itself StringBody->String::Body
10326:
10327: * src/: include/pa_string.h, lib/cord/cordbscs.c,
10328: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
10329: never optimized anything. todo: somehow speed up harder cases:
10330: concatenationA+concatenationB when last block of A and first of B
10331: contain same letters
10332:
10333: * src/: include/pa_string.h, lib/cord/cordbscs.c,
10334: lib/cord/include/cord.h: langs: speed up by joining adjucent
10335: blocks of same char [CORD_append_block]
10336:
10337: * src/: include/pa_string.h, lib/cord/cordbscs.c,
10338: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
10339: save space by extending blocks when appending block with c ==
10340: lastblock.c
10341:
10342: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
10343: working yet :( but more working &understood :)
10344:
10345: * src/: classes/table.C, include/pa_string.h,
10346: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
10347:
10348: 2003-09-23 paf
10349:
10350: * src/main/untaint.C: $a[ok!] $a works!
10351:
10352: * src/main/untaint.C: something even more works :)
10353:
10354: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
10355: something more works :)
10356:
10357: * src/: include/pa_string.h, lib/cord/cordbscs.c,
10358: lib/cord/cordxtra.c: something already works :)
10359:
10360: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
10361: serialize&deserialize
10362:
10363: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
10364: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
10365: main/untaint.C: main idea implemented, details left
10366:
10367: 2003-09-22 paf
10368:
10369: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
10370:
10371: * src/classes/xnode.C: copy/paste comment bugfix
10372:
10373: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
10374: allocator returns 0, just die.
10375: http://i2/tasks/edit/?id=4570798492410259445
10376:
10377: * src/classes/xdoc.C: copy/paste comment bugfix
10378:
10379: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
10380: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
10381: xnode: getAttributeNS setAttributeNS removeAttributeNS
10382: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
10383:
10384: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
10385: chars due to bitwise operation signed-char error]
10386:
10387: 2003-09-19 paf
10388:
10389: * src/types/pa_wcontext.C: output message: more practical
10390: suggestion
10391:
10392: * src/main/pa_common.C, operators.txt: merged
10393: $f[^file::load[binary;http://...]] $f.tables
10394:
10395: 2003-09-02 paf
10396:
10397: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
10398: flush stdout without referencing 'stdout' symbol. to hell with
10399: non-ansi libraries without 'stdout' symbol
10400:
10401: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
10402: unix (users reported problems with some old libc)
10403:
10404: * src/types/pa_vdate.h: forgot initializer
10405:
10406: 2003-09-01 paf
10407:
10408: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
10409: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
10410: zone]
10411:
10412: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
10413:
10414: 2003-08-19 paf
10415:
10416: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
10417: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
10418: simplified a little
10419:
10420: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
10421: [lost fix from 3.0.8]
10422:
10423: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
10424: visible here }
10425:
10426: bug fix
10427:
10428: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
10429:
10430: * src/main/compile.tab.C: initialized couple of variables about
10431: which user reported runtime problems when parser were compiled
10432: with VC7, warning level4. study shows that later in bison
10433: they've fixed that. would migrate to latest bison someday
10434:
10435: * src/types/pa_vmail.C: turned off recoding in gmime (were still
10436: recoding headers)
10437:
10438: * src/types/pa_vmail.C: works as before, same charset problems:
10439: gmime recodes to UTF-8 only headers, not body. so not recoding
10440: anything for now
10441:
10442: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
10443: problems with body
10444:
10445: * src/types/pa_vmail.C: mail_receive just compiled
10446:
10447: 2003-08-18 paf
10448:
10449: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
10450: main/main.vcproj, types/types.vcproj: win32: continued process
10451: detaching from \parser3project directory
10452:
10453: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
10454: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
10455: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
10456: src/lib/pcre/pcre_dftables.dsp,
10457: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
10458: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
10459: src/types/types.dsp: moved to MSVC 7
10460:
10461: * gnu.vcproj.vspscc, parser3.vssscc,
10462: src/classes/classes.vcproj.vspscc,
10463: src/lib/cord/cord.vcproj.vspscc,
10464: src/lib/ltdl/libltdl.vcproj.vspscc,
10465: src/lib/md5/md5.vcproj.vspscc,
10466: src/lib/pcre/pcre_dftables.vcproj.vspscc,
10467: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
10468: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
10469: src/targets/isapi/parser3isapi.vcproj.vspscc,
10470: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
10471: moved to MSVC 7
10472:
10473: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
10474: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
10475: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10476: src/lib/pcre/pcre_dftables.vcproj,
10477: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
10478: src/targets/cgi/parser3.vcproj,
10479: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
10480: new VS project files
10481:
10482: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
10483: .NET to detect Jalindi Igloo capabilities.
10484:
10485: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.101 moko 10486: src/classes/classes.awk, src/doc/footer.htm,
10487: src/include/pa_config_fixed.h, src/include/pa_version.h,
10488: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 10489: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
10490: src/types/pa_vmail.C: merged 3.1.0 latest changes
10491:
10492: 2003-08-15 paf
10493:
10494: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
10495: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
10496:
10497: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
10498: non-ascii <yyy> now encoded correctly
10499:
10500: 2003-07-29 paf
10501:
1.101 moko 10502: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
10503: dist
1.95 moko 10504:
10505: * src/types/pa_vmail.C: just started --with-mail-receive
10506:
10507: 2003-07-28 paf
10508:
1.101 moko 10509: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
10510: dependence in src/classes, src/lib/gc now in dist
1.95 moko 10511:
10512: * src/main/pa_string.C: ^cache bug fix [were not working at all]
10513:
10514: 2003-07-25 paf
10515:
10516: * src/doc/footer.htm: year
10517:
10518: 2003-07-24 paf
10519:
10520: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
10521: fix
10522:
10523: * src/include/pa_version.h: release
10524:
1.101 moko 10525: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 10526:
10527: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
10528: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
10529: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
10530: getting rid of win32xml pseudo project
10531:
10532: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
10533:
1.101 moko 10534: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
10535: configure.in, operators.txt, parser3.dsw,
1.95 moko 10536: etc/parser3.charsets/koi8-r.cfg,
1.101 moko 10537: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 10538: src/classes/classes.C, src/classes/classes.awk,
10539: src/classes/classes.dsp, src/classes/classes.h,
10540: src/classes/date.C, src/classes/double.C, src/classes/file.C,
10541: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
10542: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
10543: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
10544: src/classes/string.C, src/classes/table.C, src/classes/void.C,
10545: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
10546: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
10547: src/doc/string.dox, src/include/Makefile.am,
1.101 moko 10548: src/include/pa_array.h, src/include/pa_cache_managers.h,
10549: src/include/pa_charset.h, src/include/pa_charsets.h,
10550: src/include/pa_common.h, src/include/pa_config_auto.h.in,
10551: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
10552: src/include/pa_dictionary.h, src/include/pa_dir.h,
10553: src/include/pa_exception.h, src/include/pa_exec.h,
10554: src/include/pa_globals.h, src/include/pa_hash.h,
10555: src/include/pa_memory.h, src/include/pa_opcode.h,
10556: src/include/pa_operation.h, src/include/pa_pool.h,
10557: src/include/pa_pragma_pack_begin.h,
1.95 moko 10558: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
10559: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
10560: src/include/pa_sapi.h, src/include/pa_socks.h,
10561: src/include/pa_sql_connection.h,
10562: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
10563: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
10564: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
10565: src/include/pa_threads.h, src/include/pa_types.h,
1.101 moko 10566: src/include/pa_uue.h, src/lib/Makefile.am,
10567: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
10568: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
10569: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
10570: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 10571: src/lib/cord/include/ec.h,
10572: src/lib/cord/include/private/Makefile.am,
10573: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.101 moko 10574: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
10575: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 10576: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.101 moko 10577: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
10578: src/main/compile_tools.C, src/main/compile_tools.h,
10579: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
10580: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10581: src/main/pa_charsets.C, src/main/pa_common.C,
10582: src/main/pa_dictionary.C, src/main/pa_dir.C,
10583: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 10584: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
10585: src/main/pa_request.C, src/main/pa_socks.C,
10586: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
10587: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.101 moko 10588: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
10589: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
10590: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
10591: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
10592: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
10593: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
10594: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 10595: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10596: src/targets/isapi/parser3isapi.dsp,
10597: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.101 moko 10598: src/types/pa_junction.h, src/types/pa_method.h,
10599: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 10600: src/types/pa_vclass.C, src/types/pa_vclass.h,
10601: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
10602: src/types/pa_vcookie.h, src/types/pa_vdate.h,
10603: src/types/pa_vdouble.h, src/types/pa_venv.h,
10604: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
10605: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
10606: src/types/pa_vimage.C, src/types/pa_vimage.h,
10607: src/types/pa_vint.h, src/types/pa_vjunction.h,
10608: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
10609: src/types/pa_vmath.h, src/types/pa_vmemory.h,
10610: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
10611: src/types/pa_vobject.C, src/types/pa_vobject.h,
10612: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
10613: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
10614: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
10615: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
10616: src/types/pa_vstatus.h, src/types/pa_vstring.C,
10617: src/types/pa_vstring.h, src/types/pa_vtable.C,
10618: src/types/pa_vtable.h, src/types/pa_vvoid.h,
10619: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
10620: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
10621: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
10622: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
10623: HEAD
10624:
10625: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
10626: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
10627: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
10628: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
10629: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
10630: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
10631: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
10632: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
10633: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
10634: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
10635: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
10636: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
10637: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
10638: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
10639: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
10640: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
10641: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
10642: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
10643: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
10644: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
10645: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
10646: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
10647: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
10648: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
10649: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
10650: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
10651: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
10652: outputs/create-dir, results/001.processed, results/002.processed,
10653: results/003.processed, results/004.processed,
10654: results/005.processed, results/006.processed,
10655: results/007.processed, results/008.processed,
10656: results/009.processed, results/010.processed,
10657: results/011.processed, results/012.processed,
10658: results/013.processed, results/014.processed,
10659: results/015.processed, results/016.processed,
10660: results/017.processed, results/018.processed,
10661: results/019.processed, results/020.processed,
10662: results/021.processed, results/022.processed,
10663: results/023.processed, results/024.processed,
10664: results/025.processed, results/026.processed,
10665: results/027.processed, results/028.processed,
10666: results/029.processed, results/030.processed,
10667: results/031.processed, results/032.processed,
10668: results/033.processed, results/034.processed,
10669: results/035.processed, results/036.processed,
10670: results/037.processed, results/038.processed,
10671: results/039.processed, results/040.processed,
10672: results/041.processed, results/042.processed,
10673: results/043.processed, results/044.processed,
10674: results/045.processed, results/046.processed,
10675: results/047.processed, results/048.processed,
10676: results/049.processed, results/050.processed,
10677: results/051.processed, results/052.processed,
10678: results/053.processed, results/054.processed,
10679: results/055.processed, results/056.processed,
10680: results/057.processed, results/058.processed,
10681: results/059.processed, results/060.processed,
10682: results/061.processed, results/062.processed,
10683: results/063.processed, results/064.processed,
10684: results/065.processed, results/066.processed,
10685: results/067.processed, results/068.processed,
10686: results/069.processed, results/070.processed,
10687: results/071.processed, results/072.processed,
10688: results/073.processed, results/074.processed,
10689: results/075.processed, results/076.processed,
10690: results/077.processed, results/078.processed,
10691: results/079.processed, results/080.processed,
10692: results/081.processed, results/082.processed,
10693: results/083.processed, results/084.processed,
10694: results/085.processed, results/086.processed,
10695: results/087.processed, results/088.processed,
10696: results/089.processed, results/090.processed,
10697: results/091.processed, results/092.processed,
10698: results/093.processed, results/094.processed,
10699: results/095.processed, results/096.processed,
10700: results/097.processed, results/098.processed,
10701: results/099.processed, results/100.processed,
10702: results/101.processed, results/102.processed,
10703: results/103.processed, results/104.processed,
10704: results/105.processed, results/106.processed,
10705: results/107.processed, results/108.processed,
10706: results/109.processed, results/110.processed,
10707: results/111.processed, results/112.processed,
10708: results/113.processed, results/114.processed,
10709: results/115.processed, results/116.processed,
10710: results/117.processed, results/118.processed,
10711: results/119.processed, results/120.processed,
10712: results/121.processed, results/122.processed,
10713: results/123.processed, results/124.processed,
10714: results/125.processed, results/126.processed,
10715: results/127.processed, results/128.processed,
10716: results/129.processed, results/130.processed,
10717: results/131.processed, results/132.processed,
10718: results/133.processed, results/134.processed,
10719: results/135.processed, results/136.processed,
10720: results/137.processed, results/138.processed,
10721: results/139.processed, results/140.processed,
10722: results/141.processed: merged(copied) to HEAD from template_gc
10723:
10724: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
10725: towards \parser3project not having to be in root
10726:
10727: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
10728: module compiled [were minor unnecessary changes in lib/md5
10729: interface]
10730:
10731: * src/include/pa_version.h: release
10732:
10733: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
10734:
10735: * src/classes/math.C: merged uuid bugfix
10736:
10737: * tests/: 141.html, results/141.processed: fixed bug with
10738: too-small-a-buffer
10739:
10740: * src/classes/math.C: uuid bugfix
10741:
10742: * tests/: 141.html, Makefile, results/005.processed,
10743: results/030.processed, results/075.processed,
10744: results/078.processed: to reflect date format change (were -
10745: become ' ')
10746:
10747: * src/classes/math.C: uuid bugfix
10748:
10749: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
10750: debug/release changes
10751:
10752: * src/lib/md5/pa_md5c.c: PA_ -> pa_
10753:
10754: 2003-07-23 paf
10755:
10756: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
10757: renamed a little [to move to comman naming conv]
10758:
1.101 moko 10759: * src/targets/Makefile.am: apache13 splitted to simplify apache
10760: build
1.95 moko 10761:
10762: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
10763: main/pa_request.C, main/pa_sql_driver_manager.C,
10764: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
10765: stack top_index() fixed
10766:
10767: * src/main/pa_globals.C: minor style changes
10768:
10769: * src/: classes/op.C, include/pa_sql_connection.h: connection
10770: closing/caching fixed [connections were not closed/put to cache]
10771:
10772: 2003-07-22 paf
10773:
10774: * INSTALL: gc part updated stightly
10775:
10776: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
10777: new sapi interface
10778:
10779: * src/classes/file.C: comment on OS
10780:
10781: * src/main/pa_string.C: removed reduntant invariant check [there is
10782: one deeper in cord lib]
10783:
10784: * src/main/pa_exec.C: on win32 bugfix in handling shbang
10785:
10786: * src/main/pa_memory.C: out of memory is no longer coredump
10787:
10788: * INSTALL: disable-threads adviced
10789:
10790: 2003-07-21 paf
10791:
1.101 moko 10792: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 10793:
10794: * src/classes/file.C: file::exec/cgi environment variables now must
10795: be UPPERCASE and A-Z 0-9 _-
10796:
10797: * src/classes/file.C: env passing fixed
10798:
10799: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
10800:
10801: * src/main/pa_common.C: http:// CRLF now
10802:
10803: 2003-07-02 paf
10804:
10805: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
10806: fields to reflect their real meaning
10807:
10808: 2003-06-27 paf
10809:
10810: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
10811: include/pa_hash.h, main/pa_charset.C: merged from HEAD
10812: file::exec/cgi .charset
10813:
10814: 2003-06-26 paf
10815:
10816: * ChangeLog, src/classes/file.C, src/classes/hash.C,
10817: src/classes/image.C, src/classes/op.C, src/classes/string.C,
10818: src/classes/table.C: fixed several uninitialized local
10819: structures. notably ^hash.foreach now inserts delimiters
10820: properly [were inserting it before first body]
10821:
10822: 2003-06-24 paf
10823:
10824: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
10825:
10826: 2003-06-20 paf
10827:
10828: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
10829: src/main/pa_globals.C: introducing
10830: $f[^file::load[binary;http://...]] $f.tables
10831:
10832: 2003-06-06 paf
10833:
10834: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
10835: table. [were method lookup: inconsistent]
10836:
10837: 2003-06-02 paf
10838:
10839: * src/include/pa_memory.h: empty string clone fixed to return
10840: writable memory
10841:
10842: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
10843: were not appended] which violated string invariant
10844:
10845: 2003-05-30 paf
10846:
10847: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
10848: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
10849:
10850: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
10851: GMT ; RFC 822, updated by RFC 1123
10852:
10853: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
10854: targets/isapi/parser3isapi.C: initialized request_info properly
10855:
10856: * src/classes/xnode.C: found minor bug, commended for future
10857:
10858: 2003-05-28 paf
10859:
10860: * src/classes/form.C: request_info.content_length can't be <0,
10861: size_t for some time
10862:
10863: 2003-05-26 paf
10864:
10865: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
10866: forgotten <0 changed to !=STRING_NOT_FOUND
10867:
10868: * src/classes/math.C: merged ffffu from HEAD
10869:
10870: 2003-05-11 paf
10871:
10872: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
10873:
10874: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
10875: premature doc free. transformed document had xmlDoc reference
10876: stored to non-gc-memory (libgdome) added holding-reference
10877:
10878: 2003-04-29 paf
10879:
10880: * src/main/pa_globals.C: started digging on double free. on win32
10881: found that that's perfectly normal.
10882:
10883: 2003-04-25 paf
10884:
10885: * src/classes/table.C: table.join bug fix [bad limit check]
10886:
10887: * src/classes/math.C: merged from HEAD: simpiler hash_string
10888:
10889: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
10890: print anything. changed to quicker and simplier code
10891:
10892: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
10893: strict a check]
10894:
10895: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
10896:
10897: 2003-04-24 paf
10898:
10899: * src/include/pa_table.h: too strict assert loosened
10900:
10901: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
10902: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
10903: report
10904:
10905: 2003-04-21 paf
10906:
1.101 moko 10907: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 10908:
10909: * src/main/pa_globals.C: pcre memory management changed to use GC
10910: memory
10911:
10912: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
10913: xmlMallocAtomic [author agreed to my suggestion], used that
10914:
10915: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
10916:
10917: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
10918: types/pa_vmail.C: attributed_meaning_to_string added
10919: L_UNSPECIFIED piece which was sortof OK, but violated string
10920: invariant [assertion barked on that] changed to L_PASS_APPEND,
10921: made that param obligatory
10922:
10923: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
10924: fixed [assert helped]
10925:
10926: * src/include/pa_string.h: assert added [looking for bug]
10927:
10928: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
10929: names on Win32 considered disk-global
10930:
10931: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
10932: considered disk-global
10933:
10934: 2003-04-18 paf
10935:
10936: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
10937: filenames
10938:
10939: * src/main/untaint.C: enabled '~' letter in filenames
10940:
10941: 2003-04-16 paf
10942:
10943: * src/classes/file.C: small bug introduced in autoptr times fixed
10944:
10945: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
10946: HEAD
10947:
1.101 moko 10948: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 10949:
10950: 2003-04-15 paf
10951:
10952: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
10953: src/lib/md5/pa_md5c.c, tests/141.html,
10954: tests/results/141.processed: merged from head ^math:uuid[]
10955: ^math:uid64[] ^math:md5[string]
10956:
10957: test added: 141.html
10958:
10959: * operators.txt, src/classes/math.C: ^math:uid64[]
10960:
10961: * src/classes/math.C: ^math:uuid[]
10962:
10963: * operators.txt, src/classes/math.C: ^math:uuid[]
10964:
10965: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
10966: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
10967:
10968: * operators.txt, src/classes/file.C, src/include/pa_common.h,
10969: src/include/pa_config_fixed.h, src/main/pa_common.C:
10970: ^file::load[mode;name; $.offset $.limit
10971:
10972: 2003-04-14 paf
10973:
10974: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
10975: started ^math:md5
10976:
10977: * src/classes/table.C, src/include/pa_array.h,
10978: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
10979: tests/results/140.processed: table $.reverse option works in
10980: create&co table $.distinct[tables] bug fix merged
10981:
10982: * src/: classes/table.C, include/pa_table.h: table
10983: $.distinct[tables] bug fixed
10984:
10985: * src/classes/table.C: more warnings
10986:
10987: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
10988: removed checks in table::set_current, moved them back to
10989: table::locate implemented table::create/join ñ $.reverse
10990:
10991: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
10992: removed checks in table::set_current, moved them back to
10993: table::locate
10994:
10995: 2003-04-11 paf
10996:
10997: * operators.txt, src/classes/date.C, src/classes/table.C,
10998: src/include/pa_array.h, src/include/pa_common.h,
10999: src/include/pa_config_includes.h, src/include/pa_string.h,
11000: src/include/pa_table.h, src/main/pa_request.C,
11001: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
11002: src/main/pa_table.C: merged from HEAD from
11003: before_append_array_limit_sense_change to
11004: after_append_array_limit_sense_change
11005:
11006: * src/classes/table.C: typo
11007:
11008: * operators.txt, src/classes/date.C, src/classes/table.C,
11009: src/include/pa_array.h, src/include/pa_common.h,
11010: src/include/pa_config_includes.h, src/include/pa_globals.h,
11011: src/include/pa_table.h, src/main/pa_array.C,
11012: src/main/pa_globals.C, src/main/pa_request.C,
11013: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
11014: src/main/pa_table.C: append_array_limit_sense_change locate
11015: accepts options same as create new option: $.reverse(1) [do not
11016: work in table::create]
11017:
11018: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
11019: (stat xxx,
11020:
11021: * src/classes/: table.C: typo
11022:
11023: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
11024: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
11025: results/130.processed, results/131.processed,
11026: results/132.processed, results/133.processed,
11027: results/134.processed, results/135.processed,
11028: results/136.processed, results/137.processed,
11029: results/138.processed, results/139.processed: added few mustfail
11030: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
11031: date/time 132.html mustfail: access to junction outside of
11032: context 133.html mustfail: access to junction outside of context,
11033: case version 134.html mustfail: hash: adding a key inside of
11034: foreach 135.html mustfail: modifying system class 136.html
11035: mustfail: $.name outside of $hash[here] 137.html mustfail:
11036: appendChild without import 138.html mustfail: invalid encoding
11037: inside of xml 139.html mustfail: bad XPath
11038:
11039: * operators.txt, src/classes/table.C, tests/084.html,
11040: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
11041: tests/129.html, tests/results/125.processed,
11042: tests/results/126.processed, tests/results/127.processed,
11043: tests/results/128.processed, tests/results/129.processed: merged
11044: from HEAD ^table.hash[key][$.distinct[tables]]
11045:
11046: maked appropriate tests [changed one old nonconforming]
11047:
11048: * operators.txt, src/classes/table.C:
11049: ^table.hash[key][$.distinct[tables]]
11050:
11051: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
11052: merged fix for found very old xml (dom) bug: were passing
11053: domString objects and later ERROREOUSLY freed them
11054:
11055: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
11056: src/main/pa_charset.C: re-added libgdome patch. regretfully
11057: libgdome bug can not be worked around
11058:
11059: 2003-04-10 paf
11060:
11061: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
11062: found very old xml (dom) bug: were passing domString objects and
11063: later ERROREOUSLY freed them
11064:
11065: * src/doc/string.dox, src/include/pa_memory.h,
11066: src/include/pa_string.h, src/lib/cord/cordbscs.c,
11067: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
11068: tests/123.html, tests/124.html, tests/results/001.processed,
11069: tests/results/002.processed, tests/results/003.processed,
11070: tests/results/004.processed, tests/results/005.processed,
11071: tests/results/006.processed, tests/results/008.processed,
11072: tests/results/009.processed, tests/results/010.processed,
11073: tests/results/011.processed, tests/results/012.processed,
11074: tests/results/013.processed, tests/results/014.processed,
11075: tests/results/015.processed, tests/results/016.processed,
11076: tests/results/017.processed, tests/results/018.processed,
11077: tests/results/020.processed, tests/results/021.processed,
11078: tests/results/022.processed, tests/results/023.processed,
11079: tests/results/024.processed, tests/results/025.processed,
11080: tests/results/026.processed, tests/results/027.processed,
11081: tests/results/028.processed, tests/results/029.processed,
11082: tests/results/030.processed, tests/results/031.processed,
11083: tests/results/032.processed, tests/results/033.processed,
11084: tests/results/034.processed, tests/results/035.processed,
11085: tests/results/036.processed, tests/results/037.processed,
11086: tests/results/038.processed, tests/results/039.processed,
11087: tests/results/040.processed, tests/results/041.processed,
11088: tests/results/042.processed, tests/results/043.processed,
11089: tests/results/044.processed, tests/results/045.processed,
11090: tests/results/046.processed, tests/results/047.processed,
11091: tests/results/048.processed, tests/results/049.processed,
11092: tests/results/050.processed, tests/results/051.processed,
11093: tests/results/052.processed, tests/results/053.processed,
11094: tests/results/054.processed, tests/results/055.processed,
11095: tests/results/056.processed, tests/results/057.processed,
11096: tests/results/058.processed, tests/results/059.processed,
11097: tests/results/060.processed, tests/results/061.processed,
11098: tests/results/062.processed, tests/results/063.processed,
11099: tests/results/064.processed, tests/results/065.processed,
11100: tests/results/066.processed, tests/results/067.processed,
11101: tests/results/068.processed, tests/results/069.processed,
11102: tests/results/070.processed, tests/results/071.processed,
11103: tests/results/072.processed, tests/results/073.processed,
11104: tests/results/074.processed, tests/results/075.processed,
11105: tests/results/076.processed, tests/results/077.processed,
11106: tests/results/078.processed, tests/results/079.processed,
11107: tests/results/080.processed, tests/results/081.processed,
11108: tests/results/082.processed, tests/results/083.processed,
11109: tests/results/084.processed, tests/results/085.processed,
11110: tests/results/086.processed, tests/results/087.processed,
11111: tests/results/088.processed, tests/results/089.processed,
11112: tests/results/090.processed, tests/results/091.processed,
11113: tests/results/092.processed, tests/results/093.processed,
11114: tests/results/094.processed, tests/results/095.processed,
11115: tests/results/096.processed, tests/results/097.processed,
11116: tests/results/101.processed, tests/results/102.processed,
11117: tests/results/104.processed, tests/results/105.processed,
11118: tests/results/106.processed, tests/results/107.processed,
11119: tests/results/108.processed, tests/results/109.processed,
11120: tests/results/110.processed, tests/results/111.processed,
11121: tests/results/112.processed, tests/results/113.processed,
11122: tests/results/114.processed, tests/results/115.processed,
11123: tests/results/116.processed, tests/results/117.processed,
11124: tests/results/118.processed, tests/results/119.processed,
11125: tests/results/120.processed, tests/results/121.processed,
11126: tests/results/122.processed, tests/results/123.processed,
11127: tests/results/124.processed: new convention: char* never 0.
11128: assert in cord on that
11129:
11130: * src/main/pa_charset.C: couple more asserts
11131:
11132: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
11133: speedup
11134:
11135: * src/main/pa_charset.C: couple assertions on fantastic situations
11136: added [may be those is the case now?]
11137:
11138: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
11139: that's memory from gc_malloc, not from g_malloc :(, but would
11140: hope]
11141:
11142: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
11143: that's memory from gc_malloc, not from g_malloc :(, but would
11144: hope]
11145:
11146: * src/main/pa_charset.C: checked custom malloc for returning 0
11147:
11148: 2003-04-09 paf
11149:
11150: * src/classes/date.C: merged ^date.roll changes
11151:
11152: * src/classes/date.C: ^date.roll bug fix
11153:
11154: * src/classes/date.C: ^date.roll now throws less errors: month
11155: shifts handles end of month situation by reducing day number
11156: hour-hole shift reduces hour to recover
11157:
11158: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
11159: Sort by function time
11160:
11161: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
11162: http:// $.charset[] param done
11163:
11164: * tests/: 122.html, results/122.processed: 122 date test <= and ==
11165: added [after volatile fix. passes on win&intel-solaris]
11166:
11167: 2003-04-08 paf
11168:
11169: * src/: classes/file.C, classes/op.C, classes/table.C,
11170: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
11171: include/pa_common.h, include/pa_request_charsets.h,
11172: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11173: main/pa_exec.C, main/pa_request.C, main/untaint.C,
11174: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
11175: types/pa_vresponse.C: started http:// $.charset[] param and
11176: http response charset detection just compiled. todo:test
11177:
11178: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
11179:
11180: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
11181: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
11182: types/pa_vmail.C: changed transcode param converntion along with
11183: string creating convention -- all strings are zero-terminated,
11184: this allowed to fix one remaining String("123", 2) case
11185:
11186: * src/: classes/date.C, classes/file.C, classes/hash.C,
11187: classes/op.C, classes/string.C, classes/table.C,
11188: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
11189: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
11190: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
11191: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
11192: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
11193: violated String::invariant. started fixing [not compiled now]
11194:
11195: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
11196: main/compile.tab.C, main/compile.y, main/pa_string.C,
11197: main/untaint.C, targets/cgi/parser3.C: number of string style
11198: improvements & optimizations
11199:
11200: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
11201: :(]
11202:
11203: * src/main/untaint.C: removed redundant & in CORD_pos param passing
11204: [for it's a pointer really]
11205:
11206: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
11207: 'n' param. worked that around
11208:
11209: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
11210: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
11211: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
11212: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
11213: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
11214:
11215: Thanks for the bug report and patch.
11216:
11217: I hadn't looked at this code in a while. Reading it now, it
11218: seems to me that the tests should also be ">= MAX_DEPTH" to
11219: comply with the invariant, though that may not matter a lot. I
11220: changed that, too.
11221:
11222: Hans
11223:
11224: 2003-04-07 paf
11225:
11226: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
11227: merged from head:safe mode error message now includes numbers
11228:
11229: * src/main/execute.C: n-th attempt to make a=a work with double.
11230: problem: as_double returns it's result in fp-register compiler
11231: optimizes access to that register after b->as_double, and just
11232: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
11233: from memory. _SAME_ double values do not match here. when
11234: forced to REload fp-register, values do match.
11235:
11236: tried to make them volatile.
11237:
11238: * src/main/execute.C: n-th attempt to make a=a work with double.
11239: problem: as_double returns it's result in fp-register compiler
11240: optimizes access to that register after b->as_double, and just
11241: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
11242: from memory. _SAME_ double values do not match here. when
11243: forced to REload fp-register, values do match.
11244:
11245: tried to make them volatile.
11246:
11247: * src/types/pa_vobject.h: small style change
11248:
11249: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
11250:
11251: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
11252: mode error message now includes numbers
11253:
11254: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
11255: now causes death
11256:
11257: 2003-04-04 paf
11258:
11259: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
11260: incorportated pa_exec patch by From: "Victor Fedoseev"
11261: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
11262: Sent: Thursday, January 23, 2003 9:14 AM
11263:
11264: huge speedup on ^file::cgi with big result
11265:
11266: * src/classes/table.C: sort table with 0 rows bug fixed
11267:
11268: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
11269: fix http://i2/tasks/edit/?id=4493701604654042676
11270:
11271: @main[] $with_default[ $.a[1] $._default[default from
11272: with_default] ] ^show[$with_default]
11273:
11274: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
11275: =$to_add_to.xxx=<br>
11276:
11277: ^show[$to_add_to]
11278:
11279: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
11280: ^show[$cloned]
11281:
11282: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
11283:
11284: } <hr>
11285:
11286: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
11287: http://i2/tasks/edit/?id=4493701604654042676
11288:
11289: @main[] $with_default[ $.a[1] $._default[default from
11290: with_default] ] ^show[$with_default]
11291:
11292: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
11293: =$to_add_to.xxx=<br>
11294:
11295: ^show[$to_add_to]
11296:
11297: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
11298: ^show[$cloned]
11299:
11300: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
11301:
11302: } <hr>
11303:
11304: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
11305: http://i2/tasks/edit/?id=4507350336410850921
11306:
11307: * src/classes/xdoc.C: memory allocation func bugfix
11308: http://i2/tasks/edit/?id=4499303470368629745
11309:
11310: * src/classes/math.C: allowed random 1...
11311:
11312: * src/classes/math.C: allowed random 0..
11313:
11314: * src/main/pa_globals.C: exif mem leak
11315: http://i2/tasks/edit/?id=4480590323629807263
11316:
11317: * src/: classes/classes.dsp, main/main.dsp,
11318: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
11319: fix http://i2/tasks/edit/?id=4493946731322521294
11320: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
11321:
11322: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
11323: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
11324: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
11325: links to xml libs made relative, no need to unpack parser3project
11326: to /parser3project.
11327:
11328: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
11329: column more precise - tab handling bug fixed
11330:
11331: * src/main/: compile.tab.C, compile.y: more understandable error
11332: message in case @CLASS with more then one line inside
11333:
11334: * src/targets/cgi/parser3.C: more understandable error message in
11335: case of errors in @unhandled_exception
11336:
11337: 2003-04-03 paf
11338:
11339: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
11340: src/main/compile.tab.C, src/main/compile.y,
11341: src/main/compile_tools.C, src/main/compile_tools.h,
11342: src/main/execute.C, src/main/pa_request.C: debug info format
11343: simplified, now it's: OP_VALUE Operation::Origin << here value*
11344:
11345: higher limits: file number (max: 255) line number (max:
11346: 64535) column number (max: 255)
11347:
11348: * src/classes/math.C: top limit
11349:
11350: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
11351: precise parse error position in case of
11352:
11353: ^bug ]
11354:
11355: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
11356: changed to realities, and passed [bug fixed]
11357:
11358: * src/: classes/op.C, include/pa_request.h, main/compile.C,
11359: main/compile.tab.C, main/compile.y, main/compile_tools.C,
11360: main/compile_tools.h, main/pa_request.C: introducing
11361: ^process...[main-method-alias]
11362:
11363: * src/: classes/date.C, classes/image.C, classes/op.C,
11364: classes/string.C, classes/table.C, classes/xdoc.C,
11365: types/pa_vmethod_frame.h: MethodParams& now [methods without
11366: params receive zero reference, but they are expected not to look
11367: there]
11368:
11369: * operators.txt, src/classes/date.C, src/classes/double.C,
11370: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
11371: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
11372: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
11373: src/classes/string.C, src/classes/table.C, src/classes/void.C,
11374: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
11375: src/main/execute.C, src/types/pa_method.h: MethodParams& now
11376: [methods without params receive zero reference, but they are
11377: expected not to look there]
11378:
11379: * operators.txt, src/classes/op.C, src/include/pa_request.h,
11380: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
11381: ^process...[filename] useful for better error reporting
11382: [file/line/col]
11383:
11384: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
11385: types/pa_vstring.h: slightly improved error messages text: 1. is
11386: '%s', it 2. method undefined in case of ^void[]
11387:
11388: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
11389: include/pa_types.h, main/execute.C, main/pa_request.C: exception
11390: handling done. now we have error columns todo: test it
11391:
11392: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
11393: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
11394:
11395: this makes life easier: were: bad stack order -- were in
11396: exception catch unwind order, which didn't match execution order
11397:
11398: @main[] ^try{ ^first[] }{ ^throw[c;3] }
11399:
11400: @first[] ^throw[a;1]
11401:
11402: showed throw a first throw b try
11403:
11404: which is no good
11405:
11406: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
11407: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
11408: trace reset after handled exception [old bug fixed]
11409:
11410: * src/main/: compile.tab.C, compile.y: parse position old bug
11411: fixed. position reporting made precise [both, in parse erros and
11412: runtime errors]
11413:
11414: 2003-04-02 paf
11415:
11416: * src/: include/pa_operation.h, include/pa_request.h,
11417: main/compile.C, main/compile.tab.C, main/compile.y,
11418: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11419: main/pa_exception.C, main/pa_request.C: debug info: started
11420: using. todo:complete
11421:
11422: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
11423: main/compile.C, main/compile.tab.C, main/compile.y,
11424: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11425: main/pa_request.C: prepared debug info todo:use it
11426:
11427: * src/include/pa_operation.h: strange mistake fixed: forgot to
11428: return Operation class->union after switching from autoptrs.
11429:
11430: * tests/: Makefile, results/108.processed, results/117.processed:
11431: meta considered OK [it's up to coder now to remove it not needed]
11432:
11433: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
11434: Dictionary constructor when moved to gc]
11435:
11436: * src/main/pa_common.C: uncommented http:// file loading
11437:
11438: * src/include/pa_array.h, src/main/execute.C,
11439: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
11440: fix [gdGrowingBuf]
11441:
11442: * configure.in, src/lib/Makefile.am: removed patches
11443:
11444: * configure, src/include/pa_config_auto.h.in,
11445: src/main/pa_charset.C: --enable-assertions autoconf-ed
11446:
11447: * src/main/pa_common.C: uncommented http:// file loading
11448:
11449: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
11450: xdoc::create/load
11451:
11452: * src/: classes/form.C, classes/hash.C, classes/image.C,
11453: classes/string.C, classes/table.C, classes/void.C,
11454: include/pa_common.h, main/pa_common.C, main/pa_request.C,
11455: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
11456: String::String(str,helper_length) are checked. found/fixed one
11457: place: $request:body now zero-terminated,
11458:
11459: * src/: classes/op.C, classes/table.C, include/pa_request.h,
11460: main/compile_tools.C, main/execute.C, types/pa_value.h,
11461: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
11462: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
11463: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
11464: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
11465: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
11466: types/pa_vxnode.h: more locally scoped vars in execute (more
11467: easily optimizable)
11468:
11469: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
11470: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
11471:
11472: * src/: include/pa_array.h, include/pa_stack.h,
11473: include/pa_string.h, main/compile_tools.C, main/main.dsp,
11474: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
11475: become assertion iterator in methodframe filler
11476:
11477: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
11478: targets/cgi/parser3.C: array::get/put inlined
11479:
11480: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
11481: gc_substitute_memory_management_functions +installed CORD_oom
11482: function
11483:
11484: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
11485: src/include/pa_config_includes.h, src/include/pa_string.h,
11486: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
11487: src/targets/cgi/parser3.C: converted debug hacks to ANSI
11488: assertions started configure.in --enable-assertions
11489:
11490: 2003-04-01 paf
11491:
11492: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
11493: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
11494: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
11495: gdome uses glib memory, and stores last pointer to xmlDoc there,
11496: gc misses that and collects valid memory fixed by remembering
11497: xmlDoc from dom object in xdoc. todo: do something with
11498: premature free of xdoc with xnodes/node values referring into it
11499:
11500: * src/classes/: mail.C: typo fix
11501:
11502: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
11503: changes
11504:
11505: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
11506: main/pa_memory.C: moved memory debugging to global level: to
11507: pa_gc_malloc
11508:
11509: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
11510: debugging showed no errors. todo: debug parser memory
11511:
11512: * src/targets/cgi/: parser3.C, parser3.dsp: more build
11513: configurations
11514:
11515: * src/: classes/classes.dsp, include/pa_config_fixed.h,
11516: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
11517: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
11518: types/types.dsp: prepared xml-static configuration
11519:
11520: 2003-03-31 paf
11521:
11522: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
11523: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
11524: xml lib memory debugging, simple checks failed: it seems that
11525: library does realloc(bad ptr), and recording those ptrs in heap
11526: [for debugging] was bad: heap situation changes = everything
11527: works fine
11528:
11529: * src/: main/pa_charset.C, include/pa_charset.h: worked around
11530: xmlRegisterCharEncodingHandler limitation [currently imposed
11531: limit of 10 user-defined charsets]
11532:
11533: 2003-03-28 paf
11534:
11535: * src/main/execute.C: execution stack copied to local register
11536: variable, removed lots [~2e7) of memory accesses
11537:
11538: 2003-03-27 paf
11539:
11540: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
11541: works in debug, but fails in release todo: fix that
11542:
11543: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
11544: targets/cgi/parser3.C: forgot to merge XML memory funcs
11545: replacement from gc branch
11546:
11547: * src/main/pa_exec.C: introducing append_help_length [radical
11548: improvement here]
11549:
11550: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
11551: 'not recommened' in gc.h, on win32 noticed no difference]
11552:
11553: * src/include/pa_array.h: returned checked array get [were disabled
11554: for debugging] result:not slower [don't understand that, it were
11555: INLINED] todo: find out a way of inlining it!
11556:
11557: * src/: include/pa_string.h, lib/gc/include/gc.h,
11558: lib/gc/include/gc_fake.h, main/compile.tab.C,
11559: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
11560: convention changed: all resulting strings are zero-terminated
11561:
11562: * src/: classes/date.C, classes/file.C, classes/hash.C,
11563: classes/string.C, classes/table.C, classes/void.C,
11564: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
11565: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
11566: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
11567: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
11568: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
11569: types/pa_vfile.C, types/pa_vmail.C: introducing
11570: append_help_length [radical improvement here]
11571:
11572: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
11573: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
11574: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
11575: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
11576: even slower
11577:
11578: * src/: classes/string.C, classes/table.C, include/pa_array.h,
11579: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
11580: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
11581: clients of &get(): most to use non-ref version, some[in tight
11582: places] to get_unchecked_ref
11583:
11584: * src/doc/memory.dox: forgot to add
11585:
11586: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
11587: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
11588: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
11589: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
11590: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11591: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
11592: targets/cgi/parser3.dsp, types/pa_vmail.C,
11593: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
11594: T>>&<< removed after Stack::pop wiping removed [moved to separate
11595: func] other Array & removed
11596:
11597: 2003-03-26 paf
11598:
11599: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
11600: classes/table.C, include/pa_array.h, include/pa_charset.h,
11601: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
11602: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
11603: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
11604: main/main.dsp, main/pa_charset.C, main/pa_common.C,
11605: main/pa_exec.C, main/pa_sql_driver_manager.C,
11606: main/pa_stylesheet_manager.C, main/pa_table.C,
11607: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
11608: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11609: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
11610: pre-evaluated .count() in some places
11611:
11612: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
11613: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
11614: types/types.dsp: .dsp profiling updated
11615:
11616: * src/: classes/classes.dsp, lib/cord/cord.dsp,
11617: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
11618: targets/cgi/parser3.dsp, types/types.dsp: started profiling
11619:
11620: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
11621: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
11622: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
11623: use lib/gc,lib/cord
11624:
1.101 moko 11625: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
11626: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 11627: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
11628: src/include/pa_config_includes.h, src/include/pa_request.h,
11629: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
11630: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.101 moko 11631: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 11632: src/lib/cord/include/Makefile.am,
1.101 moko 11633: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
11634: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
11635: src/targets/cgi/Makefile.am, src/types/Makefile.am,
11636: src/types/pa_vclass.h, src/types/pa_vcookie.h,
11637: src/types/pa_vform.h, src/types/pa_vhash.h,
11638: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
11639: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
11640: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
11641: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
11642: funcs ported pa_exec
1.95 moko 11643:
11644: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
11645:
11646: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
11647: bundled gc includes
11648:
11649: * src/: classes/op.C, include/pa_array.h,
11650: include/pa_sql_connection.h, include/pa_string.h,
11651: include/pa_version.h, main/compile.tab.C, main/compile.y,
11652: main/execute.C, main/pa_common.C, main/pa_exception.C,
11653: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
11654: targets/cgi/parser3.dsp: a number of bugfixes [while testing
11655: first real site (aval)]
11656:
11657: 2003-03-25 paf
11658:
11659: * operators.txt, src/main/pa_sql_driver_manager.C,
11660: src/types/pa_vstatus.C: $status.memory used free since_compact
11661: process
11662:
11663: * src/: include/pa_sql_connection.h, main/pa_globals.C,
11664: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
11665:
11666: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
11667:
11668: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
11669: src/types/pa_value.h, src/types/pa_vfile.h,
11670: src/types/pa_vobject.C, src/types/pa_vobject.h,
11671: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
11672: tests/results/121.processed: untaint.C L_URI
11673:
11674: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
11675: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
11676: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
11677: src/types/pa_vmemory.h: ^memory:compact[]
11678:
11679: * tests/results/109.processed: it was a bug in parser. updated 109
11680: test result
11681:
11682: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
11683:
11684: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
11685: tests/results/107.processed: fixed dom language [values are now
11686: considered tainted. it was a bug in parser. updated 107 test
11687: result
11688:
11689: * src/classes/xdoc.C: fixed transform params
11690:
11691: * src/: include/pa_stylesheet_manager.h,
11692: main/pa_stylesheet_manager.C: fixed stylesheet caching
11693:
11694: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
11695: overloads for structure handling
11696:
11697: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
11698: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
11699: StringBody(0) ambiguilty, introducting static
11700: StringBody::Format(int)
11701:
11702: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
11703: linked
11704:
11705: * src/types/pa_vxdoc.C: vxdoc compiled
11706:
11707: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
11708: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
11709: finalizers isntalled
11710:
11711: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
11712: doc/exception.dox, doc/index.dox, include/pa_charset.h,
11713: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
11714: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
11715: compiled todo: xnode.C / finalizers
11716:
11717: * src/doc/string.dox: updated: new string internals
11718:
11719: 2003-03-24 paf
11720:
11721: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11722: include/pa_charset.h, include/pa_config_fixed.h,
11723: include/pa_request.h, include/pa_stylesheet_connection.h,
11724: include/pa_stylesheet_manager.h, main/pa_charset.C,
11725: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
11726: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
11727: types/pa_vxnode.h: started XML
11728:
11729: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
11730:
11731: * src/: classes/file.C, classes/image.C, classes/mail.C,
11732: include/pa_string.h, main/pa_common.C,
11733: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
11734:
11735: * src/: classes/file.C, classes/image.C, classes/mail.C,
11736: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
11737: main/pa_request.C, main/pa_sql_driver_manager.C,
11738: types/pa_vimage.h: size_t pos everywhere checks changed to check
11739: for eq STRING_NOT_FOUND
11740:
11741: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
11742: optimize bit implemented
11743:
11744: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
11745: String::ArrayFragment::append_positions fixed
11746:
11747: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
11748: String::this_starts fixed
11749:
11750: * src/main/pa_string.C, tests/Makefile: string::pos fixed
11751:
11752: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
11753: hashcode implemented fully, including per-char callback [it can
11754: be - substr CORD node]
11755:
11756: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
11757: rewritten to rewalloc with 100byte buf ahead
11758:
11759: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
11760: src/include/pa_string.h, src/main/compile.tab.C,
11761: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
11762: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
11763: CORD_ec [bad] would rewrite as realloc now
11764:
11765: * src/: classes/date.C, classes/file.C, classes/form.C,
11766: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
11767: include/pa_cache_managers.h, include/pa_charsets.h,
11768: include/pa_common.h, include/pa_request.h,
11769: include/pa_sql_driver_manager.h, include/pa_table.h,
11770: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
11771: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
11772: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
11773: types/pa_vmail.C, types/pa_vmethod_frame.C,
11774: types/pa_vstateless_class.h: 2*2 worked :)
11775:
11776: * parser3.dsw, src/classes/date.C, src/classes/file.C,
11777: src/include/pa_exec.h, src/include/pa_string.h,
11778: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
11779: passed OK
11780:
11781: * src/: classes/hash.C, classes/string.C, classes/table.C,
11782: types/pa_value.C: all linked todo: debug
11783:
11784: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
11785: types/pa_vstateless_class.C: all compiled. todo:link
11786:
11787: * src/types/pa_wcontext.C: pa_wcontext.C compiled
11788:
11789: * src/types/pa_vtable.C: pa_vtable.C compiled
11790:
11791: * src/types/pa_vstring.C: pa_vstring.C compiled
11792:
11793: * src/types/pa_vstatus.C: pa_vstatus.C compiled
11794:
11795: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
11796: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
11797: pa_vstateless_class.C, pa_vstateless_class.h:
11798: pa_vstateless_class.C compiled
11799:
11800: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
11801: types/pa_vmath.C: pa_vmail.C compiled
11802:
11803: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
11804:
11805: * src/types/pa_vform.C: pa_vform.C compiled
11806:
11807: * src/types/pa_vfile.C: pa_vfile.C compiled
11808:
11809: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
11810: pa_vstateless_class.C: pa_vcookie.C compiled
11811:
11812: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
11813: types/pa_vhash.h: pa_value.C compiled
11814:
11815: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
11816: classes.lib main.lib compiled
11817:
11818: * src/classes/void.C: void.C compiled
11819:
11820: * src/: classes/string.C, classes/table.C, include/pa_string.h,
11821: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
11822: compiled
11823:
11824: * src/: classes/string.C, include/pa_request.h,
11825: include/pa_string.h, main/pa_string.C: string.C compiled
11826:
11827: * src/: classes/op.C, classes/string.C, classes/table.C,
11828: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
11829: main/pa_request.C, main/pa_string.C: op.C compiled
11830:
11831: * src/classes/: math.C, op.C: math.C compiled
11832:
11833: * src/: classes/mail.C, classes/string.C, classes/table.C,
11834: types/pa_vmail.h: mail.C compiled
11835:
11836: * src/classes/: int.C, table.C: int.C compiled
11837:
11838: * src/: classes/hash.C, classes/image.C, classes/string.C,
11839: classes/table.C, include/pa_memory.h, include/pa_string.h,
11840: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
11841: compiled
11842:
11843: * src/: classes/hash.C, classes/string.C, classes/table.C,
11844: classes/void.C, classes/xdoc.C, include/pa_request.h,
11845: include/pa_sql_connection.h: hash.C compiled
11846:
11847: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
11848: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
11849: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
11850: classes/math.C, classes/op.C, classes/response.C,
11851: classes/string.C, classes/table.C, classes/void.C,
11852: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
11853: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
11854: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
11855: file.C table.C compiled
11856:
11857: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
11858: main/untaint.C: main.lib compiled
11859:
11860: 2003-03-21 paf
11861:
11862: * src/: classes/op.C, include/pa_cache_managers.h,
11863: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11864: include/pa_stylesheet_manager.h, main/pa_exception.C,
11865: main/pa_globals.C, main/pa_sql_driver_manager.C,
11866: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
11867: compiled
11868:
11869: * src/: classes/hash.C, classes/image.C, classes/op.C,
11870: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
11871: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
11872: main/compile.C, main/pa_common.C, main/pa_request.C,
11873: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
11874: pa_request.C compiled
11875:
11876: * src/: classes/hash.C, classes/mail.C, classes/op.C,
11877: include/pa_request.h, main/execute.C, main/pa_request.C,
11878: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
11879: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
11880: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11881: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
11882: compiled
11883:
11884: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
11885: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
11886: on unix
11887:
11888: * src/: include/pa_charset.h, include/pa_charsets.h,
11889: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
11890: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
11891: pa_charsets.C compiled
11892:
11893: * src/: classes/image.C, classes/mail.C, classes/op.C,
11894: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
11895: main/compile.y, main/execute.C, main/pa_common.C,
11896: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
11897: types/pa_vcode_frame.h, types/pa_vimage.h,
11898: types/pa_vmethod_frame.h: execute.C compiled
11899:
11900: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11901: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11902: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
11903: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
11904: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11905: include/pa_cache_managers.h, include/pa_charsets.h,
11906: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
11907: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
11908: include/pa_sql_driver_manager.h, include/pa_string.h,
11909: include/pa_stylesheet_connection.h,
11910: include/pa_stylesheet_manager.h, include/pa_table.h,
11911: main/compile.C, main/compile.tab.C, main/compile.y,
11912: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11913: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11914: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
11915: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
11916: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
11917: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11918: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11919: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
11920: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
11921: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
11922: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
11923: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11924: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11925: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
11926: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11927: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11928: types/pa_vresponse.h, types/pa_vstateless_class.C,
11929: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
11930: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
11931: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
11932: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11933: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11934: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
11935: [C++ CORD wrapper]
11936:
11937: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
11938:
11939: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
11940: $file::exec/cgi[script; $.charset[this is script's charset]
11941:
11942: command line, env values, input got transcoded before call
11943: stdout, stderr got transcoded after call
11944:
11945: * src/classes/file.C: ^file::exec/cgi now does not pass post data
11946: by default. use: ^file::exec[...;$.stdin[$request.body]
11947:
11948: * src/main/pa_common.C: } typo bug fix
11949:
11950: * src/main/pa_common.C: } typo bug fix
11951:
11952: 2003-03-20 paf
11953:
11954: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
11955: main/untaint.C: cord bug fix, but still errors todo: clear out
11956:
11957: * src/include/pa_string.h: more tests
11958:
11959: * src/main/pa_string.C: string.pos fixed
11960:
1.101 moko 11961: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
11962: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
11963: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
11964: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
11965: replaces
1.95 moko 11966:
11967: * src/: classes/image.C, include/pa_dictionary.h,
11968: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
11969: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
11970: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
11971: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
11972:
11973: * src/include/pa_string.h: warning
11974:
11975: * src/include/pa_string.h: this_starts fixed
11976:
11977: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
11978: new String ctor & append params convention
11979:
11980: * src/: classes/file.C, classes/hash.C, classes/image.C,
11981: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
11982: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
11983: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
11984: main/pa_exception.C, main/pa_exec.C,
11985: main/pa_sql_driver_manager.C, main/pa_string.C,
11986: main/pa_stylesheet_manager.C, main/untaint.C,
11987: targets/isapi/parser3isapi.C, types/pa_vimage.C,
11988: types/pa_vmail.C: more tests OK
11989:
11990: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
11991: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
11992: gc/exit runned OK
11993:
11994: * src/types/pa_vmail.C: another naming problem: should not name
11995: vars like that: unpredictable close caused problems with later
11996: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
11997: descriptors missing on startup: stdin; Bad file number
11998:
11999: todo: find out why so many filters(stream) here. probably wrong?
12000:
12001: * src/: include/pa_dictionary.h, include/pa_string.h,
12002: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
12003: main/untaint.C: test compiled
12004:
12005: * src/: classes/image.C, classes/mail.C, classes/math.C,
12006: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
12007: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
12008: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
12009: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
12010: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
12011: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
12012: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
12013: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
12014: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
12015:
12016: * parser3.dsw, src/classes/file.C, src/classes/image.C,
12017: src/classes/op.C, src/classes/string.C, src/classes/table.C,
12018: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
12019: src/include/pa_memory.h, src/include/pa_request.h,
12020: src/include/pa_request_charsets.h,
12021: src/include/pa_sql_connection.h, src/include/pa_string.h,
12022: src/main/compile.tab.C, src/main/execute.C,
12023: src/main/pa_charset.C, src/main/pa_common.C,
12024: src/main/pa_exception.C, src/main/pa_exec.C,
12025: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
12026: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
12027: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
12028: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
12029: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
12030: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
12031: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
12032: src/types/pa_vobject.C, src/types/pa_vresponse.C,
12033: src/types/pa_vstatus.C, src/types/pa_vstring.C,
12034: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12035: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
12036: pa_common.C [done, without http for now]
12037:
12038: 2003-03-19 paf
12039:
12040: * src/: classes/date.C, classes/form.C, classes/hash.C,
12041: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
12042: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
12043: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
12044: include/pa_string.h, include/pa_table.h, main/compile.C,
12045: main/compile_tools.C, main/execute.C, main/pa_charset.C,
12046: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
12047: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
12048: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
12049: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
12050: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
12051: types/pa_vstateless_class.h, types/pa_vtable.C,
12052: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
12053: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
12054: types/pa_wwrapper.h: started test
12055:
1.101 moko 12056: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
12057: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 12058:
12059: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
12060: include/pa_string.h, main/pa_string.C: string compiled todo: test
12061: it
12062:
12063: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
12064: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
12065: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
12066: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
12067: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
12068: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
12069: types/pa_vmethod_frame.h, types/types.dsp: string
12070: reimplementation with cord+array<fragment>: 70%
12071:
12072: 2003-03-18 paf
12073:
12074: * src/: classes/date.C, classes/file.C, classes/form.C,
12075: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
12076: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
12077: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
12078: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
12079: can ignore lang in cmp and pos really, but would
12080: split properly!
12081:
12082: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
12083: cord part made parser/src/lib: it's not compiled into libgc by
12084: default
12085:
12086: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
12087: src/classes/date.C, src/classes/double.C, src/classes/file.C,
12088: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
12089: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
12090: src/classes/op.C, src/classes/response.C, src/classes/string.C,
12091: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
12092: src/classes/xnode.C, src/classes/xnode.h,
12093: src/include/Makefile.am, src/include/pa_cache_managers.h,
12094: src/include/pa_charset.h, src/include/pa_charsets.h,
12095: src/include/pa_common.h, src/include/pa_dictionary.h,
12096: src/include/pa_exception.h, src/include/pa_exec.h,
12097: src/include/pa_globals.h, src/include/pa_hash.h,
12098: src/include/pa_memory.h, src/include/pa_pool.h,
12099: src/include/pa_request.h, src/include/pa_request_charsets.h,
12100: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
12101: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
12102: src/include/pa_stylesheet_connection.h,
12103: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
12104: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
12105: src/main/compile.C, src/main/compile.tab.C,
12106: src/main/compile_tools.C, src/main/compile_tools.h,
12107: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
12108: src/main/pa_charsets.C, src/main/pa_common.C,
12109: src/main/pa_dictionary.C, src/main/pa_exception.C,
12110: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
12111: src/main/pa_pool.C, src/main/pa_request.C,
12112: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
12113: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
12114: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
12115: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
12116: src/types/pa_junction.h, src/types/pa_method.h,
12117: src/types/pa_value.C, src/types/pa_value.h,
12118: src/types/pa_vclass.C, src/types/pa_vclass.h,
12119: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
12120: src/types/pa_vcookie.h, src/types/pa_vdate.h,
12121: src/types/pa_vdouble.h, src/types/pa_venv.h,
12122: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
12123: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
12124: src/types/pa_vimage.C, src/types/pa_vimage.h,
12125: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
12126: src/types/pa_vmath.C, src/types/pa_vmath.h,
12127: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
12128: src/types/pa_vobject.C, src/types/pa_vobject.h,
12129: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
12130: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
12131: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
12132: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
12133: src/types/pa_vstatus.h, src/types/pa_vstring.C,
12134: src/types/pa_vstring.h, src/types/pa_vtable.C,
12135: src/types/pa_vtable.h, src/types/pa_vvoid.h,
12136: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12137: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12138: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
12139: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
12140: gc: PA_Object done lots of replacements also
12141:
12142: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
12143: gc logging
12144:
12145: 2003-03-17 paf
12146:
12147: * src/: classes/date.C, classes/file.C, classes/form.C,
12148: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
12149: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
12150: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
12151: include/pa_string.h, include/pa_types.h, main/compile.C,
12152: main/compile.tab.C, main/execute.C, main/pa_charset.C,
12153: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
12154: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
12155: main/pa_sql_driver_manager.C, main/pa_string.C,
12156: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
12157: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
12158: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
12159: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
12160: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
12161: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
12162: types/pa_vxnode.h: libgc attempt
12163:
12164: 2003-03-13 paf
12165:
12166: * src/: include/pa_sql_driver_manager.h,
12167: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
12168: called
12169:
12170: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
12171: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
12172: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
12173: types/pa_value.h, types/pa_vobject.h,
12174: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
12175: set_base, set_derived simplified [counter leaks fixed]
12176:
12177: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
12178: src/types/types.dsp: incorporated status class patch From:
12179: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
12180: 2003 8:14 AM
12181:
12182: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
12183: Win32 specific: QuotaPeakNonPagedPoolUsage
12184: QuotaPeakPagedPoolUsage PeakPagefileUsage]
12185:
12186: 2003-03-12 paf
12187:
1.101 moko 12188: * configure, configure.in, src/lib/ltdl/configure,
12189: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 12190: lib/ltdl/Makefile now created by /configure.in only [were by
12191: lib/ltdl/configure.in OVERWRITE]
12192:
1.101 moko 12193: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
12194: linkage fixed for g++ 3.2.2
1.95 moko 12195:
12196: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
12197: on using privately declared class [fixed]
12198:
12199: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
12200: 3.2 rightliy complained on using privately declared class [fixed]
12201:
12202: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
12203: sigpipe before request constructor now causes death
12204:
12205: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
12206: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
12207: not cause exception in exception handler
12208:
1.101 moko 12209: * configure, configure.in, src/targets/cgi/Makefile.am: configure
12210: now default links libstdc++ statically. that can be overriden by
12211: --with-dynamic-stdcpp
1.95 moko 12212:
12213: 2003-03-11 paf
12214:
12215: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
12216: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
12217: necessity of libstdc++
12218:
12219: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
12220:
12221: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
12222:
12223: 2003-03-08 paf
12224:
12225: * tests/Makefile: make install & co
12226:
12227: * src/: include/pa_request.h, classes/op.C: removing
12228: vclass,object.h -> pa_request.h dependency
12229:
12230: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
12231: main/pa_request.C: removing vform,response,cookie.h ->
12232: pa_request.h dependency
12233:
12234: * src/include/pa_request.h: removing vmail.h -> pa_request.h
12235: dependency [testing...]
12236:
12237: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
12238: return 0; fixed
12239:
12240: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
12241: types/pa_vmail.h: vmail.C received just compiled [not tested]
12242:
12243: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
12244:
12245: * src/main/pa_request.C: forgotten: ifdef XML
12246:
12247: * src/main/pa_request.C: forgotten: ifdef XML
12248:
12249: * src/targets/cgi/parser3.C: todo: move to latest xml version on
12250: win32 and run memleak tests again
12251:
12252: * src/targets/cgi/parser3.C: charsets: see some strange things with
12253: old xml lib-- it's internal memory handling has faults
12254:
12255: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
12256: problems when transcode from charset A to A.
12257:
12258: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
12259: todo: still problems when transcode from charset A to A.
12260:
12261: * src/: classes/hash.C, classes/mail.C, classes/string.C,
12262: classes/table.C, include/pa_array.h,
12263: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
12264: started full-scale-site-test [~ http://parser.ru sources]
12265:
12266: some fixes
12267:
12268: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
12269: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
12270: 117.html, 118.html, 119.html, 120.html, results/109.processed,
12271: results/110.processed, results/111.processed,
12272: results/112.processed, results/113.processed,
12273: results/114.processed, results/115.processed,
12274: results/116.processed, results/117.processed,
12275: results/118.processed, results/119.processed,
12276: results/120.processed: xml: tests 109 dom create/show 110 xpath
12277: selectSingle 111 xdoc.create from tainted & 112
12278: xdoc.create/output with russian attr value 113 xpath
12279: selectString/Number 114 dom attributes.count 115 xpath selectBool
12280: 116 output media-type change 117 transform by dom stylesheet 118
12281: empty transform result 119 dom setAttribute 120 nbsp letter
12282: output
12283:
12284: =END OF PREPARED XML TESTS=
12285:
12286: 2003-03-07 paf
12287:
12288: * src/classes/xdoc.C, src/include/pa_charset.h,
12289: src/include/pa_stylesheet_connection.h, tests/108.html,
12290: tests/108.xsl, tests/results/108.processed: xml: test 108
12291: transform with params [bugs fixed]
12292:
12293: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
12294: from copy/paste bug
12295:
12296: * src/classes/xdoc.C, src/include/pa_charset.h,
12297: src/include/pa_request.h, src/main/execute.C,
12298: src/main/pa_charset.C, src/main/pa_exception.C,
12299: src/main/pa_globals.C, src/main/pa_request.C,
12300: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12301: src/types/pa_vxnode.C, tests/107.html,
12302: tests/results/107.processed: xml: test: 107 bug fixes
12303:
12304: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12305: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12306: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
12307:
12308: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
12309: string
12310:
12311: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
12312: mem alloc functions used for different cases [libxml, libxsl]
12313:
12314: * src/classes/classes.C: fixed: prevent system classes from
12315: modification to lock ALL the classes, not only directly used
12316:
12317: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
12318: linked
12319:
12320: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
12321:
12322: 2003-03-06 paf
12323:
12324: * src/classes/xdoc.C: xdoc.C 50%
12325:
12326: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
12327: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
12328: main/pa_globals.C, main/pa_request.C,
12329: main/pa_stylesheet_manager.C: xnode.C compiled
12330:
12331: * src/: include/pa_stylesheet_connection.h,
12332: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
12333: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
12334:
12335: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
12336: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
12337: xml: stylesheet&manager STARTED
12338:
12339: * src/: include/pa_globals.h, main/pa_charset.C,
12340: main/pa_exception.C, main/pa_globals.C: xml: exceptions
12341:
12342: * src/: include/pa_charset.h, include/pa_config_fixed.h,
12343: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
12344: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
12345: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
12346: charsets
12347:
12348: * tests/023.html: in some cases it rounded up badly. postponing
12349: solution of that problem, making more simple test
12350:
12351: * tests/: 058_paf2000.png, results/058.processed: .png added with
12352: -kb now
12353:
12354: * src/: include/pa_charset.h, include/pa_charsets.h,
12355: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
12356: moved to charsets.C
12357:
12358: 2003-03-05 paf
12359:
12360: * src/classes/string.C, src/include/pa_string.h,
12361: src/main/pa_string.C, tests/105.html,
12362: tests/results/105.processed: String::match bug fixed
12363:
12364: * src/classes/op.C, src/main/main.dsp, tests/104.html,
12365: tests/results/104.processed: ^bpt operator added [does int3 in
12366: debug build on win32]
12367:
12368: * tests/: 057.html, results/057.processed: test bug fixed
12369:
1.101 moko 12370: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 12371:
12372: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
12373: missing
12374:
1.101 moko 12375: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
12376: forgotten files added to Makes
1.95 moko 12377:
12378: * ltmain.sh: ltmain.sh added
12379:
12380: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
12381: change undone ;(
12382:
12383: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
12384: made static
12385:
12386: * src/: classes/math.C, classes/op.C, classes/string.C,
1.101 moko 12387: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
12388: todo:make linker happy
1.95 moko 12389:
12390: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
12391: env param made optional
12392:
12393: 2003-03-04 paf
12394:
12395: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
12396: types/pa_vimage.h: number of gcc compiler bugs fixed
12397:
12398: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
12399: results/103.processed: tests: 103 image.copy transparence test
12400:
12401: * src/main/execute.C, tests/101.html, tests/102.html,
12402: tests/results/101.processed, tests/results/102.processed: tests:
12403: 101 method/variable name conflict test 102 form fields change
12404: should not not change anything [bug fix]
12405:
12406: * tests/: 057.html, 099.html, 100.html, results/057.processed,
12407: results/099.processed, results/100.processed: tests: 57 date
12408: create 2002: added 99,100 response:body/download
12409:
12410: * src/classes/image.C, tests/098.html, tests/098font.gif,
12411: tests/results/098.processed: test: 98 image font text [bug fixed]
12412:
12413: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
12414: tests/results/097.processed: test: 97 file::load http:// [bugs
12415: fixed]
12416:
12417: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
12418: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
12419: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
12420: image EXIF [bug fixed]
12421:
12422: * src/classes/table.C, src/main/execute.C, tests/061.dat,
12423: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
12424: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
12425: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
12426: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
12427: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
12428: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
12429: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
12430: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
12431: tests/094.html, tests/095.html, tests/results/061.processed,
12432: tests/results/062.processed, tests/results/063.processed,
12433: tests/results/064.processed, tests/results/065.processed,
12434: tests/results/066.processed, tests/results/067.processed,
12435: tests/results/068.processed, tests/results/069.processed,
12436: tests/results/070.processed, tests/results/071.processed,
12437: tests/results/072.processed, tests/results/073.processed,
12438: tests/results/074.processed, tests/results/075.processed,
12439: tests/results/076.processed, tests/results/077.processed,
12440: tests/results/078.processed, tests/results/080.processed,
12441: tests/results/081.processed, tests/results/082.processed,
12442: tests/results/083.processed, tests/results/084.processed,
12443: tests/results/085.processed, tests/results/086.processed,
12444: tests/results/087.processed, tests/results/088.processed,
12445: tests/results/089.processed, tests/results/090.processed,
12446: tests/results/091.processed, tests/results/092.processed,
12447: tests/results/093.processed, tests/results/094.processed,
12448: tests/results/095.processed, tests/079.html,
12449: tests/results/079.processed: tests: 61 file::stat size 62
12450: string->int autoconvert 63 double .int,dec,div,mul 64 date
12451: compare 65 file: basename,justname,justext 66 math:crypt 67
12452: string.match simple on long 68 string.match normalized simple on
12453: long 69 string.int 70 file::stat content-type 71 table.join 72
12454: hash parameter conditional pass 73 date daylightsaving,yearday 74
12455: date arithmetics 75 response date values/attributes 76 string.pos
12456: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
12457: with local 80 scientific numeric literal in string autoconvert 81
12458: xor: logical and numerical 82 for delims 83 menu delims 84
12459: table.hash distinct 85 long string replace 86 throw+catch
12460: current language preserve 87 bit shifts 88 junction tests +
12461: $caller test 89 hash.foreach selfmodification 90 int/void to int
12462: 91 $caller test 92 junction is + def junction tests 93 $caller
12463: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
12464:
12465: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
12466: fixed] 60 string eq string [bug fixed]
12467:
12468: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
12469: 058.html, 058_paf2000.png, 059.html, 060.html,
12470: results/053.processed, results/054.processed,
12471: results/055.processed, results/056.processed,
12472: results/057.processed, results/058.processed,
12473: results/059.processed, results/060.processed: test: 53
12474: string.replace 54 junctions 55 table.hash 56 call indirect 57
12475: date.create[string] 58 image.measure[png]
12476:
12477: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
12478: outputs/051.processed, results/052.processed: test: 52
12479: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
12480: task: fix that
12481:
12482: 2003-03-03 paf
12483:
12484: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
12485: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
12486: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
12487: outputs/049.processed, outputs/050.processed,
12488: outputs/051.processed, results/001.processed,
12489: results/002.processed, results/003.processed,
12490: results/005.processed, results/006.processed,
12491: results/008.processed, results/009.processed,
12492: results/011.processed, results/012.processed,
12493: results/013.processed, results/014.processed,
12494: results/015.processed, results/016.processed,
12495: results/017.processed, results/020.processed,
12496: results/021.processed, results/022.processed,
12497: results/024.processed, results/025.processed,
12498: results/026.processed, results/027.processed,
12499: results/028.processed, results/029.processed,
12500: results/030.processed, results/031.processed,
12501: results/049.processed, results/050.processed,
12502: results/051.processed, results/043.processed,
12503: results/044.processed, results/045.processed,
12504: results/046.processed, results/047.processed,
12505: results/048.processed: tests: 43,44,45 date rolls 46
12506: autoevaluating junction 47 table.select 48 name with subvar 49
12507: hash-creating switch 50 process 51 started parent/child, works as
12508: it were but it were NOT GOOD, created separate task to fix that
12509:
12510: * tests/: 042.html, results/042.processed: test: 42
12511: exception.handled
12512:
12513: * tests/: 041.html, results/041.processed: test: 41 table.locate by
12514: expression
12515:
12516: * tests/: 040.html, results/040.processed: test: 39 method result
12517: of type table 40 method param junction auto evaluate
12518:
12519: * tests/: 039.html, results/039.processed: test: 37 method result
12520: of type table
12521:
12522: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
12523: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
12524: tests/038.html, tests/results/033.processed,
12525: tests/results/034.processed, tests/results/035.processed,
12526: tests/results/036.processed, tests/results/037.processed,
12527: tests/results/038.processed: tests: 33 string.replace 34
12528: string.upper 35 table created 36 local/global vars with juntions
12529: 37 table clone 38 math PI & number formatting
12530:
12531: math class registring typo fixed
12532:
12533: * src/classes/op.C, src/include/pa_request.h,
12534: src/include/pa_string.h, src/main/execute.C,
12535: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
12536: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
12537: tests/032.html, tests/results/032.processed: uchar changed to
12538: String_UL in all places [was not everywhere] untaint test: 032
12539:
12540: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
12541: tests/results/004.processed, tests/parser-cygwin.sh,
12542: tests/parser-unix.sh: removed -H command line key, now testing
12543: using .sh file with SERVER_SOFTWARE=xxx
12544:
12545: 2003-02-26 paf
12546:
12547: * src/main/execute.C, src/types/pa_vstateless_class.h,
12548: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
12549: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
12550: tests/results/024.processed, tests/results/025.processed,
12551: tests/results/026.processed, tests/results/027.processed,
12552: tests/results/028.processed, tests/results/029.processed,
12553: tests/results/030.processed, tests/results/031.processed: fixed
12554: bug with name_cstr mutable CharPtr more tests
12555:
12556: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
12557: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
12558: << abort. die now just exits
12559:
12560: * src/classes/classes.awk, src/classes/classes.h,
12561: src/classes/date.C, src/classes/double.C, src/classes/file.C,
12562: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
12563: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
12564: src/classes/op.C, src/classes/response.C, src/classes/string.C,
12565: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
12566: src/classes/xnode.C, src/include/pa_memory.h,
12567: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
12568: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
12569: src/types/pa_vform.C, tests/015.html, tests/016.html,
12570: tests/017.html, tests/018.html, tests/019.html,
12571: tests/019paf2001.gif, tests/020.html, tests/021.html,
12572: tests/022.html, tests/023.html, tests/022_dir/a.html,
12573: tests/022_dir/b.txt, tests/022_dir/c.htm,
12574: tests/results/015.processed, tests/results/016.processed,
12575: tests/results/017.processed, tests/results/018.processed,
12576: tests/results/019.processed, tests/results/020.processed,
12577: tests/results/021.processed, tests/results/022.processed,
12578: tests/results/023.processed: methoded_array now contains all Mxxx
12579: classes SAPI::get_env now returns info on pool more tests
12580:
12581: * src/include/pa_array.h, src/include/pa_hash.h,
12582: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
12583: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
12584: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
12585: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
12586: tests/014.html, tests/Makefile, tests/outputs/create-dir,
12587: tests/results/001.processed, tests/results/002.processed,
12588: tests/results/003.processed, tests/results/004.processed,
12589: tests/results/005.processed, tests/results/006.processed,
12590: tests/results/007.processed, tests/results/008.processed,
12591: tests/results/009.processed, tests/results/010.processed,
12592: tests/results/011.processed, tests/results/012.processed,
12593: tests/results/013.processed, tests/results/014.processed: hash
12594: cloning fixed
12595:
12596: 2003-02-25 paf
12597:
12598: * src/main/pa_common.C: typo fixed
12599:
12600: 2003-02-24 paf
12601:
12602: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
12603: [one remained]
12604:
12605: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
12606: [should have been get_string(&pool)] todo: check other such calls
12607:
12608: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
12609: test10, bad lookups
12610:
12611: xxx* xxx=smartptr.get(); << is bad style, after ";" original
12612: object got destructed, and xxx points to sky
12613:
12614: * ChangeLog, src/classes/string.C: match bug fixed
12615:
12616: * src/types/pa_vmail.C: body [text/html] transcoded to
12617: $.charset[specified] now
12618:
12619: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
12620: which failed to handle sigsetjmp+throw: crashed inside of
12621: pre-throw code. rewritten simplier [though duplicating
12622: closesocket code]
12623:
12624: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
12625: which failed to handle sigsetjmp+throw: crashed inside of
12626: pre-throw code. rewritten simplier [though duplicating
12627: closesocket code]
12628:
12629: 2003-02-21 paf
12630:
12631: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
12632: $cookie:name[$.expires[date << can be now]]
12633:
12634: written makefile with regression tests [raw]
12635:
12636: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
12637: tests' only [it's not forcing CGI mode now] now use -H to output
12638: CGI header when parser used in command line [useful for tests
12639: also]
12640:
12641: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
12642: switches on CGI mode, and is used in regression tests
12643:
12644: * src/: include/pa_request.h, main/pa_request.C,
12645: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
12646: fixed
12647:
12648: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
12649: handling pa_*
12650:
12651: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
12652: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
12653: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
12654: memory handling files
12655:
12656: * src/main/pa_array.C: pool::format_integer terminator fixed
12657:
12658: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
12659: compiles OK test to show benefits of free
12660:
12661: * src/: classes/file.C, classes/image.C, classes/mail.C,
12662: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
12663: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
12664: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
12665: use pool [as the one in ^process]
12666:
12667: * src/classes/op.C: fixed process. sould now check for all cstr's
12668: -- some must use pool [as the one in ^process]
12669:
12670: 2003-02-20 paf
12671:
12672: * src/: classes/date.C, classes/double.C, classes/file.C,
12673: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
12674: classes/math.C, classes/op.C, classes/response.C,
12675: classes/string.C, classes/table.C, classes/void.C,
12676: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
12677: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
12678: string cmp fixed
12679:
12680: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
12681: values passed OK now
12682:
12683: 2003-02-19 paf
12684:
12685: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
12686: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
12687: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
12688: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
12689: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
12690: all remaning leaks resulted from pooled::malloc calls [excluding
12691: in gd -- planning complete rewrite extremely ugly code]
12692:
12693: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
12694: files
12695:
12696: 2003-02-17 paf
12697:
12698: * src/: classes/date.C, classes/double.C, classes/file.C,
12699: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
12700: classes/response.C, classes/string.C, classes/table.C,
12701: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
12702: include/pa_stylesheet_connection.h,
12703: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
12704: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
12705: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
12706: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
12707: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
12708: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
12709: of unitialized simple-typed field
12710:
12711: * src/: classes/classes.C, classes/classes.h, main/execute.C,
12712: main/pa_charset.C, main/pa_request.C: another bug of unitialized
12713: simple-typed field fixed. todo: find&kill all like that one
12714:
12715: * src/: main/execute.C, targets/cgi/pa_pool.C,
12716: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
12717: debug output fixed
12718:
12719: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
12720: main/pa_request.C: stack-stored items need extra .ref to prevent
12721: object_ptr from delete[them]
12722:
12723: * src/: classes/date.C, classes/op.C, classes/table.C,
12724: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
12725: include/pa_charset.h, main/Makefile.am, main/main.dsp,
12726: main/pa_charset.C, main/pa_common.C,
12727: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
12728: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
12729: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
12730: calls
12731:
12732: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
12733: couple mem leaks rusulted from old pooled::malloc usage.
12734: todo:find more like those
12735:
12736: * src/main/: compile.C, compile_tools.C: 2*2!
12737:
12738: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
12739: stackItem fixed [there were no string on stack before]
12740:
12741: * src/: main/execute.C, main/pa_request.C,
12742: types/pa_vmethod_frame.C: first letters out OK
12743:
12744: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
12745: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
12746: main/pa_string.C, main/untaint.C, types/pa_value.h,
12747: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
12748: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
12749: type not initialized with zeros :( while class fields of class
12750: types initialized with default constructors. learn C++
12751:
12752: * src/: classes/classes.awk, classes/double.C, classes/file.C,
12753: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
12754: classes/math.C, classes/xdoc.C, classes/xnode.C,
12755: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
12756: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
12757:
12758: 2003-02-14 paf
12759:
12760: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
12761: 13 link errors
12762:
12763: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
12764: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
12765: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
12766: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
12767: errors :)
12768:
12769: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
12770: classes/hash.C, classes/mail.C, classes/op.C,
12771: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
12772: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
12773: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
12774: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
12775:
12776: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
12777: classes/table.C, include/pa_common.h, include/pa_globals.h,
12778: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
12779: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
12780: types/pa_vint.h, types/types.dsp: op compiled
12781:
12782: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
12783: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
12784: main/untaint.C, types/pa_vtable.h: string, response compiled
12785:
12786: 2003-02-07 paf
12787:
12788: * src/: classes/table.C, types/pa_vtable.h: table compiled
12789:
12790: 2003-02-06 paf
12791:
12792: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
12793: mail compiled
12794:
12795: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
12796: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
12797: types/pa_vfile.h, types/pa_vimage.h: image compiled
12798:
12799: * src/classes/: file.C, form.C: form compiled
12800:
12801: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
12802: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
12803: types/pa_vfile.C, types/pa_vfile.h: file compiled
12804:
12805: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
12806: types/pa_vmath.h: math compiled [win32]
12807:
12808: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
12809: types/pa_vstring.h: hash compiled
12810:
12811: 2003-02-04 paf
12812:
12813: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
12814: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
12815: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
12816: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
12817: types/pa_vhash.h: hash 50% compiled
12818:
12819: * src/: classes/date.C, classes/file.C, classes/hash.C,
12820: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
12821: classes/string.C, classes/table.C, classes/xdoc.C,
12822: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
12823: main/pa_string.C: date compiled
12824:
12825: * src/classes/: classes.dsp, double.C: double compiled
12826:
12827: * src/: classes/date.C, classes/double.C, classes/file.C,
12828: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
12829: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
12830: classes/string.C, classes/table.C, classes/void.C,
12831: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
12832: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
12833: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
12834: compiled
12835:
12836: * src/: classes/date.C, classes/double.C, classes/file.C,
12837: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
12838: classes/math.C, classes/op.C, classes/response.C,
12839: classes/string.C, classes/table.C, classes/void.C,
12840: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12841: types/pa_vvoid.h: void compiled :)
12842:
12843: * src/: include/pa_globals.h, main/pa_cache_managers.C,
12844: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12845: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
12846: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
12847: main/pa_string.C, main/pa_uue.C, main/untaint.C,
12848: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
12849: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
12850: types/pa_vresponse.C, types/pa_vstateless_class.C,
12851: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
12852: types/pa_wcontext.C, types/types.dsp: removed stupid
12853: value_includes.h
12854:
12855: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
12856: trying to remove stupid value_includes.h
12857:
12858: * src/main/pa_exec.C: pa_exec compiled on win32
12859:
12860: * src/main/pa_exec.C: libmain.a compiled on six [unix]
12861:
12862: * src/: include/pa_globals.h, include/pa_request.h,
12863: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
12864: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
12865: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
12866: types/pa_vrequest.C, types/pa_vstateless_class.C,
12867: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
12868:
12869: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
12870: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
12871: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
12872:
12873: * src/: include/pa_array.h, include/pa_config_includes.h,
12874: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
12875: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
12876: compiled
12877:
12878: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
12879: name conflicts)
12880:
12881: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
12882: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
12883: yelds "virtual memory exhausted" while trying to compile
12884: execute.C [eating up to 127MB]
12885:
12886: 2003-02-03 paf
12887:
12888: * src/: include/pa_config_includes.h, include/pa_hash.h,
12889: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
12890: main/pa_common.C, types/pa_value.C, types/pa_value.h,
12891: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
12892: types/pa_vint.h, types/pa_vjunction.h,
12893: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
12894: started gcc compiling pa_common compiled
12895:
12896: * src/: include/pa_exception.h, include/pa_pool.h,
12897: main/pa_exception.C: exception gcc change #1
12898:
1.101 moko 12899: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
12900: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 12901:
12902: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
12903:
12904: * src/types/pa_vtable.C: vtable compiled
12905:
12906: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
12907:
12908: * src/: include/pa_cache_managers.h, main/pa_request.C,
12909: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
12910:
12911: * src/types/pa_vstateless_class.C: vstateless_class compiled
12912:
12913: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
12914:
12915: * src/types/pa_vrequest.C: vrequest compiled
12916:
12917: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
12918: pa_vobject.C, pa_vobject.h: vobject compiled
12919:
12920: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
12921: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
12922: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
12923: compiled
12924:
12925: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
12926:
12927: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
12928: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
12929: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
12930: compiled
12931:
12932: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
12933: main.lib - 0 error(s), 0 warning(s)
12934:
12935: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
12936: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
12937:
12938: 2003-01-31 paf
12939:
12940: * src/: include/pa_array.h, include/pa_operation.h,
12941: include/pa_request.h, main/execute.C, main/main.dsp,
12942: types/pa_vjunction.h: started last file from main library:
12943: execute
12944:
12945: * src/: include/pa_request.h, include/pa_sapi.h,
12946: main/compile.tab.C, main/compile.y, main/compile_tools.h,
12947: main/pa_request.C, targets/cgi/parser3.C,
12948: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
12949: types/pa_vhash.h: pa_request compiled
12950:
12951: * src/: classes/op.C, classes/string.C, include/pa_common.h,
12952: include/pa_globals.h, include/pa_request.h,
12953: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
12954: main/execute.C, main/main.dsp, main/pa_common.C,
12955: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
12956: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
12957: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
12958: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
12959: types/types.dsp: most pa_request compiled
12960:
12961: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12962: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12963: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
12964: classes/op.C, classes/response.C, classes/string.C,
12965: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
12966: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
12967: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12968: include/pa_config_fixed.h, include/pa_config_includes.h,
12969: include/pa_dictionary.h, include/pa_dir.h,
12970: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12971: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
12972: include/pa_pool.h, include/pa_request.h,
12973: include/pa_request_charsets.h, include/pa_request_info.h,
12974: include/pa_sapi.h, include/pa_socks.h,
12975: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12976: include/pa_stack.h, include/pa_string.h,
12977: include/pa_stylesheet_connection.h,
12978: include/pa_stylesheet_manager.h, include/pa_table.h,
12979: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12980: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
12981: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
12982: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
12983: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
12984: main/compile.C, main/compile.tab.C, main/compile.y,
12985: main/compile_tools.C, main/compile_tools.h, main/execute.C,
12986: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
12987: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
12988: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
12989: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
12990: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
12991: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
12992: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
12993: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
12994: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
12995: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
12996: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12997: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
12998: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
12999: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
13000: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13001: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13002: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13003: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
13004: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
13005: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
13006: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13007: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13008: types/pa_vresponse.h, types/pa_vstateless_class.C,
13009: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13010: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13011: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13012: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13013: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13014: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
13015:
13016: * ChangeLog, src/classes/classes.h, src/classes/op.C,
13017: src/include/pa_cache_managers.h, src/include/pa_charset.h,
13018: src/include/pa_charsets.h, src/include/pa_common.h,
13019: src/include/pa_dictionary.h, src/include/pa_exception.h,
13020: src/include/pa_exec.h, src/include/pa_pool.h,
13021: src/include/pa_request.h, src/include/pa_sapi.h,
13022: src/include/pa_sql_connection.h,
13023: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
13024: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
13025: src/main/compile.tab.C, src/main/compile_tools.C,
13026: src/main/compile_tools.h, src/main/main.dsp,
13027: src/main/pa_charset.C, src/main/pa_charsets.C,
13028: src/main/pa_common.C, src/main/pa_dictionary.C,
13029: src/main/pa_exception.C, src/main/pa_exec.C,
13030: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
13031: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
13032: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
13033: src/types/pa_vclass.h, src/types/pa_vcookie.C,
13034: src/types/pa_vcookie.h, src/types/pa_vdate.h,
13035: src/types/pa_vdouble.h, src/types/pa_venv.h,
13036: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
13037: src/types/pa_vhash.h, src/types/pa_vimage.C,
13038: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
13039: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
13040: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
13041: src/types/pa_vobject.C, src/types/pa_vobject.h,
13042: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
13043: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
13044: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
13045: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
13046: src/types/pa_vstring.h, src/types/pa_vtable.h,
13047: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
13048: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
13049: died, long live StringPtr
13050:
13051: 2003-01-30 paf
13052:
13053: * src/: include/pa_charset.h, include/pa_request.h,
13054: include/pa_sql_driver_manager.h, main/compile.tab.C,
13055: main/compile.y, main/compile_tools.h, main/pa_request.C,
13056: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
13057:
13058: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
13059: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
13060: types/pa_vhash.h, types/pa_vmethod_frame.h,
13061: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
13062: types/types.dsp: vstateless_class compiled
13063:
13064: * src/main/compile.C: compile compiled
13065:
13066: * src/: include/pa_array.h, include/pa_operation.h,
13067: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
13068: main/pa_table.C: compile_tools compiled
13069:
13070: * src/: include/pa_operation.h, main/compile.y,
13071: main/compile_tools.C, main/compile_tools.h: started
13072: compile_tools. vagues ideas of how to free compiled code
13073:
13074: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
13075: main/main.dsp, types/pa_value.C, types/pa_value.h,
13076: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
13077: compiled
13078:
13079: 2003-01-29 paf
13080:
13081: * src/: include/pa_globals.h, include/pa_request.h,
13082: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
13083: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
13084: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
13085: compiled
13086:
13087: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
13088: now
13089:
13090: * src/: include/pa_array.h, include/pa_exception.h,
13091: include/pa_pool.h, main/pa_exception.C: gd compiled
13092:
13093: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
13094: compiled
13095:
13096: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
13097: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
13098: types/pa_vfile.h: vfile compiled
13099:
13100: * src/: include/pa_common.h, include/pa_globals.h,
13101: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
13102: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
13103: types/pa_vform.C, types/pa_vform.h: vcookie compiled
13104:
13105: * src/: include/pa_exception.h, main/pa_cache_managers.C,
13106: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
13107: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
13108: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
13109: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
13110:
13111: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
13112: main/main.dsp, main/untaint.C: more compiled
13113:
13114: * src/: include/pa_charsets.h, include/pa_request.h,
13115: include/pa_request_info.h, include/pa_string.h,
13116: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
13117: types/pa_vresponse.h: vrequest compiled
13118:
13119: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
13120: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
13121: pa_vresponse.h, pa_wcontext.h: vrequest compiled
13122:
13123: * src/: classes/classes.h, include/pa_charset.h,
13124: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
13125: include/pa_request.h, include/pa_string.h, main/main.dsp,
13126: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
13127: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
13128: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
13129: types/pa_vrequest.C, types/pa_vrequest.h,
13130: types/pa_vstateless_class.h, types/pa_vstring.h,
13131: types/pa_vvoid.h: vrequest,vdouble,vint compiled
13132:
13133: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
13134: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
13135: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
13136: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
13137: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13138: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
13139: types/pa_vobject.h, types/pa_vstateless_class.h,
13140: types/pa_vstateless_object.h, types/pa_vstatus.h,
13141: types/pa_vstring.h, types/types.dsp: vmath compiled
13142:
13143: 2003-01-28 paf
13144:
13145: * src/: classes/classes.h, classes/date.C, classes/file.C,
13146: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
13147: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
13148: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
13149: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
13150: compile_tools
13151:
13152: * src/: include/pa_charset.h, include/pa_exception.h,
13153: include/pa_request.h, include/pa_string.h, main/untaint.C:
13154: untaint compiled
13155:
13156: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
13157: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
13158: more compiled. struck with string::store_to needing to know
13159: source/client charsets
13160:
13161: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
13162: types/pa_vfile.h: uue compiled
13163:
13164: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
13165: table compiled
13166:
13167: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
13168: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
13169:
13170: * src/: include/pa_charset.h, main/pa_charset.C,
13171: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
13172: introduced]
13173:
13174: * src/: classes/date.C, include/pa_charset.h,
13175: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
13176: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
13177: pa_charsets compiled
13178:
13179: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
13180: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
13181:
13182: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
13183: common compiled
13184:
13185: * src/: include/pa_charsets.h, main/pa_charsets.C,
13186: main/pa_sql_driver_manager.C: pa_charsets compiled
13187:
13188: * src/: include/pa_array.h, include/pa_charset.h,
13189: include/pa_charsets.h, include/pa_pool.h,
13190: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13191: include/pa_stack.h, include/pa_string.h,
13192: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
13193: sql_driver_manager compiled
13194:
13195: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
13196: letter i with two dots added to koi, all ukranian letters added
13197: to win1251.
13198:
13199: typographic simbol 0xb9 deleted from win1251 [strange one & were
13200: abscent from koi]
13201:
13202: 2003-01-27 paf
13203:
13204: * src/: include/pa_exception.h, include/pa_sql_connection.h,
13205: include/pa_sql_driver_manager.h, include/pa_string.h,
13206: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
13207: sql/pa_sql_driver.h: paused on sql_manager
13208:
13209: * src/: include/pa_cache_managers.h, include/pa_pool.h,
13210: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13211: include/pa_stack.h, main/pa_sql_driver_manager.C,
13212: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
13213:
13214: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
13215: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13216: include/pa_table.h, main/pa_sql_driver_manager.C,
13217: main/pa_table.C: table compiled
13218:
13219: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
13220: cache_managers compiled
13221:
13222: * src/: include/pa_array.h, include/pa_charset.h,
13223: include/pa_pool.h, main/pa_charset.C: charset compiled
13224:
13225: * src/: include/pa_pool.h, main/pa_common.C: common compiled
13226:
13227: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
13228: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
13229: main/pa_string.C, types/pa_value.C, types/pa_value.h,
13230: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
13231: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
13232:
13233: 2003-01-24 paf
13234:
13235: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
13236: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
13237: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
13238: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
13239: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
13240: types/pa_vint.h, types/pa_vjunction.h,
13241: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13242: types/pa_vstatus.h, types/pa_vstring.h: more patched
13243:
13244: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
13245: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
13246: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
13247: main/pa_string.C, main/pa_table.C: string compiled
13248:
13249: * src/: include/pa_array.h, include/pa_common.h,
13250: include/pa_dictionary.h, include/pa_exception.h,
13251: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
13252: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
13253: main/pa_string.C: dictionary compiled
13254:
13255: 2003-01-23 paf
13256:
13257: * src/: include/pa_array.h, include/pa_common.h,
13258: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
13259: include/pa_request.h, include/pa_string.h, main/pa_common.C,
13260: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
13261: types/pa_value.h: resurrected pool in new sense: now it's
13262: factory, producing&accounting memory chunks for read[autofree]
13263: buffers
13264:
13265: * src/: include/pa_array.h, include/pa_exception.h,
13266: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
13267: main/pa_exception.C, main/pa_table.C: table compiled
13268:
13269: * src/: classes/image.C, classes/op.C, include/pa_array.h,
13270: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
13271: include/pa_pool.h, include/pa_pragma_pack_begin.h,
13272: include/pa_pragma_pack_end.h, include/pa_sapi.h,
13273: include/pa_string.h, include/pa_table.h, include/pa_types.h,
13274: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
13275: main/pa_table.C: aint that easy
13276:
13277: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
13278: main/main.dsp: continued with Hash
13279:
13280: * src/main/pa_common.C: connect_string allocated on heap[wes on
13281: stack] now. and exception can be reported OK now [can be reported
13282: outside of pro c with that stack]
13283:
13284: 2003-01-22 paf
13285:
13286: * src/: include/pa_array.h, include/pa_charset.h,
13287: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
13288: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
13289: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
13290: base: contains references_count. auto_ptr template calls
13291: add_ref/release
13292:
13293: 2003-01-21 paf
13294:
13295: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13296: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13297: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13298: classes/op.C, classes/response.C, classes/string.C,
13299: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
13300: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
13301: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13302: include/pa_config_fixed.h, include/pa_config_includes.h,
13303: include/pa_dictionary.h, include/pa_dir.h,
13304: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
13305: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
13306: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
13307: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
13308: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13309: include/pa_stack.h, include/pa_string.h,
13310: include/pa_stylesheet_connection.h,
13311: include/pa_stylesheet_manager.h, include/pa_table.h,
13312: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13313: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
13314: lib/pcre/pcre_parser_ctype.c, main/compile.C,
13315: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13316: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
13317: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
13318: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
13319: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
13320: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
13321: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
13322: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
13323: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
13324: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
13325: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
13326: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
13327: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
13328: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
13329: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
13330: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
13331: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13332: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
13333: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
13334: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
13335: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
13336: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
13337: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
13338: types/pa_vstateless_object.h, types/pa_vstatus.C,
13339: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
13340: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
13341: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
13342: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
13343: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
13344: 2002->2003
13345:
13346: 2003-01-16 paf
13347:
13348: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
13349: src/main/pa_globals.C: http:// introducing $.any-status(1)
13350:
13351: * operators.txt, src/include/pa_config_fixed.h,
13352: src/main/pa_common.C: http request now return status. and not
13353: fail on status!=200
13354:
13355: 2003-01-15 paf
13356:
13357: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
13358:
13359: 2003-01-14 paf
13360:
13361: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
13362: mkinstalldirs: removed some ancient files [they in / really]
13363:
13364: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
13365: regretfully needed patch in two places. in config_fixed.h made
13366: stubs for lib to compile in MSVC
13367:
13368: 2003-01-13 paf
13369:
13370: * config.guess, config.sub, ltmain.sh: removed last piece of
13371: configure.in(libtool) hacks
13372:
1.101 moko 13373: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 13374: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
13375: ltdl.h: moved to latest libtool (1.4.3)
13376:
13377: 2003-01-10 paf
13378:
13379: * src/lib/ltdl/: configure, configure.in: PROG_NM
13380:
13381: * src/main/pa_globals.C: moved to latest xml lib versions, changed
13382: patches. libxml2 >= 2.5.1
13383: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
13384: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
13385: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
13386:
13387: * INSTALL: moved to latest versions of xml libs libxml2 >=
13388: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
13389: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
13390: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
13391:
13392: 2003-01-09 paf
13393:
13394: * INSTALL: xml,xslt,gdome lib urls updated
13395:
13396: * config.guess, config.sub, missing, mkinstalldirs,
1.101 moko 13397: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 13398: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.101 moko 13399: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
13400: 1.7.2
1.95 moko 13401:
13402: * depcomp: moving to automake 1.7.2
13403:
13404: 2002-12-27 paf
13405:
13406: * src/include/pa_version.h: 0007
13407:
13408: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
13409: outdated parts, made links to language docs
13410:
13411: * src/include/pa_config_auto.h.in: comment
13412:
13413: 2002-12-26 paf
13414:
13415: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
13416: not contain trailing / fixed.
13417:
13418: * INSTALL: changing SAFE_MODE politics
13419:
13420: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
13421:
13422: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
13423:
13424: 2002-12-25 paf
13425:
13426: * src/main/pa_globals.C: optimized-xml
13427:
13428: * src/main/pa_globals.C: optimized-as-is
13429:
13430: 2002-12-24 paf
13431:
13432: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
13433: fixed [were really called with zero size when .html?a=&b=]
13434:
13435: * src/classes/mail.C: $MAIL in @conf now invalid when configured
13436: with --with-sendmail
13437:
13438: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
13439: fixed]
13440:
13441: 2002-12-23 paf
13442:
13443: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
13444: ignoring parameters & were storing only string with default
13445: expires
13446:
13447: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
13448: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
13449: December 23, 2002 4:22 AM Subject: bug â
13450: Charset::transcode_buf2xchar
13451:
13452: 2002-12-20 paf
13453:
13454: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
13455: non-cgi [script] runs
13456:
13457: 2002-12-19 paf
13458:
13459: * INSTALL: --without-iconv recommended [it crashes on some systems
13460: [tested on elik]] moreover, it's not needed there [parser
13461: registers charsets itself]
13462:
13463: * INSTALL: --without-iconv recommended [it crashes on some systems
13464: [tested on elik]]
13465:
13466: * operators.txt, src/include/pa_globals.h,
13467: src/include/pa_request.h, src/main/pa_globals.C,
13468: src/main/pa_request.C: $response:download
13469:
13470: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
13471: compiler [win32]].
13472:
13473: 2002-12-18 paf
13474:
13475: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
13476:
13477: 2002-12-17 paf
13478:
13479: * src/targets/cgi/parser3.C: merged die&iis changes
13480:
13481: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
13482: to exit(1) 2. more flexible iilegal call check
13483:
13484: 2002-12-16 paf
13485:
13486: * ltmain.sh: some automakes silly insist on having this handy
13487:
13488: * src/main/untaint.C: filespec russian small 'r' changed to latin
13489: 'p' bug fix
13490:
13491: 2002-12-15 paf
13492:
13493: * src/main/untaint.C: filespec russian small 'r' changed to latin
13494: 'p'
13495:
13496: * configure.in, src/include/pa_config_auto.h.in,
13497: src/main/compile.C, src/main/pa_common.C: merged small changes
13498: from branch 6 to HEAD
13499:
13500: * src/main/compile.C: removed warning
13501:
13502: * src/main/pa_common.C: ftruncate having checked
13503:
13504: * configure.in, src/include/pa_version.h: new version
13505:
13506: 2002-12-14 paf
13507:
13508: * src/classes/table.C: removed unnecessary code
13509:
13510: * src/sql/pa_sql_driver.h: exception type fixed
13511:
13512: 2002-12-09 paf
13513:
13514: * src/types/pa_vvoid.h: $void.store[now] error
13515:
13516: * src/targets/cgi/parser3.C: ::die now tries to write core dump
13517:
13518: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
13519: tries to write core dump
13520:
13521: * src/targets/cgi/parser3.C: ::die now tries to write core dump
13522:
13523: * src/: classes/hash.C, classes/string.C, classes/table.C,
13524: classes/void.C, main/pa_sql_driver_manager.C,
13525: sql/pa_sql_driver.h: changed exception handling mech in sql
13526: handlers #2
13527:
13528: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
13529: exception handling mech in sql handlers
13530:
13531: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
13532: handlers
13533:
13534: * src/: classes/hash.C, classes/string.C, classes/table.C,
13535: classes/void.C, main/pa_sql_driver_manager.C,
13536: sql/pa_sql_driver.h: changed exception handling mech in sql
13537: handlers
13538:
1.101 moko 13539: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
13540: to write makefile which used libtool to install things, which is
13541: not needed
1.95 moko 13542:
13543: 2002-12-06 paf
13544:
13545: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
13546: $hash.fields -- pseudo field to make 'hash' more like 'table'
13547:
13548: 2002-12-05 paf
13549:
13550: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
13551: cc/bcc OK now
13552:
13553: * src/main/untaint.C: mail header closed properly
13554:
13555: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
13556: header ',' allowed. still bugs in smtp [only one receiptient
13557: works, cc, bcc ignored now, and MAILED ;)]
13558:
13559: [strncpy killed, memnchr used]
13560:
13561: * src/main/pa_table.C: table-copy now current=0
13562:
13563: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
13564: lowlevel proc
13565:
13566: * src/targets/cgi/parser3.C: more checks on
13567: http://domain/parser.cgi start [maybe some getenv returns "",
13568: checked that now
13569:
13570: * src/targets/cgi/parser3.C: more checks on
13571: http://domain/parser.cgi start [maybe some getenv returns "",
13572: checked that now
13573:
13574: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
13575: out-of-mem errors reached log]
13576:
13577: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
13578: mail:send MIME-Version default
13579:
13580: * src/main/main.dsp: pa_version included into main.dsp
13581:
13582: 2002-12-04 paf
13583:
13584: * src/types/pa_vform.C: $form:field string value cut by premature 0
13585:
13586: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
13587: lib/libltdl -> lib/ltdl Win32 changes. s
13588:
13589: * src/classes/classes.awk: more strict *.C$
13590:
13591: * gnu.dsp: restored
13592:
1.101 moko 13593: * configure.in, gnu.dsp, src/lib/Makefile.am,
13594: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
13595: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
13596: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
13597: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
13598: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
13599: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
13600: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
13601: now created with /configure, not ltdl/configure, so it does have
13602: no problems with automake. ltdl/configure
13603: AC_OUTPUT(Makefile<<removed)
1.95 moko 13604:
13605: 2002-12-02 paf
13606:
13607: * operators.txt: removed outdated status:db
13608:
13609: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
13610: src/main/pa_common.C, src/main/pa_request.C,
13611: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
13612: tainted parts becomes http-header
13613:
13614: 2002-11-29 paf
13615:
13616: * src/classes/date.C, src/classes/image.C, operators.txt: exif
13617: dates now objects of type date
13618:
13619: * src/classes/image.C: file.seek removed [it were used in image.C
13620: only, and for parser user this means that jpeg image has bad
13621: size in fragment's header] now used image.format
13622:
13623: * src/: include/pa_common.h, main/pa_common.C,
13624: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
13625: now handled exactly like $response:header values. e.g. can be
13626: hash [can have subattributes] & contain date values.
13627:
13628: * src/main/pa_common.C: http:// param values lang forced URI
13629:
13630: * src/main/pa_common.C: http:// tainted partes now %xx
13631:
13632: 2002-11-28 paf
13633:
13634: * operators.txt: http.timeout
13635:
13636: * src/classes/image.C: ^image.length now counts interchar space.
13637: plus space after last char
13638:
13639: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
13640:
13641: * src/classes/image.C: ^image.font width measurer now scans full
13642: height [were -1]
13643:
13644: * configure.in: stopped double libltdl/Makefile generation
13645:
13646: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
13647: chars [one top horizontal line of 1pixel height were missing]
13648:
13649: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
13650: 'false' to go into (Hash *) parameter
13651:
13652: 2002-11-27 paf
13653:
13654: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
13655: types/pa_vmail.C: response:body[file] if file nows it's name now
13656: returns content-disposition: >>attachment<<
13657:
13658: * src/classes/image.C: ^image.font << bad font file-size now
13659: properly reported
13660:
13661: 2002-11-26 paf
13662:
13663: * src/main/pa_request.C: fixed lang in reponse header
13664:
13665: * src/main/pa_common.C: utf8 prefix ignored @read text
13666:
13667: * operators.txt, src/main/pa_common.C: http:// response status!=200
13668: made exception: http.status with source=bad status#
13669:
13670: 2002-11-25 paf
13671:
13672: * configure.in, src/classes/image.C,
13673: src/include/pa_config_auto.h.in,
13674: src/include/pa_config_includes.h, src/main/Makefile.am,
1.101 moko 13675: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
13676: const void related probs fixed
1.95 moko 13677:
13678: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
13679:
13680: $file[^file::load[http://there]] $file.SERVER
13681:
13682: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
13683: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
13684: http options [invalid onces now reported] made default
13685: user-agent: paf
13686:
13687: * operators.txt, src/classes/file.C, src/classes/table.C,
13688: src/classes/xdoc.C, src/include/pa_common.h,
13689: src/include/pa_globals.h, src/main/pa_common.C,
13690: src/main/pa_globals.C, src/main/pa_request.C,
13691: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
13692: now understand http:// prefix and additional params, sample:
13693: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
13694: $.USER-AGENT[parser3] ]]
13695:
13696: 2002-11-22 paf
13697:
13698: * src/classes/image.C, src/include/pa_globals.h,
13699: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
13700: src/types/pa_vimage.h, operators.txt: $image.exif support
13701: $image.exif.DateTime & co
13702:
13703: 2002-11-21 paf
13704:
13705: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
13706: _PASS_APPENDED)
13707:
13708: * src/classes/image.C: jpeg size measure fixed: were badly skipping
13709: EXIF information [were big block and it's size were considered
13710: negative :(]
13711:
13712: * operators.txt, src/classes/image.C, src/include/pa_common.h,
13713: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
13714: internals rewritten. no there's reader.seek, and all's ready for
13715: EXIF extraction [now we fail to measure files with EXIF info]
13716:
13717: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
13718: O_TRUNC truncates even exclusevely write-locked file [thanks to
13719: Igor Milyakov <virtan@rotabanner.com> for discovering]
13720:
13721: 2002-11-20 paf
13722:
13723: * src/targets/cgi/parser3.C: logging @signal += query_string
13724:
13725: * configure.in, src/include/pa_config_auto.h.in,
13726: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
13727: comment
13728:
13729: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
13730:
13731: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
13732: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
13733: currently processed document SIGPIPE >> interrupts request
13734: processing [exception = DB rollback]
13735:
13736: * src/main/pa_exec.C: comment
13737:
13738: * src/main/pa_exec.C: pa_exec: data written only if size>0
13739:
13740: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
13741: << disable HTTP-POST repassing
13742:
13743: * src/: include/pa_config_fixed.h, main/pa_common.C,
13744: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
13745: pipe read errors now checked
13746:
13747: 2002-11-19 paf
13748:
13749: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
13750: CGI: Illegal call
13751:
13752: 2002-11-01 paf
13753:
13754: * src/main/execute.C: comment
13755:
13756: 2002-10-31 paf
13757:
13758: * src/main/execute.C: found out why, checked that for now. todo:
13759: find out a way for that user could do that
13760:
13761: * src/types/pa_vstateless_object.h: object put replaces static
13762: parent if any
13763:
13764: * src/types/pa_vobject.C: object put replaces static parent if any
13765:
13766: * src/: classes/form.C, classes/mail.C, classes/op.C,
13767: classes/xnode.h, main/compile.tab.C, main/execute.C,
13768: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
13769: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
13770: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
13771: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13772: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
13773: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
13774: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
13775: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
13776: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
13777: types/pa_vstateless_object.h, types/pa_vstatus.C,
13778: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
13779: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
13780: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
13781: types/pa_wwrapper.h: static fix merged
13782:
13783: * src/: main/compile.tab.C, types/pa_vobject.C: killed
13784: $virtual_fields in dynamic, but one can reach derived
13785: static[class] variable from base
13786:
13787: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
13788: types/pa_vobject.C, types/pa_vobject.h,
13789: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
13790: statics, left $virtual_fields in dynamic
13791:
13792: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
13793: one can't remember derivates in base class: there's so many of
13794: them. also there can be no virtual method calls in static
13795: classes
13796:
13797: * src/: classes/form.C, classes/mail.C, classes/op.C,
13798: classes/xnode.h, main/execute.C, main/pa_request.C,
13799: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
13800: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
13801: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
13802: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13803: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
13804: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
13805: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
13806: types/pa_vresponse.C, types/pa_vresponse.h,
13807: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
13808: types/pa_vstateless_object.h, types/pa_vstatus.C,
13809: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
13810: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
13811: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
13812: types/pa_wwrapper.h: static call $self fixed
13813:
13814: * src/main/execute.C: comment
13815:
13816: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
13817: ^process[$caller.self]{...} now compiles to last derived object
13818: part of that 'self'
13819:
13820: 2002-10-29 paf
13821:
13822: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
13823: re-passing [iis to blame]
13824:
13825: * src/classes/string.C: changed string.save to pass current sql
13826: connection to cstr thus one can ^connect[some server]{
13827: $s[insert into table x (x) values (^taint[sql]{value})]
13828: ^s.save[some.sql] } and he'd get in some.sql file code with
13829: properly escaped. [tried in mssql->mysql export->import of
13830: binary data]
13831:
13832: 2002-10-25 paf
13833:
13834: * src/types/pa_vresponse.C: case insensitive response user fields
13835: get/put
13836:
13837: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
13838: types/pa_vresponse.C: saving for maybe-future
13839:
13840: 2002-10-23 paf
13841:
13842: * operators.txt, src/classes/table.C: ^table.hash{code}...
13843: ^table.hash(expr)...
13844:
13845: * src/types/pa_vmail.C: email whitespace trimBoth-ed
13846:
13847: 2002-10-22 paf
13848:
13849: * src/types/: pa_vform.C, pa_vform.h: removed needless
13850: VForm::Append...(...Value)
13851:
13852: * src/main/execute.C: $.name outside of $name[...] checked
13853:
13854: * src/main/: compile.tab.C, compile.y: lexer changed to fix
13855: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
13856:
13857: 2002-10-21 paf
13858:
13859: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
13860: $form:qtail $form:imap.x/y
13861:
13862: * operators.txt, src/types/pa_vform.C: $form:nameless =
13863: "?value&...", "...&value&...", "...&value"
13864:
13865: * operators.txt, src/types/pa_vform.C: $form:image-map
13866:
13867: * operators.txt, src/classes/file.C: /some/page.html:
13868: ^file:fullpath[a.gif] => /some/a.gif
13869:
13870: 2002-10-17 paf
13871:
13872: * src/main/: compile.tab.C, compile.y: operators precedence changed
13873: a little: logical not and bitwise negation precedence made
13874: highest, << and >> bitshits precedence made equal [were << higher
13875: than >>]
13876:
13877: * src/classes/op.C: exception handling fixed [were bad with
13878: contexts]
13879:
13880: 2002-10-16 paf
13881:
13882: * src/: classes/op.C, include/pa_request.h, main/execute.C,
13883: main/pa_request.C: Request::self considered equal to
13884: VMethodFrame::self, and removed, Request::get_self() mapped to
13885: VMethodFrame.self()
13886:
13887: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
13888: $hash in open field now gives old good error meesage
13889:
13890: 2002-10-15 paf
13891:
13892: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
13893: use ^if($junction is junction){was and now true}
13894:
13895: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
13896: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
13897: types/pa_vxnode.C: xml->parser strings now have origin, which
13898: points to place where value left xml library and came to parser:
13899: place of dom field extraction/call
13900:
13901: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
13902: main/compile.tab.C, main/compile.y, main/execute.C,
13903: types/pa_vmethod_frame.h: removed last pieces of old code
13904: allowing $junction.xxx at compile time
13905:
13906: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
13907: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
13908: objects also considered [were only classes]
13909:
13910: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
13911: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
13912: with CLASS self. [ (request&method_frame).self temporarily
13913: changed ]
13914:
13915: * src/classes/: hash.C, op.C: method_frame now always changed, with
13916: no exception to native calls. for&foreach changed to use
13917: method_frame.caller for their var's name context
13918:
13919: * src/: main/execute.C, targets/cgi/parser3.C,
13920: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
13921: compiling to system classes disabled
13922:
13923: * operators.txt, src/classes/op.C:
13924: ^process[$caller.CLASS]{code-string} added
13925:
13926: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
13927: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
13928: src/types/Makefile.am, src/types/pa_vjunction.C,
13929: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
13930: src/types/types.dsp: removed $junction.get $junction.set[]
13931: introducing $caller
13932:
13933: * src/types/pa_value.h: removed outdated comments. doxygen would
13934: find them lower by inheritance tree
13935:
13936: * src/types/pa_vjunction.C: ident
13937:
13938: 2002-10-14 paf
13939:
13940: * src/classes/op.C: process compiles to code's class class
13941:
13942: * src/: classes/form.C, classes/mail.C, classes/op.C,
13943: include/pa_request.h, main/compile.C, main/compile.tab.C,
13944: main/compile.y, main/execute.C, main/pa_request.C,
13945: types/pa_vstateless_class.h: operators now main-class-methods
13946:
13947: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
13948: better stack trace [has "call" & co there]
13949:
13950: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
13951: operators @auto now executed in MAIN context
13952:
13953: * src/main/execute.C: operator execution context now = MAIN, not
13954: closest stack frame
13955:
13956: @touchit[] $i[after]
13957:
13958: ----t.html $i[before] << local ^touchit[] $i << now 'before',
13959: were 'after'
13960:
13961: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
13962: 'after'
13963:
13964: * src/main/execute.C: comment
13965:
13966: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
13967: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
13968: action]
13969:
13970: * src/types/pa_vxnode.C: misreplace fixed
13971:
13972: * configure, configure.in, src/include/pa_config_auto.h.in,
13973: src/types/pa_vstatus.C, operators.txt:
13974: $status:rusage.tv_secs/usecs introduced
13975:
13976: 2002-10-09 paf
13977:
13978: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
13979: on empty string [or uses (default)]
13980:
13981: 2002-10-08 paf
13982:
13983: * src/main/untaint.C: mail header quoted printable changed after
13984: RFC reread
13985:
13986: * operators.txt: plan on ^if(method
13987:
13988: * src/types/pa_vxnode.C: misreplace
13989:
13990: 2002-09-24 paf
13991:
1.101 moko 13992: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 13993:
13994: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
13995: mailreceive would compile on freebsd now
13996:
13997: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
13998: configure, configure.in, src/include/pa_config_auto.h.in,
1.101 moko 13999: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
14000: mailreceive would compile on freebsd now
1.95 moko 14001:
14002: * src/: classes/file.C, main/untaint.C: 1. file spec language
14003: changed: now there are only few chars are untainted: * ? ' " < >
14004: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
14005: one should use ^untaint[uri]{...} now]
14006:
14007: 2. $list[^file:list[dir]] now returns simply tainted names in
14008: $list.name, not tainted as filespec
14009:
14010: @russianindex[] #dir with files with russian-lang names
14011: $where[dir]
14012:
14013: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
14014: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
14015:
14016: 2002-09-23 paf
14017:
14018: * src/types/pa_vdouble.h: double->int round added
14019:
14020: * src/classes/date.C: date bug fix, now
14021: round(floatDays*secondsPerDay)
14022:
14023: * src/classes/date.C: date bug fix, now
14024: round(floatDays*secondsPerDay)
14025:
14026: 2002-09-20 paf
14027:
14028: * src/main/execute.C: code junction calls disabled [before: code
14029: was compiled in such a way, that there were no code-junctions in
14030: OP_CALL]
14031:
14032: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
14033:
14034: @badjunctioncallinside[code] ^code[]
14035:
14036: * src/main/: compile.tab.C, compile.y: changed grammer on junction
14037: expanding to include ^junction.method
14038:
14039: * src/main/pa_common.C: -d "DIR/" now true
14040:
14041: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
14042: as internal xdoc encoding, and after decoding attributes set by
14043: dom functions now encoded OK, not as digital entities
14044:
14045: * src/classes/xdoc.C: empty transform result, being taken as file
14046: now returns empty file, not raises stupid error about "stat-ed
14047: file"
14048:
14049: * src/types/pa_vhash.h: hash.foreach modification of existing keys
14050: allowed
14051:
14052: * src/types/types.dsp: introducing $junction.get/put(1) one can
14053: write iterators now:
14054:
14055: ^user-foreach[key;value]{$key=$value<br>}
14056:
14057: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
14058: $code.value($i*2) $code }
14059:
14060: * src/main/compile_tools.h: mistype
14061:
1.101 moko 14062: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
14063: thus taking linking options configure changes into account [were:
14064: ignoring]
1.95 moko 14065:
14066: * src/types/: pa_vjunction.C, Makefile.am: introducing
14067: $junction.get/put(1) one can write iterators now:
14068:
14069: ^user-foreach[key;value]{$key=$value<br>}
14070:
14071: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
14072: $code.value($i*2) $code }
14073:
14074: * src/: include/pa_opcode.h, include/pa_request.h,
14075: main/compile.tab.C, main/compile.y, main/execute.C,
14076: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
14077: introducing $junction.get/put(1) one can write iterators now:
14078:
14079: ^user-foreach[key;value]{$key=$value<br>}
14080:
14081: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
14082: $code.value($i*2) $code }
14083:
14084: 2002-09-19 paf
14085:
1.101 moko 14086: * Makefile.am: new: make commit
1.95 moko 14087:
14088: * aclocal.m4: forced to be older
14089:
14090: 2002-09-18 paf
14091:
14092: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
14093: src/main/compile.y, src/main/execute.C: << >> int shifts
14094:
14095: * src/: include/pa_common.h, include/pa_request.h,
14096: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
14097: - now this - fatal error
14098:
14099: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
14100: that one can pass binary data there
14101:
14102: * src/: classes/date.C, classes/double.C, classes/file.C,
14103: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14104: classes/op.C, classes/response.C, classes/string.C,
14105: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
14106: include/pa_request.h: pa_request contexts made privated, plus
14107: get_{self/method_frame} to read. Request_context_saver used in
14108: ^try to save flang too. [were not saved]
14109:
14110: * src/types/pa_vresponse.C: header value chains joined before
14111: output, this should help $.subject[$var $var] from being
14112: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
14113:
14114: 2002-09-17 paf
14115:
14116: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
14117: removed changes, operators executed with calling self. lots of
14118: code with ^include code relies on defined/defining self variables
14119:
14120: $a[1] ^include[print_a.p] print_a.p: $a
14121:
14122: ^include[set_a.p] a=$a set_a.p: $a[1]
14123:
14124: * src/: classes/op.C, main/execute.C, main/pa_request.C,
14125: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
14126: types/pa_vstateless_class.h: operators now executed with MAIN
14127: self. it's for ^include sake, too strong a change
14128:
14129: * src/classes/op.C: made place for ^process to compile it's code to
14130: in case of no self
14131:
14132: * src/main/execute.C: found ancient param to Junction, removed.
14133: allowed passing self to native_code_operators [for ^process to
14134: work, she needs self]
14135:
14136: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
14137: types/pa_vstateless_class.h: found ancient param to Junction,
14138: removed. allowed passing self to native_code_operators [for
14139: ^process to work, she needs self]
14140:
14141: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
14142: types/pa_value.h, types/pa_vmethod_frame.h,
14143: types/pa_vstateless_class.h: allowed Request.self to be 0,
14144: checked that in VMethodFrame get/put and $self.
14145:
14146: * src/classes/: table.C, xdoc.C: table::sql options table::create
14147: copy options options checked, wrong option now fatal error
14148:
14149: * src/main/pa_string.C: string.replace fixed [were missing words on
14150: pieces boundaries]
14151:
14152: * bin/auto.p.dist.in: strange \n
14153:
14154: * configure, configure.in: .so now detected [can be .sl on hpux,
14155: .dll on cygwin, .so in other cases)
14156:
1.101 moko 14157: * configure, configure.in, bin/auto.p.dist.in: .so now detected
14158: [can be .sl on hpux, .dll on cygwin, .so in other cases)
1.95 moko 14159:
14160: * operators.txt, src/classes/hash.C, src/classes/table.C,
14161: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
14162: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
14163: record taken [were last]
14164:
14165: * src/: classes/hash.C, classes/table.C,
14166: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
14167: now errors
14168:
14169: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
14170:
14171: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
14172: ,2,3]
14173:
14174: 2002-09-16 paf
14175:
14176: * src/classes/file.C: file::cgi line ends can be both unix & dos.
14177: and they can be unix [\n\n] on win when 'use CGI' used, it causes
14178: stdout to be binary. now detected closest header break.
14179:
14180: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
14181: closed right
14182:
14183: 2002-09-13 paf
14184:
14185: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
14186: src/main/compile_tools.h: (expression #comment)
14187:
14188: (multiline expression #comment line2 #comment )
14189:
14190: (expression #comment with (brackets) comment) << OK
14191:
14192: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
14193: bitwise !|| numerical xor now [preparing for expression
14194: #comments]
14195:
14196: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
14197: error
14198:
14199: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
14200: cheched in pa_socks.C
14201:
1.101 moko 14202: * configure, configure.in, src/include/pa_config_auto.h.in:
14203: HAVE_WINSOCK_H created in configure.in
1.95 moko 14204:
14205: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
14206: cookie date now clean [were mistakenly tainted & that worked bad
14207: with opera -- 'happily' that worked OK with msie]
14208:
14209: 2002-09-12 paf
14210:
14211: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
14212: VClass get_element now first looks to fields, next to methods &
14213: co todo: the rest reason: more speed
14214:
14215: * src/main/untaint.C: quoted printable encoding stops before
14216: \s*<...>$
14217:
14218: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
14219: stops before <...>$
14220:
14221: 2002-09-11 paf
14222:
14223: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
14224: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
14225: forgot to check users of those funcs. not all were using that
14226: return value convention
14227:
14228: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
14229: windows-1254 added
14230:
14231: 2002-09-10 paf
14232:
14233: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
14234: VCodeFrame parent param were specified badly
14235:
14236: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
14237: WWrapper which used in constructing objects(second param to sql
14238: method) ^...sql{}[$.default{code}] now has parent, wich helps
14239: code in hash to survivi
14240:
14241: * src/: include/pa_request.h, main/execute.C: removed redundant
14242: param to execute [stack said 'thanks']
14243:
14244: * src/: classes/op.C, main/execute.C, types/pa_value.C,
14245: types/pa_value.h, types/pa_vcode_frame.h,
14246: types/pa_vmethod_frame.h, types/pa_wcontext.C,
14247: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
14248: responsibility to wcontext
14249:
14250: * src/classes/file.C: decided not to log exec's with stderr, that
14251: could be warnings, and it's up to scritper to log/show them
14252:
14253: * src/: classes/double.C, main/execute.C: double:sql badly called
14254: write_assign_lang, not write_no_lang, thus doing unnecessary
14255: double/string converstion, which were loosing time&precesion
14256:
14257: * src/: main/pa_charset.C, types/pa_vmail.C:
14258: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
14259: case of unfinished in buffer processing, causing accidental
14260: transcode stop [in case that source enc != utf-8 & there is
14261: incomplete utf-8 sequence at the end of 16000block iside of
14262: libxml lib] tfm readed & code updated
14263:
14264: 2002-09-04 paf
14265:
14266: * configure: makes with sjlj
14267:
14268: * INSTALL, src/include/pa_config_fixed.h,
14269: src/include/pa_sql_connection.h,
14270: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
14271: checked. on win32 it made default
14272:
14273: * src/include/pa_config_auto.h.in: sjlj define
14274:
14275: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
14276: can not work with longjump/throw pair, and one must switch that
14277: on there. todo: detect that automatically]
14278:
14279: * src/types/pa_vxnode.C: removed too strong checks of
14280: xnode.elements. now, for instance, if element does not have any
14281: attributes, $xnode.attributes is void, not error
14282:
14283: 2002-09-02 paf
14284:
14285: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
14286: removed double_result, didn't help
14287:
14288: * src/main/execute.C: double_result made to move that var away from
14289: hungry g++ optimizer (-O2), before: it were optimized and
14290: comparison operators worked badly
14291:
14292: * src/types/pa_vdate.h: removed debug
14293:
1.101 moko 14294: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 14295:
14296: * src/main/execute.C: fixed numeric < & co so that thay now use
14297: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
14298: unknown reason.
14299:
14300: 2002-08-29 paf
14301:
14302: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
14303: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
14304: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
14305: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
14306: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
14307: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
14308: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
14309: [called less frequent, allowed to remove ugly
14310: Junction.change_context-s from many places, switch,
14311: mail:send..html{}, ..] request.root renamed to method_frame [more
14312: easyreading] ancient {...PUSH/POPs...} changed to stack vars
14313: [speed up]
14314:
14315: 2002-08-28 paf
14316:
14317: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
14318: tainted
14319:
14320: * src/types/pa_vcookie.C: fixed cookie delete when
14321: $cookie:name[$.value[]]
14322:
14323: * operators.txt, src/classes/string.C:
14324: ^string.split[delim[;options]]
14325:
14326: 2002-08-27 paf
14327:
1.101 moko 14328: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 14329:
14330: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
14331: delimiter
14332:
14333: * INSTALL: recommended latest gmime 1.0.5
14334:
14335: 2002-08-26 paf
14336:
14337: * configure, configure.in: apache13/hook added to make dist.
14338:
14339: 2002-08-23 paf
14340:
14341: * src/: include/pa_common.h, main/pa_common.C,
14342: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
14343: beside binary [cgi, isapi] not accessible [due to bad rights or
14344: whatever] it's error now
14345:
14346: 2002-08-21 paf
14347:
1.101 moko 14348: * Makefile.am: can use: make happy equals to make update install
1.95 moko 14349:
14350: * src/main/: compile.tab.C, compile.y, compile_tools.C,
14351: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
14352: class". compiled as if here they named base class
14353:
14354: * src/main/pa_string.C: fixed bad language bug, [were wrong string
14355: cloning constructor]
14356:
14357: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
14358:
14359: * bin/auto.p.dist.in, src/targets/cgi/parser3.C,
14360: src/types/pa_vfile.C, src/types/pa_vmail.C:
14361: $mail.received.file.value.content-type fixed
14362:
14363: 2002-08-20 paf
14364:
14365: * src/classes/file.C: fixed language of file:file result
14366:
14367: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
14368: from 3.0.0005
14369:
14370: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
14371:
14372: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
14373: 3.0.0005
14374:
14375: * src/classes/void.C, operators.txt: ^void.length[] = 0
14376:
14377: 2002-08-19 paf
14378:
14379: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
14380: work now
14381:
14382: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
14383: error in xnode, which were not catched in xdoc]
14384:
14385: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
14386: prepared: // validate each document after load/create (?)
14387: //xmlDoValidityCheckingDefaultValue = 1;
14388:
14389: 2002-08-15 paf
14390:
14391: * src/classes/classes.h: write to static var caused useless
14392: Exception, introduced Methoded::put_element wich consumes those
14393:
14394: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
14395: src/types/pa_vcookie.C, src/types/pa_vdate.h,
14396: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
14397: $response:field[date] $response:field[$.xxx[date]]
14398:
14399: * src/: classes/hash.C, classes/string.C, classes/table.C,
14400: classes/void.C, include/pa_sql_connection.h: fixed source of
14401: ^hash::sql{bad}
14402:
14403: * operators.txt: $request:body unprecessed POST request body
14404:
14405: * src/types/pa_vrequest.C: $request:body unprecessed POST request
14406:
14407: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
14408: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
14409:
14410: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
14411: src/include/pa_request.h, src/main/pa_pool.C,
14412: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
14413: $request:body r.post_data now const
14414:
14415: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
14416: classes/xnode.C, main/execute.C, types/pa_value.h,
14417: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
14418: types/pa_vtable.h: instead of type() checking everywhere used
14419: Value.as now user descendants can be used in params.
14420:
14421: VObject::as_*, is_defined now taken from bases. xtable(table)
14422: ^if($xtable) now OK
14423:
14424: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
14425: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
14426: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
14427:
14428: 2002-08-14 paf
14429:
14430: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
14431: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
14432: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
14433: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
14434: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
14435: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
14436: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
14437: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
14438: types/pa_vresponse.C, types/pa_vresponse.h,
14439: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14440: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
14441: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
14442: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14443: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
14444: & VClass
14445:
14446: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
14447:
14448: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
14449: removed fixopt stupidity. on stupid linux use cd /document/root
14450: ../cgi/parser3 script
14451:
14452: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
14453: params, splitting them by space, excluding argv[0], argv[argc-1]
14454:
14455: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
14456: fixopt.h: fixopt now preprocesses command line params, splitting
14457: them by space, excluding argv[0], argv[argc-1]
14458:
14459: * src/targets/cgi/parser3.C: -f config file
14460:
14461: * src/targets/cgi/parser3.C: fixed .log file dir
14462:
14463: 2002-08-13 paf
14464:
14465: * src/types/pa_vobject.C: allow override parent variables, useful
14466: for form descendants [in vobject too, were in vclass]
14467:
14468: * src/types/pa_vclass.C: allow override parent variables, useful
14469: for form descendants
14470:
14471: * src/types/pa_vclass.C: checked: form[vclass]fields can be
14472: overwritten in derived(table)
14473:
14474: * src/: classes/form.C, classes/mail.C, classes/op.C,
14475: classes/xnode.h, include/pa_request.h, main/execute.C,
14476: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
14477: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
14478: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
14479: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
14480: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
14481: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
14482: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
14483: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
14484: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14485: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
14486: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
14487: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14488: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
14489: Value::get_element(..., bool looking_down) [needed to exclude
14490: endless recoursion]
14491:
14492: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
14493: fix bug with put endless recoursion todo: check 'as'
14494:
14495: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
14496: reorganized modules todo: fix bug with put endless recoursion
14497: todo: check 'as'
14498:
14499: * src/types/pa_vobject.h: checked: table fields can be overwritten
14500: in derived(table)
14501:
14502: * src/types/pa_vobject.h: derived classes can have fields of their
14503: own now
14504:
14505: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
14506: fixed error message on using non-created table
14507:
14508: * src/: classes/form.C, classes/hash.C, classes/mail.C,
14509: classes/op.C, classes/xnode.h, include/pa_request.h,
14510: main/compile.C, main/compile.tab.C, main/execute.C,
14511: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
14512: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
14513: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
14514: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
14515: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
14516: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
14517: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
14518: types/pa_vresponse.C, types/pa_vresponse.h,
14519: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14520: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
14521: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
14522: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14523: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
14524: looking down/up tree todo: fix error message on non-constructed
14525: parents
14526:
14527: 2002-08-12 paf
14528:
14529: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
14530: derived OK
14531:
14532: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
14533: thorough testing
14534:
14535: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
14536: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
14537: types/pa_vobject.h, types/pa_vstateless_class.h,
14538: types/pa_vstateless_object.h, types/pa_wcontext.h,
14539: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
14540: ^base:create[] dynamic call rewritten todo: thorough testing
14541:
14542: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
14543: now instantates base class, remembers it and saves child in
14544: parent VObject.get_class now returns last child = downward
14545: virtual calls OK
14546:
14547: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
14548: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
14549: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
14550: types/pa_vobject.h, types/pa_vresponse.h,
14551: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14552: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
14553: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
14554: VAliased [redundant], moved $CLASS to VObject only [parser class
14555: instance]
14556:
14557: * bin/auto.p.dist.in: more like in dist on parser.ru
14558:
14559: * bin/auto.p.dist.in: fixed sendmail default comment
14560:
14561: * src/main/pa_request.C: $response:body[file] content-type check
14562: fixed [were bad when content-type is hash]
14563:
14564: 2002-08-09 paf
14565:
14566: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
14567: types/pa_vobject.h, types/pa_vxdoc.h: started as()
14568:
14569: 2002-08-08 paf
14570:
14571: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
14572: src/main/pa_globals.C: year column in month calendar [week year]
14573:
14574: * src/main/execute.C: error reporting on object writes to MAIN
14575: improved [were ruind with fixing $obj[^if(1){$obj}] ]
14576:
14577: * operators.txt, src/types/pa_vdate.h: $date.yearday
14578: $date.daylightsaving
14579:
14580: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
14581: use tainted data now. only she must specify the language.
14582:
14583: ^mail:send[ $.from[paf@mail.design.ru]
14584: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
14585: $.text[^taint[uri][ìîñêâà]=] ]
14586:
14587: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
14588: now prints more precise origin
14589:
14590: * src/include/pa_string.h: String::first_char now not fails on
14591: empty strings ^if(-f '') now ok and in 3 other places.
14592:
14593: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
14594: String::first_char now not fails on empty strings ^if(-f '') now
14595: ok and in 3 other places.
14596:
14597: 2002-08-07 paf
14598:
14599: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
14600: fixed
14601:
14602: * src/main/pa_string.C: ^string.mid(0;bad) fixed
14603:
14604: * src/: main/execute.C, types/pa_vcode_frame.h,
14605: types/pa_vmethod_frame.h, types/pa_wcontext.C,
14606: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
14607: mistakenly not completely transparent to object writes.
14608: $hash[^if(1){$hash}] now works
14609:
14610: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
14611: now erasing cache file [there were bad check on that]
14612:
14613: * src/: classes/classes.dsp, classes/table.C,
14614: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
14615: all Debug dirs in .dsp now named 'Debug'
14616:
1.101 moko 14617: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 14618:
14619: * operators.txt, src/classes/mail.C: exception_type email.send
14620:
14621: * operators.txt, src/types/pa_vmail.C: exception_type email.format
14622:
14623: * src/types/pa_vmail.C: mail:send empty email checked
14624:
14625: 2002-08-06 paf
14626:
14627: * operators.txt, src/classes/table.C, src/include/pa_array.h,
14628: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
14629: ^table::create[$source;$.options] ^table::join[$source;$.options]
14630:
14631: * operators.txt, src/classes/hash.C, src/classes/string.C,
14632: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
14633: # $.default() }
14634:
14635: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
14636:
14637: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
14638: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
14639: $file.content-type [instead of .mime-type] now works for
14640: file::stat also
14641:
14642: * src/main/pa_request.C: case insensitive mime_type_of
14643:
14644: * bin/auto.p.dist.in: jpeg
14645:
14646: 2002-08-05 paf
14647:
14648: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
14649:
14650: * src/types/pa_vmail.C: file buffer relocated to parser heap
14651:
14652: * operators.txt: comment on date:calendar week column
14653:
14654: * src/main/pa_common.C: write checked
14655:
14656: * src/main/: pa_common.C: write checked
14657:
14658: * src/classes/date.C: +1 buf size for stupid snprintfs
14659:
14660: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
14661: month calendar week column [ISO 8601 Week Numbers]
14662:
14663: 2002-08-02 paf
14664:
14665: * src/: include/pa_config_fixed.h, main/pa_string.C,
14666: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
14667: DEBUG*
14668:
14669: * configure, configure.in, src/include/pa_version.h: release
14670: 3_0_0005
14671:
14672: * bin/auto.p.dist.in: unhandled_exception comments
14673:
14674: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
14675: multipart post fixed
14676:
14677: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
14678: response transcoded source->client only when text/* or simple
14679: onoverridden $response:body
14680:
14681: 2002-08-01 paf
14682:
14683: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14684: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14685: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14686: classes/op.C, classes/response.C, classes/string.C,
14687: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
14688: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
14689: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
14690: include/pa_config_fixed.h, include/pa_dictionary.h,
14691: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
14692: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
14693: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
14694: include/pa_socks.h, include/pa_sql_connection.h,
14695: include/pa_sql_driver_manager.h, include/pa_stack.h,
14696: include/pa_string.h, include/pa_stylesheet_connection.h,
14697: include/pa_stylesheet_manager.h, include/pa_table.h,
14698: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
14699: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
14700: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
14701: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14702: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
14703: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
14704: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
14705: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
14706: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
14707: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
14708: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
14709: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
14710: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
14711: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
14712: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
14713: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
14714: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
14715: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
14716: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
14717: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
14718: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
14719: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14720: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
14721: types/pa_vmethod_frame.h, types/pa_vobject.h,
14722: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
14723: types/pa_vresponse.h, types/pa_vstateless_class.C,
14724: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14725: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
14726: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
14727: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14728: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
14729: types/pa_wcontext.h, types/pa_wwrapper.h: $Date: now$
14730:
14731: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
14732: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
14733: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14734: classes/math.C, classes/op.C, classes/response.C,
14735: classes/string.C, classes/table.C, classes/void.C,
14736: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14737: include/pa_array.h, include/pa_cache_managers.h,
14738: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
14739: include/pa_config_fixed.h, include/pa_config_includes.h,
14740: include/pa_dictionary.h, include/pa_dir.h,
14741: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
14742: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
14743: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
14744: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
14745: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14746: include/pa_stack.h, include/pa_string.h,
14747: include/pa_stylesheet_connection.h,
14748: include/pa_stylesheet_manager.h, include/pa_table.h,
14749: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
14750: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
14751: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14752: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
14753: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14754: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
14755: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
14756: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
14757: main/pa_sql_driver_manager.C, main/pa_string.C,
14758: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
14759: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
14760: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
14761: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
14762: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
14763: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
14764: targets/isapi/pool_storage.h, types/pa_valiased.C,
14765: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
14766: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
14767: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
14768: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
14769: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
14770: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
14771: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
14772: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
14773: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
14774: types/pa_vresponse.C, types/pa_vresponse.h,
14775: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
14776: types/pa_vstateless_object.h, types/pa_vstatus.C,
14777: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
14778: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
14779: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14780: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
14781: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
14782: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
14783: types/Makefile.am: ident.C* removed
14784:
14785: * operators.txt, src/classes/file.C, src/main/pa_request.C:
14786: file:find[/can/do/this/now.txt]
14787:
14788: * src/targets/cgi/parser3.C: usage to stdout now
14789:
14790: 2002-07-31 paf
14791:
14792: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
14793:
14794: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
14795: default "postmaster"
14796:
14797: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
14798: -f postmaster now default sendmail key word "postmaster"
14799: replaced to $.from
14800:
14801: 2002-07-30 paf
14802:
1.101 moko 14803: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
14804: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 14805:
14806: * src/main/pa_charset.C: comment
14807:
14808: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
14809: table, &#decimal;
14810:
14811: * src/main/pa_request.C: comment
14812:
14813: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
14814: paragraf]
14815:
14816: 2002-07-11 paf
14817:
14818: * src/main/pa_exec.C: build command line badly added params twice
14819: [and first time without ' ']. double wrong. fixed.
14820:
14821: * src/main/pa_exec.C: invalid .exe caused error message with params
14822: wich parser did not provide = reported badly. fixed that.
14823:
14824: * src/classes/mail.C: $MAIL[ # xxx ]
14825:
14826: now ok
14827:
14828: * operators.txt: plan: sql detailed exception
14829:
14830: 2002-07-01 paf
14831:
14832: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
14833: [MForm.configure_admin were called when request.main_class ==0
14834:
14835: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
14836:
14837: * src/classes/form.C: content_length type fix
14838:
14839: 2002-06-30 paf
14840:
14841: * src/classes/mail.C: merged from 4
14842:
14843: * src/classes/mail.C: restored $MAIL
14844:
14845: 2002-06-28 paf
14846:
14847: * configure, configure.in: removed paths.h
14848:
1.101 moko 14849: * configure, src/include/pa_version.h,
1.95 moko 14850: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
14851: merged, makes updated
14852:
14853: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
14854: src/include/pa_charset.h, src/include/pa_config_fixed.h,
14855: src/include/pa_pool.h, src/include/pa_version.h,
14856: src/main/pa_charset.C, src/main/pa_pool.C,
14857: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
14858: src/types/pa_vmail.C: merged latest updates to head
14859:
14860: 2002-06-27 paf
14861:
14862: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
14863: not error now
14864:
14865: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
14866: src/include/pa_config_fixed.h, src/include/pa_pool.h,
14867: src/main/pa_charset.C, src/main/pa_pool.C:
14868: ^xdoc::create[[uri]]... base uri for document being created,
14869: imports and other relative file names would be relative to this
14870: uri default uri=path_translated
14871:
14872: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
14873:
14874: 2002-06-26 paf
14875:
14876: * configure, configure.in, src/include/pa_version.h:
14877: release_3_0_0004
14878:
14879: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
14880: 0 now
14881:
14882: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
14883:
14884: 2002-06-25 paf
14885:
14886: * src/main/pa_string.C: emtpy string, or string of whitespaces
14887: considered bad number now
14888:
14889: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
14890: now
14891:
14892: * operators.txt, src/classes/string.C: ^string.normalize [old
14893: name: optimize
14894:
14895: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
14896: library configured
14897:
14898: * src/main/pa_request.C: configure_admin forced if no @conf
14899:
14900: * operators.txt, bin/auto.p.dist.in, src/classes/math.C,
14901: src/types/pa_vmail.C: ^math:crypt updated to generate random salt
14902: when needed and to call system crypt() if not $apr1$ prefix
14903:
14904: 2002-06-24 paf
14905:
14906: * INSTALL: --with-static/shared-mailreceive described
14907:
14908: * src/include/pa_config_fixed.h: ssize_t fixed
14909:
1.101 moko 14910: * configure, configure.in, src/include/pa_config_auto.h.in,
14911: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 14912: src/types/pa_vmail.C: $mail:received makes update
14913:
14914: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
14915: WITH_MAILRECEIVE
14916:
14917: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
14918:
14919: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
14920: option, for $mail:receive
14921:
14922: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
14923: introducting $message:received ^mail:send rewritten with backward
14924: comp
14925:
14926: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
14927: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
14928: types/types.dsp: win32xml win32mailreceive pseudomodules paths
14929: now
14930:
14931: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
14932: src/include/pa_charset.h, src/include/pa_config_fixed.h,
14933: src/include/pa_request.h, src/include/pa_string.h,
14934: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
14935: src/main/pa_globals.C, src/main/pa_request.C,
14936: src/main/pa_string.C, src/main/pa_uue.C,
14937: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
14938: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
14939: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
14940: uue to separate file introducting $message:received ^mail:send
14941: rewritten with backward comp
14942:
14943: 2002-06-21 paf
14944:
1.101 moko 14945: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
14946: co changes
1.95 moko 14947:
1.101 moko 14948: * configure, configure.in, src/lib/md5/Makefile.am,
14949: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
14950: restructure .in and .am files appropriate changes
1.95 moko 14951:
14952: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
14953: pcre to libs/ added libs/md5 which is linked to non-apache
14954: targets ^math:crypt[password;$apr1$salt]
14955:
14956: * INSTALL, configure.in, operators.txt, parser3.dsw,
14957: src/Makefile.am, src/classes/Makefile.am,
14958: src/classes/classes.dsp, src/classes/math.C,
14959: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.101 moko 14960: src/lib/pcre/Makefile.am, src/lib/pcre/README,
14961: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
14962: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
14963: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
14964: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
14965: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
14966: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
14967: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 14968: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
14969: src/lib/pcre/pcre_parser_ctype.dsp,
14970: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
14971: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
14972: src/main/compile.tab.C, src/main/main.dsp,
14973: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
14974: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
14975: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
14976: to libs/ added libs/md5 which is linked to non-apache targets
14977: ^math:crypt[password;$apr1$salt]
14978:
14979: 2002-06-20 paf
14980:
14981: * INSTALL, configure, configure.in, operators.txt, bin/Makefile.am,
1.101 moko 14982: bin/auto.p.dist.in, src/classes/file.C, src/classes/op.C,
14983: src/doc/doxygen.cfg, src/include/pa_globals.h,
1.95 moko 14984: src/include/pa_request.h, src/main/execute.C,
14985: src/main/pa_request.C, src/targets/cgi/parser3.C,
14986: src/targets/isapi/parser3isapi.C, src/types/pa_vmethod_frame.h:
14987: marged latest HEAD updates, mainly file:justname&co &
14988: @auto/conf[filespec
14989:
14990: * operators.txt, src/classes/file.C:
14991: !^file:dirname[/a/some.tar.gz]=/a
14992: !^file:dirname[/a/b/]=/a
14993: !^file:basename[/a/some.tar.gz]=some.tar.gz
14994: !^file:justname[/a/some.tar.gz]=some.tar
14995: !^file:justext[/a/some.tar.gz]=gz
14996:
14997: * src/: classes/op.C, include/pa_request.h, main/execute.C,
14998: main/pa_request.C, types/pa_vmethod_frame.h: introducing
14999: @conf/auto[filespec]
15000:
15001: * bin/auto.p.dist.in: <noindex>
15002:
1.101 moko 15003: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 15004:
15005: * INSTALL, configure.in, operators.txt, bin/Makefile.am,
15006: bin/auto.p.dist.in, src/doc/doxygen.cfg,
15007: src/include/pa_globals.h, src/targets/cgi/parser3.C,
15008: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
15009:
15010: 2002-06-18 paf
15011:
15012: * configure, configure.in, src/include/pa_version.h: version to
15013: configure.in
15014:
15015: * INSTALL: reflected .conf.dist dir change
15016:
1.101 moko 15017: * Makefile.am, configure, configure.in, bin/Makefile.am,
15018: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 15019: .in & *.am updated
15020:
15021: * src/classes/file.C: strncasecmp
15022:
15023: * src/classes/file.C: strcasecmp
15024:
1.101 moko 15025: * bin/Makefile.am, etc/Makefile.am: bin/parser3.conf.dist [moved
15026: from etc
1.95 moko 15027:
15028: * src/classes/file.C: ^file::exec[script;$.bad error case
15029: insensitive check now
15030:
15031: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
15032:
15033: * configure, configure.in, src/include/pa_pool.h,
15034: src/include/pa_types.h: pack configure.in detection simplified.
15035: figured out that gcc on sparc not that stupid as thought
15036: previously: on sparc: when it sees packed class it modifies it's
15037: field-access-code to byte operations [stb, ldub] instead of 4byte
15038: operations [st, lduh] so packed must be all parts of packed
15039: class, i.e. it's parents&fields(classes). for now it's only
15040: String that packed and what was wrong is that it's parent -
15041: Pooled, were not packed. fixed that.
15042:
15043: 2002-06-14 paf
15044:
15045: * operators.txt: more precise xml-to-text options
15046:
15047: * operators.txt, src/types/pa_vxnode.C: xnode
15048: attribute_node.name/value xnode pi.node.data
15049:
15050: 2002-06-12 paf
15051:
1.101 moko 15052: * configure, configure.in, src/targets/cgi/Makefile.am,
15053: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 15054:
15055: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
15056: src/include/pa_globals.h, src/include/pa_request.h,
15057: src/main/compile.tab.C, src/main/pa_globals.C,
15058: src/main/pa_request.C, src/targets/cgi/parser3.C,
15059: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
15060:
15061: * src/classes/mail.C: sendmail -ti [default now]
15062:
15063: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
15064: to be strings. for convinient #ing
15065:
15066: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
15067: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
15068:
15069: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
15070: main/pa_globals.C, main/pa_request.C: @conf
15071:
15072: 2002-06-11 paf
15073:
15074: * src/classes/file.C: check simplified
15075:
15076: * src/: classes/file.C, targets/cgi/parser3.dsp,
15077: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
15078: valid prefix
15079:
15080: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
15081: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
15082: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
15083:
15084: 2002-06-10 paf
15085:
15086: * operators.txt, src/classes/op.C, src/include/pa_common.h,
15087: src/main/pa_common.C: lock failures reported now
15088:
15089: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
15090: string->double @ compile time were not-enough-checking...
15091:
15092: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
15093: autoconvert now ignored
15094:
15095: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
15096: check
15097:
15098: * src/classes/mail.C: mail netscape attachment name fixed. todo:
15099: $response:body content-type:name
15100:
15101: * configure, configure.in: hpux check, nsl link, no socket
15102:
15103: * operators.txt: old merge conflict removed
15104:
15105: * configure, configure.in: pack even address access on sparc&co
15106: arch checked in configure
15107:
15108: * configure, src/include/pa_version.h: makes
15109:
15110: * configure, configure.in, src/include/pa_version.h: makes
15111:
15112: * src/main/untaint.C: (bug#2) mail subject got always prepended
15113: with charset even when all letters were 7bit one
15114:
15115: * src/main/pa_common.C: merged fixed -d (bug)
15116:
15117: * src/main/pa_common.C: fixed -d (bug)
15118:
15119: 2002-06-03 paf
15120:
15121: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
15122: src/classes/classes.dsp, src/main/compile.tab.C,
15123: src/main/main.dsp, src/main/pa_globals.C,
15124: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
15125: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
15126: .dsp-s along with reorganized cvs modules dirs structure
15127:
15128: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
15129: main/pa_globals.C, targets/cgi/parser3.dsp,
15130: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
15131: modules
15132:
15133: 2002-05-28 paf
15134:
15135: * src/targets/cgi/parser3.C: info.uri now ""
15136:
15137: 2002-05-17 paf
15138:
15139: * src/classes/: table.C: ^table.save << checked empty
15140: pre/match/post columns
15141:
15142: 2002-05-16 paf
15143:
15144: * src/classes/image.C: image::measure can png now
15145:
15146: 2002-05-15 paf
15147:
15148: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
15149: added
15150:
15151: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
15152:
15153: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
15154: %H[:%M[:%S]]]]]] [-%m now
15155:
15156: 2002-05-14 paf
15157:
15158: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
15159:
15160: 2002-05-07 paf
15161:
15162: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
15163: src/include/pa_globals.h, src/include/pa_request.h,
15164: src/include/pa_table.h, src/main/compile.tab.C,
15165: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
15166: src/main/pa_request.C, src/main/pa_table.C,
15167: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
15168: src/targets/isapi/parser3isapi.dsp,
15169: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
15170: name2number field now &. main_method_name now on Request pool
15171: rather on global_pool [Junction+VJunction created on same pool as
15172: name = were created on global pool, causing mem leaks]
15173:
15174: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
15175: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
15176: main/compile.y, main/main.dsp, main/pa_globals.C,
15177: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
15178: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
15179: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
15180: field now &. main_method_name now on Request pool rather on
15181: global_pool [Junction+VJunction created on same pool as name =
15182: were created on global pool, causing mem leaks]
15183:
15184: 2002-05-06 paf
15185:
15186: * src/: main/pa_globals.C, targets/cgi/parser3.C,
15187: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
15188: 100*40 bytes per request memory leak [nonpool malloc in globals]
15189:
15190: * src/: main/pa_globals.C, targets/cgi/parser3.C,
15191: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
15192: 100*40 bytes per request memory leak [nonpool malloc in globals]
15193:
15194: 2002-04-30 paf
15195:
15196: * configure, src/include/pa_version.h: version now not b
15197:
15198: * src/targets/cgi/parser3.C: request.uri now never 0
15199:
15200: 2002-04-29 paf
15201:
15202: * configure.in: removed b
15203:
15204: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
15205: Exception::comment/type checked in (), no there's no empty
15206: type/comment by default
15207:
15208: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
15209: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
15210: src/doc/value.dox, src/include/pa_exception.h,
15211: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
15212: 0001
15213:
15214: 2002-04-26 paf
15215:
15216: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
15217: size reduced
15218:
15219: 2002-04-25 paf
15220:
15221: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
15222: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
15223: now that took into account
15224:
15225: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
15226: 01:03:04]
15227:
15228: * ChangeLog, operators.txt, src/classes/date.C:
15229: ^date::create[2002-12-33 01:03:04]
15230:
15231: * ChangeLog: updated changelog
15232:
15233: * src/classes/table.C: removed restriction on column count to
15234: ^table.hash to work, now must be >0 [were >1]
15235:
15236: 2002-04-24 paf
15237:
15238: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
15239: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15240: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
15241: targets
15242:
15243: 2002-04-23 paf
15244:
15245: * operators.txt, src/classes/string.C:
15246: int/double/string:sql{}[$.default{code}] fixed [were barking:
15247: "junction used outside of context"]
15248:
15249: 2002-04-22 paf
15250:
15251: * types.txt, src/classes/string.C, src/include/pa_string.h,
15252: src/main/pa_string.C, src/types/pa_vstring.C,
15253: src/types/pa_vstring.h: ^string.optimize[]
15254:
15255: * src/: include/pa_globals.h, include/pa_table.h,
15256: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
15257: table template
15258:
15259: * src/classes/: string.C: optimize removed from string
15260: .left/right/pos
15261:
15262: * src/main/execute.C: rolled back to
15263: before_killing_userjunction_contexts
15264:
15265: * src/main/execute.C: user junctions context killed
15266:
15267: * src/main/execute.C: junctions to local contexts got
15268: cleanized&checked later
15269:
15270: 2002-04-19 paf
15271:
15272: * src/: classes/string.C, include/pa_request.h,
15273: include/pa_string.h, main/pa_request.C, main/pa_string.C,
15274: types/pa_vstring.C, types/pa_vstring.h: string now optimized
15275: prior to .left .right .mid .pos .match when that is profitable,
15276: and always before .replace when $ORIGINS(1) optimization disabled
15277: economy from not wasting mem on lots of strings which occur by
15278: lots of String:mid calls to get parts of source string between
15279: found_occurances
15280:
15281: * src/classes/file.C: ovector now local economy: 16 bytes per
15282: ^file:list
15283:
15284: * src/: include/pa_globals.h, include/pa_table.h,
15285: main/pa_globals.C, main/pa_string.C: String::match table columns
15286: globalized, not created @ each ^match anymore economy:
15287: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
15288:
15289: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
15290: removed from each String::match replace iteration, and made
15291: stacked sizeof(VTable)=12bytes economy on each replace code
15292:
15293: * src/doc/footer.htm: 2001,
15294:
15295: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
15296: string.match[]['] option enables generation of $match.prematch
15297: .match .postmatch columns
15298:
15299: * src/main/pa_string.C: String::match options analized without
15300: cstr-ing them now
15301:
15302: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
15303: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
15304: config updated to doxygen 1.2.15, created helper which fixes
15305: minor bugs in chm project files & htm tree. changed extension to
15306: .htm
15307:
15308: 2002-04-18 paf
15309:
15310: * src/doc/doxygen.cfg: .chi generation disabled
15311:
15312: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
15313: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
15314: fields&methods
15315:
15316: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
15317: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
15318: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
15319: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
15320: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
15321: types/pa_vresponse.h, types/pa_vstateless_class.h,
15322: types/pa_vstateless_object.h, types/pa_vstatus.h,
15323: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
15324: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
15325: VStateless_class to VObject
15326:
15327: * src/: main/pa_request.C, types/pa_valiased.h,
15328: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15329: types/pa_vstring.h: VStateless_string_object speicalized light
15330: version of VStateless_object
15331:
15332: * src/classes/op.C: ^throw comment param made optional
15333:
15334: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
15335: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
15336: and implemented down in VClass, fclass_alias removed,
15337:
15338: * src/types/pa_value.C: forced to cut that from .h because of
15339: VStateless_class usage [undefined in .h]
15340:
15341: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
15342: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15343: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
15344: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
15345: on each CALL]
15346:
15347: * src/: classes/classes.h, classes/date.C, classes/double.C,
15348: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
15349: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
15350: classes/response.C, classes/string.C, classes/table.C,
15351: classes/void.C, classes/xnode.C, include/pa_globals.h,
15352: include/pa_request.h, main/execute.C, main/pa_globals.C,
15353: main/pa_request.C, types/Makefile.am, types/pa_value.h,
15354: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
15355: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15356: types/pa_vstateless_class.h, types/pa_wcontext.C,
15357: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
15358: removed Value::fname
15359:
15360: 2002-04-17 paf
15361:
15362: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
15363: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
15364: doc/pooled.dox, doc/string.dox, doc/targets.dox,
15365: include/pa_pool.h, include/pa_types.h: dox updated to current
15366: state, PTHROW freshen to throw & co
15367:
15368: * src/types/pa_vhash.h: vstring wrong parent fixed
15369:
15370: * src/classes/op.C: taint local result var bug fixed
15371:
15372: 2002-04-16 paf
15373:
15374: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
15375: Attic asm.txt as most interesting
15376:
15377: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
15378: check, preventing content-length: 0 from appearing
15379:
15380: * src/main/execute.C: $result in @main now taken into account as in
15381: usual functions
15382:
15383: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
15384: & @unhandled_exception now taken into account as in usual
15385: functions
15386:
15387: * src/doc/postbuild.txt: instructions on post .html build
15388:
15389: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
15390:
15391: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
15392: tainted
15393:
15394: * src/main/pa_request.C: uri in error log
15395:
15396: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
15397: cheched date:create(days) param for validity [later were assumed
15398: valid and crashed on invalid onces]
15399:
15400: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
15401: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
15402: and used that for removing VString wrapper
15403:
15404: * src/classes/op.C: exception2vhash file now tainted
15405:
15406: * src/classes/op.C: _process pseudo origin copied from local var to
15407: heap
15408:
15409: * src/classes/op.C: extra check on empty file in origin in _execute
15410:
15411: 2002-04-15 paf
15412:
15413: * src/: main/execute.C, types/pa_value.h: fixed name update
15414:
15415: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
15416: functions
15417:
15418: * src/: classes/file.C, classes/hash.C, classes/op.C,
15419: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
15420: started dual write_xxx_lang functions, if checked & works
15421:
15422: * src/: classes/date.C, classes/file.C, classes/mail.C,
15423: classes/string.C, classes/xnode.C, include/pa_request.h,
15424: types/pa_value.h, types/pa_wcontext.h: removed absolutely
15425: unnecessary VString shells
15426:
15427: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
15428: prev changes]
15429:
15430: * src/: classes/image.C, classes/op.C, classes/string.C,
15431: classes/table.C, include/pa_request.h, main/execute.C,
15432: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
15433: StringOrValue wcontext result, now ready for dual writes
15434:
15435: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
15436: checked that
15437:
15438: * src/main/: compile.tab.C, compile.y, compile_tools.C,
15439: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
15440: changed to OP_WRITE_VALUE in var get cases
15441:
15442: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
15443: include/pa_request.h, main/compile.tab.C, main/compile.y,
15444: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15445: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
15446: switch in hash constructor fixed [were problems with using of
15447: stacked wwrapper after it's death]
15448:
15449: 2002-04-12 paf
15450:
15451: * operators.txt, src/classes/table.C: table.select(expression) 0
15452:
15453: 2002-04-11 paf
15454:
15455: * src/: classes/string.C, include/pa_request.h, main/execute.C:
15456: Request::process_internal codeFrame & wwrapper stacked [not
15457: wasting heap anymore]
15458:
15459: 2002-04-10 paf
15460:
15461: * src/: classes/double.C, classes/file.C, classes/hash.C,
15462: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
15463: classes/string.C, classes/table.C, classes/void.C,
15464: classes/xdoc.C, include/pa_request.h, main/execute.C,
15465: main/pa_string.C: killed Request::process() wrapping
15466: VString(String) in case we need only String
15467:
15468: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15469: killed 8 bytes from String.head
15470:
15471: 2002-04-09 paf
15472:
15473: * src/: main/compile.tab.C, targets/cgi/parser3.C,
15474: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
15475: local*/char b[...]; a=b; situations
15476:
15477: * operators.txt, src/classes/xdoc.C: xslt params made literal
15478:
15479: * src/classes/xdoc.C: xslt params fixed
15480:
15481: * src/: main/pa_common.C, targets/cgi/parser3.C,
15482: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
15483: not pool.malloc(MAX_NUMBER) but really neaded
15484:
15485: * operators.txt, src/classes/double.C, src/classes/int.C:
15486: int/double.int/double(default)
15487:
15488: 2002-04-04 paf
15489:
15490: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
15491: [when reconstructing pieces were split by
15492: max_integral(piece.size), thus some strings to replace happen to
15493: be split into two = not replaced)
15494:
15495: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
15496: standalone version = current dir
15497:
15498: * src/targets/cgi/parser3.C: document root in standalone version =
15499: current dir
15500:
15501: 2002-04-03 paf
15502:
15503: * configure, configure.in: more checks on nonexistent charset
15504:
1.101 moko 15505: * INSTALL, configure, configure.in: root config configure options
1.95 moko 15506:
15507: 2002-04-02 paf
15508:
15509: * src/main/compile.C: parser.compile [exception name more like in
15510: doc]
15511:
15512: 2002-04-01 paf
15513:
15514: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
15515: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
15516: .content-type.charset, not .charset
15517:
15518: 2002-03-29 paf
15519:
15520: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
15521:
15522: * operators.txt, src/classes/date.C: ^date::create now may not
15523: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
15524: days' year. | 31.05->31.04 roll
15525:
15526: 2002-03-28 paf
15527:
15528: * operators.txt, src/classes/date.C, src/classes/op.C,
15529: src/include/pa_globals.h, src/include/pa_hash.h,
15530: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
15531: ^cache(seconds) ^cache[date] }
15532:
15533: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
15534: param
15535:
15536: 2002-03-27 paf
15537:
15538: * operators.txt, src/classes/date.C, src/classes/double.C,
15539: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
15540: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
15541: src/classes/math.C, src/classes/op.C, src/classes/string.C,
15542: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15543: src/classes/xnode.C, src/include/pa_exception.h,
15544: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
15545: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
15546: src/main/pa_array.C, src/main/pa_charset.C,
15547: src/main/pa_charsets.C, src/main/pa_common.C,
15548: src/main/pa_dictionary.C, src/main/pa_exception.C,
15549: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
15550: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
15551: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
15552: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
15553: src/types/pa_value.h, src/types/pa_vcookie.C,
15554: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
15555: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
15556: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
15557: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
15558: src/types/pa_wwrapper.h: assigned exception types
15559:
15560: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
15561: src/include/pa_request.h, src/main/execute.C,
15562: src/main/pa_request.C: decided agains resetting exception_trace,
15563: just changed name
15564:
15565: 2002-03-26 paf
15566:
15567: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
15568: fixed
15569:
15570: * src/classes/op.C: forced language of $source field of exception
15571: to 'tainted', so that sql-langed-frags could be outputed outside
15572: of connect
15573:
15574: * operators.txt: removed date.roll limit of +-1 offset
15575:
15576: * src/classes/date.C: removed date.roll limit of +-1 offset
15577:
15578: * operators.txt, src/classes/date.C: fixed date roll on
15579: daylightsaving days mktime took into account tm_isdst flag, which
15580: remained from BEFORE roll, but should have been reset
15581:
15582: 2002-03-25 paf
15583:
15584: * operators.txt, src/targets/cgi/parser3.C:
15585: http_site_config_filespec
15586:
15587: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
15588: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
15589: with any/both --disable-foreign-group-files --disable-execs
15590:
15591: * INSTALL: "--with=sendmail=COMMAND" comment
15592:
15593: * INSTALL, configure, configure.in, src/classes/mail.C,
15594: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.101 moko 15595: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
15596: disables execs also. introducing --sendmail
1.95 moko 15597:
15598: * operators.txt: pgsql options comment
15599:
15600: * INSTALL: comment on --disable-link-stdcpp
15601:
1.101 moko 15602: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
15603: libstdc++ link skipping configure option
1.95 moko 15604:
15605: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
15606: with error were put to cache with 'marked_to_rollback' flag, all
15607: consequent even OK requests rolled back
15608:
15609: 2002-03-22 paf
15610:
15611: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
15612: false return
15613:
15614: * operators.txt: few comments on sets
15615:
15616: 2002-03-18 paf
15617:
15618: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
15619: src/include/pa_globals.h, src/include/pa_request.h,
15620: src/include/pa_stack.h, src/main/pa_globals.C,
15621: src/main/pa_request.C: introducing ^try
15622:
15623: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
15624: types/pa_vdouble.h: removed some tested @tests
15625:
15626: 2002-03-15 paf
15627:
15628: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
15629:
15630: 2002-03-13 paf
15631:
15632: * src/main/pa_exception.C: checked not-pooled malloc
15633:
15634: 2002-03-11 paf
15635:
15636: * INSTALL, configure, configure.in,
15637: src/include/pa_config_auto.h.in: --disable-foreign-group-files
15638:
15639: * src/main/pa_common.C: --disable-foreign-group-files
15640:
15641: * INSTALL: --disable-execs
15642:
15643: * src/main/pa_exec.C: --disable-execs
15644:
15645: * configure, configure.in, src/include/pa_config_auto.h.in:
15646: --disable-execs
15647:
15648: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
15649:
15650: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
15651: file::exec/cgi linebreaks "0D0A" changed to 0A onces
15652:
15653: 2002-03-05 paf
15654:
15655: * operators.txt, src/classes/date.C: date week calendar columns
15656: named
15657:
15658: * operators.txt, src/classes/date.C: date week calendar columns
15659: named
15660:
15661: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
15662: requires headers to be terminated with \r\n manually [refuses to
15663: separate header/body itself]
15664:
15665: * src/: main/pa_globals.C, targets/cgi/parser3.C,
15666: targets/isapi/parser3isapi.C: isapi site config beside .dll
15667:
15668: 2002-03-04 paf
15669:
15670: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
15671: in PASS language
15672:
15673: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
15674: deserialize checks on broken file
15675:
15676: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
15677: parser3isapi.dsp: isapi updated
15678:
15679: 2002-03-01 paf
15680:
15681: * src/main/pa_exec.C: execle -> execve, now argc OK
15682:
15683: 2002-02-28 paf
15684:
15685: * src/main/untaint.C: removed some debug comments
15686:
15687: * src/main/pa_charsets.C: when placing charset to cache using
15688: global name now [were request]
15689:
15690: * configure, configure.in: apache module updated
15691:
15692: * src/main/pa_string.C: origin by first piece preferred before last
15693: piece
15694:
15695: 2002-02-27 paf
15696:
15697: * src/main/pa_charset.C: size_t
15698:
15699: * INSTALL: shared/static-xml with-pathlink
15700:
15701: * operators.txt: SMTP comment
15702:
15703: 2002-02-26 paf
15704:
15705: * src/main/pa_exec.C: more precise names for vars, cosmetic
15706:
15707: * src/classes/xnode.C: in some situation, xpath query returned
15708: result with type NODESET, but empty nodeset member field, checked
15709: that
15710:
15711: 2002-02-22 paf
15712:
15713: * INSTALL: without-zlib comment
15714:
15715: * etc/parser3.charsets/windows-1251.cfg: °
15716:
15717: * configure, configure.in: glib###.a detection fixed
15718:
15719: * INSTALL: hashfile removed from INSTALL
15720:
1.101 moko 15721: * Makefile.am: make update
1.95 moko 15722:
15723: * src/main/pa_string.C: string iterators fixed again, so were
15724: String::join_chain
15725:
15726: * src/main/pa_string.C: string iterators fixed again, so were
15727: String::join_chain
15728:
15729: * src/: include/pa_string.h, main/pa_string.C: string iterators
15730: fixed again, so were String::join_chain
15731:
15732: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
15733:
15734: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
15735: "session"
15736:
1.101 moko 15737: * configure, configure.in, src/include/pa_config_auto.h.in:
15738: --with-shared-xml --with-static-xml
1.95 moko 15739:
15740: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
15741: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
15742: types/types.dsp: *.dsp: removed refereces to win32db & ancient
15743: xalan&xml
15744:
15745: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
15746:
15747: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
15748: src/types/types.dsp: removed hashfile support from sources for
15749: now
15750:
1.101 moko 15751: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 15752: src/classes/hashfile.C, src/include/Makefile.am,
1.101 moko 15753: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
15754: src/include/pa_db_manager.h, src/include/pa_db_table.h,
15755: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 15756: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.101 moko 15757: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
15758: src/types/Makefile.am, src/types/pa_vhashfile.C,
15759: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 15760:
15761: 2002-02-21 paf
15762:
15763: * src/main/untaint.C: removed debug code, activated commented-for
15764: debug parts
15765:
1.101 moko 15766: * Makefile.am: make cvsupdate
1.95 moko 15767:
15768: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
15769: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
15770: append_row, not at link zero now string to string appending works
15771:
15772: 2002-02-20 paf
15773:
15774: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
15775: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
15776: DEBUG_STRING_APPENDS_VS_EXPANDS
15777:
15778: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15779: economy: 22%
15780:
15781: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15782: space uptimized: string::link_row removed
15783:
15784: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
15785: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
15786: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
15787: types/pa_vstring.h: speed uptimized: string::is_empty
15788:
15789: * operators.txt, src/include/pa_common.h,
15790: src/include/pa_config_fixed.h, src/include/pa_string.h,
15791: src/include/pa_types.h, src/main/compile.tab.C,
15792: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
15793: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
15794: string append optimiziation idea and estimates
15795:
15796: 2002-02-19 paf
15797:
15798: * src/classes/math.C: not used directly [but erroreously reported
15799: that 'is', thus registering twice&other probs]
15800:
15801: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
15802: to node [element]
15803:
15804: * src/main/compile.C: without string_origins parse error
15805: file+line+col possible
15806:
15807: * src/main/: compile.C: without string_origins not worked
15808:
15809: 2002-02-18 paf
15810:
15811: * src/types/pa_vdouble.h: since we have in_expression removed that
15812: trick i've installed into double::as_string
15813:
15814: * src/main/pa_globals.C: extern "C" was removed too fast
15815:
15816: * src/: include/pa_opcode.h, include/pa_request.h,
15817: main/compile.tab.C, main/compile.y, main/execute.C,
15818: types/pa_wcontext.h: in_expression aimed to solve old problem
15819: with string/nonstring values, now in expressions double/int
15820: values are passed as-is, without stupid tostring/fromstring
15821: conversions
15822:
15823: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
15824: __cplusplus } #endif
15825:
15826: * src/main/compile.tab.C: bison env set so one could compile
15827: without cygwin installed
15828:
15829: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
15830: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
15831: gnome xml libs parser .dsp-s changed accordingly
15832:
15833: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
15834:
15835: * operators.txt, src/classes/date.C: date::create [were date::set,
15836: with backward comp
15837:
15838: * src/classes/math.C: math:random range check fixed
15839:
15840: * src/main/: compile.tab.C, compile.y: integer division stops name
15841:
15842: * INSTALL: local install comment
15843:
1.101 moko 15844: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 15845:
1.101 moko 15846: * acinclude.m4, aclocal.m4, configure, configure.in,
15847: src/include/pa_config_auto.h.in,
15848: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
15849: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 15850:
15851: * operators.txt: \ comment
15852:
15853: 2002-02-13 paf
15854:
15855: * src/include/pa_config_includes.h: sys/time time both included
15856: now. vaguely remember confilicts on this on some system [not on
15857: six|ablv] so when would see them again would think up proper
15858: check
15859:
1.101 moko 15860: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
15861: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 15862:
15863: * src/main/pa_common.C: truncation never occured when writing files
15864: on unix [since i've changed cache mech] fix
15865:
15866: * src/main/pa_common.C: strnchr: sanity check added
15867:
15868: * etc/parser3.charsets/windows-1257.cfg: id added
15869:
15870: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
15871: baltic charset file generated, in generation script ispunct check
15872: added
15873:
15874: 2002-02-08 paf
15875:
1.101 moko 15876: * src/: include/Makefile.am, sql/Makefile.am,
15877: targets/isapi/Makefile.am: forgotten makes
1.95 moko 15878:
15879: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
15880: forgotten
15881:
15882: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
15883:
15884: * INSTALL, README: install&others updated
15885:
15886: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
15887:
1.101 moko 15888: * Makefile.am, configure, configure.in,
15889: etc/parser3.charsets/Makefile.am, src/Makefile.am,
15890: src/classes/Makefile.am, src/main/Makefile.am,
15891: src/main/pa_status_provider.C, src/targets/Makefile.am,
15892: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
15893: works
1.95 moko 15894:
15895: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15896: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15897: classes/hashfile.C, classes/int.C, classes/mail.C,
15898: classes/math.C, classes/op.C, classes/response.C,
15899: classes/string.C, classes/table.C, classes/void.C,
15900: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15901: include/pa_array.h, include/pa_cache_managers.h,
15902: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15903: include/pa_config_fixed.h, include/pa_config_includes.h,
15904: include/pa_db_connection.h, include/pa_db_manager.h,
15905: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
15906: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15907: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
15908: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15909: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
15910: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15911: include/pa_stack.h, include/pa_string.h,
15912: include/pa_stylesheet_connection.h,
15913: include/pa_stylesheet_manager.h, include/pa_table.h,
15914: include/pa_threads.h, include/pa_types.h, main/compile.C,
15915: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15916: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
15917: main/pa_db_connection.C, main/pa_db_manager.C,
15918: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
15919: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
15920: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
15921: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
15922: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
15923: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
15924: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
15925: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
15926: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
15927: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
15928: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
15929: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15930: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
15931: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
15932: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
15933: types/pa_vmethod_frame.h, types/pa_vobject.h,
15934: types/pa_vrequest.h, types/pa_vresponse.h,
15935: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15936: types/pa_vstateless_object.h, types/pa_vstatus.C,
15937: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
15938: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
15939: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
15940: classes/image.C, main/pa_common.C, main/pa_exec.C,
15941: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
15942: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
15943: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
15944: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
15945: types/pa_vxnode.C, main/pa_charset.C: name spelling
15946:
15947: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15948: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15949: classes/hashfile.C, classes/image.C, classes/int.C,
15950: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
15951: classes/string.C, classes/table.C, classes/void.C,
15952: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15953: include/pa_array.h, include/pa_cache_managers.h,
15954: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15955: include/pa_config_fixed.h, include/pa_config_includes.h,
15956: include/pa_db_connection.h, include/pa_db_manager.h,
15957: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
15958: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15959: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
15960: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15961: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
15962: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15963: include/pa_stack.h, include/pa_string.h,
15964: include/pa_stylesheet_connection.h,
15965: include/pa_stylesheet_manager.h, include/pa_table.h,
15966: include/pa_threads.h, include/pa_types.h, main/compile.C,
15967: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
15968: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
15969: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15970: main/pa_db_connection.C, main/pa_db_manager.C,
15971: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
15972: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
15973: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
15974: main/pa_socks.C, main/pa_sql_driver_manager.C,
15975: main/pa_status_provider.C, main/pa_string.C,
15976: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
15977: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
15978: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
15979: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
15980: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
15981: targets/isapi/pool_storage.h, types/pa_valiased.C,
15982: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
15983: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15984: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15985: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15986: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15987: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
15988: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
15989: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
15990: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15991: types/pa_vresponse.h, types/pa_vstateless_class.C,
15992: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15993: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15994: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15995: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15996: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15997: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
15998:
15999: 2002-02-07 paf
16000:
16001: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
16002:
1.101 moko 16003: * configure, configure.in, src/include/pa_config_auto.h.in,
16004: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
16005: added yet another locking function: fcntl
1.95 moko 16006:
16007: * config.sub: on cygwin configure passes it with strange i1586
16008: const, hacked it to mean i586
16009:
16010: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
16011: disabled $if reference due to conflicts with local variables
16012:
16013: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
16014: xdoc::set obsolete now, now xdoc::create, with both sences
16015:
16016: * operators.txt, src/classes/table.C, src/include/pa_array.h,
16017: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
16018: table::create now // 'set' name obsolete now table clone.
16019:
16020: * operators.txt, src/classes/string.C,
16021: src/include/pa_config_fixed.h, src/main/compile.tab.C:
16022: ^int/double/string.format now can be called with normal []
16023: brackets, not stupid {} as it were implemented for some strange
16024: reason. retaining backward compatibility due to some
16025: already-implemented servers
16026:
16027: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
16028: main/compile.y, main/compile_tools.C, main/compile_tools.h:
16029: operators now detected by check at name_without_curly_rdive_read
16030: rule whether diving code constists only of
16031: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
16032: with OP_GET_ELEMENT_OR_OPERATOR to form
16033: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
16034:
16035: 2002-02-06 paf
16036:
16037: * configure, configure.in: prefix expanded, grr
16038:
16039: * operators.txt, src/classes/mail.C: mail:send config changed
16040:
16041: 2002-02-05 paf
16042:
16043: * operators.txt: regex options commented
16044:
16045: * src/main/: pa_exec.C: argv0 now correct
16046:
16047: * src/types/pa_vstatus.C: status:rusage 3
16048:
16049: * src/types/pa_vstatus.C: status:rusage 2
16050:
16051: * operators.txt: status:rusage described int operators
16052:
16053: * src/types/pa_vstatus.C: status:rusage 1
16054:
16055: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
16056: src/types/types.dsp: status:rusage
16057:
16058: * configure.in, operators.txt, src/classes/file.C,
16059: src/classes/op.C, src/include/pa_common.h,
16060: src/include/pa_config_includes.h, src/main/compile.tab.C,
16061: src/main/pa_common.C: rewritten ^cache to use
16062: non-blocking-exclusive-caches
16063:
16064: * src/main/pa_common.C: text file read mode on win32 adjusted
16065: [speed impact. was off for debugging purpose, but forgotten
16066: afterwards]
16067:
16068: 2002-02-01 paf
16069:
16070: * src/classes/op.C: file_write does EX lock after create, while
16071: file_read does SH after open, so there's a moment after create
16072: but before EX lock when read can sneak into, and read
16073: just-created-for-writing-and-not-yet-locked file, added a check
16074: for that in ^cache...read
16075:
16076: 2002-01-31 paf
16077:
16078: * src/main/: compile.y, compile.tab.C: disabled operator call after
16079: ^xxx:
16080:
16081: * src/main/: compile.tab.C, execute.C: made operators lookup first
16082: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
16083:
16084: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
16085: main/compile.tab.C, main/compile.y, main/compile_tools.C,
16086: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
16087: operators check 6.1 rewritten. now check is done at compile time
16088:
16089: * src/main/execute.C: operators check 5 floated up old error of
16090: staying in 'entered class/object' state after $a($a..) it
16091: prevented operators from being called thereafter
16092:
16093: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
16094: main/execute.C: operators check 4 floated up old error of staying
16095: in 'entered object' state after ^a.a(a) it prevented operators
16096: from being called thereafter
16097:
16098: * src/main/execute.C: operators check 3 floated up old error of
16099: staying in 'entered class' state after $a:a(a) it prevented
16100: operators from being called thereafter
16101:
16102: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
16103: floated up old error of staying in 'entered class' state after
16104: $a:a[a] it prevented operators from being called thereafter
16105:
16106: * src/main/execute.C: operators check, thay mistakenly seen in
16107: $class:operator $object.operators contexts
16108:
16109: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
16110: win32
16111:
1.101 moko 16112: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
16113: src/classes/Makefile.am, src/main/Makefile.am,
16114: src/targets/cgi/Makefile.am,
1.95 moko 16115: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.101 moko 16116: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 16117:
1.101 moko 16118: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
16119: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
16120: configure, configure.in, form.txt, ident.awk, install-sh,
16121: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
16122: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 16123: etc/parser3.charsets/Makefile.am,
16124: etc/parser3.charsets/koi8-r.cfg,
16125: etc/parser3.charsets/windows-1250.cfg,
16126: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.101 moko 16127: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
16128: src/main/Makefile.am, src/targets/cgi/Makefile.am,
16129: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
16130: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 16131: straightened installation scripts procedure made
16132: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
16133: change
16134:
16135: 2002-01-30 paf
16136:
16137: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
16138: removed] those comments were a mistake, and prevented libltdl
16139: from function properly
16140:
16141: 2002-01-29 paf
16142:
1.101 moko 16143: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
16144: creation [modified acinclude.m4 which were creating int into just
16145: assignment LIBTOOL=../libtool] added default system
16146: config&charsetts prepared 'make install', now it installs
16147: targets/cgi/parser3 into bin directory etc/parser3.conf &
16148: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 16149: $sysconfdir/parser3.charsets respectively
16150:
16151: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
16152: main/pa_globals.C: few forgotten ifdef XML added
16153:
16154: 2002-01-28 paf
16155:
1.101 moko 16156: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 16157: removed
16158:
16159: * src/main/pa_exception.C: dom|generic error output fix
16160:
16161: * src/classes/xnode.C: xdoc.importNode 3 [check err]
16162:
16163: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
16164:
16165: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
16166: [fixed as_node helper func to accept docs]
16167:
16168: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
16169: xdoc.importNode 0
16170:
16171: * src/classes/xdoc.C: xdoc::set now untaints OK
16172:
16173: 2002-01-25 paf
16174:
16175: * src/main/: compile.tab.C, compile.y: #comment before @ after
16176: @SPECIAL now works OK
16177:
16178: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
16179:
16180: * src/main/pa_exec.C: max arg count now 10, and proper message on
16181: violation that added
16182:
16183: * src/classes/hash.C: unified hash::sql, now
16184: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
16185:
16186: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
16187: ^file:lock[filename]{code}
16188:
16189: * src/: classes/file.C, classes/op.C, classes/string.C,
16190: classes/table.C, classes/xdoc.C, include/pa_common.h,
16191: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
16192: to some pa_common funcs
16193:
16194: * src/: include/pa_charset.h, main/pa_globals.C:
16195: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
16196:
16197: * src/: include/pa_charset.h, main/pa_charset.C,
16198: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
16199: not stupid illegal define
16200:
16201: 2002-01-24 paf
16202:
16203: * src/include/pa_version.h: changed version number
16204:
16205: * src/: classes/hashfile.C, include/pa_db_table.h,
16206: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
16207: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16208: main/pa_db_connection.C, main/pa_db_table.C,
16209: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
16210: hashfile without logfiles
16211:
16212: * src/: classes/hashfile.C, include/pa_db_table.h,
16213: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
16214: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
16215: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
16216: DB_INIT_TXN init bits, thus got rid of huge log files, which
16217: cluttered disk without huge need]
16218:
16219: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
16220: handy macro, which is strangly abscent in dome lib
16221:
16222: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
16223:
16224: * src/classes/xdoc.C: checked empty response
16225:
16226: * src/classes/xnode.C: xdoc.select fixed context node [were always
16227: /, not self node]
16228:
16229: * src/classes/xnode.C: xnode.select returns array always now, in
16230: case 'nothing found' returns empty array
16231:
16232: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
16233: be more tender with ctrl/c/v
16234:
16235: 2002-01-23 paf
16236:
16237: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
16238: substituted. // 2. when dom tree with entites goes under
16239: transform text nodes // got [erroreosly] cut on first
16240: entity occurance
16241:
16242: * src/types/pa_vdouble.h: double prec. todo: get rid of
16243: twice-converting
16244:
16245: * src/types/pa_vdouble.h: %.20E now float format when %g produced
16246: 'e' in output this is for regretful twice-converting here:
16247: $a(double value) when they write double falue they convert it to
16248: string first, thus %g were losing precesion.
16249:
16250: todo: think up some way to remove double->string string->double
16251: twice-converting
16252:
16253: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
16254: %.20E now default float format this is for regretful
16255: twice-converting here: $a(double value) when they write double
16256: falue they convert it to string first, thus %g were losing
16257: precesion.
16258:
16259: todo: think up some way to remove double->string string->double
16260: twice-converting
16261:
16262: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
16263: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
16264: reasons in comment inside
16265:
16266: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
16267: statically linked]
16268:
16269: * src/: include/pa_exception.h, main/compile.tab.C,
16270: main/pa_exception.C: removed exception va_list constructor. 1.
16271: not needed anymore 2. there were a conflict[causing errors]
16272: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
16273: never detected an ambiguilty here, compiling ctor(, "hello") into
16274: ctor(, va_list) which, of course, caused gpf
16275:
16276: * src/main/pa_globals.C: removed debug xslt messages
16277:
16278: 2002-01-22 paf
16279:
16280: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
16281: main/pa_globals.C: xsl stylesheet load: parsed entities, this
16282: helps compiling stylesheet properly. example: this refused to
16283: work, <b>«<xsl:value-of select="@title"
16284: />»</b> stranly worked only this way:
16285: <b>«<xsl:value-of select="@title" />»</b>
16286:
16287: docs says "set it to 1", never going into details, so I decided
16288: to try NOT to do that
16289:
16290: * src/classes/table.C: join behaived badly in case named tables
16291: structure mismatched: 0 strings sneaked into dest failing
16292: afterwards. replaced them with empty strings
16293:
16294: 2002-01-21 paf
16295:
16296: * src/main/pa_charset.C: checked empty transcoders in
16297: transcode_cstr|buf
16298:
16299: * src/classes/xdoc.C: xdoc::load error source = filespec
16300:
16301: * src/classes/xdoc.C: transform error source now
16302: stylesheet_filespec
16303:
1.101 moko 16304: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 16305: include/pa_stylesheet_connection.h, main/pa_charset.C,
16306: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.101 moko 16307: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
16308: gnome
1.95 moko 16309:
16310: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
16311: include/pa_globals.h, include/pa_stylesheet_connection.h,
16312: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
16313: xslt generic error 1
16314:
16315: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
16316: xml generic message 1
16317:
16318: * src/classes/table.C: ^table::load empty lines or #comments before
16319: headline
16320:
16321: * src/: include/pa_array.h, include/pa_globals.h,
16322: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
16323: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
16324: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
16325: errors 0
16326:
16327: 2002-01-16 paf
16328:
16329: * src/: classes/hash.C, classes/op.C, classes/string.C,
16330: classes/table.C, classes/void.C, classes/xdoc.C,
16331: include/pa_db_connection.h, include/pa_request.h,
16332: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16333: include/pa_stylesheet_connection.h,
16334: include/pa_stylesheet_manager.h, main/pa_request.C,
16335: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16336: targets/cgi/pool_storage.h: auto closers to sql_connection,
16337: stylesheet_connection auto destroyers to remaining gnome objects
16338:
16339: * src/classes/xdoc.C: few comments
16340:
16341: 2002-01-15 paf
16342:
16343: * src/classes/xdoc.C: xdoc file save string
16344:
16345: ready. todo: error handling
16346:
16347: * src/classes/xdoc.C: xdoc save rewritten using
16348: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
16349: result
16350:
16351: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
16352: started output options parsing
16353:
16354: 2002-01-14 paf
16355:
16356: * src/classes/xdoc.C: method
16357:
16358: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
16359: include/pa_pool.h, include/pa_stylesheet_connection.h,
16360: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
16361: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
16362: xslt transform0. TODO: use output options handle errors
16363:
16364: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
16365:
16366: 2002-01-11 paf
16367:
16368: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
16369: main/compile_tools.C, main/compile_tools.h, main/execute.C:
16370: partial logical && || evaluation
16371:
16372: * src/classes/xnode.C: xpath selectNodes
16373:
16374: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
16375: string/number/bool
16376:
16377: * src/classes/xnode.C: xpath selectNode 2
16378:
16379: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
16380: xpath selectNode 1
16381:
16382: 2002-01-10 paf
16383:
16384: * src/classes/xnode.C: xpath selectNode -100 [just written]
16385:
16386: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
16387: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
16388: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
16389: refcounter]
16390:
16391: 2001-12-29 paf
16392:
16393: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
16394: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
16395: glib works 0
16396:
16397: 2001-12-28 paf
16398:
16399: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
16400: main/pa_exception.C: started glib transcoders
16401:
16402: * src/main/pa_globals.C: renamed gdome to libgdome.dll
16403:
16404: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
16405: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
16406: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
16407: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
16408: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
16409: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
16410: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
16411: libs just compiled in. no refcounting no xpath no xslt yet
16412:
16413: 2001-12-27 paf
16414:
16415: * src/: include/pa_charset.h, include/pa_common.h,
16416: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
16417: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
16418: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
16419: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
16420: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
16421: from xalan&xerces, started the process. globals [initialization
16422: pool [charset update charset [transcodings vxnode vxdoc [DOM
16423: calls
16424:
16425: * src/classes/Makefile.am: going away from xalan&xerces, not needed
16426: anymore
16427:
16428: 2001-12-26 paf
16429:
16430: * src/: include/pa_charset.h, include/pa_charsets.h,
16431: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
16432: key globalized [bug]
16433:
16434: 2001-12-25 paf
16435:
16436: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
16437: main/pa_string.C: table set & append changed splitting languages,
16438: separators now can be clean AND as-is same to mail command line
16439: $MAIN:MAIL.progX arguments
16440:
16441: 2001-12-24 paf
16442:
16443: * src/classes/mail.C: one parted text messages - no multipart
16444: mime-type anymore. for convinient if $.attach-ments
16445:
16446: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
16447: main/pa_string.C: read from cache size check updated
16448:
16449: * src/main/: pa_string.C: String::join_chain another ugly bug :(
16450:
16451: 2001-12-21 paf
16452:
16453: * src/classes/date.C: date:sql-string now returns localtime
16454:
16455: * src/main/pa_request.C: $result in @main actually not working, to
16456: hell with it for now
16457:
16458: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16459: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
16460: @postprocess @exception
16461:
16462: * src/main/execute.C: junction evaluation canceled - endless
16463: recursion detected
16464:
16465: 2001-12-19 paf
16466:
16467: * src/main/pa_charset.C: charset->charset transcoding via unicode
16468: intermediate
16469:
16470: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
16471:
16472: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
16473:
16474: * src/classes/op.C: ^cache keypath now relative
16475:
16476: * src/classes/mail.C: changed weighting prior to sort
16477:
16478: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
16479: were missing
16480:
16481: 2001-12-17 paf
16482:
16483: * src/main/pa_charset.C: ifndef XML were bad type
16484:
16485: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
16486: outdated unset services_pool
16487:
16488: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
16489: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
16490: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
16491:
16492: * src/main/untaint.C: allowed space in filespec
16493:
16494: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
16495:
16496: * src/classes/image.C: no govno
16497:
16498: * src/classes/image.C: govno
16499:
16500: 2001-12-16 paf
16501:
16502: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
16503:
16504: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
16505: charset_connection&manager replaced by charset&charsets
16506:
16507: * src/main/pa_charset.C: name_cstr 0
16508:
16509: * src/main/untaint.C: uri lang now knows about client/source
16510: charsets
16511:
16512: * src/: classes/file.C, classes/math.C, classes/op.C,
16513: classes/string.C, classes/table.C, classes/xdoc.C,
16514: include/pa_array.h, include/pa_cache_managers.h,
16515: include/pa_charset_connection.h, include/pa_charset_manager.h,
16516: include/pa_common.h, include/pa_db_connection.h,
16517: include/pa_db_manager.h, include/pa_db_table.h,
16518: include/pa_dictionary.h, include/pa_exception.h,
16519: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
16520: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
16521: include/pa_sapi.h, include/pa_socks.h,
16522: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16523: include/pa_string.h, include/pa_stylesheet_connection.h,
16524: include/pa_stylesheet_manager.h, include/pa_table.h,
16525: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
16526: main/pa_charset.C, main/pa_charset_connection.C,
16527: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
16528: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
16529: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
16530: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
16531: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16532: types/types.dsp: introducing Charset
16533:
16534: 2001-12-14 paf
16535:
16536: * src/: include/pa_request.h, include/pa_transcoder.h,
16537: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
16538: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
16539: uri lang
16540:
16541: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
16542:
16543: * src/targets/cgi/Makefile.am: -I../../pcre to .am
16544:
16545: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
16546: defalts_name global
16547:
16548: * src/: include/pa_charset_connection.h, include/pa_pool.h,
16549: include/pa_request.h, main/main.dsp,
16550: main/pa_charset_connection.C, main/pa_charset_manager.C,
16551: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
16552: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
16553: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
16554: changed charset model. now important: $request:charset
16555: $response:charset while $response:content-type.charset become
16556: unimportant [informational]
16557:
16558: 2001-12-13 paf
16559:
16560: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
16561:
16562: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
16563: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
16564: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
16565: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
16566: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
16567: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
16568:
16569: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
16570: auto_ptr part other way, because of stupid gcc 2.96
16571: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
16572: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
16573: FormatterListener] /usr/include/g++-3/memory:48:
16574: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
16575: _Tp1 = FormatterListener, _Tp = FormatterListener]
16576:
16577: * src/classes/xdoc.C: removed extra inc
16578:
16579: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
16580:
16581: * src/include/pa_types.h: msvc head debugging flag
16582:
16583: * src/classes/xdoc.C: freed up listener
16584:
16585: * src/classes/string.C: change msg '... code is not code'
16586:
16587: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
16588: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16589: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
16590: [past/future prob]
16591:
16592: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
16593: include/pa_config_fixed.h, include/pa_db_manager.h,
16594: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
16595: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
16596:
16597: * src/: include/pa_config_fixed.h, main/pa_common.C,
16598: main/pa_string.C: removed signed mismatch warnings
16599:
16600: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
16601: 'expires' from header outputs
16602:
16603: * src/main/pa_string.C: string::recustruct erroreusly used outdated
16604: row ptr
16605:
16606: * src/classes/file.C: file::cgi bug, request_method were passed to
16607: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
16608:
16609: * src/classes/xdoc.C: lang list updated
16610:
16611: 2001-12-10 paf
16612:
16613: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
16614:
16615: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
16616: erase files like that, knowing their full name introducing //
16617: theoretical problem with, for instance, "_2B" and "." fragments,
16618: // they would yield the same // because
16619: need_file_encode('_')=false // but we need to delete such files
16620: somehow, getting names from ^index
16621:
16622: * src/main/pa_string.C: ^string.replace bug fixed [bad
16623: string::join_chank break]
16624:
16625: 2001-12-07 paf
16626:
16627: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
16628: include/pa_common.h, include/pa_config_auto.h.in,
16629: include/pa_config_fixed.h, include/pa_config_includes.h,
16630: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
16631: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
16632: types/pa_vhashfile.C: merged from r14_simple_cache
16633:
16634: * src/main/pa_string.C: stupid sparc architecture failed to access
16635: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
16636: lduh [ %i2 + 1 ], %l0
16637:
16638: bus error, fixed that
16639:
16640: * src/main/pa_string.C: strange string deserialize bug on
16641: client[pmts], a bit shortened,
16642:
16643: * src/include/pa_config_auto.h.in: makes
16644:
16645: * src/: include/pa_common.h, include/pa_config_fixed.h,
16646: include/pa_config_includes.h, main/pa_common.C: exclusive lock
16647: file write shared lock file read
16648:
16649: * src/: classes/op.C, include/pa_common.h,
16650: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
16651:
16652: 2001-12-06 paf
16653:
16654: * src/: classes/op.C, classes/table.C, include/pa_request.h,
16655: main/pa_request.C: #ifdef RESOURCES_DEBUG
16656:
16657: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
16658: info
16659:
16660: * src/classes/hashfile.C: removed transaction from ^cache
16661:
16662: 2001-12-05 paf
16663:
16664: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
16665: IIS5 there were a prob with illegal call check
16666:
16667: 2001-12-04 paf
16668:
16669: * src/: classes/op.C, classes/table.C, include/pa_request.h,
16670: main/pa_request.C: measures to log
16671:
16672: 2001-11-23 paf
16673:
16674: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
16675: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
16676: types/pa_vhashfile.C: merged from _0014, 1
16677:
16678: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
16679: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
16680: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
16681: ^cache(33) would change
16682:
16683: 0660 bits in file_write & hashfile create
16684:
16685: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
16686: after pa_string optimization]
16687:
16688: 2001-11-22 paf
16689:
16690: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
16691: table.offset[whence]
16692:
16693: * src/classes/op.C: process cstr(,connection)
16694:
16695: * src/classes/op.C: process now gets its body on current language,
16696: not as-is
16697:
16698: * src/main/untaint.C: ORIGINS mode removed UHTML
16699:
16700: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
16701: bit
16702:
1.101 moko 16703: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 16704:
16705: 2001-11-21 paf
16706:
16707: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
16708: <xsl:output output options made identical to xsl:output
16709: attributes exclusion: cdata-section-elements what xalan can do
16710: but that not used now: it can escape and remove CDATA sections
16711:
16712: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
16713: produced by xslt
16714:
16715: * src/targets/cgi/parser3.C: removed debug cgi||1
16716:
16717: * src/main/: pa_string.C, untaint.C: cached some string::size() es
16718:
16719: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
16720: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
16721: default language for {code}, it happen to change it's language
16722: from CLEAN, so later refused to split by CLEAN \t
16723:
16724: 2001-11-20 paf
16725:
1.101 moko 16726: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
16727: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 16728: bottom of dependeces, so that errors would popup quicklier, fixed
16729: line numbering in table::sql
16730:
16731: 2001-11-19 paf
16732:
16733: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
16734: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
16735: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
16736: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
16737: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
16738: at wcontext.write
16739:
1.101 moko 16740: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 16741: _set_new_handler
16742:
1.101 moko 16743: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
16744: set_new_handler in apache&isapi
1.95 moko 16745:
16746: 2001-11-16 paf
16747:
16748: * src/targets/cgi/parser3.C: pool debug @ die
16749:
16750: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
16751: removed 8 bytes from String, 2 bytes from
16752: string::chunk::row::item
16753:
16754: * src/main/pa_string.C: removed 1+4 bytes from String
16755:
16756: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
16757: types/pa_vstring.C: removed 1+4 bytes from String
16758:
16759: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
16760: 0
16761:
16762: * src/: include/pa_globals.h, include/pa_string.h,
16763: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
16764: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
16765: targets/cgi/parser3.C: introducing estimating
16766: String::cstr_bufsize, 0
16767:
16768: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
16769:
16770: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
16771:
16772: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
16773: include/pa_pool.h: die in pool::fail
16774:
16775: 2001-11-15 paf
16776:
16777: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
16778: main/pa_exception.C, targets/cgi/parser3.C: exception with
16779: dynamic buffer re-back now with counter
16780:
16781: * src/: include/pa_exception.h, main/pa_exception.C: exception with
16782: static buffer back
16783:
16784: * src/targets/cgi/parser3.C: std::
16785:
16786: * src/: classes/classes.awk, include/pa_config_auto.h.in,
16787: include/pa_config_includes.h: setnewhandler check
16788:
1.101 moko 16789: * src/include/pa_config_auto.h.in: makes
1.95 moko 16790:
16791: * src/targets/cgi/parser3.C: set_new_handler started
16792:
16793: 2001-11-14 paf
16794:
16795: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
16796: was wrong
16797:
16798: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
16799: was wrong
16800:
16801: * src/main/pa_request.C: z
16802:
16803: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
16804: full returns win32 -1 solaris >buffer_size
16805:
16806: checked all that
16807:
16808: * src/classes/op.C: ^untaint{body} as-is default now
16809:
16810: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
16811: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
16812: with no_bad_constructors_try
16813:
16814: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
16815: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
16816: this: $bred[^string::length[]] $bred[^response::clear[]]
16817: $bred[^int::int[]]
16818:
16819: now VObject creation moved into overriden
16820: VClass::create_new_value, thus 0 from create_new_value means that
16821: class has no ctors
16822:
16823: 2001-11-13 paf
16824:
16825: * src/classes/classes.C: returned accedently removed if in foreach
16826: callbacks [when hash no-0-restructure]
16827:
16828: 2001-11-12 paf
16829:
16830: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
16831: passed as-is to method, xalan makes & into & itself
16832:
16833: * src/classes/date.C: date.roll parser2 alg used
16834:
16835: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
16836: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
16837: main/pa_dictionary.C, main/pa_hash.C,
16838: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
16839: now does not containt 0 values. put 0 actullay removes. no check
16840: on 0 value in foreach now required
16841:
16842: 2001-11-11 paf
16843:
16844: * src/sql/pa_sql_driver.h: removed extra constructor, doc
16845:
16846: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
16847:
16848: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
16849: driver initialize not const
16850:
16851: 2001-11-10 paf
16852:
16853: * src/main/pa_exec.C: doc
16854:
16855: 2001-11-09 paf
16856:
16857: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
16858: param properly
16859:
16860: * src/classes/string.C: string.save now does untainting before
16861: saving
16862:
16863: * src/main/pa_common.C: line endings fixing fixed last piece[was
16864: still cstr oriented]
16865:
16866: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
16867: line endings fixing got rid of cstr, now must work ok with post
16868: multipart
16869:
16870: * src/types/pa_vform.C: line endings fixed at post / multipart /
16871: not file also now
16872:
16873: 2001-11-08 paf
16874:
16875: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
16876: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
16877: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
16878: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
16879: main/pa_stylesheet_manager.C: restructured Cache manager to be
16880: simple parent, not second parent [gcc 2.96 strangly refused to
16881: call virtual from second parent]
16882:
1.101 moko 16883: * src/: include/pa_common.h, main/Makefile.am,
16884: targets/cgi/pa_pool.C: makes
1.95 moko 16885:
16886: * src/: include/pa_request.h, main/pa_request.C,
16887: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
16888: 'status' class enabler
16889:
16890: <Location /parser-status.html> ParserStatusAllowed </Location>
16891:
16892: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
16893: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
16894: include/pa_stylesheet_manager.h, main/main.dsp,
16895: main/pa_cache_managers.C, main/pa_charset_manager.C,
16896: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
16897: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16898: types/pa_vstatus.h: cache_managers, maybe-expiring every request
16899: todo: apache 'status' class enabler
16900:
16901: 2001-11-05 paf
16902:
16903: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
16904: debug to normal
16905:
16906: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
16907: hence i removed skipping 0 values in hash::for_each-es we need to
16908: check cleaned cache items manually. few more checks.
16909:
16910: expiring to 0 time was wrong, changed to 'now' time
16911:
16912: * src/targets/cgi/parser3.C: read can return 0, that means sort of
16913: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
16914: on apache already done :)
16915:
16916: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
16917: skipping 0 values in hash::for_each-es we need to check cleaned
16918: cache items manually
16919:
16920: * src/main/: pa_db_connection.C, pa_db_table.C:
16921: parser_multithreaded check was wrong
16922:
16923: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16924: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16925: classes/hashfile.C, classes/image.C, classes/int.C,
16926: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16927: classes/string.C, classes/table.C, classes/void.C,
16928: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16929: include/pa_array.h, include/pa_charset_connection.h,
16930: include/pa_charset_manager.h, include/pa_common.h,
16931: include/pa_config_fixed.h, include/pa_config_includes.h,
16932: include/pa_db_connection.h, include/pa_db_manager.h,
16933: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
16934: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16935: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16936: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16937: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16938: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16939: include/pa_stack.h, include/pa_string.h,
16940: include/pa_stylesheet_connection.h,
16941: include/pa_stylesheet_manager.h, include/pa_table.h,
16942: include/pa_threads.h, include/pa_types.h, main/compile.C,
16943: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
16944: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
16945: main/pa_charset_manager.C, main/pa_common.C,
16946: main/pa_db_connection.C, main/pa_db_manager.C,
16947: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
16948: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
16949: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
16950: main/pa_socks.C, main/pa_sql_driver_manager.C,
16951: main/pa_status_provider.C, main/pa_string.C,
16952: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
16953: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
16954: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16955: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
16956: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
16957: targets/isapi/pool_storage.h, types/pa_valiased.C,
16958: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
16959: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16960: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16961: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16962: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16963: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
16964: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
16965: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
16966: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
16967: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16968: types/pa_vstateless_object.h, types/pa_vstatus.h,
16969: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
16970: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
16971: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
16972: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
16973: $status:db fixed used not initialized in db_connection & db_table
16974:
16975: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
16976: $status:charset
16977:
16978: * src/: classes/xdoc.C, include/pa_db_connection.h,
16979: include/pa_stylesheet_connection.h,
16980: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
16981: types/pa_vstatus.h: $status:stylesheet
16982:
16983: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
16984: include/pa_request.h, include/pa_sql_connection.h,
16985: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
16986: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
16987: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
16988: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
16989: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
16990: types/pa_vxnode.C, types/types.dsp: started status parser class
16991:
16992: 2001-11-01 paf
16993:
16994: * src/include/pa_config_auto.h.in: makes
16995:
16996: * src/main/pa_hash.C: removed old extra include
16997:
16998: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
16999: checks [for hp, there are such in math.h]
17000:
17001: * src/classes/op.C: ^for endless loop check strightened
17002:
17003: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
17004: behavior in native calls. it left unchanged, so ^for ^foreach &
17005: co can use r.root to write their i & key,value there
17006:
17007: * src/classes/op.C: detected for var storage bug, fixed.
17008: todo:foreach
17009:
17010: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
17011: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17012: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
17013: changing of hash inside of foreach
17014:
17015: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
17016: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
17017: were hash.foreach
17018:
17019: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
17020: types/pa_vstring.C, types/pa_vstring.h:
17021: ^foreach[key|value]{body}[[separator]|{separator}]
17022:
17023: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
17024: types/pa_vcookie.C: ^hash.delete[key]
17025:
17026: 2001-10-31 paf
17027:
17028: * src/main/: compile.C, pa_common.C: completely empty file now
17029: considered "read", not ignored [not perfect trick used]
17030:
17031: * src/main/pa_common.C: simplier common ifdefs
17032:
17033: * src/main/pa_common.C: typing bug in common - bad ifdeff
17034:
17035: * src/main/pa_db_connection.C: z
17036:
17037: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
17038: lockdetector flags
17039: dbenv.lk_detect=DB_LOCK_RANDOM;
17040:
17041: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
17042: from accidental show [imagine user forgot @exception]
17043:
17044: * src/classes/table.C: ^table.save[[nameless|+append;]path]
17045:
17046: * src/: classes/file.C, classes/image.C, classes/mail.C,
17047: classes/string.C, classes/xnode.C, include/pa_common.h,
17048: main/pa_common.C: ^string.save[[append;]path]
17049:
17050: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17051: main/execute.C: \ in expression: int divide 10/3=3
17052:
17053: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
17054: inside of ^cache
17055:
17056: * src/: include/pa_threads.h, main/pa_db_connection.C,
17057: main/pa_db_table.C, targets/cgi/pa_threads.C,
17058: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
17059: needed
17060:
17061: 2001-10-30 paf
17062:
17063: * src/: classes/classes.dsp, main/main.dsp,
17064: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17065: types/types.dsp: enabled debug incremental compile
17066:
17067: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
17068: form post data line endings not reformatted now.
17069:
17070: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
17071: now required [had bug when file= has no value]
17072:
17073: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
17074: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
17075: cstr(asis) default param removed
17076:
17077: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
17078:
17079: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
17080:
17081: * src/include/pa_dir.h: LOAD_DIR fixed
17082:
17083: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
17084: was broken} fix_line_breaks
17085:
17086: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
17087: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
17088: packed with #pragma pack
17089:
1.101 moko 17090: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 17091:
17092: 2001-10-29 paf
17093:
17094: * src/types/pa_wcontext.h: bitfield syntax stricter
17095:
17096: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
17097: string hash.puts
17098:
17099: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
17100:
17101: * src/include/pa_sql_connection.h: there were one wrong
17102: SQL_CONNECTION_FUNC_GUARDED [failed]
17103:
17104: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
17105: param.someday either ifdef or remove it
17106:
17107: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
17108:
17109: * src/main/untaint.C: optimizing returned after debugging
17110:
17111: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
17112: main/untaint.C: memory hunging #pragma pack(1)
17113:
17114: 16 419 844 13 169 394
17115:
17116: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
17117: targets/cgi/pa_pool.C: String size_t replace to uint in proper
17118: places [todo:Array]
17119:
17120: * src/: main/execute.C, targets/cgi/pa_pool.C,
17121: targets/cgi/parser3.dsp, types/pa_wcontext.h,
17122: types/pa_wwrapper.h: debugging memory WContext flags to bits
17123:
17124: total 5 652 652/158731 total 5 469 332/158731
17125:
17126: * src/: include/pa_array.h, main/pa_array.C: debugging memory
17127: Array:: without cache in get/put now
17128:
17129: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
17130: 18:25:27 2001] total 5 652 652/158731
17131:
17132: * src/: include/pa_string.h, main/pa_string.C,
17133: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
17134: now
17135:
17136: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
17137: 18:11:53 2001] total 5796092/158731
17138:
17139: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
17140: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
17141: key ref now
17142:
17143: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
17144: 17:11:17 2001] total 16867948/202658
17145:
17146: * src/: classes/file.C, classes/image.C, classes/string.C,
17147: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
17148: main/execute.C, main/pa_array.C, main/pa_common.C,
17149: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
17150: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
17151: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
17152: string::as_int/double now usually uses stack, not heap [200K out
17153: of 17M :)] VString(String&) not copies reference [29M -> 17M]
17154:
17155: * src/main/pa_sql_driver_manager.C: ping to have services [old
17156: hiding bug]
17157:
17158: * src/Makefile.am: .am order
17159:
17160: * src/: include/pa_array.h, include/pa_charset_manager.h,
17161: include/pa_db_connection.h, include/pa_db_manager.h,
17162: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
17163: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
17164: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
17165: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
17166: required "friend class"
17167:
17168: ../include/pa_request.h:51: friend declaration requires
17169: class-key, i.e. `friend class Temp_lang'
17170:
17171: * src/: include/pa_exception.h, include/pa_sql_connection.h,
17172: main/pa_exception.C, main/pa_sql_driver_manager.C,
17173: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
17174:
17175: the idea is to #1 jump to C++ some function to main body, where
17176: every function stack frame has exception unwind information and
17177: from there... #2 propagate_exception()
17178:
17179: 2001-10-28 paf
17180:
17181: * src/main/pa_db_connection.C: removed old consts
17182:
17183: * src/main/pa_db_connection.C: expire table [was accidently pasted
17184: with wrong type/cast]
17185:
17186: * src/main/: pa_db_connection.C, pa_db_table.C: exception
17187: translation
17188:
1.101 moko 17189: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 17190: remember to build DB2 with -fexceptions!!!
17191:
17192: * src/main/pa_db_table.C: DB_RMW defed
17193:
17194: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
17195: include/pa_db_connection.h, include/pa_db_manager.h,
17196: include/pa_db_table.h, main/pa_db_connection.C,
17197: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
17198:
17199: 2001-10-27 paf
17200:
17201: * src/: classes/hashfile.C, include/pa_db_connection.h,
17202: include/pa_db_table.h, main/pa_db_connection.C,
17203: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
17204: types/pa_vhashfile.C: DB2 ifdefs
17205:
1.101 moko 17206: * src/: classes/Makefile.am, include/pa_config_fixed.h,
17207: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 17208: makes with DB2
17209:
1.101 moko 17210: * src/: include/pa_config_auto.h.in, main/Makefile.am,
17211: types/Makefile.am: makes db
1.95 moko 17212:
17213: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
17214: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
17215: globals.C
17216:
17217: * src/: classes/hashfile.C, include/pa_db_connection.h,
17218: include/pa_db_table.h, main/pa_db_connection.C,
17219: main/pa_db_table.C: ^hashfile.clear[]
17220:
17221: * src/classes/classes.awk: no $ in var names
17222:
17223: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
17224: connection&table [forgotten calls]
17225:
17226: 2001-10-26 paf
17227:
17228: * src/main/pa_db_connection.C: db checkpoints
17229:
17230: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
17231: checkpoints
17232:
17233: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
17234: default. but entities still reparsed. todo: tothink
17235:
17236: * src/main/pa_db_connection.C: db recover mech 2
17237:
17238: * src/: classes/hashfile.C, include/pa_db_connection.h,
17239: include/pa_db_manager.h, include/pa_db_table.h,
17240: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
17241: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
17242: types/pa_vhashfile.h: db connections & tables now cached at
17243: create time & multithreaded
17244:
17245: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
17246: parsed_source
17247:
17248: * src/main/pa_db_connection.C: about to remove connection from
17249: vhashfile
17250:
17251: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
17252: transaction commit/rollback responsibility left to parent [as it
17253: sould - else there were a bug with double free]
17254:
17255: * src/include/pa_db_table.h: db: child transaction commit/rollback
17256: responsibility left to parent [as it sould - else there were a
17257: bug with double free]
17258:
17259: 2001-10-25 paf
17260:
17261: * src/: classes/hashfile.C, include/pa_common.h,
17262: include/pa_db_connection.h, include/pa_db_manager.h,
17263: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
17264: types/pa_vhashfile.C, types/pa_vhashfile.h,
17265: include/pa_db_table.h, main/pa_db_table.C: started db_home
17266: [multiple, cached] todo: autorecover [tried, but not succeded,
17267: yet]
17268:
17269: * src/include/pa_dir.h: ancient gpf on dir not found fixed
17270:
17271: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
17272: transaction parent passed
17273:
17274: 2001-10-24 parser
17275:
1.101 moko 17276: * src/classes/Makefile.am: makes
1.95 moko 17277:
17278: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
17279: isapi/pool_storage.h: pool_storage fixed
17280:
17281: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
17282: types/pa_vform.h: form fix_line_breaks
17283:
1.101 moko 17284: * src/targets/cgi/pool_storage.h: makes
1.95 moko 17285:
17286: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
17287: targets/cgi/pool_storage.h: makes
17288:
17289: * src/sql/pa_sql_driver.h: version
17290:
17291: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
17292: types/pa_vform.C, types/pa_vform.h: .am
17293:
17294: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
17295: this: DB_RMW Acquire write locks instead of read locks when doing
17296: the retrieval. Setting this flag may decrease the likelihood of
17297: deadlock during a read-modify-write cycle by immediately
17298: acquiring the write lock during the read part of the cycle so
17299: that another thread of control acquiring a read lock for the same
17300: item, in its own read-modify-write cycle, will not result in
17301: deadlock
17302:
17303: * src/targets/isapi/parser3isapi.dsp: doc
17304:
17305: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
17306:
17307: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
17308:
17309: * src/: classes/hashfile.C, include/pa_db_connection.h,
17310: main/pa_db_connection.C: hashfile expired deleted from db when
17311: get & iterate
17312:
17313: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
17314: expiring 1
17315:
17316: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
17317:
17318: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
17319: db_connection not bothers with key when not returning expired
17320: data
17321:
17322: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
17323: types/pa_vhashfile.C: db_cursor constructor public now
17324:
17325: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
17326: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
17327: stamped, todo: put_element analize
17328:
17329: * src/: include/pa_db_connection.h, include/pa_string.h,
17330: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
17331: serialize. todo stamp
17332:
17333: 2001-10-23 parser
17334:
17335: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
17336: classes/image.C, classes/mail.C, classes/response.C,
17337: classes/string.C, classes/table.C, classes/xdoc.C,
17338: include/pa_config_fixed.h, include/pa_db_connection.h,
17339: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
17340: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
17341: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
17342: types/pa_vtable.C: ^hashfile.hash[]
17343:
17344: * src/: classes/hashfile.C, classes/xdoc.C,
17345: include/pa_config_fixed.h, main/pa_db_manager.C,
17346: main/pa_globals.C: ifdefs so it compiled without db
17347:
17348: * src/: classes/hashfile.C, include/pa_db_connection.h,
17349: include/pa_db_manager.h, main/pa_db_connection.C,
17350: main/pa_db_manager.C, types/pa_vhashfile.h:
17351: ^hashfile.transaction{code} ^hashfile:clear[filename]
17352: ^hashfile.delete[key]
17353:
17354: 2001-10-22 parser
17355:
17356: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
17357: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
17358:
17359: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
17360: classes/xnode.C, include/pa_charset_connection.h,
17361: include/pa_db_connection.h, include/pa_db_manager.h,
17362: include/pa_exception.h, include/pa_sapi.h,
17363: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17364: include/pa_stylesheet_connection.h,
17365: include/pa_stylesheet_manager.h,
17366: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
17367: main/pa_db_connection.C, main/pa_db_manager.C,
17368: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
17369: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
17370: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
17371: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
17372: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
17373: types/types.dsp: hashfile 0
17374:
17375: * src/types/pa_vhashfile.C: z
17376:
17377: * src/: classes/classes.dsp, classes/hashfile.C,
17378: include/pa_config_fixed.h, main/execute.C,
17379: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
17380: types/pa_vhashfile.h, types/types.dsp: hashfile -100
17381:
17382: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
17383:
17384: * src/: include/pa_exception.h, include/pa_request.h,
17385: main/execute.C, main/pa_exception.C, main/pa_request.C,
17386: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
17387: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
17388:
17389: 2001-10-19 parser
17390:
17391: * src/include/pa_pool.h: header
17392:
17393: * src/main/pa_pool.C: auto compiled on gcc
17394:
17395: * src/classes/image.C: comment
17396:
1.101 moko 17397: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 17398:
17399: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17400: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17401: types/pa_vxnode.h: xnode clone got freed
17402:
17403: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
17404: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
17405: can free up xalandomstring resulting from pool::transcode
17406:
17407: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
17408: include/pa_config_fixed.h, include/pa_exception.h,
17409: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
17410: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
17411: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
17412: to c++ exceptions 1xml configure fixed to exclude xalan-patch
17413: from non-xml compile
17414:
17415: * src/main/pa_request.C: pool:: context - get_context
17416:
17417: * src/: classes/classes.h, classes/date.C, classes/double.C,
17418: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
17419: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
17420: classes/string.C, classes/table.C, classes/void.C,
17421: include/pa_config_fixed.h, include/pa_exception.h,
17422: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
17423: main/compile.C, main/compile_tools.C, main/execute.C,
17424: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
17425: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
17426: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
17427: main/pa_string.C, main/pa_table.C, main/untaint.C,
17428: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
17429: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
17430: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
17431: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
17432: types/pa_vstateless_class.h, types/pa_vtable.C,
17433: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
17434: exceptions 0
17435:
17436: * src/classes/classes.awk: $ removed
17437:
17438: 2001-10-18 parser
17439:
17440: * src/types/pa_vcookie.C: cookie:CLASS
17441:
17442: * src/main/main.dsp: project
17443:
17444: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
17445: set_document & ctor question "who owns document" solved
17446:
17447: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
17448:
17449: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
17450: main/pa_pool.C: encoding in dom creating funcs
17451:
17452: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
17453: be transformed now
17454:
17455: * src/classes/xdoc.C: dom created by create can be transformed now
17456:
17457: * src/classes/xdoc.C: z
17458:
17459: * src/classes/xdoc.C: comment
17460:
17461: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
17462: create now uses XercesDocumentBridge, appendChild&co now works
17463:
17464: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
17465: @ recompile
17466:
17467: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
17468: $origin @exception[
17469:
17470: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
17471: tag names forced to XML lang
17472:
17473: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
17474: leechy-found bugs in code&doc fixed
17475:
17476: 2001-10-17 parser
17477:
17478: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
17479: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
17480: n functionality preserved
17481:
17482: * src/types/pa_vimage.h: removed unused vimage::save
17483:
17484: 2001-10-16 parser
17485:
17486: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
17487:
17488: * src/classes/: xnode.C: removed few dom returns & changed op.txt
17489:
17490: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
17491:
17492: * src/classes/image.C: image.copy tolerance
17493:
17494: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
17495: ineffective, but works for small paleted image
17496:
17497: * src/types/pa_vimage.C: comment
17498:
17499: * src/classes/image.C: gd size/resize bugfix
17500:
17501: * src/: classes/classes.dsp, main/main.dsp,
17502: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17503: types/types.dsp: ident >nul 2>&1
17504:
17505: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
17506: systems
17507:
17508: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
17509: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
17510:
17511: 2001-10-15 parser
17512:
17513: * src/main/execute.C: z
17514:
17515: * src/classes/: xdoc.C: !::create{qualifiedName}
17516:
17517: * src/types/pa_vxnode.C: document_type_node.
17518: !readonly attribute DOMString name
17519: !notation_node.
17520: !readonly attribute DOMString publicId
17521: !readonly attribute DOMString systemId
17522:
1.101 moko 17523: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
17524: ::write badly passed string too transparently [failed to
17525: intercept it]
1.95 moko 17526:
17527: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
17528: include/pa_request.h, main/pa_sql_driver_manager.C,
17529: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17530: types/pa_vxnode.h: DOM1 major addtion, only few
17531: attributes/methods left
17532:
17533: 2001-10-13 parser
17534:
17535: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
17536: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
17537: in main handler
17538:
17539: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
17540: cleanups & frees order
17541:
17542: * src/types/pa_vcode_frame.h: couple comments
17543:
17544: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
17545: transparent enough to handle hash if creation&passing
17546:
17547: * src/: include/pa_config_fixed.h, main/execute.C,
17548: main/pa_exception.C: noticed that vcodeframe not transparent
17549: enough, would change now
17550:
17551: 2001-10-12 parser
17552:
17553: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
17554: fixed. initialization&free on each thread!
17555:
17556: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
17557: handling changed: now type of default param analized always, not
17558: only at problem time, thus helping early problem spotting
17559:
17560: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
17561: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
17562: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
17563: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
17564: multithread bug fixed. initialization&free on each thread!
17565:
17566: 2001-10-11 parser
17567:
17568: * src/classes/xnode.C: xnode.selectSingle now
17569:
17570: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
17571: include/pa_pool.h, include/pa_stylesheet_connection.h,
17572: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
17573: convertors out of Pool into Exception
17574:
17575: * src/main/pa_string.C: const
17576:
17577: * src/: include/pa_string.h, main/pa_string.C: restructured string:
17578: linked pieces of same language together prior to String::replace
17579:
17580: * src/classes/hash.C: !^hash.add[addme]
17581: !^hash.sub[subme]
17582: !^a.union[b] = new
17583: !^a.intersection[b] = new
17584: !^a.intersects[b] = bool
17585:
17586: * src/classes/hash.C: !^hash::append[append_from]
17587:
17588: * src/: classes/hash.C, types/pa_vhash.h:
17589: !^hash::create[[copy_from]]
17590:
17591: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
17592: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
17593: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
17594: fixed. got rid of empty_string, which caused errors - it hasnt
17595: exception but somebody[value.bark] tried to throw it on it's pool
17596:
1.101 moko 17597: * src/include/pa_config_auto.h.in: makes
1.95 moko 17598:
17599: 2001-10-10 parser
17600:
17601: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
17602:
17603: * src/main/: compile.tab.C, compile.y: ^a[
17604:
17605: @next_method << now unclosed ] would be reported here
17606:
17607: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
17608: compile error
17609:
17610: 2001-10-09 parser
17611:
1.101 moko 17612: * src/: classes/Makefile.am, main/Makefile.am,
17613: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 17614:
17615: * src/classes/Makefile.am: makes
17616:
17617: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
17618: win32 errors intercepted [xalan transformer patched and
17619: incorporated]
17620:
17621: * src/: classes/classes.dsp, classes/xdoc.C,
17622: include/pa_stylesheet_connection.h, main/main.dsp,
17623: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
17624: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
17625: patches starting
17626:
17627: * src/classes/: string.C, table.C: ^string.save[file]
17628:
17629: * src/classes/: date.C, table.C: calendar moved to date
17630:
17631: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
17632: string/table] now
17633:
17634: * src/classes/: op.C, table.C: z
17635:
17636: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
17637: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
17638: types/pa_vxnode.h: table:menu & op for delims made allowed not to
17639: be code [be string..]
17640:
17641: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
17642: table.C: lots of
17643: params->as_int/double/as_string/as_junction/as_no_junction
17644: messages added
17645:
17646: 2001-10-08 parser
17647:
17648: * src/: classes/date.C, classes/image.C, classes/string.C,
17649: classes/table.C, classes/void.C, include/pa_request.h:
17650: params->as_int/double message added
17651:
17652: * src/classes/image.C: image:circle [and round arc] uses Bresenham
17653:
17654: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
17655: image:sector removed image:html internal "line-*" attribs
17656:
17657: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
17658: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
17659:
17660: * src/types/pa_vcookie.C: removing cookie made more netscape-like
17661: way
17662:
17663: * src/: classes/file.C, classes/form.C, main/pa_common.C,
17664: main/untaint.C: header untainting to UL_HTTP_HEADER,
17665: UL_MAIL_HEADER made nonforced [only tainted pieces]
17666:
17667: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
17668: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
17669: @ SAPI::log
17670:
17671: * src/main/untaint.C: \r to ' ' in origins mode
17672:
17673: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
17674: set]
17675:
17676: * src/: classes/xdoc.C, include/pa_config_fixed.h,
17677: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
17678: nonstandard liaison freed up
17679:
17680: 2001-10-07 parser
17681:
17682: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
17683: project
17684:
17685: 2001-10-05 parser
17686:
17687: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
17688: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
17689: from outputing to cerr. lots of "todos"
17690:
17691: * src/main/untaint.C: http_header tainting more gentle with
17692: enquoting now
17693:
17694: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
17695: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
17696: xml errorhandler. fixed string.replace a little, read @test
17697:
17698: * src/main/pa_string.C: found replace bug - first_that_starts(char
17699: *) does not have limit, and looks further eos, fixing....
17700:
17701: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
17702:
17703: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
17704:
17705: * src/main/: pa_charset_connection.C: ctype another mem clear
17706: bugfix
17707:
1.101 moko 17708: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
17709: $result[^[$p^]z] now works fine
1.95 moko 17710:
17711: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
17712: wrong. fixed it
17713:
17714: * src/main/pa_charset_connection.C: unicode zero pair at the beging
17715: of totable appered to be vital
17716:
17717: 2001-10-04 parser
17718:
17719: * src/classes/image.C: ^image.length[text]
17720:
17721: 2001-10-03 parser
17722:
17723: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
17724:
17725: * src/main/pa_request.C: restored pcre defaulting in request
17726: [mindlessly "optimized" yesterday] comment left
17727:
17728: 2001-10-02 parser
17729:
17730: * src/: main/pa_charset_manager.C,
17731: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
17732: needed
17733:
17734: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
17735: forgot non-xml pool.*charset needed
17736:
17737: * src/classes/table.C: # config comments fixed
17738:
17739: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
17740: charset_connection #comment now
17741:
17742: * src/: classes/classes.dsp, types/types.dsp: release projects
17743: options fixed to use release msvcrt lib
17744:
17745: * src/main/pa_charset_connection.C: pcre tables now const inside
17746: removed default - pcre handles that internally fixed bug on
17747: not-cleaning tables [previously was calloced, now member]
17748:
17749: * src/: include/pa_request.h, main/pa_charset_connection.C,
17750: main/pa_request.C, types/pa_vstring.h: pcre tables now const
17751: inside removed default - pcre handles that internally fixed bug
17752: on not-cleaning tables [previously was calloced, now member]
17753:
17754: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
17755: tested charset reload on file change @ apache version = OK tested
17756: freeing up prev encoding on adding new = OK
17757:
17758: 2001-10-01 parser
17759:
17760: * src/main/pa_charset_connection.C: removed entitify external hack
17761: [internal installed]
17762:
1.101 moko 17763: * src/main/Makefile.am: makes+removed dtd
1.95 moko 17764:
17765: * src/: include/pa_charset_connection.h,
17766: include/pa_charset_manager.h,
17767: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
17768: main/pa_charset_connection.C, main/pa_charset_manager.C,
17769: main/pa_request.C: charset loading & caching mech 0
17770:
17771: * src/: include/pa_stylesheet_connection.h,
17772: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
17773: main/pa_globals.C, main/pa_request.C: would make charset loading
17774: & caching mech now
17775:
17776: 2001-09-30 parser
17777:
17778: * src/main/pa_request.C: forgot to fill toTable
17779:
17780: * src/: include/pa_config_fixed.h, main/pa_request.C: started
17781: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
17782: failed on win32 for now..
17783:
17784: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
17785: now charsets table configuration variable is: CHARSETS
17786:
17787: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
17788: ctype with unicode 1. todo: no П entities on output somehow
17789:
17790: * src/: classes/file.C, classes/op.C, classes/string.C,
17791: include/pa_request.h, main/pa_request.C: started ctype with
17792: unicode values
17793:
17794: 2001-09-28 parser
17795:
17796: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
17797: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
17798: string passed AS-IS now
17799:
17800: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
17801: way of user-configuring... todo: implement
17802:
17803: 2001-09-27 parser
17804:
17805: * src/classes/table.C: table.sort changed to sort table itself
17806:
17807: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
17808: X^.getElementsByTagName[tagname] = array of xnode
17809: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
17810: nodes removed - regretfully not supported @ xalan. maybe someday
17811: would reimplement, if needed.
17812:
17813: win32build system: solved long waiting anti-non-started-apache
17814: problem
17815:
17816: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
17817: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17818: types/types.dsp: win32 ident make system so not to rebuild
17819: library [ident.C.new]
17820:
17821: 2001-09-26 parser
17822:
17823: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
17824: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
17825: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
17826: types/pa_vxnode.C, types/types.dsp: z
17827:
17828: * src/classes/classes.C: forgot one non-xml check
17829:
1.101 moko 17830: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
17831: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 17832:
17833: * src/targets/cgi/parser3.C: z
17834:
17835: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
17836: targets/isapi/parser3isapi.C: #ifdef SMTP
17837:
17838: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
17839: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17840: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
17841: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
17842: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17843: types/types.dsp: xdoc&xnode now
17844:
17845: * src/: classes/classes.C, classes/classes.awk,
17846: classes/classes.dsp, classes/classes.h, classes/date.C,
17847: classes/dnode.C, classes/dnode.h, classes/dom.C,
17848: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17849: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17850: classes/op.C, classes/response.C, classes/string.C,
17851: classes/table.C, classes/void.C, include/pa_array.h,
17852: include/pa_common.h, include/pa_config_fixed.h,
17853: include/pa_config_includes.h, include/pa_dictionary.h,
17854: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
17855: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
17856: include/pa_socks.h, include/pa_sql_connection.h,
17857: include/pa_sql_driver_manager.h, include/pa_stack.h,
17858: include/pa_string.h, include/pa_stylesheet_connection.h,
17859: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
17860: include/pa_xslt_stylesheet_manager.h, main/compile.C,
17861: main/compile.y, main/compile_tools.C, main/compile_tools.h,
17862: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
17863: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
17864: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
17865: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
17866: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
17867: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
17868: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17869: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17870: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
17871: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
17872: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
17873: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
17874: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
17875: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
17876: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
17877: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
17878: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
17879: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
17880: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
17881: types/pa_vmethod_frame.h, types/pa_vobject.h,
17882: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
17883: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17884: types/pa_vstateless_object.h, types/pa_vstring.C,
17885: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
17886: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
17887: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
17888: main.dsp splitted to main+classes+types along to .am
17889:
17890: * src/classes/Makefile.am: removed useless var
17891:
17892: * src/: classes/classes.cmd, main/main.dsp,
17893: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
17894: main.dsp
17895:
17896: 2001-09-25 parser
17897:
17898: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
17899: 1251 though, todo ICU
17900:
1.101 moko 17901: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 17902: include/pa_stylesheet_connection.h, main/Makefile.am,
1.101 moko 17903: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
17904: types/pa_vdom.h: xml configure makes
1.95 moko 17905:
17906: 2001-09-24 parser
17907:
1.101 moko 17908: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
17909: types/Makefile.am: makes
1.95 moko 17910:
1.101 moko 17911: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 17912:
17913: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
17914: started unix makes update
17915:
17916: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
17917: started unix makes update
17918:
17919: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
17920:
17921: * src/types/pa_value.h: z
17922:
17923: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
17924: bugs with usinge hash/table in expressions
17925:
17926: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
17927: resolved conflicts fixed [const]
17928:
17929: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
17930: classes/table.C, include/pa_request.h, include/pa_sapi.h,
17931: main/compile.C, main/compile.tab.C, main/compile.y,
17932: main/compile_tools.h, main/main.dsp, main/pa_common.C,
17933: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
17934: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
17935: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
17936: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
17937: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
17938: with before_xml [merge2 actually didn't happen - i've created
17939: tags on wrong branch. so this merge is in fact re-merge]
17940:
17941: 2001-09-21 parser
17942:
17943: * src/: main/main.dsp, targets/cgi/parser3.dsp,
17944: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
17945: produced "" in make file and sadly wrong interpreted on load]
17946:
1.101 moko 17947: * src/: classes/classes.h, classes/hash.C, classes/op.C,
17948: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
17949: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
17950: include/pa_sql_driver_manager.h, include/pa_string.h,
17951: main/compile.tab.C, main/main.dsp, main/pa_common.C,
17952: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
17953: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 17954:
17955: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
17956: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
17957: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
17958: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
17959: main/pa_pool.C, main/pa_request.C,
17960: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
17961: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
17962: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17963: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
17964: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
17965: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
17966: types/pa_vrequest.C, types/pa_vresponse.h,
17967: types/pa_vstateless_class.C, types/pa_vstring.C,
17968: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
17969: created new projects for sql drivers [planning to remove sql
17970: drivers from main cvs project] first, will join latest changes
17971:
17972: * src/classes/: dom.C: defaulted dom writing methods encoding to
17973: pool.get_charset
17974:
17975: * src/classes/dom.C: defaulted dom writing methods encoding to
17976: pool.get_charset
17977:
17978: * src/include/pa_pool.h: defaulted dom writing methods encoding to
17979: pool.get_charset
17980:
17981: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
17982: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
17983: methods encoding to pool.get_charset
17984:
17985: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
17986: transcoder were created right "unsupported encoding" message.
17987: not @ set time, but @ use time, so until xml output functions
17988: .string, .file, .save used - no encoding name check occur
17989:
17990: reduced transcode buffer size to 60 fixed pool cleanup - no
17991: registration needed, pools are officially destructured
17992:
17993: 2001-09-20 parser
17994:
17995: * src/classes/image.C: 20K preload on jpg measure [image::measure]
17996:
17997: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
17998: $MAIN:DEFAULTS.content-type[$.charset[here]]
17999:
18000: * src/: classes/dnode.C, classes/dom.C,
18001: include/pa_config_includes.h, include/pa_globals.h,
18002: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
18003: main/pa_pool.C, targets/cgi/parser3.dsp,
18004: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18005: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
18006: Pool::transcode 0
18007:
18008: * src/classes/dom.C: dom. string save file moved output xml options
18009: to last param and made it optional
18010:
18011: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
18012: dnodes
18013: !$attributenode.specified = boolean
18014: true if the attribute received its value explicitly
18015: in the XML document,
18016: or if a value was assigned programatically with the
18017: setValue function.
18018: false if the attribute value came from the default value
18019: declared in the document's DTD.
18020: !$pinode.target = target of this processing instruction
18021: XML defines this as being the first token following the
18022: markup
18023: that begins the processing instruction.
18024: XPath:
18025: !^node.select[xpath/query/expression] = hash of 0->node0
18026: 1->node1
18027: !^node.select-single[xpath/query/expression] = first node if
18028: any
18029:
18030: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
18031: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
18032: some 'const's added
18033:
18034: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
18035: expression context now, there value = size and boolean value
18036: size!=0
18037:
18038: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
18039: can be used in expression context now, there value = size and
18040: boolean value size!=0
18041:
18042: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
18043: types/pa_vstring.h: dnode .file .string .save moved back to dom
18044: due to strange xalan bug
18045:
18046: 2001-09-18 parser
18047:
18048: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
18049: classes/image.C, classes/op.C, classes/table.C,
18050: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
18051: include/pa_sql_driver_manager.h, main/compile.C,
18052: main/compile.tab.C, main/compile.y, main/compile_tools.h,
18053: main/execute.C, main/pa_common.C, main/pa_request.C,
18054: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
18055: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
18056: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
18057: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
18058: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
18059: before_xml branch ^if(def $hash) now true only when
18060: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
18061:
18062: * src/: classes/op.C, main/execute.C: operators self changed to
18063: root ^for variable context changed to self
18064:
18065: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
18066: dnode 1
18067:
18068: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
18069: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
18070:
18071: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
18072: poly* fixed
18073:
18074: 2001-09-17 parser
18075:
18076: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
18077: types/pa_vdom.h: started dnode+dom
18078:
18079: dnode DOM methods: $node.name $node.value
18080: ...others...
18081:
18082: ^node.xpath[/rates/USD] = hash
18083: $hash[
18084: $.0[node0]
18085: $.1[node1]
18086: ]
18087:
18088: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
18089: applies to all linear primitives
18090:
18091: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
18092: include/pa_stylesheet_connection.h, main/main.dsp,
18093: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
18094: types/pa_vimage.h: started dnode DOM: $node.name
18095: $node.value ...others... ^node.xpath[/rates/USD] = hash
18096: dom(dnode)
18097:
18098: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
18099: main/compile.y, main/compile_tools.h, main/execute.C,
18100: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
18101: in expression compound($aa.zz.xx) names now can have minus '-' in
18102: name after '.'
18103:
18104: 2001-09-15 parser
18105:
18106: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
18107: image: $line-width ^line(...)[**** style]
18108:
18109: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
18110: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
18111: pool_storage - cleanups first, allocations second. apache wisely
18112: does just like that
18113:
18114: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
18115: rewritten using template, no bugs now
18116:
18117: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
18118: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
18119: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
18120: poorly started isapi pool_storage, would rewrite using template
18121: now
18122:
18123: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
18124: include/pa_stylesheet_connection.h, main/main.dsp,
18125: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
18126: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
18127: xalan objects freed up [introducing Pool::register_cleanup]
18128:
18129: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
18130: comments
18131:
18132: 2001-09-14 parser
18133:
18134: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
18135: z
18136:
18137: * src/: classes/dom.C, classes/file.C, classes/image.C,
18138: classes/mail.C, include/pa_common.h,
18139: include/pa_sql_driver_manager.h, include/pa_string.h,
18140: include/pa_stylesheet_connection.h,
18141: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
18142: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
18143: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
18144: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
18145: compiled&cached
18146:
18147: 2001-09-13 parser
18148:
18149: * src/: classes/dom.C, classes/file.C, classes/image.C,
18150: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
18151:
18152: * src/classes/dom.C: dom:file content-type(.method)
18153:
18154: * src/: include/pa_common.h, include/pa_globals.h,
18155: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
18156: string now more informative error messages
18157:
18158: * src/: include/pa_globals.h, include/pa_request.h,
18159: main/pa_request.C, targets/cgi/parser3.C,
18160: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
18161: ParserSiteConfig .../parser3.conf
18162:
18163: cgi&isapi looks for {configure|c:\windows}/parser3.conf
18164:
18165: 2001-09-12 parser
18166:
18167: * src/: classes/op.C, include/pa_sql_driver_manager.h,
18168: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
18169: precise error reporting: "connection string must start with
18170: protocol://" now
18171:
18172: * src/main/compile.tab.C: fixed - subname code parts actually []
18173: braced
18174:
18175: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
18176: lexer on LS_USER level did [] matching without setting nestage,
18177: introduced special LS_NAME_SQUARE_PART state
18178:
18179: 2001-09-11 parser
18180:
18181: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
18182: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
18183: languages+=xml
18184:
18185: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
18186:
18187: * src/classes/dom.C: ^dom:save/string/file[output options] output
18188: options: $.method[xml|html|text] detection fixed
18189:
18190: * src/types/pa_vdom.h: messages
18191:
18192: * src/classes/dom.C: ^dom:save/string/file[output options] output
18193: options: $.method[xml|html|text] detection fixed
18194:
18195: 2001-09-10 parser
18196:
18197: * src/classes/dom.C: ^dom:save/string/file[output options] output
18198: options: $.method[xml|html|text] $.encoding[windows-1251|...]
18199:
18200: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
18201: added]
18202:
18203: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
18204: ^dom.xslt[stylesheet filename] 0
18205:
18206: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
18207: ^dom.xslt[stylesheet filename] -1 doc is lying
18208:
18209: * src/classes/dom.C: ^dom.file[encoding] = file
18210:
18211: * src/classes/: dom.C: ^dom.string[encoding] 1
18212: ^dom.save[encoding;filename]
18213:
18214: * src/classes/dom.C: ^dom.string[] 0
18215:
18216: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
18217:
18218: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
18219: types/pa_vform.h: ^dom.save[b.xml] 0
18220:
18221: 2001-09-08 parser
18222:
18223: * src/types/pa_vform.C: $form:tables.name.field
18224:
18225: 2001-09-07 parser
18226:
18227: * src/classes/table.C: table:empty removed, superceded by ^if(def
18228: $table)...
18229:
18230: * src/targets/cgi/parser3.C: z
18231:
18232: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
18233: from '' to int/double is 0]
18234:
18235: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
18236: $table) is false when table is empty
18237:
18238: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
18239: !$form:tables $atable[$form:tables.a]
18240: ^atable.menu{a=$atable.element}[,]
18241:
18242: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
18243: types/pa_vform.h, types/pa_vhash.h: !$form:fields
18244:
1.101 moko 18245: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 18246: types/pa_vdom.h, types/pa_vform.C: merged with successful start
18247: of dom
18248:
18249: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
18250: types/pa_vform.C, types/pa_vform.h: z
18251:
18252: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
18253: element [not last]
18254:
1.101 moko 18255: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 18256: types/pa_vdom.h: introducing dom. dom:load[a.xml]
18257:
18258: 2001-09-06 parser
18259:
18260: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
18261: table with one column 'element' and two rows: 1 and 2
18262:
18263: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
18264: table with one column 'element' and two rows: 1 and 2
18265:
18266: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
18267: bad int/double conversions, and now $form:nonexistent.int(88)
18268: would return 88
18269:
18270: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
18271: types/pa_vhash.h: now there's special hash key '_default'
18272: [instead of ^_default method] $hash[ $.a[1] $.b[2]
18273: $._default[xx] ] $hash.c
18274:
18275: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
18276: fixed [thanks, fif], ^; were treated there non-literally
18277:
18278: * src/doc/doxygen.cfg: merged new default options from 1.2.10
18279: doxygen
18280:
18281: * src/: classes/image.C, classes/op.C, classes/string.C,
18282: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
18283: types/pa_vtable.C: few #ifndef DOXYGEN
18284:
18285: 2001-09-05 parser
18286:
18287: * src/classes/: string.C, table.C: sql options can be void [same as
18288: image:html the other day]
18289:
18290: * src/targets/cgi/Makefile.am: .am undo
18291:
18292: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
18293: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
18294: macro expantion on param, simply qoutes whatever passed, undone
18295:
18296: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
18297: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
18298: STRINGIZE(name) #name invented
18299:
18300: * src/: classes/op.C, include/pa_sql_driver_manager.h,
18301: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
18302: MAIN_SQL_DRIVERS_NAME "drivers"
18303:
18304: moved to be availible to all users
18305:
18306: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
18307: SQL_DRIVER_CREATE_FUNC_NAME
18308:
18309: * src/classes/mail.C: MAIN:MAIL check fixed
18310:
18311: 2001-09-04 parser
18312:
18313: * src/classes/image.C: image.html now can accept void params
18314:
18315: * src/targets/isapi/parser3isapi.C: z
18316:
18317: * src/targets/cgi/parser3.C: full_file_spec bug
18318:
18319: * src/targets/cgi/parser3.C: getenvcheck
18320:
18321: * src/targets/cgi/parser3.C: zz
18322:
18323: * src/targets/cgi/parser3.C: zzz
18324:
18325: * src/classes/date.C: date
18326:
18327: * src/classes/date.C: date:sql-string is now without ''
18328:
1.101 moko 18329: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 18330: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
18331: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
18332:
1.101 moko 18333: * src/include/pa_config_auto.h.in: makes
1.95 moko 18334:
18335: 2001-09-03 parser
18336:
18337: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
18338:
18339: 2001-09-01 parser
18340:
18341: * src/classes/image.C: letter_spacing
18342:
18343: * src/classes/image.C: image: font params changed
18344:
18345: * src/classes/image.C: image: as_int as_string used
18346:
18347: * src/types/pa_vmethod_frame.h: $result[] now gets properly
18348: analized
18349:
18350: 2001-08-31 parser
18351:
18352: * src/targets/cgi/parser3.C: z
18353:
1.101 moko 18354: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
18355: cygwin
1.95 moko 18356:
18357: * src/classes/void.C: void:int/double += (default)
18358:
18359: * src/classes/image.C: image:font added space param image:font
18360: changed charwidth alg, added kerning const[for now]
18361:
18362: * src/classes/: string.C, table.C: string:int/double (defaults)
18363:
18364: 2001-08-29 parser
18365:
18366: * src/main/pa_exception.C: exception redundant debug info
18367:
18368: 2001-08-28 parser
18369:
18370: * src/classes/image.C: image error msgs
18371:
18372: * src/classes/image.C: image: gifsize little endian
18373:
18374: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
18375: doxygeneration
18376:
18377: * src/: classes/Makefile.am, main/Makefile.am,
18378: targets/cgi/Makefile.am, types/Makefile.am: .am-s
18379:
18380: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
18381: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
18382:
18383: * src/main/compile.C: NO_STRING_ORIGIN check2
18384:
18385: * src/classes/table.C: NO_STRING_ORIGIN check
18386:
18387: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
18388: storage class specifiers invalid in friend function declarations
18389:
18390: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
18391: main/untaint.C, targets/cgi/parser3.C,
18392: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
18393: case of limit
18394:
18395: * src/: classes/file.C, main/pa_common.C: file:move
18396: autocreate/remove dest/src dir
18397:
18398: * src/: classes/string.C, include/pa_dictionary.h,
18399: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
18400: main/untaint.C: pa_directory speeded up. moved zero 'from' check
18401: to directory constructor. string:replace
18402:
18403: 2001-08-27 parser
18404:
18405: * src/classes/image.C: fixed jpgsize alg
18406:
18407: * src/classes/image.C: fixed jpgsize alg
18408:
18409: * src/main/pa_exception.C: z
18410:
18411: * src/main/pa_common.C: removed debug info from pa_common
18412:
18413: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
18414: [auto.p from current dir loading]
18415:
1.101 moko 18416: * src/: main/pa_common.C, main/pa_exception.C,
18417: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
18418: for solaris -lsocket
1.95 moko 18419:
18420: 2001-08-24 parser
18421:
18422: * src/targets/cgi/parser3.C: not cgi extra \n 3
18423:
18424: * src/targets/cgi/parser3.C: not cgi extra \n 2
18425:
18426: * src/targets/cgi/parser3.C: not cgi extra \n
18427:
18428: * src/main/pa_sql_driver_manager.C: z
18429:
18430: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
18431: sql* removed services from disconnect - cross-request ideological
18432: probs.
18433:
18434: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
18435: cross-request ideological probs. oracle - fixed bug: cs
18436: allocated on request.pool and got freed before disconnect
18437:
18438: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
18439: mallocs fixed
18440:
18441: 2001-08-23 parser
18442:
18443: * src/classes/file.C: minor bug in file:save fixed
18444:
18445: * src/main/pa_sql_driver_manager.C: oracle: dlink
18446:
18447: 2001-08-22 parser
18448:
18449: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
18450: types/pa_vfile.h: file:load|save[text|binary;
18451:
18452: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
18453:
18454: 2001-08-21 parser
18455:
18456: * src/classes/: file.C, table.C: ^file:list
18457:
18458: 2001-08-20 parser
18459:
18460: * src/: main/compile.tab.C, main/compile.y,
18461: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
18462: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
18463: recousively caused problems: inc incremeted 123 literal!! fixed
18464:
18465: 2001-08-10 parser
18466:
18467: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
18468:
18469: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
18470: added
18471:
18472: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
18473: added
18474:
18475: * src/classes/table.C: table:sort restored [it was bad test :(]
18476:
18477: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
18478: ''
18479:
18480: * src/main/: pa_request.C: wanted to make const int
18481: MAX_EXECUTE_SECONDS=1;
18482:
18483: but couldnt, set_callback_and_alarm appeared to be not exported
18484: :(
18485:
18486: * src/main/pa_string.C: string.match hanged on. there were a hang
18487: check but it weren't wise enough
18488:
18489: @parse[dateString][tmp]
18490: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
18491: #end
18492:
18493: @main[] ^parse[2001-02-03]
18494:
18495: * src/classes/: table.C: table:sort now default desc
18496:
18497: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
18498: table.sort now creates new sorted table
18499:
18500: 2001-08-09 parser
18501:
18502: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
18503:
18504: * src/classes/hash.C: hash:_default now [was hash:default]
18505:
18506: * src/classes/op.C: case without switch check added
18507:
18508: * src/types/pa_vcookie.C: cookie name&value origins added, more
18509: precise $ORIGINS(1)
18510:
18511: * src/main/Makefile.am: .am
18512:
18513: * src/classes/void.C: void: int double copy/paste from int: bug
18514: fixed
18515:
18516: * src/classes/void.C: void: int double copy/paste from int: bug
18517: fixed
18518:
18519: 2001-08-07 parser
18520:
18521: * src/: classes/double.C, classes/int.C, classes/string.C,
18522: classes/table.C, include/pa_globals.h, main/pa_globals.C:
18523: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
18524: string, table
18525:
18526: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
18527: srand made working
18528:
18529: 2001-08-06 parser
18530:
18531: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
18532: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
18533: main/compile.tab.C, main/compile.y, main/pa_array.C,
18534: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
18535: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
18536:
18537: * src/main/pa_exec.C: exec win32 real filename
18538:
18539: * src/classes/file.C: exec stderr out
18540:
18541: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
18542:
18543: 2001-08-03 parser
18544:
18545: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
18546:
18547: 2001-08-02 parser
18548:
18549: * src/: classes/string.C, classes/table.C, include/pa_array.h,
18550: main/execute.C, main/pa_exec.C: introducing Array_iter
18551:
18552: * src/main/execute.C: detected quick_get recursion bug. changed to
18553: get@execute, but needs array iterator, separate from array to
18554: avoid it & use caching
18555:
18556: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
18557: bug fixed
18558:
18559: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
18560: main/execute.C, main/pa_globals.C: found another multithread bug
18561: in op.C (last, last global var killed) :)
18562:
18563: 2001-08-01 parser
18564:
18565: * src/: include/pa_dictionary.h, include/pa_globals.h,
18566: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
18567: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
18568: main/untaint.C: speeded up typo-html replacements. introducing
18569: Dictionary with first-char caching
18570:
18571: 2001-07-31 parser
18572:
18573: * src/types/Makefile.am: pa_vtable.C added to .am
18574:
18575: * src/main/compile.tab.C: added, so that could be compiled even on
18576: non-bison-enabled platforms
18577:
18578: 2001-07-28 parser
18579:
18580: * src/classes/table.C: table:hash always produces hash, when can't
18581: - empty
18582:
18583: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
18584: skipped \n
18585:
18586: 2001-07-27 parser
18587:
18588: * src/classes/: double.C, int.C, string.C: provided meaningful msg
18589: on int/double/string :sql without result and default
18590:
18591: 2001-07-26 parser
18592:
18593: * src/classes/op.C: fixed bad multithread bug with strangly global
18594: OP
18595:
18596: * src/main/compile.y: $man[$.age[zzz]] 0
18597:
18598: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
18599: creation syntax problem persists. restored $: for a while.
18600: thinking of $man[$.age[zzz]] syntax now
18601:
18602: * src/: classes/double.C, classes/int.C, classes/string.C,
18603: include/pa_opcode.h, main/compile.C, main/compile.y,
18604: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
18605: types/pa_vmethod_frame.h, types/pa_wcontext.h,
18606: types/pa_wwrapper.h: fixing :: realization #1
18607:
18608: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
18609: main/compile_tools.h, main/execute.C, main/pa_request.C,
18610: types/pa_vmethod_frame.h: introducing :: this is constructor call
18611: prefix. ordinary : remains for static accesses
18612:
18613: 2001-07-25 parser
18614:
18615: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
18616: fields 2. methods 3. columns
18617:
18618: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
18619: quote. optimized double&int tostring-s
18620:
18621: * src/main/: compile.C, compile.y, compile_tools.h: allowed
18622: whitespace before first method decl
18623:
18624: * src/classes/table.C: allowed nontable result in table:sql,
18625: results in empty table
18626:
18627: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
18628: lines before first method decl
18629:
18630: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
18631: types/pa_vtable.h: ^table.record[] now $table.fields
18632:
18633: * src/main/compile.y: $var[] is now empty string, not void
18634:
18635: * src/main/: compile.y, execute.C: $var[] is now empty string, not
18636: void
18637:
18638: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
18639: main/pa_globals.C: match replace code context moved to implicit
18640: $match context
18641:
18642: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
18643: main/compile_tools.h, main/execute.C: with killed, code storage
18644: introduced with former 'with' syntax
18645:
18646: 2001-07-24 parser
18647:
18648: * src/: main/compile.C, main/execute.C, main/pa_string.C,
18649: types/pa_value.h: first get_element, next get operator
18650:
18651: * src/main/compile.y: removed @end handling
18652:
18653: * src/main/: compile.C, compile.y: @end handling method2
18654:
18655: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
18656: file:move
18657:
18658: * src/main/pa_common.C: file_read close @ eof when imgsize bug
18659: fixed
18660:
18661: 2001-07-23 parser
18662:
18663: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
18664: driver
18665:
18666: * src/classes/hash.C: changed sql driver query interface
18667:
18668: * src/: classes/hash.C, classes/string.C, classes/table.C,
18669: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
18670: changed sql driver query interface
18671:
18672: 2001-07-20 parser
18673:
18674: * src/types/pa_vrequest.C: X!$browser:type
18675:
18676: * src/: classes/file.C, classes/string.C, include/pa_string.h,
18677: main/execute.C, main/pa_string.C, types/pa_valiased.C,
18678: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
18679: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
18680: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
18681: types/pa_vobject.h, types/pa_vrequest.C,
18682: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
18683: ^class:method dynamic calls allowed. ^BASE.method call disabled.
18684: BASE element globally removed
18685:
18686: 2001-07-18 parser
18687:
18688: * src/classes/file.C: file:exec/cgi msg
18689:
18690: * src/classes/file.C: $file:exit-code renamed to 'status'
18691:
18692: * src/: classes/file.C, main/pa_exec.C: file:exec
18693:
1.101 moko 18694: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
18695: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
18696: removed $id from *.in *.am
1.95 moko 18697:
18698: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
18699: abbrevations
18700:
18701: * src/: classes/date.C, classes/mail.C, classes/math.C,
18702: classes/string.C, classes/table.C, include/pa_globals.h,
18703: include/pa_string.h, main/execute.C, main/pa_globals.C,
18704: main/pa_request.C, main/pa_string.C, main/untaint.C,
18705: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
18706: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
18707: $ORIGINS(1) output tracing mode
18708:
18709: 2001-07-13 parser
18710:
18711: * src/: classes/double.C, classes/int.C, classes/string.C,
18712: include/pa_request.h, main/execute.C, main/pa_request.C:
18713: auto.p[@auto], /news/auto.p[no @auto], so that initializing
18714: second would not call first @auto
18715:
18716: * src/main/: execute.C, pa_request.C: order of MAIN parents was
18717: wrong, fixed
18718:
18719: 2001-07-12 parser
18720:
18721: * src/types/pa_value.h: pa_value.putelement modification of system
18722: classes prevented
18723:
18724: 2001-07-11 parser
18725:
18726: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
18727: table $piece
18728:
18729: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
18730: types/pa_vstateless_class.h: $file created by file:state +=
18731: .atime .mtime .ctime +found&fixed bug with exceptions on
18732: get_junction-created objects [they were on wrong pool]
18733:
18734: 2001-07-09 parser
18735:
18736: * src/main/untaint.C: qp wrong name
18737:
18738: * src/: classes/date.C, classes/string.C, classes/table.C,
18739: main/compile.y: date format 0
18740:
18741: 2001-07-07 parser
18742:
18743: * src/: classes/date.C, classes/table.C, include/pa_common.h,
18744: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
18745: roll table calendar
18746:
18747: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
18748: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
18749: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
18750: include/pa_request.h, main/main.dsp, types/pa_value.h,
18751: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
18752: string. todo: sql, calendar
18753:
18754: 2001-07-06 parser
18755:
18756: * src/: classes/math.C, include/pa_request.h, main/execute.C,
18757: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
18758:
18759: 2001-07-03 parser
18760:
18761: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
18762: classes/random.C, main/main.dsp: class random renamed to math,
18763: operators became methods
18764:
18765: * src/classes/op.C: pow sqrt
18766:
18767: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
18768:
18769: 2001-07-02 parser
18770:
18771: * src/classes/table.C: ^table.columns column renamed from 'name' to
18772: 'column'
18773:
18774: * src/classes/hash.C: ^hash.keys[]
18775:
18776: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
18777:
18778: * src/main/: compile.y, compile_tools.h: in expressions now allowed
18779: 'strings'
18780:
18781: 2001-06-29 parser
18782:
18783: * src/main/: execute.C: /0 %0 checkes ver 2
18784:
18785: * src/main/execute.C: /0 %0 checke
18786:
18787: * src/classes/Makefile.am: nothing - void
18788:
18789: * src/classes/table.C: empty strings @ sql
18790:
18791: 2001-06-28 parser
18792:
18793: * src/: classes/double.C, classes/file.C, classes/form.C,
18794: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18795: classes/op.C, classes/random.C, classes/response.C,
18796: classes/string.C, classes/table.C, classes/void.C,
18797: main/compile.C, main/compile_tools.C, main/execute.C,
18798: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
18799: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
18800: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
18801: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
18802: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
18803: targets/isapi/parser3isapi.C, main/compile.y: */ static const
18804: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
18805: $";
18806:
18807: * src/: classes/double.C, classes/file.C, classes/form.C,
18808: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18809: classes/op.C, classes/random.C, classes/response.C,
18810: classes/string.C, classes/table.C, classes/void.C,
18811: main/compile.C, main/compile.y, main/compile_tools.C,
18812: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
18813: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
18814: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
18815: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
18816: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
18817: targets/isapi/parser3isapi.C: static char *RCSId="$Id$";
18818:
18819: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
18820: $class:name: == ${class:name}:
18821:
18822: * src/classes/string.C: exactly one
18823:
18824: 2001-06-27 parser
18825:
18826: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
18827: types/pa_vvoid.h: nothing renamed to void
18828:
18829: * src/classes/op.C: ^switch ^case
18830:
18831: * src/main/compile.y: nothing renamed to void
18832:
18833: * src/: classes/hash.C, classes/table.C, main/compile.y,
18834: main/execute.C, main/main.dsp, main/pa_request.C,
18835: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
18836: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
18837: void
18838:
18839: * src/main/compile.y: lexer: $zzzz^zzzz were name part
18840:
18841: 2001-05-28 parser
18842:
18843: * src/doc/html2chm.cmd: removed >a
18844:
18845: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
18846: project options [some bugs]
18847:
18848: * src/doc/sources2html.cmd: z
18849:
18850: * src/: classes/classes.C, main/compile.C, main/compile.y,
18851: main/execute.C: operators are not in root class again
18852:
18853: 2001-05-24 parser
18854:
18855: * src/targets/cgi/parser3.dsp: project file
18856:
18857: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
18858: ^log ^exp
18859:
18860: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
18861: conversions in @exception[params]
18862:
18863: * src/main/pa_request.C: // no _ conversions in @exception[params]
18864:
18865: 2001-05-23 parser
18866:
18867: * src/main/pa_string.C: string cmp bug
18868:
18869: * src/classes/: mail.C, op.C: rem max 1000
18870:
18871: * src/: classes/op.C, main/compile.y: allow one empty line before
18872: LS_DEF_NAME
18873:
18874: 2001-05-22 parser
18875:
18876: * src/classes/op.C: if params code-required
18877:
18878: 2001-05-21 parser
18879:
18880: * src/types/pa_vstring.C: eoleof
18881:
18882: * src/classes/Makefile.am: .AM
18883:
18884: * src/classes/nothing.C: resultless ^sql moved to nothing:
18885:
18886: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
18887:
18888: * src/: classes/double.C, classes/nothing.C, classes/string.C,
18889: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
18890: types/pa_vunknown.h, classes/hash.C, main/compile.y,
18891: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
18892: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
18893: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
18894: 'nothing'
18895:
18896: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
18897: vstring::set_string
18898:
18899: * src/classes/: double.C, int.C, string.C: int,double;sql
18900:
18901: * src/: classes/hash.C, classes/int.C, classes/string.C,
18902: classes/table.C, include/pa_string.h, main/pa_string.C,
18903: types/pa_vstring.C, types/pa_vstring.h: started int:sql
18904:
18905: * src/: classes/classes.C, classes/hash.C, classes/op.C,
18906: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
18907: hash:sql moved to main trunc. operators.txt updated
18908:
18909: * src/classes/: hash.C, op.C, table.C: hash:sql
18910:
18911: * src/classes/op.C: z
18912:
18913: * src/: main/compile.C, classes/classes.C: 1
18914:
18915: * src/: classes/classes.C, main/compile.C, main/compile.y,
18916: main/execute.C: 0
18917:
18918: * src/main/execute.C: z
18919:
18920: * src/targets/cgi/parser3.C: z
18921:
18922: * src/targets/cgi/parser3.C: argv can be just "parser3". made
18923: site_auto_path "." in that case
18924:
18925: * src/targets/cgi/: parser3.C: z
18926:
18927: * src/main/pa_request.C: .am
18928:
18929: * src/: main/pa_request.C, targets/cgi/parser3.C:
18930: pcre_tables=pcre_default_tables;
18931:
18932: 2001-05-19 parser
18933:
18934: * src/main/pa_string.C: z
18935:
18936: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
18937: introducing String::cstr_bufsize, returns just size+1 for as_is
18938: target.
18939:
18940: * src/: main/untaint.C, targets/cgi/pa_pool.C,
18941: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
18942: used, 4* mem wasted
18943:
18944: * src/classes/string.C: root context in match replace body now
18945: unchanged
18946:
18947: * src/types/pa_value.h: parameter # 1 based
18948:
18949: * src/main/pa_common.C: common: actual filename '%s'
18950:
18951: * src/classes/string.C: z
18952:
18953: * src/classes/Makefile.am: classes/.am
18954:
18955: * src/classes/: Makefile.am: classes/.am
18956:
18957: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
18958: targets/cgi/pa_pool.C: classes/.am
18959:
18960: 2001-05-18 parser
18961:
1.101 moko 18962: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
18963: pa_threads.C ins
1.95 moko 18964:
18965: * src/targets/cgi/Makefile.am: .am pa_threads.C added
18966:
18967: 2001-05-17 parser
18968:
18969: * src/: classes/string.C, include/pa_config_fixed.h,
18970: include/pa_config_includes.h, main/compile.y,
18971: main/compile_tools.h, main/execute.C, main/pa_array.C,
18972: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
18973: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
18974: types/pa_vform.C: #include "pa_config_includes.h" removed from
18975: most .C
18976:
18977: * src/doc/html2chm.cmd: z
18978:
18979: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
18980: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
18981:
18982: * src/main/pa_sql_driver_manager.C: moved expiration to
18983: get_connection_from_cache
18984:
18985: * src/main/pa_sql_driver_manager.C: cache expiration bf
18986:
18987: * src/: classes/classes.h, include/pa_sql_connection.h,
18988: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
18989: cache expiration[use SQL_Driver::disconnect]
18990:
18991: * src/main/pa_table.C: table.locate current restored on "not found"
18992:
18993: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
18994: line no
18995:
18996: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
18997: ANTI_ENDLESS_EXECUTE_RECOURSION
18998:
18999: * src/: classes/op.C, include/pa_sql_connection.h,
19000: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
19001: sql/pa_sql_driver.h: fixed problem at last: 2connections own
19002: 1driver and set_services fight for driver::fservices. before fix
19003:
19004: * src/: classes/op.C, include/pa_config_fixed.h,
19005: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19006: main/pa_sql_driver_manager.C: found problem at last: 2connections
19007: own 1driver and set_services fight for driver::fservices. before
19008: fix
19009:
19010: * src/: include/pa_config_fixed.h, include/pa_threads.h,
19011: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
19012: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
19013: pa_threads.C
19014:
19015: * src/include/pa_threads.h: removed targets/parser
19016:
19017: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
19018: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
19019: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
19020: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
19021: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
19022: headers
19023:
19024: * src/: classes/image.C, include/pa_sql_driver_manager.h,
19025: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
19026: order prevented sqlmanager to see MULTYTHREAD define
19027:
19028: * src/: include/pa_config_fixed.h, include/pa_threads.h,
19029: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
19030: put/gets
19031:
19032: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
19033: from hash.h
19034:
19035: * src/: classes/op.C, include/pa_sql_connection.h,
19036: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
19037: from cache ->set_services(&services);
19038:
19039: 2001-05-16 parser
19040:
19041: * src/targets/cgi/parser3.C: z
19042:
19043: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
19044: debug, #ifdefed some. would debug later, on more precise sample
19045: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
19046: $name.$tail[$tail!] $name.$tail } ok3
19047:
19048: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
19049: removed array debug. before vstring rebasing
19050:
19051: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
19052: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
19053: array debugged; adjusted
19054:
19055: * src/main/: pa_sql_driver_manager.C, pa_string.C:
19056: SQL_Driver_manager line no for connect/charset errors
19057:
19058: 2001-05-15 parser
19059:
19060: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
19061: main/pa_string.C: string+array made linear grows
19062:
19063: * src/: include/pa_string.h, main/pa_string.C,
19064: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
19065: grow lineary, not exponentialy
19066:
19067: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
19068: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
19069: with fullchunk cmps
19070:
19071: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
19072: 70041= 81
19073:
19074: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
19075: targets/cgi/parser3.C: detected huge mem allocation: size/times
19076: malloc 27809390/368771, calloc 3232/83. would test now
19077:
19078: * src/: classes/random.C, main/compile.y, main/execute.C,
19079: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
19080: numbered params had wrong name - for instance: bad error message
19081: in ^for[] bad body type. fixed
19082:
19083: 2001-05-14 parser
19084:
19085: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
19086: main/untaint.C: ^string.upper|lower[]
19087:
19088: 2001-05-11 parser
19089:
19090: * src/: classes/double.C, classes/image.C, classes/op.C,
19091: classes/string.C, classes/table.C, classes/unknown.C,
19092: main/execute.C, types/pa_value.h, types/pa_vbool.h,
19093: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
19094: types/pa_vunknown.h: op: MAX_LOOPS as_int
19095:
19096: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
19097: .dsp for win32tools
19098:
19099: 2001-05-11 paf
19100:
19101: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
19102: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
19103: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
19104: targets/isapi/kill.pl: moved win32 helpers to /win32tools
19105:
19106: 2001-05-10 paf
19107:
19108: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
19109: for C++, that's all
19110:
1.101 moko 19111: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
19112: pa_config_includes.h: inline wonders
1.95 moko 19113:
19114: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
19115: doc/doxygen.cmd: hash.C added
19116:
19117: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
19118:
19119: * src/main/compile.y: @end grammar: allowed zero strings in control
19120: menthod
19121:
19122: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
19123: pa_vstateless_object.h: changed priority: field before method
19124: lookup in vclass & vobject
19125:
19126: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
19127: grammar: priorities changes [lowerd && prior] vobject: now first
19128: fields, next methods
19129:
19130: 2001-05-08 paf
19131:
19132: * src/main/pa_table.C: table columnname2item on nameless ignored
19133: bark=false. fixed
19134:
19135: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
19136: types/pa_vmethod_frame.h: hash:default works at last!
19137:
19138: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
19139: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
19140: hash:default
19141:
19142: * src/classes/table.C: z
19143:
19144: * src/classes/table.C: table:hash always hash of hash now
19145:
19146: * src/classes/table.C: table:empty return bool now
19147:
19148: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
19149: include/pa_table.h, main/pa_table.C, types/pa_value.h,
19150: types/pa_vtable.h: table:hash
19151:
19152: * src/classes/table.C: table:record have name
19153:
19154: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
19155: returns vunknown
19156:
19157: * src/classes/: double.C, int.C, op.C, string.C:
19158: int,double,string:int[] double[] string:length[] results now have
19159: hames
19160:
19161: * src/: classes/op.C, classes/table.C, main/main.dsp,
19162: types/pa_vtable.h: removed table:find. table:locate and op:eval
19163: now return bool
19164:
19165: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
19166: in method checkparams again. fixed
19167:
19168: 2001-05-07 paf
19169:
19170: * src/doc/chm.cmd: cmd
19171:
19172: * src/: classes/image.C, classes/mail.C, classes/string.C,
19173: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
19174: types/pa_value.h: method reported errors on wrong pool
19175:
19176: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
19177: now
19178:
19179: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
19180: include/code.h, include/pa_opcode.h, main/compile.C,
19181: main/compile_tools.h, main/execute.C, types/pa_value.h,
19182: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19183: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
19184: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
19185: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19186: types/pa_vmethod_frame.h, types/pa_vobject.h,
19187: types/pa_vrequest.h, types/pa_vresponse.h,
19188: types/pa_vstateless_class.h, types/pa_vstring.h,
19189: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
19190: types/pa_wwrapper.h: pa_code.h
19191:
19192: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
19193:
19194: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
19195: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
19196: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
19197: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
19198: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
19199: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
19200: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
19201: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
19202: types/pa_vtable.h: dox, split by not clean parts also
19203:
19204: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
19205: types/pa_vtable.h: table: fields, then methods. so to enable
19206: 'dir' fields & co. more
19207:
19208: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
19209: so to enable 'dir' fields & co.
19210:
19211: * src/main/compile.y: grammar: @end
19212:
19213: 2001-05-04 paf
19214:
19215: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
19216: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
19217:
19218: * src/: classes/classes.h, classes/double.C, classes/file.C,
19219: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
19220: classes/op.C, classes/random.C, classes/response.C,
19221: classes/string.C, classes/table.C, classes/unknown.C,
19222: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
19223: method dox
19224:
19225: 2001-05-03 paf
19226:
19227: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
19228: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
19229: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
19230: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
19231: doc/string.dox, doc/targets.dox, doc/value.dox,
19232: main/pa_request.C: dox splitted .dox files and added some
19233:
19234: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
19235:
19236: 2001-05-02 paf
19237:
19238: * src/classes/: image.C, table.C: table:dir result are not tainted
19239: by file_name language now
19240:
19241: 2001-04-28 paf
19242:
19243: * src/classes/classes.inc: removed classes.inc
19244:
19245: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
19246: from .am
19247:
19248: * src/classes/classes.awk: skipped classes in .awk
19249:
19250: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
19251: classes/classes.inc, classes/double.C, classes/file.C,
19252: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
19253: classes/string.C, classes/table.C, classes/unknown.C,
19254: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
19255: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
19256: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
19257: pa_methoded back to classes/classes.h
19258:
19259: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
19260:
19261: * src/: classes/Makefile.am, classes/classes.awk,
19262: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
19263: classes/ls.exe, main/bison.exe: classes.inc autogenerator
19264:
19265: * src/: classes/classes.C, classes/classes.h, classes/double.C,
19266: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
19267: classes/response.C, classes/string.C, classes/table.C,
19268: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
19269: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
19270: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
19271: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
19272: include|main/pa_methoded
19273:
19274: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
19275: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
19276:
19277: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
19278: moved some configured data to request::classes_conf moved some
19279: string crations from globals to M... [works]
19280:
19281: * src/: classes/form.C, classes/mail.C, classes/op.C,
19282: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
19283: main/pa_request.C: moved some configured data to
19284: request::classes_conf moved some string crations from globals to
19285: M...
19286:
19287: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
19288: about to move configured data to special request hash
19289:
19290: * src/: classes/classes.C, classes/classes.h, classes/file.C,
19291: classes/form.C, classes/mail.C, include/pa_request.h,
19292: main/pa_request.C: configure started
19293:
19294: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
19295: 2. todo: methoded-configure
19296:
19297: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
19298: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
19299: classes/_random.h, classes/_response.h, classes/_string.h,
19300: classes/_table.h, classes/_unknown.h, classes/classes.inc,
19301: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
19302: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
19303: classes/random.C, classes/response.C, classes/string.C,
19304: classes/table.C, classes/unknown.C, include/pa_globals.h,
19305: include/pa_request.h, main/compile.y, main/execute.C,
19306: main/main.dsp, main/pa_globals.C, main/pa_request.C,
19307: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19308: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
19309: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
19310: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
19311: types/pa_vrequest.h, types/pa_vresponse.h,
19312: types/pa_vstateless_class.h, types/pa_vstring.h,
19313: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
19314: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
19315: methoded-configure
19316:
19317: * src/: classes/file.C, classes/table.C, main/compile.y,
19318: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
19319: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
19320: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
19321:
19322: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
19323: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
19324: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
19325: classes/random.C, classes/response.C, classes/string.C,
19326: classes/table.C, classes/unknown.C, include/pa_request.h,
19327: main/compile.y, main/execute.C, main/pa_globals.C,
19328: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
19329: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
19330: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
19331: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
19332: beautifying just compiled. todo: debug, configure
19333:
19334: 2001-04-27 paf
19335:
19336: * src/: classes/file.C, classes/image.C, classes/table.C,
19337: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
19338: beautifying -99
19339:
19340: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
19341: classes/_response.h, classes/_unknown.h, classes/classes.C,
19342: classes/classes.h, classes/double.C, classes/file.C,
19343: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
19344: classes/op.C, classes/random.C, classes/response.C,
19345: classes/string.C, include/pa_globals.h, main/main.dsp,
19346: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
19347: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
19348: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
19349: types/pa_vunknown.h: beautifying -100
19350:
19351: * src/main/compile.y: serge@ found @CLASS bug. fixed
19352:
19353: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
19354: classes/_op.h, classes/_random.h, classes/_table.h,
19355: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
19356: classes/op.C, classes/random.C, classes/response.C,
19357: classes/string.C, classes/table.C, classes/unknown.C,
19358: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
19359: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
19360: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
19361: beautifying
19362:
19363: 2001-04-26 paf
19364:
19365: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
19366:
19367: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
19368: documentation ++
19369:
19370: * src/: classes/_exec.h, doc/doxygen.cfg,
19371: include/pa_config_fixed.h, include/pa_config_includes.h,
19372: targets/cgi/pa_pool.C: code documentation ++
19373:
19374: * src/: classes/_image.h, classes/op.C, classes/random.C,
19375: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19376: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
19377: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
19378: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19379: types/pa_vmethod_frame.h, types/pa_vobject.h,
19380: types/pa_vrequest.C, types/pa_vrequest.h,
19381: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
19382: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
19383: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
19384: code documentation ++
19385:
19386: * src/: classes/image.C, classes/mail.C, classes/string.C,
19387: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
19388: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
19389: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
19390: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19391: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
19392: types/pa_vobject.h, types/pa_vstateless_class.h,
19393: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
19394:
19395: * src/main/: pa_request.C, pa_string.C: z
19396:
19397: * src/: include/pa_common.h, include/pa_types.h,
19398: main/pa_sql_driver_manager.C: module [and, guess, isapi]
19399: connection caching fixed. request-pooled-url were stored into
19400: global connectioncache
19401:
19402: 2001-04-25 paf
19403:
19404: * src/: doc/doxygen.cfg, doc/doxygen.txt,
19405: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
19406:
19407: * src/: include/code.h, include/pa_common.h, main/compile.y,
19408: main/execute.C, main/pa_common.C: -d
19409:
19410: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
19411: illegal call check a bit improved, but still under iis no mapping
19412: of dir with parser allowed!
19413:
19414: 2001-04-24 paf
19415:
19416: * src/targets/Makefile.am: apache module lib .am
19417:
19418: * src/main/pa_exec.C: windows32 buildCommand
19419:
19420: 2001-04-23 paf
19421:
19422: * src/targets/cgi/Makefile.am: win32 conditional
19423:
19424: * src/targets/cgi/Makefile.am: win32 conditional
19425:
19426: * src/targets/cgi/Makefile.am: liblink
19427:
19428: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
19429: vfile fields return type
19430:
19431: * src/types/pa_vfile.h: vfile fields return type
19432:
19433: * src/include/pa_config_auto.h.in: .h.in
19434:
19435: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
19436: types/Makefile: makefiles removed
19437:
19438: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
19439: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
19440:
19441: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
19442: [tested: i & g ]
19443:
19444: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
19445: @test noticed series in isapi, check how initialize_random_class
19446: is called! [must be called only once]
19447:
19448: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
19449: would not be 'unknown column'
19450:
19451: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
19452: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
19453:
19454: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
19455: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
19456: [now doesnt]
19457:
19458: * src/targets/cgi/parser3.C: cgi cmdline ver
19459:
19460: * src/targets/cgi/parser3.C: cgi /// @test disable
19461: /cgi-bin/parser3/auto.p
19462:
19463: * src/main/untaint.C: untaint without charset
19464:
19465: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
19466: main/pa_common.C: common: file_write /// @test mkdirs
19467: file_delete rmdirs
19468:
19469: * src/main/untaint.C: mail header only once to =?
19470:
19471: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
19472: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
19473: main/untaint.C: untaint - @test optimize whitespaces for
19474: all but 'html'
19475:
19476: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
19477: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
19478: main/untaint.C: untaint - @test mail-header
19479:
19480: 2001-04-20 paf
19481:
19482: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
19483: include/pa_request.h, include/pa_string.h, main/compile.y,
19484: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
19485: targets/cgi/parser3.C: $MAIN:LOCALE
19486:
19487: * src/main/untaint.C: z
19488:
19489: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
19490:
19491: 2001-04-19 paf
19492:
19493: * src/main/compile_tools.h: $a$b bugfix
19494:
19495: * src/targets/cgi/parser3.C: z
19496:
19497: * src/classes/file.C: z
19498:
19499: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
19500: done: header to $fields. waits for header '\' tricks
19501:
19502: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
19503: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
19504: changed urlencode here and in untaint.C to HTTP standard's " and
19505: \" mech
19506:
19507: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
19508: http://alx/~paf/ doesnt load /auto.p
19509:
19510: 2001-04-18 paf
19511:
19512: * src/main/pa_request.C: 1
19513:
19514: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
19515: linux @alx
19516:
19517: 2001-04-17 paf
19518:
19519: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
19520: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
19521: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
19522: enabled
19523:
19524: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
19525: classes/_exec.h, classes/_file.h, classes/_form.h,
19526: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
19527: classes/_random.h, classes/_response.h, classes/_string.h,
19528: classes/_table.h, classes/_unknown.h, classes/file.C,
19529: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
19530: include/pa_config_fixed.h, include/pa_config_includes.h,
19531: include/pa_hash.h, include/pa_sql_driver_manager.h,
19532: include/pa_version.h, main/Makefile.am, main/compile.y,
19533: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
19534: main/pa_sql_driver_manager.C, sql/Makefile.am,
19535: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
19536: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
19537: types/pa_vform.C, types/pa_vimage.h: exec @jav
19538:
19539: * src/: include/pa_sql_driver_manager.h,
19540: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
19541: types/pa_vimage.h: sql driver interface now has initialize(client
19542: .so)
19543:
19544: 2001-04-16 paf
19545:
19546: * src/Makefile.am: compile2 cygwin
19547:
19548: * src/: include/pa_config_includes.h, main/pa_exec.C,
19549: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
19550:
19551: * src/targets/cgi/Makefile.am: compile0 jav
19552:
19553: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
19554: classes/_exec.h, classes/_file.h, classes/_form.h,
19555: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
19556: classes/_random.h, classes/_response.h, classes/_string.h,
19557: classes/_table.h, classes/_unknown.h, classes/image.C,
19558: classes/mail.C, classes/op.C, classes/random.C,
19559: include/pa_config_fixed.h, include/pa_config_includes.h,
19560: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
19561: main/compile.y, main/pa_common.C, main/pa_exec.C,
19562: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
19563: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
19564: compile-1
19565:
19566: 2001-04-15 paf
19567:
19568: * src/classes/op.C: z
19569:
19570: * src/classes/table.C: table:empty +=process
19571:
19572: * src/types/pa_value.h: MethodParams !junction
19573:
19574: * src/: classes/_string.h, classes/double.C, classes/file.C,
19575: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
19576: classes/random.C, classes/response.C, classes/string.C,
19577: classes/table.C, classes/unknown.C, main/pa_request.C:
19578: MethodParams everywhere
19579:
19580: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
19581: types/pa_vmethod_frame.h: MethodParams in op.C
19582:
19583: 2001-04-12 paf
19584:
19585: * src/: classes/image.C, types/pa_vimage.h: image:font :text
19586:
19587: * src/: classes/_unknown.h, classes/unknown.C,
19588: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
19589: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
19590:
19591: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
19592:
19593: * src/classes/image.C: image:gif now does not have params
19594:
19595: * src/classes/image.C:
19596: image:line/fill/rectangle/bar/replace/polygon/polybar
19597:
19598: * src/: classes/image.C, classes/op.C, main/execute.C,
19599: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
19600: for var now written not to r.wcontext, but to r.root cleared
19601: "entered_object" state
19602:
19603: 2001-04-11 paf
19604:
19605: * src/classes/image.C: image:create image:load
19606:
19607: * src/: classes/image.C, main/main.dsp: gd with mem write + image
19608: just compiled
19609:
19610: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
19611: todo: gif without file
19612:
19613: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
19614: started porting to Pooled descendant
19615:
19616: * src/: classes/image.C, main/execute.C, main/main.dsp,
19617: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
19618: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
19619: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
19620:
19621: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
19622: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
19623: end. switching to python imaging lib
19624:
19625: * src/main/main.dsp: gd+smtp made separate libs
19626:
19627: * src/: include/pa_globals.h, include/pa_string.h,
19628: main/pa_common.C, main/pa_request.C, main/untaint.C,
19629: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
19630: length
19631:
19632: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
19633: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
19634: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
19635: UL_FILE_NAME of posted file name
19636:
19637: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
19638: post [broke when moved post read to core]
19639:
19640: 2001-04-10 paf
19641:
19642: * src/classes/image.C: image:html done
19643:
19644: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
19645:
19646: * src/classes/image.C: z
19647:
19648: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
19649: forgotten!
19650:
19651: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
19652: main/pa_request.C, main/pa_string.C, main/untaint.C,
19653: types/pa_vimage.h: image:measure -90
19654:
19655: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
19656: classes/_int.h, classes/_mail.h, classes/_op.h,
19657: classes/_random.h, classes/_response.h, classes/_string.h,
19658: classes/_table.h, classes/file.C, classes/mail.C,
19659: include/pa_common.h, include/pa_globals.h, main/execute.C,
19660: main/main.dsp, main/pa_common.C, main/pa_globals.C,
19661: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
19662: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
19663: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
19664: compiled
19665:
19666: * src/classes/mail.C: minor bug with unclear from/to
19667:
19668: * src/classes/mail.C: sendmail unix skipping defaults
19669:
19670: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
19671: sendmail unix added defaults
19672:
19673: * src/classes/mail.C: unix sendmail compiled. todo:testing
19674:
19675: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
19676:
19677: 2001-04-09 paf
19678:
19679: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
19680: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
19681: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
19682: targets/isapi/parser3isapi.dsp: all targets exec
19683:
19684: * src/: include/pa_sapi.h, include/pa_string.h,
19685: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19686: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
19687: args in apache:util.script
19688:
19689: * src/include/pa_string.h: written but not tested exec with env for
19690: unix
19691:
19692: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
19693: targets/cgi/parser3.C: exec win32 env
19694:
19695: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
19696: 0
19697:
19698: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
19699: main/execute.C, main/main.dsp, main/pa_globals.C,
19700: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
19701: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
19702:
19703: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
19704: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
19705:
19706: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
19707: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
19708:
19709: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
19710: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
19711: main/pa_common.C, main/pa_request.C, main/pa_string.C,
19712: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19713: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
19714: exec class just compiled. moved post read to request core
19715:
19716: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
19717: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
19718: main/pa_globals.C, targets/cgi/parser3.C,
19719: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
19720: are already read by vform
19721:
19722: 2001-04-08 paf
19723:
19724: * src/: classes/file.C, classes/mail.C, classes/string.C,
19725: include/pa_request.h, include/pa_string.h, main/pa_request.C:
19726: uuencode. string<<
19727:
19728: 2001-04-07 paf
19729:
19730: * src/classes/mail.C: z
19731:
19732: * src/classes/mail.C: z
19733:
19734: * src/classes/mail.C: ^mail[$attach
19735:
19736: * src/classes/mail.C: ^attach dead end
19737:
19738: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
19739: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19740: targets/isapi/parser3isapi.C: mail:send 1
19741:
19742: * src/: classes/mail.C, main/pa_request.C: z
19743:
19744: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
19745: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
19746: compiled
19747:
19748: * src/classes/mail.C: +=
19749:
19750: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
19751: prepared
19752:
19753: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
19754: include/pa_globals.h, include/pa_string.h, main/main.dsp,
19755: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
19756: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
19757:
19758: 2001-04-06 paf
19759:
19760: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
19761: main/pa_string.C: table:dir 1
19762:
19763: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
19764: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
19765:
19766: * src/: classes/_op.h, classes/_root.h, classes/op.C,
19767: classes/root.C, include/pa_globals.h, include/pa_request.h,
19768: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
19769: main/pa_request.C: renamed 'root' to 'op'
19770:
19771: * src/classes/: _op.h, op.C: renamed from 'root'
19772:
19773: * src/types/pa_valiased.C: another root inherititance skipped
19774:
19775: * src/main/: compile.C, compile.y, execute.C: operators are now not
19776: root methods of parent class. just 'ROOT' class
19777:
19778: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
19779: @office
19780:
19781: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
19782:
19783: 2001-04-05 paf
19784:
19785: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
19786: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
19787: constructor flag dropped at get_method_frame and remembered into
19788: method_frame
19789:
19790: * src/: classes/file.C, classes/root.C, classes/string.C,
19791: classes/table.C, main/pa_request.C: junction to code&expression
19792: in errors
19793:
19794: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
19795: main/pa_string.C, targets/isapi/parser3isapi.dsp:
19796: $LOCALE:ctype[Russian_Russia.1251]
19797:
19798: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
19799: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
19800: main/pa_table.C: hash now not thread-safe.
19801:
19802: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
19803: main/untaint.C: z
19804:
19805: * src/: classes/random.C, classes/root.C, classes/table.C,
19806: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
19807: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
19808: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
19809: types/pa_wcontext.h: sql quote. string untaint UL_SQL
19810:
19811: * src/: classes/table.C, include/pa_sql_connection.h,
19812: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
19813:
19814: * src/classes/table.C: select * from hren error contains statement
19815:
19816: * src/: classes/table.C, include/pa_sql_connection.h,
19817: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
19818: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
19819:
19820: * src/: classes/root.C, include/pa_sql_connection.h,
19821: include/pa_sql_driver.h, main/main.dsp,
19822: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
19823: services for conv memory & error reporting
19824:
19825: 2001-04-04 paf
19826:
19827: * src/doc/doxygen.cfg: z
19828:
19829: * src/include/pa_sql_driver.h: mysql connect
19830:
19831: * src/include/pa_sql_driver.h: mysql info
19832:
19833: * src/: classes/root.C, include/pa_sql_driver.h,
19834: include/pa_sql_driver_manager.h, main/main.dsp,
19835: main/pa_sql_driver_manager.C: more manager&connection&driver
19836:
19837: * src/sql/Makefile.am: forgot to add mysql client
19838:
19839: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
19840: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
19841: [forgot to add libltdl, added]
19842:
19843: * src/: Makefile.am, classes/root.C, classes/string.C,
19844: classes/table.C, include/pa_globals.h, include/pa_hash.h,
19845: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
19846: include/pa_string.h, include/pa_table.h, main/main.dsp,
19847: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
19848: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
19849: -1000 just compiled
19850:
19851: * src/: classes/random.C, classes/root.C, classes/table.C,
19852: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
19853: main/pa_request.C, types/pa_vclass.h: sql frame -10
19854:
19855: 2001-04-03 paf
19856:
19857: * src/types/pa_vform.C: z
19858:
19859: * src/: classes/string.C, types/pa_vform.C: string:match replace
19860: assigned lang
19861:
19862: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
19863: {}[]< empty []
19864:
19865: * src/: classes/file.C, classes/string.C, classes/table.C,
19866: include/pa_string.h, main/pa_common.C, main/pa_string.C,
19867: main/untaint.C: string:match replace 2. string.cstr(forced lang)
19868:
19869: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19870: string:match replace strange matches
19871:
19872: * src/classes/string.C: string:match replace 0
19873:
19874: * src/: classes/string.C, main/pa_string.C: string:match replace
19875: prepared 2
19876:
19877: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19878: string:match replace prepared
19879:
19880: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19881: string:match replace -11
19882:
19883: * src/: classes/string.C, include/pa_globals.h,
19884: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
19885: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
19886:
19887: * src/: classes/string.C, include/pa_globals.h,
19888: include/pa_string.h, main/main.dsp, main/pa_globals.C,
19889: main/pa_string.C: string:match [search] -1 just compiled
19890:
19891: * src/types/pa_vstring.C: z
19892:
19893: * src/: classes/double.C, classes/file.C, classes/form.C,
19894: classes/int.C, classes/response.C, classes/root.C,
19895: classes/string.C, classes/table.C, include/pa_string.h,
19896: main/pa_string.C: string:match -10 [frame]
19897:
19898: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
19899: main/pa_request.C: z
19900:
19901: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
19902: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
19903: todo/tests
19904:
19905: * src/include/pa_common.h: z
19906:
19907: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
19908: main/pa_request.C, targets/cgi/parser3.C,
19909: targets/isapi/parser3isapi.C, types/pa_vfile.C:
19910: content-disposition
19911:
19912: * src/: include/pa_common.h, include/pa_globals.h,
19913: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
19914: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
19915:
19916: * src/: include/pa_common.h, include/pa_request.h,
19917: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
19918: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
19919: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
19920: response:body
19921:
19922: * src/classes/table.C: table:append now uses string::split
19923:
19924: * src/classes/table.C: z
19925:
19926: * src/: classes/file.C, classes/root.C, classes/string.C,
19927: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
19928: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
19929: include/pa_string.h, main/execute.C, main/pa_string.C,
19930: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
19931: string::pos & cmp & piece bugs fixed. string::split new
19932: table:load separated from set table:set implemented with clean \n
19933: \t searches
19934:
19935: 2001-04-02 paf
19936:
19937: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
19938: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
19939: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
19940: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
19941: it in table:set/load
19942:
19943: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
19944: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
19945:
19946: * src/classes/random.C: random:generate 1
19947:
19948: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
19949: main/main.dsp, main/pa_globals.C, main/pa_request.C,
19950: types/pa_value.h: random:generate
19951:
19952: 2001-03-30 paf
19953:
19954: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
19955: todo: table flip and append. string::pos
19956:
19957: * src/: classes/double.C, classes/file.C, classes/int.C,
19958: classes/response.C, classes/root.C, classes/string.C,
19959: classes/table.C, main/compile.y, main/execute.C,
19960: types/pa_value.h, types/pa_vstateless_class.C,
19961: types/pa_vstateless_class.h: static|dynamic|any method
19962: registration
19963:
19964: * src/: classes/file.C, classes/table.C, include/pa_table.h,
19965: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
19966: table:flip
19967:
19968: 2001-03-29 paf
19969:
19970: * src/classes/string.C: string:xsplit forgot that they must result
19971: in 1 row N column [not vice versa]
19972:
19973: * src/classes/string.C: z
19974:
19975: * src/classes/string.C: string: rsplit
19976:
19977: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19978: string: lsplit
19979:
19980: * src/: classes/string.C, include/pa_string.h, main/execute.C,
19981: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
19982: lsplit -1
19983:
19984: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19985: string: pos
19986:
19987: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19988: string: pos -1
19989:
19990: * src/: classes/string.C, classes/table.C, include/pa_string.h,
19991: main/compile.y, main/pa_request.C, main/pa_string.C,
19992: main/untaint.C: string: left right mid
19993:
19994: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
19995: main/compile_tools.h, main/main.dsp, types/pa_value.h,
19996: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
19997: and [;] are different now.
19998:
19999: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
20000: main/untaint.C: pool.request undone
20001:
20002: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
20003: main/untaint.C: pool.request
20004:
20005: 2001-03-28 paf
20006:
20007: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
20008: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20009: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
20010: $request:browser [.type .version]; unknown.get_double now = 0.
20011:
20012: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
20013: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
20014: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
20015: types/pa_vform.C: file:load autodetection of mime-type by
20016: user-file-name
20017:
20018: * src/: classes/file.C, main/execute.C, main/pa_common.C,
20019: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
20020: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
20021:
20022: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
20023: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
20024: write. must be self.set
20025:
20026: * src/: classes/file.C, classes/root.C, classes/table.C,
20027: include/pa_table.h, main/pa_table.C: table:locate1, file:test
20028:
20029: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
20030: include/pa_table.h, main/pa_array.C, main/pa_table.C,
20031: types/pa_vtable.h: table:locate just compiled
20032:
20033: 2001-03-27 paf
20034:
20035: * src/main/: execute.C, pa_common.C: fixed r/w context of
20036: code-params2, fixed ntfs hardlink slow dir update
20037:
20038: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
20039: types/pa_wcontext.h: fixed r/w context of code-params
20040:
20041: * src/: classes/table.C, main/execute.C: about to change junction
20042: rcontext!!
20043:
20044: * src/: classes/double.C, classes/int.C, classes/root.C,
20045: classes/string.C, classes/table.C, main/compile_tools.C,
20046: main/execute.C, main/pa_request.C, main/untaint.C,
20047: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
20048: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
20049: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
20050: types/pa_vunknown.h: sort 0
20051:
20052: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
20053: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
20054: renamed to are_static_calls_disabled
20055:
20056: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
20057: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
20058: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
20059: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
20060:
20061: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
20062:
20063: * src/: classes/table.C, include/pa_common.h, main/compile.y:
20064: started table:sort fixed minor bug in #...^{
20065:
20066: * src/: classes/table.C, include/pa_common.h, main/compile.y,
20067: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
20068: decided to have as it were. stepped back. grammar: added 'in'
20069: 'is' 'lt'&co follow-space check
20070:
20071: 2001-03-26 paf
20072:
20073: * src/: classes/file.C, classes/root.C, classes/table.C,
20074: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
20075: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
20076: main/pa_table.C: moved ::save to pa_table. disabled @auto
20077: invocation in ^process
20078:
20079: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
20080:
20081: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
20082: main/pa_array.C: table:record
20083:
20084: * src/: main/untaint.C, targets/cgi/parser3.C,
20085: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20086: targets/isapi/pool_storage.h, types/pa_valiased.h,
20087: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
20088: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
20089: types/pa_vtable.h: z
20090:
20091: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
20092: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
20093: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
20094: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
20095: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
20096: method realisations on 'self' validity - they now can simply
20097: assume that 'self' is V{Proper} .
20098:
20099: 2001-03-25 paf
20100:
20101: * src/main/untaint.C: z
20102:
20103: * src/main/: pa_request.C, untaint.C: moved default typo-table to
20104: lowlevel - it initialization could be skipped if failed in @auto.
20105: so that exception report would use some table
20106:
20107: * src/main/pa_request.C: table empty lines ignored. system-default
20108: content type assigned in output:result [can fail in main:auto and
20109: skipped normal defaults extraction]
20110:
20111: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
20112: bug
20113:
20114: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
20115: processing to table [except preliminary \r\n \r \n replacements
20116: to "\n"]
20117:
20118: * src/: classes/table.C, main/untaint.C: html-typo - decided to
20119: move all the processing to table
20120:
20121: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
20122: main/pa_table.C, main/untaint.C: returned table originating.
20123: useful for reporting typo table problems origin. think would be
20124: useful somewhere else
20125:
20126: * src/main/untaint.C: typo \r \r\n \n properly handled
20127:
20128: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
20129: include/pa_table.h, main/compile.y, main/compile_tools.C,
20130: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
20131: main/pa_string.C, main/pa_table.C, main/untaint.C,
20132: types/pa_vcookie.h: typo & typo-default
20133:
20134: 2001-03-24 paf
20135:
20136: * src/main/pa_common.C: z
20137:
20138: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20139: targets/cgi/parser3.C: html-typo 2
20140:
20141: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
20142: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
20143: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
20144: main/execute.C, main/pa_array.C, main/pa_globals.C,
20145: main/pa_request.C, main/pa_string.C, main/untaint.C,
20146: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20147: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
20148: noticed double default content-type prob. run cgi.cmd tomorrow
20149: first html-typo sample. detected << problem: they become ltlt too
20150: fast
20151:
20152: * src/main/compile.y: z
20153:
20154: * src/main/: compile.y, compile_tools.h: #comment
20155:
20156: * src/: classes/file.C, classes/root.C, classes/table.C,
20157: include/pa_common.h, include/pa_request.h, main/compile.y,
20158: main/pa_common.C, main/pa_request.C, main/pa_string.C,
20159: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
20160: stringified
20161:
20162: * src/types/pa_valiased.C: decided to String-ify file_read
20163:
20164: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
20165: isapi/parser3isapi.dsp: cgi: sapi::log
20166:
20167: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
20168: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
20169: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
20170: error log experiments failed - cgi under iis got no access to
20171: log. registereventsource simply failed with 5(illegal call) code,
20172: while worked OK as standalone executable. isapi: used
20173: HSE_APPEND_LOG_PARAMETER feature
20174:
20175: * src/: include/pa_common.h, include/pa_globals.h,
20176: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
20177: targets/isapi/parser3isapi.C: fixed default content-type
20178: allocation storage
20179:
20180: * src/: include/pa_globals.h, include/pa_request.h,
20181: main/pa_globals.C, main/pa_request.C: z
20182:
20183: * src/: include/pa_array.h, include/pa_hash.h,
20184: include/pa_request.h, main/compile.y, main/pa_array.C,
20185: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
20186: types/pa_vcookie.C: cyclic uses ignored. defaulted default
20187: content-type
20188:
20189: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
20190: sanity
20191:
20192: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
20193: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
20194: away freeze mech. no danger now for you can't do
20195: ^request:process[@new-method[] body] trick anymore. still
20196: remains $some_instance.process[@new-method[] possibility] but
20197: would leave it as a feature. see index for sample
20198:
20199: * src/: include/pa_common.h, main/pa_common.C,
20200: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
20201: monkey every target
20202:
20203: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
20204: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
20205: types/pa_vform.C, types/pa_vform.h: auto.p monkey
20206:
20207: 2001-03-23 paf
20208:
20209: * src/: include/pa_pool.h, main/pa_request.C,
20210: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
20211: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20212: targets/isapi/pool_storage.h: isapi: dumb pool storage
20213:
20214: * src/targets/isapi/pa_pool.C: decided to continue with extension
20215:
20216: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
20217: it would be better to rewrite as filter then to deal with pool
20218:
20219: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
20220: now like in cgi, not from APPL_PHYSICAL_PATH
20221:
20222: * src/: classes/root.C, classes/table.C, include/pa_common.h,
20223: include/pa_config_fixed.h, include/pa_config_includes.h,
20224: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
20225: include/pa_version.h, main/compile.y, main/execute.C,
20226: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
20227: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20228: main/untaint.C, targets/cgi/parser3.C,
20229: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
20230: cgi: reinvent document_root and request_uri under iis. autoconf
20231: updated. introducing ap_config_includes
20232:
20233: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
20234:
20235: * src/targets/cgi/parser3.C: cgi: only one pool now
20236:
20237: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
20238: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
20239: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
20240: types/pa_venv.h, types/pa_vform.C: sapi made object
20241:
20242: * src/: include/pa_globals.h, main/pa_request.C,
20243: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20244: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
20245: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
20246:
20247: * src/: main/pa_request.C, targets/cgi/parser3.C,
20248: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
20249: isapi minor env beauty
20250:
20251: * src/: main/pa_request.C, targets/cgi/parser3.C,
20252: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
20253: isapi document_root 0
20254:
20255: 2001-03-22 paf
20256:
20257: * src/targets/isapi/parser3isapi.C: isapi keep-alive
20258:
20259: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
20260: isapi/parser3isapi.C: z
20261:
20262: * src/: include/pa_pool.h, main/pa_request.C,
20263: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
20264:
20265: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
20266: kill.pl: isapi added utils
20267:
20268: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
20269: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20270: types/pa_vform.C: isapi 0
20271:
20272: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
20273: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20274: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
20275: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
20276: started isapi
20277:
20278: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
20279: some comments
20280:
20281: * src/: include/pa_globals.h, include/pa_request.h,
20282: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
20283: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
20284: parser_root_auto_path parser_site_auto_path
20285:
20286: * src/types/pa_vcookie.C: cookie attr decoded
20287:
20288: 2001-03-21 paf
20289:
20290: * src/targets/cgi/parser3.C: z
20291:
20292: * src/include/pa_globals.h: post. todo: config of auto.p path
20293:
20294: * src/: include/pa_globals.h, targets/cgi/parser3.C,
20295: types/pa_venv.h: in cookie & env. todo:post
20296:
20297: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
20298: classes/root.C, classes/table.C, include/pa_array.h,
20299: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
20300: include/pa_request.h, include/pa_string.h, main/Makefile.am,
20301: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
20302: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
20303: main/pa_table.C, main/untaint.C, targets/Makefile.am,
20304: targets/cgi/Makefile.am, targets/cgi/parser3.C,
20305: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
20306: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
20307: shifted apache branch on main trunc
20308:
20309: * src/: include/pa_common.h, include/pa_globals.h,
20310: include/pa_pool.h, include/pa_request.h, main/main.dsp,
20311: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
20312: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
20313: starting mod_parser3
20314:
20315: * src/targets/cgi/parser3.C: starting mod_parser3
20316:
20317: 2001-03-20 paf
20318:
20319: * src/: main/pa_common.C, targets/cgi/Makefile.am,
20320: targets/cgi/parser3.C: automake compiled and works. todo:make
20321: win32 ifdefs work and add ifdef unistd
20322:
20323: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
20324: main/Makefile.am, main/pa_common.C, main/pa_request.C,
20325: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
20326: z
20327:
20328: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
20329: main/execute.C, main/pa_common.C, types/Makefile.am: removing
20330: locking
20331:
20332: * src/: classes/Makefile.am, types/Makefile.am: z
20333:
20334: * src/: Makefile.am, classes/file.C, classes/root.C,
20335: classes/table.C, include/pa_array.h, include/pa_request.h,
20336: include/pa_string.h, main/Makefile.am, main/execute.C,
20337: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
20338: main/pa_string.C, main/untaint.C, targets/Makefile.am,
20339: targets/cgi/Makefile.am, targets/cgi/parser3.C,
20340: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
20341:
20342: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
20343: main/pa_request.C, types/pa_vfile.h: ^table:save
20344:
20345: * src/: classes/file.C, classes/table.C, include/pa_array.h,
20346: include/pa_common.h, include/pa_request.h, include/pa_string.h,
20347: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
20348: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
20349: types/pa_vform.h: z
20350:
20351: * src/include/pa_string.h: z
20352:
20353: * src/: classes/_request.h, classes/request.C, main/main.dsp,
20354: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
20355: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
20356: :Value
20357:
20358: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
20359: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
20360: :VStateless_object
20361:
20362: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
20363: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
20364: :VStateless_object
20365:
20366: * src/: main/main.dsp, targets/cgi/parser3.dsp,
20367: types/pa_valiased.C, types/pa_vform.h: commented VForm
20368:
20369: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
20370: types/pa_valiased.h, types/pa_value.h,
20371: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20372: types/pa_vstateless_object.h: moved common get_element part from
20373: stateless object&class into VAliased
20374:
20375: * src/: classes/_env.h, classes/_table.h, classes/env.C,
20376: classes/table.C, main/execute.C, main/main.dsp,
20377: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
20378: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
20379: now :Value
20380:
20381: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
20382: main/execute.C, main/main.dsp, main/pa_globals.C,
20383: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
20384:
20385: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
20386: doxx
20387:
20388: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
20389: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
20390: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
20391: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
20392: and ^file:save
20393:
20394: 2001-03-19 paf
20395:
20396: * src/types/pa_vfile.C: z
20397:
20398: * src/: classes/file.C, classes/request.C, classes/table.C,
20399: include/pa_string.h, main/main.dsp, main/pa_pool.C,
20400: main/pa_request.C, main/untaint.C, types/pa_value.h,
20401: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
20402:
20403: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
20404: include/pa_string.h, include/pa_table.h, main/main.dsp,
20405: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
20406: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
20407: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
20408: classes/_file.h, classes/file.C, types/pa_vfile.C,
20409: types/pa_vfile.h: file class just compiled
20410:
20411: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
20412: include/pa_table.h, include/pa_types.h, main/execute.C,
20413: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
20414: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
20415: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
20416:
20417: * src/include/pa_pool.h: z
20418:
20419: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
20420: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
20421: Hash::Value to Val so to doxygen would finlly stop confusing
20422: those Value-s
20423:
20424: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
20425: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
20426: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
20427: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
20428: include/pa_types.h, main/compile.C, main/compile.y,
20429: main/compile_tools.C, main/compile_tools.h, main/execute.C,
20430: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
20431: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
20432: main/pa_request.C, main/pa_string.C, main/pa_table.C,
20433: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
20434:
20435: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
20436: derivates somehow unlinked. don't know why yet
20437:
20438: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
20439: include/pa_string.h, include/pa_threads.h, main/compile.C,
20440: main/compile.y, main/compile_tools.C, main/compile_tools.h,
20441: main/execute.C, main/pa_array.C, main/pa_common.C,
20442: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
20443: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20444: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
20445:
20446: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
20447: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
20448: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
20449: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
20450: types/pa_vrequest.h: doc: detected Value derivates prob
20451:
20452: * src/include/pa_globals.h: z
20453:
20454: * src/: classes/_request.h, classes/request.C, include/code.h,
20455: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
20456: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
20457: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
20458: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
20459: main/execute.C, main/pa_pool.C, main/pa_request.C,
20460: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20461: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
20462:
20463: 2001-03-18 paf
20464:
20465: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
20466: cookie: allowed access to hash-assigned
20467:
20468: * src/targets/cgi/parser3.C: z
20469:
20470: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
20471: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
20472: include/pa_types.h, main/main.dsp, main/pa_common.C,
20473: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
20474: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20475: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
20476: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20477: types/pa_vunknown.h: cookie class
20478:
20479: * src/main/pa_request.C: zero length output allowed
20480:
20481: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
20482: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
20483:
20484: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
20485: lang switch
20486:
20487: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
20488: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
20489: types/pa_value.h, types/pa_vhash.h:
20490: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
20491:
20492: * src/main/execute.C: z
20493:
20494: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
20495: targets/cgi/parser3.C: taint[uri
20496:
20497: * src/: classes/request.C, classes/response.C, classes/root.C,
20498: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
20499: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
20500: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
20501:
20502: * src/: classes/root.C, classes/string.C, include/pa_string.h,
20503: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
20504: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
20505: types/pa_vstateless_class.C: convinient string(pool, char *src,
20506: bool tainted) ctor
20507:
20508: * src/: include/pa_hash.h, include/pa_request.h,
20509: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
20510: main/pa_request.C, main/pa_string.C, main/untaint.C,
20511: targets/cgi/parser3.C: proper @exceptions params tainting
20512:
20513: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
20514: response fields to header
20515:
20516: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
20517: z
20518:
20519: * src/: classes/_response.h, classes/response.C,
20520: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
20521: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
20522: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
20523: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
20524: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
20525: $response: 0 request::core exception rethrow
20526:
20527: 2001-03-16 paf
20528:
20529: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
20530: types/pa_vrequest.h: native method' class call with less params
20531: then needed error reporting
20532:
20533: * src/: classes/_request.h, classes/request.C,
20534: include/pa_globals.h, include/pa_request.h, main/execute.C,
20535: main/main.dsp, main/pa_globals.C, main/pa_request.C,
20536: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
20537: types/pa_vrequest.h: $request : query :uri
20538:
20539: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
20540: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
20541: types/pa_wcontext.h: $result
20542:
20543: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
20544:
20545: * src/: classes/double.C, include/code.h, main/compile.y,
20546: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
20547: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
20548:
20549: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
20550: main/compile.y, main/execute.C, types/pa_value.h,
20551: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
20552: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
20553: wcontext conflict
20554:
20555: * src/: main/execute.C, types/pa_value.h,
20556: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
20557: $string.field
20558:
20559: 2001-03-15 paf
20560:
20561: * src/main/pa_request.C: news sample
20562:
20563: * src/: main/compile.y, main/execute.C, main/pa_request.C,
20564: targets/cgi/parser3.C, types/pa_vstring.h: @exception
20565:
20566: * src/main/: compile.y, execute.C: z
20567:
20568: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
20569: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
20570: pre pre works
20571:
20572: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
20573: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
20574: fillfields just compiled
20575:
20576: 2001-03-14 paf
20577:
20578: * src/: include/pa_request.h, main/pa_request.C,
20579: targets/cgi/parser3.C: z
20580:
20581: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
20582: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
20583: types/pa_vstring.h: limits -1
20584:
20585: * src/: include/pa_globals.h, include/pa_request.h,
20586: include/pa_types.h, main/main.dsp, main/pa_globals.C,
20587: main/pa_request.C, targets/cgi/parser3.C,
20588: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
20589: request_info -1
20590:
20591: * src/: include/pa_globals.h, main/pa_globals.C,
20592: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20593: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
20594: vform_fields_fill
20595:
20596: * src/targets/cgi/parser3.C: # if MSVC
20597:
20598: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
20599: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
20600:
20601: * src/targets/cgi/parser3.C: z
20602:
20603: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
20604: include/pa_string.h, include/pa_types.h, main/compile.y,
20605: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
20606: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
20607: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
20608: types/pa_vunknown.h: global handler, exceptions in parser3
20609:
20610: 2001-03-13 paf
20611:
20612: * src/: classes/form.C, main/compile.y, main/core.C,
20613: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
20614: types/pa_vform.h, types/pa_vstateless_class.C,
20615: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
20616: instead
20617:
20618: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
20619: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
20620: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
20621: started cgi target
20622:
20623: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
20624: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
20625: before error show with parser
20626:
20627: * src/: classes/_form.h, classes/form.C, include/core.h,
20628: include/pa_request.h, main/core.C, main/pa_request.C,
20629: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
20630:
20631: * src/targets/cgi/: parser.dsp, parser3.dsp: z
20632:
20633: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
20634: parser3.C: renamed targets/ parser to cgi
20635:
20636: * src/: classes/double.C, classes/env.C, classes/int.C,
20637: classes/root.C, classes/string.C, classes/table.C,
20638: include/pa_request.h, types/pa_vhash.h: z
20639:
20640: * src/: classes/_env.h, classes/env.C, classes/root.C,
20641: include/core.h, include/pa_pool.h, include/pa_request.h,
20642: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
20643: main/pa_common.C, main/pa_request.C, types/pa_value.h,
20644: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
20645: [historical moment :)]
20646:
20647: * src/: include/code.h, include/pa_string.h, main/compile.y,
20648: main/execute.C, main/pa_string.C: 'value is type' expr operator
20649:
20650: * src/types/pa_venv.h: $ENV 1
20651:
20652: * src/main/execute.C: z
20653:
20654: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
20655: future methods of ENV constructor if
20656:
20657: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
20658: class
20659:
20660: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
20661: classes/_root.h, classes/_string.h, classes/_table.h,
20662: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
20663: classes/string.C, classes/table.C, include/pa_request.h,
20664: main/compile.C, main/compile_tools.h, main/core.C,
20665: main/execute.C, main/main.dsp, main/pa_request.C,
20666: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
20667: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
20668: types/pa_vobject.h, types/pa_vstateless_class.C,
20669: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
20670: types/pa_wcontext.h: $ENV: re 0, stateless classes
20671:
20672: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
20673: classes/_root.h, classes/_string.h, classes/_table.h,
20674: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
20675: classes/string.C, classes/table.C, include/pa_request.h,
20676: main/compile.C, main/compile_tools.h, main/core.C,
20677: main/execute.C, main/main.dsp, main/pa_request.C,
20678: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
20679: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
20680: types/pa_vobject.h, types/pa_vstateless_class.C,
20681: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
20682: types/pa_wcontext.h: $ENV: re 0, stateless classes
20683:
20684: * src/: include/pa_request.h, main/compile.C, main/execute.C,
20685: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
20686: yesterdays bad decision on execute_static_method
20687:
20688: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
20689:
20690: * src/: classes/double.C, classes/int.C, classes/root.C,
20691: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
20692:
20693: * src/main/pa_request.C: z
20694:
20695: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
20696: include/pa_pool.h: skipped_restructure_exceptions_dead_end
20697:
20698: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
20699: include/pa_pool.h, main/pa_request.C:
20700: restructure_exceptions_dead_end
20701:
20702: * src/: classes/root.C, main/compile.y: ^if required junctions.
20703: allowed ; inside {} to break params
20704:
20705: * src/classes/root.C: ^eval
20706:
20707: * src/: classes/_string.h, classes/double.C, classes/int.C,
20708: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
20709: string ^format
20710:
20711: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
20712: 'bad' but not 'enough'
20713:
20714: * src/: classes/double.C, classes/root.C, classes/table.C,
20715: include/pa_common.h, include/pa_types.h, main/compile.y,
20716: main/pa_common.C, main/pa_request.C, main/untaint.C,
20717: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
20718: types/pa_wwrapper.h: think constructing flag as is is bad
20719:
20720: * src/: classes/double.C, classes/int.C, classes/root.C,
20721: classes/string.C, classes/table.C, main/core.C, main/execute.C,
20722: types/pa_vint.h: ^for
20723:
20724: 2001-03-12 paf
20725:
20726: * src/classes/table.C: table ^empty
20727:
20728: * src/: classes/table.C, include/pa_table.h: table ^menu
20729:
20730: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
20731: ^offset ^line ^count
20732:
20733: * src/classes/root.C: ^round() ^floor() ^ceiling()
20734: ^abs() ^sign()
20735:
20736: * src/classes/: root.C, table.C: ^use
20737:
20738: * src/: classes/root.C, classes/table.C, include/pa_request.h,
20739: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
20740: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
20741: ^while. switched off wcontext.constructing after write(value) or
20742: auto-vhash-constructing
20743:
20744: * src/: classes/root.C, classes/table.C, include/pa_request.h,
20745: main/pa_request.C: fail_if_junction_ helper func
20746:
20747: * src/: classes/root.C, classes/table.C, include/pa_common.h,
20748: include/pa_request.h, main/execute.C, main/main.dsp,
20749: main/pa_common.C, main/pa_request.C: ^process error point by
20750: actual method_name, not source. ^load
20751:
20752: * src/types/pa_vtable.h: table: no, better with string in cells...
20753:
20754: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
20755: classes/_table.h, classes/table.C, main/untaint.C: z
20756:
20757: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
20758: include/pa_table.h, main/core.C, main/execute.C,
20759: main/pa_common.C, main/pa_request.C, main/pa_table.C,
20760: types/pa_value.h: table:set 0
20761:
20762: * src/: classes/root.C, include/core.h, include/pa_array.h,
20763: include/pa_request.h, include/pa_table.h, main/core.C,
20764: main/main.dsp, main/pa_request.C, main/pa_table.C,
20765: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
20766: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
20767: types/pa_vstring.h: freeze, ^table:create[] -1
20768:
20769: * src/: classes/root.C, types/pa_value.h: z
20770:
20771: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
20772: get_method in couple places optimizing them
20773:
20774: * src/classes/root.C: z
20775:
20776: * src/: classes/root.C, types/pa_vclass.h: process temp main
20777: zeroing
20778:
20779: * src/: classes/double.C, classes/int.C, classes/root.C,
20780: classes/string.C, include/pa_common.h, include/pa_request.h,
20781: include/pa_string.h, include/pa_types.h, main/compile.C,
20782: main/compile.y, main/compile_tools.h, main/execute.C,
20783: main/pa_common.C, main/pa_request.C, types/pa_value.h,
20784: types/pa_vmframe.h: ^process. actual names to store param and
20785: check_actual_numbered_params for better place diagnostics
20786:
20787: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
20788: method-junctions bug fixed
20789:
20790: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
20791: pa_vstateless_object.h, pa_vstring.h: stateless_object
20792:
20793: 2001-03-11 paf
20794:
20795: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
20796: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
20797: VDouble VInt base now VObject_base - without fields
20798:
20799: * src/: classes/root.C, include/core.h, main/core.C: z
20800:
20801: * src/: classes/double.C, classes/int.C, classes/root.C,
20802: classes/string.C, include/core.h, include/pa_hash.h,
20803: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
20804: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
20805:
20806: * src/: classes/double.C, classes/int.C, classes/root.C,
20807: include/pa_request.h, main/execute.C: intercept_string
20808:
20809: * src/: classes/double.C, classes/int.C, classes/root.C,
20810: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
20811:
20812: * src/: classes/double.C, classes/int.C, include/pa_request.h:
20813: ^inc-s(expr)
20814:
20815: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
20816: classes/_root.h, classes/_string.h, classes/double.C,
20817: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
20818: include/code.h, include/core.h, include/pa_array.h,
20819: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
20820: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
20821: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
20822: include/pa_types.h, main/compile.C, main/compile.y,
20823: main/compile_tools.C, main/compile_tools.h, main/core.C,
20824: main/execute.C, main/pa_array.C, main/pa_common.C,
20825: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
20826: main/pa_request.C, main/pa_string.C, main/pa_table.C,
20827: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20828: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
20829: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
20830: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
20831: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
20832: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
20833:
20834: * src/: main/pa_request.C, types/pa_vhash.h: z
20835:
20836: * src/: include/core.h, include/pa_request.h, main/core.C,
20837: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
20838:
20839: * src/: include/pa_valiased.h, include/pa_value.h,
20840: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
20841: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
20842: include/pa_vjunction.h, include/pa_vmframe.h,
20843: include/pa_vobject.h, include/pa_vstring.h,
20844: include/pa_vunknown.h, include/pa_wcontext.h,
20845: include/pa_wwrapper.h, main/compile.y, main/core.C,
20846: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
20847: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
20848: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20849: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
20850: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
20851: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
20852: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
20853: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
20854: include/
20855:
20856: 2001-03-10 paf
20857:
20858: * src/: include/core.h, include/pa_request.h, main/core.C,
20859: main/pa_request.C: run+auto=run
20860:
20861: * src/: classes/root.C, include/pa_request.h: minor if junction bug
20862:
20863: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
20864: classes/_root.h, classes/_string.h, classes/double.C,
20865: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
20866: include/code.h, include/core.h, include/pa_array.h,
20867: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
20868: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
20869: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
20870: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
20871: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
20872: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
20873: include/pa_vjunction.h, include/pa_vmframe.h,
20874: include/pa_vobject.h, include/pa_vstring.h,
20875: include/pa_vunknown.h, include/pa_wcontext.h,
20876: include/pa_wwrapper.h, main/compile.C, main/compile.y,
20877: main/compile_tools.C, main/compile_tools.h, main/core.C,
20878: main/execute.C, main/pa_array.C, main/pa_cframe.C,
20879: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
20880: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20881: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
20882: main/pa_wcontext.C: sources header
20883:
20884: * src/main/pa_request.C: auto..
20885:
20886: * src/: include/pa_request.h, main/compile.C, main/compile.y,
20887: main/pa_request.C: auto tree0
20888:
20889: * src/: include/core.h, include/pa_request.h, main/compile.y,
20890: main/core.C, main/pa_request.C: names to core.C
20891:
20892: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
20893: include/pa_request.h, main/core.C, main/execute.C,
20894: main/pa_common.C, main/pa_request.C: root auto.p loaded
20895:
20896: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
20897: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
20898: main/compile_tools.C, main/compile_tools.h, main/execute.C:
20899: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
20900:
20901: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
20902: @auto[] realised. auto.p scan togo
20903:
20904: * src/: include/pa_request.h, main/execute.C: autocalc
20905: code-junctions result now have names
20906:
20907: * src/: classes/double.C, classes/int.C, classes/root.C,
20908: classes/string.C, include/pa_request.h, include/pa_string.h,
20909: include/pa_wcontext.h, main/compile.y, main/execute.C,
20910: main/pa_string.C, main/pa_wcontext.C: tainting 0
20911:
20912: * src/classes/env.C: env:file/line
20913:
20914: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
20915: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
20916: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
20917: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
20918: main/compile_tools.C, main/compile_tools.h, main/core.C,
20919: main/execute.C, main/main.dsp, main/pa_cframe.C,
20920: main/pa_request.C, main/pa_wcontext.C: const fight finished
20921:
20922: * src/include/pa_vclass.h: const fight to go
20923:
20924: * src/: classes/_env.h, classes/env.C, classes/root.C,
20925: include/pa_request.h, include/pa_vclass.h, main/core.C,
20926: main/main.dsp: env0
20927:
20928: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
20929: classes/_string.h, classes/double.C, classes/int.C,
20930: classes/root.C, classes/string.C, include/pa_request.h,
20931: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
20932: include/pa_wcontext.h, main/core.C, main/main.dsp,
20933: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
20934: main/pa_wcontext.C: ^lang prepare0
20935:
20936: 2001-03-09 paf
20937:
20938: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
20939: construct proper naming
20940:
20941: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
20942: classes/double.C, classes/int.C, classes/root.C,
20943: classes/string.C, include/code.h, include/pa_value.h,
20944: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
20945: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
20946: main/compile.y, main/compile_tools.C, main/core.C,
20947: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
20948: and ^double[]. fixed expr type
20949:
20950: * src/: classes/root.C, include/pa_request.h, main/execute.C:
20951: ^string.length[]
20952:
20953: 2001-03-08 paf
20954:
20955: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
20956:
20957: * src/: include/pa_vclass.h, include/pa_vstring.h,
20958: include/pa_wcontext.h, main/compile.y, main/core.C,
20959: main/execute.C, main/main.dsp: dead end: vstring can't be
20960: derivated from vobject
20961:
20962: * src/: include/pa_vclass.h, include/pa_vhash.h,
20963: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
20964:
20965: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
20966: remained clone conseqs
20967:
20968: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
20969:
20970: * src/main/pa_vclass.C: wow! vclass were out of vcs
20971:
20972: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
20973: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
20974: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
20975: include/pa_vobject.h, include/pa_vstring.h,
20976: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
20977: main/execute.C: withoud cloning. didn't need it actually, params
20978: got passed from out unnamed ewpool
20979:
20980: * src/: include/pa_vdouble.h, include/pa_vhash.h,
20981: include/pa_vjunction.h, include/pa_vobject.h,
20982: include/pa_vunknown.h, main/compile.y: cloning dead end
20983:
20984: * src/: include/pa_bool.h, include/pa_double.h,
20985: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
20986: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
20987: include/pa_vjunction.h, include/pa_vmframe.h,
20988: include/pa_vobject.h, include/pa_vstring.h,
20989: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
20990: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
20991: to give params proper names
20992:
20993: * src/main/pa_wcontext.C: z
20994:
20995: * src/: include/pa_vmframe.h, main/execute.C: added names to
20996: unknown values in get_element and unfilled params. removed wrong
20997: name change in get_element
20998:
20999: * src/main/execute.C: z
21000:
21001: * src/main/execute.C: fixed problems calling operators in
21002: constructors
21003:
21004: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
21005: detected problems calling operators in constructors
21006:
21007: * src/: classes/root.C, include/pa_request.h, main/execute.C:
21008: autocalc def to string
21009:
21010: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
21011: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
21012:
21013: * src/classes/root.C: added root.c
21014:
21015: * src/: include/pa_request.h, include/pa_value.h,
21016: include/pa_vcframe.h, include/pa_vmframe.h,
21017: include/pa_wcontext.h, main/compile.C, main/compile.y,
21018: main/core.C, main/execute.C, main/pa_cframe.C,
21019: main/pa_wcontext.C: 'if' just compiled
21020:
21021: * src/: include/pa_vbool.h, include/pa_vdouble.h,
21022: include/pa_vjunction.h, include/pa_vmframe.h,
21023: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
21024: main/pa_wcontext.C: z
21025:
21026: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
21027: main/core.C, main/execute.C, main/main.dsp: z. detected probs
21028: with parameter names in operator methods
21029:
21030: * src/main/compile.y: minor renamings in .y
21031:
21032: * src/: include/pa_request.h, main/compile.C, main/compile.y,
21033: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
21034: @BASE. changed 'RUN' assignment mech
21035:
21036: * src/main/execute.C: z
21037:
21038: * src/: include/code.h, main/compile.y, main/compile_tools.C,
21039: main/compile_tools.h, main/execute.C: made class: dynamic, not
21040: static. so to enable runtime ^use
21041:
21042: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
21043:
21044: * src/: include/code.h, main/compile.y, main/compile_tools.C,
21045: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
21046:
21047: * src/main/execute.C: root root in code-junction
21048:
21049: 2001-03-07 paf
21050:
21051: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
21052: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
21053:
21054: * src/: include/pa_stack.h, include/pa_value.h,
21055: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
21056: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
21057: fixed rwcontext of {} params up
21058:
21059: * src/main/: compile.y, compile_tools.h: ^func(params)
21060:
21061: * src/main/compile.y: .y priorities syntax shaped up a bit
21062:
21063: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
21064: include/pa_vunknown.h, main/compile.y, main/execute.C,
21065: main/pa_hash.C: expr def in -f
21066:
21067: * src/main/: compile.y, execute.C: expr calls
21068:
21069: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
21070: fixed
21071:
21072: * src/main/compile.y: expr quoted code
21073:
21074: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
21075: support0
21076:
21077: * src/main/compile.y: expr string comparisons 0
21078:
21079: * src/: include/pa_string.h, main/compile.y, main/execute.C,
21080: main/pa_string.C: just compiled lt&co
21081:
21082: * src/main/execute.C: ^var.menu{$field} problem detected. that
21083: $field not a $var.field
21084:
21085: 2001-03-06 paf
21086:
21087: * src/main/compile.y: .y expr visible-shorter
21088:
21089: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
21090: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
21091: logical
21092:
21093: * src/: include/pa_vstring.h, main/compile.y: problems with
21094: skipping whitespace in yylex
21095:
21096: * src/include/pa_vbool.h: forgot this
21097:
21098: * src/: include/code.h, main/compile.y, main/execute.C: without
21099: string ops in expressions 0
21100:
21101: * src/: include/pa_value.h, include/pa_vdouble.h,
21102: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
21103: main/execute.C, main/main.dsp: !~
21104:
21105: * src/: include/pa_vcframe.h, include/pa_vclass.h,
21106: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
21107: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
21108: include/pa_vunknown.h, include/pa_wcontext.h,
21109: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
21110: main/compile_tools.h, main/execute.C: +-*/
21111:
21112: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
21113: main/compile_tools.h: grammar-1.1 $a(z) $a=0
21114:
21115: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
21116: main/execute.C: expr grammar-1 2*2=4.000000 :)
21117:
21118: * src/main/compile.y: expr grammar-1
21119:
21120: * src/main/compile.y: expr lexx1
21121:
21122: * src/main/: compile.y, execute.C, main.dsp: z
21123:
21124: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
21125: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
21126: main/execute.C: expr lex0 exec-1
21127:
21128: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
21129:
21130: 2001-02-26 paf
21131:
21132: * src/main/compile.y: max_string in yyerror bug fix
21133:
21134: 2001-02-25 paf
21135:
21136: * src/: include/pa_value.h, include/pa_vmframe.h,
21137: include/pa_wcontext.h, main/execute.C: VAliased3
21138:
21139: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
21140:
21141: * src/main/execute.C: VAliased1
21142:
21143: * src/: include/pa_request.h, include/pa_value.h,
21144: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
21145: VAliased0
21146:
21147: * src/: include/pa_pool.h, include/pa_request.h,
21148: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
21149: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
21150: VAliased just compiled
21151:
21152: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
21153: include/pa_vobject.h, main/execute.C: alias dead end
21154:
21155: * src/: include/pa_value.h, include/pa_vclass.h,
21156: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
21157: main/main.dsp: no not get fields into interm VFielded class.
21158: fields & staticfields 1
21159:
21160: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
21161: include/pa_vobject.h, include/pa_wcontext.h,
21162: include/pa_wwrapper.h, main/core.C, main/execute.C,
21163: main/main.dsp: would now get fields into interm VFielded class
21164:
21165: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
21166: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
21167: include/pa_wcontext.h, main/compile.y, main/core.C,
21168: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
21169: main/pa_wcontext.C: virtuals2
21170:
21171: * src/main/compile.y: : 1
21172:
21173: * src/main/compile.y: rethought to $class:static.field.subfield
21174:
21175: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
21176: $class:element
21177:
21178: * src/: include/pa_value.h, include/pa_vmframe.h,
21179: include/pa_wwrapper.h, main/compile.y, main/execute.C,
21180: main/pa_wcontext.C: before execute class calls rewrite
21181:
21182: * src/: include/pa_request.h, main/compile.C, main/core.C: default
21183: name RUN, also alias
21184:
21185: * src/main/compile.y: escaping bug
21186:
21187: * src/: include/pa_request.h, include/pa_value.h,
21188: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
21189: main/core.C, main/execute.C, main/pa_common.C: vobject1
21190:
21191: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
21192: include/pa_vmframe.h, include/pa_vobject.h,
21193: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
21194: main/compile_tools.h, main/execute.C: ^class:method() just
21195: compiled
21196:
21197: 2001-02-24 paf
21198:
21199: * src/main/main.dsp: no bison -d
21200:
21201: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
21202: class' err msg wrong
21203:
21204: * src/main/compile.y: z
21205:
21206: * src/main/: compile.y, core.C: yylex need some @special lines adj
21207:
21208: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
21209: main/compile.y, main/compile_tools.h, main/core.C: modules0
21210:
21211: * src/: include/pa_vclass.h, main/core.C: z
21212:
21213: * src/: include/pa_value.h, include/pa_vclass.h,
21214: include/pa_vobject.h, main/main.dsp: vobject00
21215:
21216: * src/main/pa_array.C: minor bug in expanding very small arrays.
21217: 60% from 1 were 0
21218:
21219: * src/: include/pa_value.h, include/pa_wcontext.h,
21220: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
21221: as bad as you've named it: wcontext.value() was not a perfect
21222: idea
21223:
21224: * src/main/execute.C: codeframe1
21225:
21226: * src/: include/pa_value.h, include/pa_vcframe.h,
21227: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
21228: include/pa_vjunction.h, include/pa_vmframe.h,
21229: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
21230: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
21231: just compiled
21232:
21233: * src/: include/pa_vframe.h, main/compile.y: found junction
21234: ideology @: ^x{$a()) must construct current wcontext element, so
21235: smart wcontext handling needed
21236:
21237: * src/main/compile.y: fixed grammar bugs in constructor/params
21238: klinch
21239:
21240: * src/main/: compile.y, execute.C: fixed empty constructor
21241: optimized empty case. failed on calls - produced empty string
21242: param
21243:
21244: * src/main/compile.y: fixed last \n macrotemplate strip bug
21245:
21246: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
21247: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
21248: main/compile_tools.C, main/compile_tools.h, main/core.C,
21249: main/execute.C: code junctions0. something wrong with last \n
21250: macrotemplate strip
21251:
21252: * src/: include/pa_value.h, main/compile.C, main/core.C,
21253: main/pa_value.C: minor error reporting format beautifyings
21254:
21255: * src/: include/pa_value.h, include/pa_vclass.h,
21256: include/pa_vframe.h, main/core.C, main/execute.C,
21257: main/pa_value.C: get_method RIP. junctions everywhere. call with
21258: junctions0
21259:
21260: 2001-02-23 paf
21261:
21262: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
21263: pa_wwrapper.h: lara came, can't work, sorry :(
21264:
21265: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
21266: junction
21267:
21268: * src/: include/pa_vframe.h, include/pa_vunknown.h,
21269: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
21270: main/execute.C, main/main.dsp, main/pa_value.C: call0
21271:
21272: * src/: include/pa_hash.h, include/pa_value.h,
21273: include/pa_wcontext.h, main/core.C, main/execute.C,
21274: main/main.dsp, main/pa_hash.C: started call. store param, vframe
21275: done
21276:
21277: * src/include/pa_wcontext.h: z
21278:
21279: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
21280: wrong grammar in complex constructor case
21281:
21282: * src/main/: compile.y, execute.C: empty constructor bug fixed
21283:
21284: * src/main/execute.C: with result rwpool
21285:
21286: * src/: include/pa_value.h, main/core.C, main/execute.C,
21287: main/main.dsp: value named
21288:
21289: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
21290: strign 2 value in 2 places in execute
21291:
21292: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
21293: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
21294: wcontext.put_element when wcontext fvalue==0
21295:
21296: 2001-02-22 paf
21297:
21298: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
21299: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
21300: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
21301:
21302: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
21303: erroreos checkout
21304:
21305: * src/: include/pa_request.h, main/compile.y: $self.put(val)
21306:
21307: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
21308: main/compile_tools.h, main/pa_array.C: $self.get
21309:
21310: * src/main/: compile.C, compile.y, compile_tools.C: z
21311:
21312: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
21313: bit. finished now.
21314:
21315: * src/main/compile.y: $: finished
21316:
21317: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
21318:
21319: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
21320: main/execute.C: OP_STRING better then some xxx _VALUE
21321:
21322: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
21323: main/compile_tools.C, main/compile_tools.h, main/execute.C:
21324: string to vstring it .y all
21325:
21326: * src/: include/pa_request.h, include/pa_stack.h,
21327: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
21328: all
21329:
21330: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
21331: precise parse error line:col
21332:
21333: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
21334: main/pa_hash.C, main/pa_pool.C: TRY...
21335:
21336: * src/: include/pa_exception.h, include/pa_pool.h,
21337: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
21338: main/compile.C, main/compile.y, main/compile_tools.C,
21339: main/core.C, main/pa_array.C, main/pa_exception.C,
21340: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
21341: main/pa_table.C: removed exception from request
21342:
21343: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
21344: some forgotten
21345:
21346: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
21347: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
21348: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
21349: get/put simple vars to VClass works0
21350:
21351: * src/: include/pa_array.h, include/pa_wcontext.h,
21352: main/pa_string.C: in process, but found that exceptions are too
21353: global
21354:
21355: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
21356: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
21357: main/execute.C, main/pa_string.C: write_value write_string 0 it
21358: seems wcontext must write strings regardles of fvalue!=0
21359:
21360: 2001-02-21 paf
21361:
21362: * src/main/execute.C: tired :)
21363:
21364: * src/main/: compile.C, compile.y, execute.C: store0
21365:
21366: * src/: include/compile.h, include/execute.h, include/pa_array.h,
21367: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
21368: include/pa_wcontext.h, main/compile.C, main/compile.y,
21369: main/execute.C, main/main.dsp, main/pa_array.C,
21370: main/pa_request.C: get put -1 [just compiled]
21371:
21372: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
21373: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
21374: main/main.dsp, main/pa_request.C: request core methods0
21375:
21376: * src/: include/compile.h, include/pa_array.h, main/compile.C,
21377: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
21378: execute
21379:
21380: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
21381: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
21382: methods and one_big_piece. now compile returns array<method*>
21383:
21384: * src/main/compile.y: more straightforward yylex[end]
21385:
21386: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
21387: string.operator==(char*)
21388:
21389: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
21390: main/execute.C, main/pa_array.C: after array.const get wonders
21391:
21392: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
21393: pa_string.h, pa_value.h: struck with const array.gets
21394:
21395: * src/main/: execute.C: z
21396:
21397: * src/main/: compile.y, execute.C: z
21398:
21399: * src/main/: compile.C, compile.y, compile_tools.h: error
21400: processing in eval & yyerror so it wouldn't cause memleaks.
21401:
21402: * src/main/: compile.C, compile.y: failed to add absolute precies
21403: parse error positions. leaving RIGHTMOST position as
21404: @file[line:col]
21405:
21406: * src/: include/compile.h, main/compile.C, main/compile.y,
21407: main/compile_tools.h: line numbers needed. would add them to .y
21408: now internally. externally it's not as precise as needed
21409:
21410: * src/: include/code.h, include/pa_types.h, main/compile.C,
21411: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21412: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
21413: compiler works ok
21414:
21415: 2001-02-20 paf
21416:
21417: * src/main/: compile.C, compile.y, compile_tools.C,
21418: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
21419: not perfect
21420:
21421: * src/: include/code.h, include/compile.h, include/execute.h,
21422: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
21423: include/pa_string.h, include/pa_table.h, include/pa_types.h,
21424: main/compile.C, main/compile.y, main/compile_tools.C,
21425: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
21426: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
21427: main/pa_string.C, main/pa_table.C: bison[yacc] first time
21428: compiled. execute=dump for now
21429:
21430: * src/main/core.C: core rewrite using yacc investigations now will
21431: be compile[yacc]/execute[opcodes]
21432:
21433: 2001-02-15 paf
21434:
21435: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
21436: rewrite as turing machine? for it seems it would be it's too many
21437: ifs with this syntax now
21438:
21439: 2001-02-14 paf
21440:
21441: * src/main/core.C: get_params 1
21442:
21443: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
21444: :( ]
21445:
21446: * src/main/core.C: varios breaks
21447:
21448: * src/main/core.C: get names 3
21449:
21450: * src/main/core.C: get names 2
21451:
21452: * src/main/core.C: get names 1
21453:
21454: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
21455: names 0
21456:
21457: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
21458: text repassing2 operator static vars
21459:
21460: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
21461: main/pa_string.C: process text repassing
21462:
21463: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
21464: module:calls changes
21465:
21466: 2001-02-13 paf
21467:
21468: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
21469: ^class:calls[] started
21470:
21471: * src/: include/pa_value.h, main/core.C: z
21472:
21473: * src/main/core.C: operators : and self. prefixes
21474:
21475: * src/main/core.C: z
21476:
21477: * src/: include/pa_string.h, main/pa_string.C: String_iterator
21478: tested
21479:
21480: * src/: include/pa_string.h, main/pa_string.C: String_iterator
21481: optimized
21482:
21483: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
21484: would change privates to better support optimization
21485:
21486: * src/: include/pa_string.h, main/pa_string.C:
21487: String_iterator::skip_to todo:optimize
21488:
21489: 2001-02-12 paf
21490:
21491: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
21492: String_iterator
21493:
21494: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
21495: comments
21496:
21497: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
21498: self/methodref joined
21499:
21500: 2001-02-11 paf
21501:
21502: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
21503: main/main.dsp: core started. core.C, context&value .h
21504:
21505: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
21506: include/pa_string.h, main/main.dsp, main/pa_array.C,
21507: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
21508:
21509: 2001-01-30 paf
21510:
21511: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
21512: comments
21513:
21514: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
21515: main/pa_pool.C: moved pa_pool.C to be target specific
21516:
21517: * src/: include/pa_exception.h, include/pa_pool.h,
21518: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
21519: to & changes
21520:
21521: * src/: include/pa_exception.h, include/pa_pool.h,
21522: include/pa_request.h, include/pa_table.h, main/pa_array.C,
21523: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
21524: re-associated. that's much better even removed 'die' necessety
21525:
21526: * src/: include/pa_error.h, include/pa_exception.h,
21527: include/pa_pool.h, include/pa_request.h, main/main.dsp,
21528: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
21529: targets/Makefile.am: lowered targets/parser into subdir, added
21530: parser_Pool(Pool) failed to add. would think..
21531:
21532: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
21533: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
21534: main/pa_string.C, main/pa_table.C: Table more like C++ style
21535: hence lots of 'const'
21536:
21537: * src/: include/pa_error.h, include/pa_request.h,
21538: include/pa_string.h, include/pa_table.h, main/pa_error.C,
21539: main/pa_table.C: Error fixed
21540:
21541: 2001-01-29 paf
21542:
21543: * src/: include/pa_array.h, include/pa_common.h,
21544: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
21545: include/pa_request.h, include/pa_string.h, include/pa_table.h,
21546: main/Makefile.am, main/pa_array.C, main/pa_common.C,
21547: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
21548:
21549: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
21550: include/pa_string.h, include/pa_table.h, include/pa_types.h,
21551: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
21552: main/pa_string.C, main/pa_table.C: Request Error Table
21553:
21554: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
21555: templates"
21556:
21557: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
21558: main/main.dsp, main/pa_array.C: templates failed no template
21559: specializations [VC6], no library auto instantation [VC6, GNU c++
21560: 2.95.2-6 from latest cygwin]
21561:
21562: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
21563: include/pa_string.h, include/pa_table.h, include/pa_types.h,
21564: main/main.dsp, main/pa_array.C, main/pa_string.C,
21565: main/pa_table.C: Table started would test template Array now
21566:
21567: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
21568: String originating
21569:
21570: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
21571: main/pa_hash.C: made local Hash-es not thread safe=quicker by
21572: SYNCHRONIZED(thread_safe)
21573:
21574: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
21575: parts to top
21576:
21577: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
21578: main/pa_threads.C: decided on one global_mutex, like PHP as I can
21579: see: needed only in global Hash now, made Hash:: put/get
21580: SYNCHRONIZED
21581:
21582: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
21583: main/pa_threads.C: added pa_threads
21584:
21585: Mutex
21586:
21587: * src/include/pa_hash.h: some comments
21588:
21589: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
21590: Array& operator += (Array& src)
21591:
21592: * src/main/pa_array.C: expand not convinient, would rewrite
21593:
21594: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
21595: (Array& src)
21596:
21597: rethought, would change now
21598:
21599: 2001-01-27 paf
21600:
21601: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
21602: caching
21603:
21604: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
21605: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
21606: cache rethought to chunk caching
21607:
21608: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
21609: include/pa_string.h, main/main.dsp, main/pa_array.C,
21610: main/pa_hash.C, main/pa_string.C: Array 0
21611:
21612: * src/main/pa_string.C: String::operator ==
21613:
21614: * src/main/pa_hash.C: String(&String)
21615:
21616: * src/main/pa_hash.C: added pa_hash.C [forgotten]
21617:
21618: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
21619: main/main.dsp, main/pa_string.C: uint, and added pa_types &
21620: pa_hash[forgotten]
21621:
21622: 2001-01-26 paf
21623:
21624: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
21625: removed templates [vc++ suxx]
21626:
21627: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
21628: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
21629:
21630: * src/include/: pa_pool.h, pa_string.h: pa_pool split
21631:
21632: * src/main/: main.dsp, pa_string.C: $Id$ check
21633:
21634: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: $Id$
21635: check
21636:
21637: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
21638: dynamic row_count
21639:
21640: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
21641: main/main.dsp, main/pa_pool.C, main/pa_string.C,
21642: targets/Makefile.am: Initial revision
21643:
21644: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
21645: main/main.dsp, main/pa_pool.C, main/pa_string.C,
21646: targets/Makefile.am: creating parser3 module
21647:
E-mail: