Annotation of parser3/ChangeLog, revision 1.208
1.208 ! moko 1: 2024-12-01 moko
! 2:
! 3: * tests/: 010.html, results/010.processed: some tests related to
! 4: bug #1149 added
! 5:
! 6: * src/main/compile.y: the check pc.pos.col > 1 is not required
! 7: because we can't be here without a '$' before. The begin == end
! 8: check was incorrect since $[a]{b} fits this condition (fixes bug
! 9: #1149)
! 10:
! 11: 2024-11-29 moko
! 12:
! 13: * src/classes/array.C: warning war
! 14:
! 15: 2024-11-26 moko
! 16:
! 17: * tests/: 441.html, results/441.processed: a bit more testing
! 18: (related to bug #1238)
! 19:
! 20: * src/main/pa_exec.C: only " now quoted (related to bug #1239)
! 21:
! 22: * src/main/pa_exec.C: simplification arg_quote added (related to
! 23: bug #1229)
! 24:
1.207 moko 25: 2024-11-25 moko
26:
27: * src/main/pa_exec.C: separated cmd_quote and exe_quote (related to
28: bug #1239)
29:
30: 2024-11-24 moko
31:
32: * src/main/pa_exec.C: added cmd.exe specific
33:
34: * tests/: 441.html, cat-windows.sh, cat.sh, results/441.processed:
35: tests for ^file::exec env and args tainting tests (related to bug
36: #1239)
37:
38: * src/main/pa_exec.C: shell_quote added (partial fix for bug #1239)
39:
40: * src/include/pa_config_includes.h: added recommendations for
41: libxslt.a and and libexslt.a compilation under cygwin
42:
43: * tests/results/102.processed: $form:fields.value is now writable,
44: as $form:value (related to feature #1254)
45:
46: * src/include/pa_config_includes.h: cigwin compilation fixes
47:
48: 2024-11-23 moko
49:
50: * tests/httpd/site/run_server.sh: to simplify testing
51:
52: * tests/httpd/: 030.txt, 031.curl, 040.txt, ok.log, run_tests.sh,
53: site/form.html: $form:files and $form:elements tests added, tests
54: with curl supported (related to feature #1254)
55:
56: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_vform.C,
57: types/pa_vform.h: $form:elements implemented, VForm::get_element
58: uses faster SYMBOLS_EQ, hashes no longer copied when using
59: $form:fields/tables/files/imap and can be edited (implements
60: feature #1254)
61:
62: * src/main/pa_http.C: pa_send added to handle partial writes (fixes
63: bug #1261)
64:
1.206 moko 65: 2024-11-17 moko
66:
67: * tests/: 440.html, results/440.processed: tests for
68: ^table.array[], offset restoration, iterators robust tests
69: (related to bug #1258, features #1259 and #1260)
70:
71: * tests/: 439.html, results/439.processed: array and hash iterators
72: robust tests (related to feature #1260)
73:
74: * src/: classes/array.C, classes/table.C, include/pa_array.h,
75: include/pa_table.h: Array_robust_iterator added and used in cases
76: where array can be modified during iteration (implements feature
77: #1260)
78:
79: * src/classes/table.C: ^table.array[], ^table.array[column name],
80: ^table.array{code} added (implements feature #1259)
81:
82: 2024-11-16 moko
83:
84: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: fixed
85: table current row restoration after exception and table changes
86: (fixes bug #1258)
87:
88: 2024-11-13 moko
89:
90: * src/classes/table.C: minor optimization
91:
92: * src/main/pa_string.C: \r added to default ^string.trim chars list
93: (https://www.parser.ru/forum/?id=86648)
94:
1.205 moko 95: 2024-11-11 moko
96:
1.206 moko 97: * src/classes/classes.C: set_base commented
98:
99: * src/classes/: classes.C, xdoc.C: cleanup after classes.awk
100: deleted
101:
102: * src/classes/classes.vcproj: no more classes.awk and classes.inc
103:
104: * src/classes/: Makefile.am, classes.awk: no more classes.awk and
105: classes.inc
106:
107: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
108: main/pa_globals.C: classes.awk is useless, preparing to delete it
109:
1.205 moko 110: * src/classes/classes.h: temp fix
111:
112: 2024-11-10 moko
113:
114: * src/: classes/date.C, classes/file.C, classes/image.C,
115: classes/op.C, main/pa_string.C: minor optimization
116:
117: * src/: classes/date.C, classes/file.C, classes/image.C,
118: classes/op.C, main/pa_string.C: typo fixed
119:
120: * src/: classes/classes.awk, classes/classes.h, classes/date.C,
121: classes/file.C, classes/image.C, classes/op.C,
122: main/pa_charsets.C, main/pa_string.C: singletones used to reduce
123: memory allocation befor main(). Only 3 allocations in chatsets
124: left (implements feature #1257)
125:
126: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C:
127: minor naming convention fix
128:
129: * tests/: 437.html, 438.html, httpd/ok.log, httpd/site/029.html,
130: results/436.processed, results/437.processed,
131: results/438.processed: tests for @unhandled_exception processing
132: (related to feature #1256)
133:
134: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
135: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
136: targets/isapi/parser3isapi.C: Exceptions in @unhandled_exception
137: are now processed in request::core for correct logging and
138: reporting (feature #1256)
139:
140: * src/: include/pa_sapi.h, main/pa_request.C,
141: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
142: targets/isapi/parser3isapi.C: unhandled exception now called if
143: exception occures during $response:download processing (related
144: to bug #1255)
145:
146: * etc/auto.p.in: better 404 error reporting
147:
148: 2024-11-09 moko
149:
150: * src/main/pa_memory.C: more detailed usage comment
151:
152: * src/main/pa_memory.C: usage commented
153:
154: * src/main/pa_memory.C: minor cleanup
155:
156: * src/types/: pa_varray.h, pa_vregex.h: warnings war
157:
158: * tests/: 436.html, httpd/029.txt, httpd/ok.log,
159: httpd/site/029.html, results/436.processed: test for exception in
160: $response:download[] added
161:
162: * src/targets/cgi/parser3.C: sync CGI mode behavior with httpd mode
163: and avoid exit status 1 on die
164:
165: * tests/results/: 007.processed, 019.processed, 098.processed,
166: 103.processed, 233.processed: windows headers matter for binary
167: files
168:
169: * tests/httpd/ok.log: tests results updated as extra headers now
170: cleared on error (related to bug #1255)
171:
172: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
173: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
174: targets/isapi/parser3isapi.C: headers buffering to avoid extra
175: headers in errors, custom send_error in cgi/httpd mode to avoid
176: memory allocations (fixes bug #1255)
177:
178: 2024-11-07 moko
179:
180: * tests/: 264.html, results/264.processed: tests updated to test
181: removal of only trailing empty arguments for backward
182: compatibility (related to feature #1252)
183:
184: * src/classes/file.C: remove trailing empty arguments for backward
185: compatibility (related to feature #1252)
186:
187: 2024-11-05 moko
188:
189: * src/targets/cgi/: pa_sapi_info.h, parser3.C: avoid GPF in very
190: low memory case, when static initialization failed even before
191: main() start
192:
193: 2024-11-04 moko
194:
195: * configure, src/include/pa_config_auto.h.in,
196: src/include/pa_config_fixed.h: _locking no longer used
197:
198: * configure.ac: _locking no longer used (related to bug #1231)
199:
200: * src/main/pa_os.C: lock error fine-tuning (related to bug #1231)
201:
202: * src/main/pa_os.C: lock errors tuning (related to bug #1231)
203:
204: * src/lib/sdbm/: pa_file_io.C, pa-include/pa_file_io.h: remove
205: unused
206:
207: * src/: lib/sdbm/pa_file_io.C, main/pa_common.C: errno should not
208: be used on locking errors (related to bug #1231)
209:
210: * src/main/pa_os.C: GetLastError used as errno is not set (related
211: to bug #1231)
212:
213: * src/main/pa_os.C: under windows _locking replaced with LockFileEx
214: allowing shared lock to work (fixes bug #1231)
215:
216: * INSTALL: actualized, minor fixes
217:
218: * etc/auto.p.in: default LIMITS added
219:
220: * AUTHORS: links actualized
221:
222: * src/: classes/array.C, classes/bool.C, classes/classes.C,
223: classes/classes.awk, classes/classes.h, classes/curl.C,
224: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
225: classes/hash.C, classes/hashfile.C, classes/image.C,
226: classes/inet.C, classes/int.C, classes/json.C, classes/mail.C,
227: classes/math.C, classes/memcached.C, classes/memory.C,
228: classes/op.C, classes/reflection.C, classes/regex.C,
229: classes/response.C, classes/string.C, classes/table.C,
230: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
231: include/pa_array.h, include/pa_base64.h,
232: include/pa_cache_managers.h, include/pa_charset.h,
233: include/pa_charsets.h, include/pa_common.h,
234: include/pa_config_fixed.h, include/pa_config_includes.h,
235: include/pa_dictionary.h, include/pa_dir.h,
236: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
237: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
238: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
239: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
240: include/pa_request_charsets.h, include/pa_request_info.h,
241: include/pa_sapi.h, include/pa_socks.h,
242: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
243: include/pa_stack.h, include/pa_string.h,
244: include/pa_stylesheet_connection.h,
245: include/pa_stylesheet_manager.h, include/pa_symbols.h,
246: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
247: include/pa_uue.h, include/pa_xml_exception.h,
248: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
249: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
250: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
251: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
252: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
253: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
254: main/compile.tab.C, main/compile.y, main/compile_tools.C,
255: main/compile_tools.h, main/execute.C, main/pa_base64.C,
256: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
257: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
258: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
259: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
260: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
261: main/pa_sql_driver_manager.C, main/pa_string.C,
262: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
263: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
264: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
265: main/untaint.C, sql/pa_sql_driver.h,
266: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
267: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
268: targets/isapi/parser3isapi.C, types/pa_junction.h,
269: types/pa_method.h, types/pa_property.h, types/pa_value.C,
270: types/pa_value.h, types/pa_varray.C, types/pa_varray.h,
271: types/pa_vbool.h, types/pa_vcaller_wrapper.h, types/pa_vclass.C,
272: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
273: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
274: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
275: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
276: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
277: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
278: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
279: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
280: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
281: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
282: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
283: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
284: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
285: types/pa_vresponse.C, types/pa_vresponse.h,
286: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
287: types/pa_vstateless_object.h, types/pa_vstatus.C,
288: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
289: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
290: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
291: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
292: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
293:
1.203 moko 294: 2024-10-28 moko
295:
1.204 moko 296: * src/classes/array.C: avoid invalidate()
297:
298: * src/: classes/array.C, types/pa_varray.h: minor optimization for
299: fused to survive in ^array::copy[$a] (related to feature #930)
300:
301: * src/types/pa_varray.h: minor optimization as last element is
302: allways defined if present
303:
1.203 moko 304: * tests/: 435.html, results/435.processed: tests for
305: ^hash.set[first|last;value], ^hash.set([-+]index)[value] and same
306: for array added (related to feature #1253)
307:
308: * src/classes/array.C: typo fixed
309:
310: * src/classes/: array.C, hash.C: ^hash.set[first|last;value] +
311: ^hash.set([-+]index)[value], and same for array added (implements
312: feature #1253)
313:
314: * tests/results/: 246.processed, 298.processed, 342.processed,
315: 389.processed, 397.processed, 430.processed, 432.processed: tests
316: results update after minor exceptions texts fixes
317:
318: 2024-10-27 moko
319:
320: * src/: classes/array.C, classes/hash.C, classes/math.C,
321: classes/reflection.C, classes/string.C, classes/table.C,
322: main/pa_string.C, types/pa_varray.h, types/pa_vfile.C,
323: types/pa_vmethod_frame.h: handy as_index() added, several
324: exceptions texts fixed (related to feature #930)
325:
326: * src/: classes/array.C, types/pa_varray.h: non-working
327: $array.fields removed, ^array.delete[index] supported (related to
328: feature #930)
329:
330: * tests/: 431.html, results/431.processed: tests updated after
331: ^a.delete[3] supported
332:
333: * tests/: 431.html, 434.html, results/434.processed: tests for last
334: element used, push/pop, exceptions during arguments processing
335: and used caching (related to feature #930)
336:
337: * src/: classes/array.C, types/pa_varray.h: change_used added for
338: better used caching and now no issues if exception occures during
339: append arguments processing (related to feature #930)
340:
341: * src/: classes/array.C, types/pa_varray.h: ^array.push[] /
342: ^array.pop[] added, last element is allways used (related to
343: feature #930)
344:
345: 2024-10-26 moko
346:
347: * src/: classes/array.C, include/pa_array.h, types/pa_varray.C,
348: types/pa_varray.h: confirm_all_used added where possible (related
349: to feature #930)
350:
351: * src/: classes/array.C, include/pa_array.h, types/pa_varray.h:
352: small array optimizations (related to feature #930)
353:
354: * src/types/pa_varray.h: DEBUG_ARRAY_USED added to simplify testing
355:
356: * tests/: 431.html, results/431.processed: test for
357: ^array.compact[undef] added
358:
359: * src/classes/array.C: ^array.compact[] now have optional 'undef'
360: argument to also compact undefined elements (related to feature
361: #930)
362:
363: 2024-10-24 moko
364:
365: * src/: classes/array.C, types/pa_varray.C, types/pa_varray.h:
366: VArray::hash is used rarery, no longer caching the result
367:
368: * tests/results/432.processed: testing removed from tests
369:
370: 2024-10-23 moko
371:
372: * tests/: 431.html, results/431.processed: ^array.compact[] test
373: added
374:
375: * src/: classes/array.C, types/pa_varray.h: ^array.compact[] added
376:
377: * tests/: 432.html, results/432.processed: testing ^array.at[] for
378: both "solid" and "sparse" arrays
379:
380: * src/classes/array.C: ^array.at[] speedup for "solid" arrays
381:
382: 2024-10-22 moko
383:
384: * tests/results/264.processed: spelling
385:
386: * src/classes/file.C: spelling
387:
388: * tests/: 264.html, cat-windows.sh, cat.sh, results/264.processed:
389: tests updated after ^file::exec[cmd;;$array] implemented and
390: empty arguments not skipped (related to feature #1252)
391:
392: * src/classes/file.C: ^file::exec[cmd;;$array] supported
393: (implements feature #1252) bugfix: empty arguments no longer
394: skipped
395:
1.205 moko 396: 2024-10-21 moko
397:
398: * tests/httpd/: 001.txt, 002.txt, 003.txt, 004.txt, 005.txt,
399: 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt,
400: 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt,
401: 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt,
402: 028.txt, 030.txt, ok.log, run_tests.sh, site/httpd.p,
403: site/index.html, site/test.txt: httpd tests added
404:
1.202 moko 405: 2024-10-20 moko
406:
407: * src/classes/string.C: warnings war
408:
409: * src/: main/pa_string.C, classes/array.C: warnings war
410:
411: * src/classes/json.C: warnings war
412:
413: * src/classes/image.C: warnings war
414:
415: * src/: classes/table.C, types/pa_varray.C: warnings war
416:
417: * src/classes/array.C: warning war
418:
419: * src/: classes/classes.vcproj, types/types.vcproj: vcproj: +=array
420:
421: * src/main/main.vcproj: warnings war
422:
423: 2024-10-19 moko
424:
425: * tests/427.html: test updated after constructors renamed
426:
427: 2024-10-18 moko
428:
429: * tests/: 421.html, 430.html, 431.html, 432.html, 433.html,
430: results/421.processed, results/430.processed,
431: results/431.processed: test updated after constructors renamed
432:
433: * src/classes/array.C: create -> copy, new -> create according to
434: https://www.parser.ru/forum/?id=86603 discussion (related to
435: feature #930)
436:
437: 2024-10-16 moko
438:
439: * src/classes/json.C: $json:array[array or hash] added to provide
440: more backward compatibility (implements feature #1251)
441:
442: 2024-10-15 moko
443:
444: * tests/: 421.html, results/421.processed: test results updated
445: after missing constuctor error check added and array is_index
446: check added
447:
448: * src/main/execute.C: absent constructor message fixed
449:
1.201 moko 450: 2024-10-13 moko
451:
452: * src/types/pa_varray.h: ^array.$i[arg] is rare, thus checking i
453: with is_index() before calling index() for better error reporting
454: in method name typo (was invalid number, not method not found
455: exception).
456:
457: 2024-10-08 moko
458:
459: * src/types/pa_varray.C: Visual Studio compatibilty issues fixed
460:
461: * src/include/pa_array.h: warnings war
462:
1.200 moko 463: 2024-10-05 moko
464:
465: * src/classes/table.C: ^table.cells[] / ^table.cells(limit) added,
466: returns current row cells array (implements feature #1250)
467:
468: * tests/: 405.html, results/169.processed, results/405.processed:
469: tests updated after ^string.split[;a] implemented (related to
470: feature #1249)
471:
472: * src/classes/string.C: ^string.split[] - 'a' option added for
473: splitting into an array (implements feature #1249)
474:
475: 2024-10-04 moko
476:
477: * tests/: 431.html, results/431.processed: final code coverage
478: array tests
479:
480: * src/: classes/array.C, include/pa_array.h, types/pa_varray.h:
481: array: confirm_all_used() added and used where possible, expand()
482: now expends faster
483:
484: 2024-10-03 moko
485:
486: * tests/: 357.html, results/auto.p: max_recoursion -> max_recursion
487:
488: * tests/: 256.html, results/256.processed: test for
489: $.date[unix-timestamp] handling large dates
490:
491: * src/: classes/file.C, classes/op.C, classes/reflection.C,
492: classes/string.C, classes/table.C, include/pa_common.h,
493: main/pa_common.C, main/pa_http.C, main/pa_request.C,
494: types/pa_vdate.C, types/pa_vmethod_frame.h, types/pa_vtable.C:
495: format replaced with pa_uitoa where applicable,
496: $.date[unix-timestamp] fixed for handling large dates
497:
498: * tests/: 433.html, results/433.processed: more tests, including
499: test for possible endless recursion in ^o.GET[]
500:
501: * src/types/pa_vobject.C: bugfix: detecting possible endless
502: recursion in get_scalar_value inside ^o.GET[]
503:
504: * src/: classes/json.C, include/pa_request.h, main/execute.C,
505: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.C:
506: Temp_recursion class added; spelling: $LIMITS.max_recoursion ->
507: $LIMITS.max_recursion
508:
509: 2024-10-02 moko
510:
511: * tests/: 253.html, 287.html, 430.html, 431.html, 433.html,
512: results/253.processed, results/287.processed,
513: results/430.processed, results/433.processed: more tests for full
514: array and json code coverage
515:
516: * tests/: 433.html, results/433.processed: tests for hash functions
517: with array param
518:
519: * src/classes/: array.C, hash.C: ^hash::create[$array] optimized
520:
521: * tests/: 432.html, results/432.processed: modified ^hash.at tests
522: in 246.html used to test ^array.at, same result produced
523:
524: * tests/: 430.html, 431.html, results/430.processed,
525: results/431.processed: more array tests for 100% code coverage
526: (related to feature #930)
527:
528: * tests/: 427.html, 430.html, results/427.processed,
529: results/430.processed: first portion of array tests added
530: (related to feature #930)
531:
532: * src/classes/array.C: allow only whitespace string as argument for
533: add and join
534:
535: * src/classes/array.C: add behavour for array synced with hash
536:
537: 2024-09-30 moko
538:
539: * tests/: 429-sql.html, results/429-sql.processed: code coverage
540: tests added
541:
542: * src/classes/array.C: $.distinct should not be used unless
543: $.sparse(true)
544:
545: * tests/: 429-sql.html, results/388-sql.processed,
546: results/429-sql.processed: tests for ^array::sql{}, including
547: multi_statements mode (related to feature #930)
548:
1.199 moko 549: 2024-09-29 moko
550:
551: * src/classes/array.C: synced ^array::sql multi_statements logic
552: with ^hash::sql new behavour
553:
554: 2024-09-28 moko
555:
556: * tests/: 428-sql.html, results/388-sql.processed,
557: results/428-sql.processed: tests updated after column names were
558: fixed in multi_statements mode (related to feature #1197)
559:
560: * src/classes/hash.C: column names are fixed for most cases in
561: multi_statements mode (related to feature #1197)
562:
563: * tests/: 428-sql.html, results/195.processed,
564: results/224.processed, results/239.processed,
565: results/254.processed, results/261.processed,
566: results/306.processed, results/333.processed,
567: results/341.processed, results/343.processed,
568: results/344.processed, results/348.processed,
569: results/364.processed, results/389.processed,
570: results/390.processed, results/415.processed,
571: results/420.processed, results/421.processed: tests results
572: updated after error messages spelling minor fixes
573:
574: * src/types/: pa_value.h, pa_vstateless_class.h: a bit more
575: spelling
576:
577: * src/: classes/curl.C, classes/file.C, classes/hash.C,
578: classes/image.C, classes/math.C, classes/string.C,
579: classes/table.C, lib/memcached/pa_memcached.C, main/compile.y,
580: main/execute.C, main/pa_charset.C, main/pa_common.C,
581: main/pa_http.C, main/pa_request.C, main/pa_socks.C,
582: main/pa_sql_driver_manager.C, types/pa_value.C, types/pa_value.h,
583: types/pa_vmail.C, types/pa_vobject.C,
584: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
585: types/pa_vxdoc.C: minor error messages spelling fixes
586:
587: * src/: classes/array.C, types/pa_varray.h: initial ^array::sql{}
588: implementation (related to feature #930)
589:
590: * tests/: 388-sql.html, results/388-sql.processed: test results
591: updated after rows number ^file::sql{} check added
592:
593: * src/classes/file.C: rows number now checked in ^file::sql{}
594:
595: * tests/: 428-sql.html, results/428-sql.processed: more tests
596:
597: * tests/: 428-sql.html, results/428-sql.processed: more
598: multi_statements testing before bugfix
599:
600: * tests/: 388-sql.html, 428-sql.html, results/388-sql.processed,
601: results/428-sql.processed: support for multiple sql test files
602: added
603:
604: * tests/: 388-sql.html, results/388-sql.processed: more sql testing
605:
606: * src/classes/hash.C: more accurate one_bool_column processing
607:
608: * tests/: 427.html, results/427.processed: Constructors as methods
609: behavour documented in test
610:
611: * src/classes/hash.C: HashStringValue::Iterator used for options
612:
613: * tests/: 388-sql.html, results/388-sql.processed: even more tests
614:
615: * tests/: 388-sql.html, results/388-sql.processed: a bit more
616: testing
617:
618: * tests/results/367-curl.processed: test result updated after
619: server charset changed
620:
621: * tests/results/347-curl.processed: error messages updated
622:
623: * tests/results/: 346-curl.processed, 379-curl.processed,
624: 394-curl.processed: tests results updated after Type -> Exception
625: type replacement
626:
627: * tests/results/388-sql.processed: tests result updated after Type
628: -> Exception type
629:
630: 2024-09-27 moko
631:
632: * src/classes/hash.C: minor simplification
633:
634: 2024-09-24 moko
635:
636: * src/main/pa_string.C: atoui error messages improved
637:
638: * tests/: 165.html, 312.html, results/165.processed,
639: results/312.processed, results/379.processed: tests updated after
640: default endless loop limit increased, atoi error messages
641: improved
642:
643: * src/classes/hash.C: VBool::get used, unification
644:
1.198 moko 645: 2024-09-22 moko
646:
647: * src/classes/array.C: minor simplification
648:
649: * src/classes/array.C: ^array.left(N),
650: ^array.right(N),^array.mid(P;N) added (related to feature #930)
651:
652: * src/: classes/array.C, include/pa_request.h, main/pa_request.C,
653: types/pa_varray.C, types/pa_varray.h: $MAIN:LIMITS.max_array_size
654: added, default 1000000 (related to feature #930)
655:
656: * tests/: 426.html, results/426.processed: test for negative limit
657: and offset processing for table options added
658:
659: * src/: classes/table.C, include/pa_array.h, main/pa_table.C:
660: bugfix: negative limit and offset processing for table options
661: fixed
662:
663: 2024-09-21 moko
664:
665: * src/: classes/array.C, types/pa_varray.h: join supports hash;
666: ^for added that also iterates holes; ^remove added (related to
667: feature #930)
668:
669: * src/classes/array.C: ^array.join[$another_array; $.limit(N)
670: $.offset(M) ] added (related to feature #930)
671:
672: 2024-09-20 moko
673:
674: * src/: classes/array.C, types/pa_varray.h: array:
675: +foreach[value]{code}, + add[hash with numeric keys] (related to
676: feature #930)
677:
678: 2024-09-19 moko
679:
680: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h,
681: main/execute.C, types/pa_varray.h: OP_CONSTRUCT_ARRAY added to
682: support $a[v1;v2;...] syntax (related to feature #930)
683:
684: 2024-09-17 moko
685:
686: * src/: classes/reflection.C, include/pa_request.h,
687: main/compile_tools.h, main/pa_request.C:
688: ^reflection:class_alias[existing class name;alias class name]
689: added. The array class can now be redefined regardless of the
690: $.replace(bool) option value (related to feature #930)
691:
692: * src/main/: compile.y, compile_tools.h: class_add return value
693: inverted to add it to request class
694:
695: * src/: classes/array.C, include/pa_array.h, include/pa_request.h,
696: include/pa_stack.h, types/pa_varray.C, types/pa_varray.h,
697: types/pa_vmethod_frame.h: array: fused -> fsize, fit(index) to
698: resize if required. spared array - added fused, append.
699:
1.197 moko 700: 2024-09-16 moko
701:
702: * src/types/pa_varray.h: get moved to where it belongs
703:
704: 2024-09-15 moko
705:
706: * src/: include/pa_array.h, types/pa_varray.h: more agressive
707: expansion to minimize reallocs: fallocated/32 -> fallocated/4
708:
709: * tests/: 421.html, results/323.processed, results/421.processed:
710: tests updated after 'spared-array' class renamed to 'array'
711: following a discussion on the forum (related to feature #930)
712:
713: * src/: include/pa_array.h, types/pa_value.h, types/pa_varray.h,
714: types/pa_vmail.C: initial SparseArray separation from Array,
715: parser class now 'array'
716:
717: 2024-09-14 moko
718:
719: * tests/: 030.html, results/030.processed: out of range expires
720: check added
721:
722: * src/types/pa_vcookie.C: VDate range is narrower than gmtime, thus
723: checking expires time using VDate
724:
725: 2024-09-13 moko
726:
727: * src/: classes/array.C, classes/curl.C, classes/date.C,
728: classes/file.C, classes/hash.C, classes/image.C, classes/json.C,
729: classes/memcached.C, classes/op.C, classes/regex.C,
730: classes/string.C, classes/xdoc.C, classes/xnode.C,
731: main/execute.C, main/pa_http.C, main/pa_request.C,
732: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
733: types/pa_vclass.h, types/pa_vcookie.C, types/pa_vhashfile.C,
734: types/pa_vmail.C, types/pa_vobject.C, types/pa_vobject.h,
735: types/pa_vxdoc.C, types/pa_vxdoc.h: optimization: Value::as()
736: removed as dynamic_cast is faster, Value::is() is still required
737: for is operator.
738:
739: 2024-09-12 moko
740:
741: * src/: classes/file.C, classes/image.C, classes/reflection.C,
742: classes/table.C, classes/xnode.C, include/pa_array.h,
743: include/pa_string.h, main/pa_common.C, main/pa_request.C,
744: main/pa_string.C, targets/cgi/pa_sapi_info.h, types/pa_vform.C,
745: types/pa_vhash.h, types/pa_vtable.C, types/pa_vxnode.C: faster
746: templated pa_itoa/pa_uitoa added to work with any integer type,
747: String::Body::Format removed
748:
749: 2024-09-10 moko
750:
751: * src/classes/array.C: append and insert methods added to
752: sparse-array (related to feature #930)
753:
754: * tests/: 253.html, 255.html, 421.html, results/421.processed:
755: tests updated after sparse-array was added to avoid ^json:parse[]
756: using it in old tests (related to feature #930)
757:
758: * src/: classes/array.C, classes/json.C, types/pa_varray.C,
759: types/pa_varray.h: sparse-array class added (initial feature #930
760: implementation)
761:
762: * src/: classes/Makefile.am, types/Makefile.am: Makefiles update
763: for sparse-array class files (related to feature #930)
764:
765: * src/: classes/json.C, include/pa_array.h, types/pa_value.h,
766: types/pa_vhash.h: VArray support functions without actual VArray
767: files (related to feature #930)
768:
1.196 moko 769: 2024-09-07 moko
770:
771: * src/: classes/curl.C, classes/string.C, classes/table.C,
772: include/pa_array.h, main/execute.C, main/pa_dictionary.C,
773: main/pa_http.C, main/pa_sql_driver_manager.C,
774: main/pa_stylesheet_manager.C, main/pa_table.C, types/pa_vclass.C,
775: types/pa_vmethod_frame.C, types/pa_vstateless_class.C,
776: types/pa_vtable.C, types/pa_wcontext.C: Array::Iterator unified
777: with Hash::Iterator, has_next() replaced with operator bool
778: (related to feature #930)
779:
780: * src/: classes/string.C, include/pa_array.h, main/pa_http.C,
781: main/pa_table.C, types/pa_vclass.C, types/pa_vmethod_frame.C,
782: types/pa_vstateless_class.C: Array class extended,
783: Array::Iterator added and used (related to feature #930)
784:
1.195 moko 785: 2024-08-26 moko
786:
787: * src/targets/cgi/parser3.C: under Windows back_slashes_to_slashes
788: should be used on argv[0] as well to match document root.
789:
1.194 moko 790: 2024-08-25 moko
791:
792: * src/main/pa_request.C: be more specific
793:
794: * src/targets/cgi/parser3.C: parser3 t.html now behaves identically
795: to /usr/bin/parser3 t.html in terms of /etc/parser3/auto.p load
796: (fixes bug #1244)
797:
798: * src/targets/cgi/parser3.C: avoid "parser allready configured"
799: exception when ./parser3.cgi <file> is used; rsplit(..., '/') ||
800: rsplit(..., '\\') is not correct when / and \ are mixed in path
801:
802: * src/targets/cgi/parser3.C: full_disk_path now uses pa_strcat()
803:
1.193 moko 804: 2024-07-24 moko
805:
806: * src/: include/pa_config_includes.h, lib/gd/gifio.C,
807: main/execute.C, main/pa_string.C: Warning war: clang changed
808: -Wdeprecated-register warning to -Wregister, it's easier to
809: remove all register vars then continue this fight. :)
810:
811: * src/main/: compile.y, compile.tab.C: warning war: register
812: removed
813:
1.192 moko 814: 2024-07-14 moko
815:
816: * src/targets/cgi/pa_sapi_info.h: When accessing $env:name,
817: checking the HTTP request environment; if the variable is not
818: present, checking the web server process environment (implements
819: feature #1242)
820:
1.191 moko 821: 2024-05-26 moko
822:
823: * tests/: 195.html, 229.html, results/096.processed,
824: results/097.processed, results/158.processed,
825: results/186.processed, results/273.processed,
826: results/293.processed, results/317.processed,
827: results/389.processed, results/402.processed: tests updated as
828: single quote now escaped with ' in HTML tainting mode
829: (related to feature #1241)
830:
831: * src/main/untaint.C: single quote now escaped with ' in HTML
832: tainting mode (implements feature #1241)
833:
834: * tests/results/: 020.processed, 021.processed, 026.processed,
835: 042.processed, 043.processed, 057.processed, 110.processed,
836: 115.processed, 116.processed, 117.processed, 118.processed,
837: 119.processed, 120.processed, 125.processed, 126.processed,
838: 128.processed, 130.processed, 131.processed, 132.processed,
839: 133.processed, 135.processed, 136.processed, 138.processed,
840: 139.processed, 140.processed, 145.processed, 150.processed,
841: 151.processed, 165.processed, 174.processed, 181.processed,
842: 182.processed, 192.processed, 193.processed, 201.processed,
843: 213.processed, 224.processed, 226.processed, 230.processed,
844: 239.processed, 240.processed, 244.processed, 253.processed,
845: 254.processed, 261.processed, 264.processed, 269.processed,
846: 274.processed, 275.processed, 288.processed, 294.processed,
847: 296.processed, 303.processed, 306.processed, 307.processed,
848: 308.processed, 311.processed, 312.processed, 314.processed,
849: 315.processed, 316.processed, 320.processed, 323.processed,
850: 324.processed, 325.processed, 328.processed, 330.processed,
851: 332.processed, 333.processed, 337.processed, 338.processed,
852: 341.processed, 342.processed, 343.processed, 344.processed,
853: 345.processed, 348.processed, 352.processed, 356.processed,
854: 357.processed, 363.processed, 364.processed, 368.processed,
855: 372.processed, 373.processed, 376.processed, 378.processed,
856: 379.processed, 385.processed, 386.processed, 387.processed,
857: 389.processed, 390.processed, 395.processed, 397.processed,
858: 398.processed, 399.processed, 404.processed, 406.processed,
859: 413.processed, 414.processed, 420.processed, 421.processed,
860: 424.processed, auto.p: Type -> Exception type for readability
861:
862: * tests/: 119.html, 165.html, 175.html, 192.html, 213.html,
863: 217.html, 230.html, 240.html, 298.html, 380.html, 415.html,
864: results/119.processed, results/165.processed,
865: results/175.processed, results/192.processed,
866: results/213.processed, results/217.processed,
867: results/230.processed, results/240.processed,
868: results/298.processed, results/380.processed,
869: results/415.processed: try-catch, try-catch-comment used
870:
871: 2024-05-21 moko
872:
873: * tests/: 169.html, 180.html, 195.html, 224.html, 246.html,
874: results/180.processed, results/195.processed,
875: results/224.processed, results/auto.p: @try-catch-comment added
876: and used
877:
878: * tests/: 175.html, 256.html, 269.html, 283.html, 341.html,
879: 415.html, results/269.processed, results/283.processed,
880: results/auto.p: more tests are updated to prepare for apostrophe
881: escaping in HTML tainting
882:
883: * tests/results/: 181.processed, 294.processed, 296.processed,
884: 315.processed, 379.processed, 389.processed, auto.p:
885: $exception.comment printed as-is for whitespace reporting and to
886: prepare for apostrophe escaping in HTML mode
887:
1.190 moko 888: 2024-05-11 moko
889:
890: * tests/: 099.html, 100.html, results/099.processed,
891: results/100.processed: a test for non-UTF-8 filename* added
892: (related to feature #1240)
893:
894: * tests/: 293.html, results/293.processed: tainting modes tests
895: added
896:
897: * tests/results/: 099.processed, 100.processed, 205.processed,
898: 309.processed, 310.processed, 419.processed: tests results
899: updated after filename* added (related to feature #1240)
900:
901: * src/: include/pa_common.h, main/pa_request.C: The filename*
902: parameter was added to the Content-Disposition header to conform
903: with RFC 6266, with code provided by Sumo (implements feature
904: #1240)
905:
906: 2024-05-10 moko
907:
908: * src/main/pa_http.C: Testing shows that TCP_NODELAY has no
909: positive performance effect in our case
910:
1.189 moko 911: 2024-03-27 moko
912:
913: * src/lib/pcre/pcre_internal.vcproj: pa_config_includes.h used
914: (related to feature #1236)
915:
916: 2024-03-15 moko
917:
918: * tests/: 413.html, results/413.processed: test for object still
919: can be used as file parameter (related to bug #1218)
920:
921: * src/types/: pa_vobject.C, pa_vobject.h: regression fix: object
922: still can be used in file context (fixes bug #1218)
923:
924: 2024-03-14 moko
925:
926: * src/include/pa_string.h: ArrayString get() null result assert
927: also added (related to bug #1238)
928:
929: * src/types/: pa_vstring.h, pa_vtable.C: VString() optimized;
930: VString::empty() used instead of new VString()
931:
932: 2024-03-12 moko
933:
934: * tests/: 379-curl.html, 379.html, results/379-curl.processed,
935: results/379.processed: test added for cookie without value
936: (related to bug #1238)
937:
938: * src/include/pa_string.h: In assertions enabled mode, ArrayString
939: values are now required to be non-null (related to bug #1238)
940:
941: * src/main/pa_http.C: cookies without value are now parsed
942: correctly (fixed bug #1238)
943:
944: 2024-03-11 moko
945:
946: * tests/run_parser.sh: for better error reporting
947:
1.188 moko 948: 2023-12-30 moko
949:
950: * tests/: 038.html, results/038.processed: test for atan2 added
951:
952: 2023-12-29 moko
953:
954: * src/classes/math.C: atan2(y,x) math function added
955:
1.187 moko 956: 2023-12-14 moko
957:
958: * tests/212.html: pcre2 compatibility (related to feature #1236)
959:
960: * tests/: 425.html, results/425.processed: test for pcre/pcre2
961: exceptions and behavour added (related to feature #1236)
962:
963: 2023-12-13 moko
964:
965: * buildall: by default parser is now bundled with pcre2 10.42,
966: --without-pcre2 option added to build with pcre-8.45 (related to
967: feature #1236)
968:
969: 2023-12-12 moko
970:
971: * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
972: support added (implements feature #1236)
973:
974: * src/: include/pa_charset.h, include/pa_config_includes.h,
975: lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
976: main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
977: types/pa_vregex.h: Adopted patch from Yavor Doganov
978: <yavor@gnu.org> to add pcre2 library support (implements feature
979: #1236)
980:
1.186 moko 981: 2023-11-28 moko
982:
983: * src/include/pa_config_includes.h: warnings war continues
984:
985: * src/include/pa_config_includes.h: warning war
986:
987: * tests/: 424.html, results/424.processed: tests for '+' and '-'
988: number strings, whitespace and sign in exception messages
989: (related to bug #1234)
990:
1.185 moko 991: 2023-11-26 moko
992:
993: * tests/: 274.html, results/224.processed, results/274.processed:
994: tests for date double, int, bool added (related to feature #1235)
995:
996: * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
997: added for date class (implements feature #1235)
998:
999: 2023-11-23 moko
1000:
1001: * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
1002: and '-' strings are no longer can be treated as number 0,
1003: exception thrown (fixes bug #1234)
1004:
1.184 moko 1005: 2023-11-18 moko
1006:
1007: * src/include/pa_types.h: minor
1008:
1009: * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
1010:
1011: * tests/: 389.html, results/389.processed: error messages for some
1012: OS differs a bit, reducing failing tests for them
1013:
1014: 2023-11-17 moko
1015:
1016: * tests/: 423.html, results/423.processed: test for optional
1017: @auto[] inheritance added (related to feature #1233)
1018:
1019: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
1020: types/pa_vstateless_class.C: optional @auto[] inheritance
1021: implemented if defined with two args (path, class name)
1022: (implements feature #1233)
1023:
1024: * src/: classes/double.C, classes/int.C, classes/math.C,
1025: include/pa_random.h, include/pa_types.h, main/pa_common.C,
1026: types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
1027: sync double->int overflow behavour under different architectures
1028: (fixes bug #1232)
1029:
1030: * tests/: 422.html, results/422.processed: int clipping added
1031:
1032: 2023-11-16 moko
1033:
1034: * tests/: 422.html, results/422.processed: test for int and uint
1035: overflow in ^n.format[d/u/x]
1036:
1037: * src/classes/math.C: bugfix: crc32 should not be negative (under
1038: Apple M1 when negative double converts to uint the result is 0)
1039: and crc32 should be 32 bits
1040:
1041: * src/main/pa_common.C: avoid (uint)<negative double> conversion as
1042: on Apple M1 it's 0
1043:
1044: * src/classes/file.C: bugfix: crc32 should not be negative (under
1045: Apple M1 when negative double converts to uint the result is 0)
1046: and crc32 should be 32 bits
1047:
1.183 moko 1048: 2023-10-07 moko
1049:
1050: * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
1051: behavour with other OP_NUM_*, related to bug #1230
1052:
1053: 2023-10-06 moko
1054:
1055: * tests/: 338.html, results/338.processed: test for bug #1230 added
1056:
1057: * src/: main/execute.C, types/pa_vdate.h: force double operands to
1058: be converted to double to avoid 80 bit operations in x87 mode
1059: (fixes bug #1230)
1060:
1061: 2023-10-05 moko
1062:
1063: * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
1064: compatibility
1065:
1066: * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
1067:
1068: * tests/: 421.html, results/421.processed: test to cover all
1069: classes and objects nonexistent method and field exceptions
1070: (related to feature #1080 and #1227)
1071:
1072: * tests/results/: 182.processed, 324.processed: undefined method ->
1073: <type> method not found exception (related to feature #1080)
1074:
1075: * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
1076: pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
1077: "element can not be fetched from" for them, "field not found" for
1078: all other types (related to bug #1227)
1079:
1080: 2023-10-03 moko
1081:
1082: * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
1083: <type> method not found" exception now thrown for static calls
1084: instead of "undefined method" without class name (related to
1085: feature #1080)
1086:
1087: 2023-10-02 moko
1088:
1089: * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
1090: pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
1091: <method name>, Comment: <type> method not found" exception now
1092: thrown for all dynamic objects instead of "undefined method"
1093: without class name (implements feature #1080)
1094:
1.182 moko 1095: 2023-10-01 moko
1096:
1097: * src/classes/json.C: we don't have a dynamic json object.
1098:
1099: 2023-09-28 moko
1100:
1101: * tests/: 420.html, results/261.processed, results/420.processed:
1102: tests updated after bug #1228 fix reverted
1103:
1104: * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
1105: whitespace string is hash compatible, so we don't want $s.key to
1106: return a junction
1107:
1108: * tests/: 261.html, 420.html, results/261.processed,
1109: results/420.processed: test for bug #1227 added, test updated
1110: after bug #1228 fixed
1111:
1112: * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
1113: now throws exception as $non-empty-string.field (fixes bug #1227)
1114:
1115: * src/types/pa_vstring.h: allow $string.method access (fixes bug
1116: #1228)
1117:
1118: 2023-09-26 moko
1119:
1120: * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
1121: src/classes/classes.C, src/classes/classes.awk,
1122: src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
1123: src/classes/double.C, src/classes/file.C, src/classes/form.C,
1124: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
1125: src/classes/inet.C, src/classes/int.C, src/classes/json.C,
1126: src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
1127: src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
1128: src/classes/regex.C, src/classes/response.C,
1129: src/classes/string.C, src/classes/table.C, src/classes/void.C,
1130: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
1131: src/include/pa_array.h, src/include/pa_base64.h,
1132: src/include/pa_cache_managers.h, src/include/pa_charset.h,
1133: src/include/pa_charsets.h, src/include/pa_common.h,
1134: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
1135: src/include/pa_dictionary.h, src/include/pa_dir.h,
1136: src/include/pa_exception.h, src/include/pa_exec.h,
1137: src/include/pa_globals.h, src/include/pa_hash.h,
1138: src/include/pa_http.h, src/include/pa_memory.h,
1139: src/include/pa_opcode.h, src/include/pa_operation.h,
1140: src/include/pa_os.h, src/include/pa_pool.h,
1141: src/include/pa_random.h, src/include/pa_request.h,
1142: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
1143: src/include/pa_sapi.h, src/include/pa_socks.h,
1144: src/include/pa_sql_connection.h,
1145: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
1146: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
1147: src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
1148: src/include/pa_table.h, src/include/pa_threads.h,
1149: src/include/pa_types.h, src/include/pa_uue.h,
1150: src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
1151: src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
1152: src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
1153: src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
1154: src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
1155: src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
1156: src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
1157: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
1158: src/main/compile.tab.C, src/main/compile.y,
1159: src/main/compile_tools.C, src/main/compile_tools.h,
1160: src/main/execute.C, src/main/pa_base64.C,
1161: src/main/pa_cache_managers.C, src/main/pa_charset.C,
1162: src/main/pa_charsets.C, src/main/pa_common.C,
1163: src/main/pa_dictionary.C, src/main/pa_dir.C,
1164: src/main/pa_exception.C, src/main/pa_exec.C,
1165: src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
1166: src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
1167: src/main/pa_request.C, src/main/pa_socks.C,
1168: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
1169: src/main/pa_stylesheet_connection.C,
1170: src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
1171: src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
1172: src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
1173: src/main/untaint.C, src/main/helpers/simple_folding.pl,
1174: src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
1175: src/targets/apache/mod_parser3_core.C,
1176: src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
1177: src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
1178: src/types/pa_method.h, src/types/pa_property.h,
1179: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1180: src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
1181: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
1182: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
1183: src/types/pa_vcookie.h, src/types/pa_vdate.C,
1184: src/types/pa_vdate.h, src/types/pa_vdouble.h,
1185: src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
1186: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
1187: src/types/pa_vhash.C, src/types/pa_vhash.h,
1188: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
1189: src/types/pa_vimage.C, src/types/pa_vimage.h,
1190: src/types/pa_vint.h, src/types/pa_vjunction.C,
1191: src/types/pa_vjunction.h, src/types/pa_vmail.C,
1192: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
1193: src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
1194: src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
1195: src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
1196: src/types/pa_vobject.h, src/types/pa_vregex.C,
1197: src/types/pa_vregex.h, src/types/pa_vrequest.C,
1198: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
1199: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
1200: src/types/pa_vstateless_class.h,
1201: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
1202: src/types/pa_vstatus.h, src/types/pa_vstring.C,
1203: src/types/pa_vstring.h, src/types/pa_vtable.C,
1204: src/types/pa_vtable.h, src/types/pa_vvoid.C,
1205: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
1206: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
1207: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
1208: src/types/pa_wwrapper.h: copyright, authors actualized
1209:
1.181 moko 1210: 2023-08-20 moko
1211:
1212: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
1213: commited (related to feature #1219)
1214:
1215: 2023-08-16 moko
1216:
1217: * src/main/pa_random.C: replaced clock precision with monotonicity
1218: counter, good for Windows version with low clock frequency
1219: (related to feature #1229)
1220:
1221: 2023-08-15 moko
1222:
1223: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
1224: fixes related to feature #1229
1225:
1226: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
1227: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
1228: (implements feature #1229)
1229:
1.180 moko 1230: 2023-08-02 moko
1231:
1232: * tests/: results/417.processed, 417.html: test for empty string
1233: match after last char added (related to bug #1224)
1234:
1235: * src/main/pa_string.C: avoid prestart++ after last char on zero
1236: length match (related to bug #1224)
1237:
1.179 moko 1238: 2022-11-22 moko
1239:
1240: * tests/: 419.html, results/419.processed: test for L_URI and path
1241: removeal from filename added (related to bug #1204)
1242:
1243: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
1244: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
1245: attribute value, L_URI should be used
1246:
1.178 moko 1247: 2022-09-21 moko
1248:
1249: * src/targets/cgi/parser3.C: more clear error messages
1250:
1251: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
1252: SAPI_Info will return 0 in read_post and post_size !=
1253: content_length will be thrown
1254:
1.177 moko 1255: 2022-08-23 moko
1256:
1257: * src/types/pa_vmail.C: .tables addes as .raw contains only last
1258: header value
1259:
1260: 2022-08-22 moko
1261:
1262: * tests/: 418.html, results/418.processed: test for
1263: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
1264: to #1225)
1265:
1266: * src/classes/hash.C: keep old behavoir by default
1267:
1268: * src/classes/hash.C: ^hash_a.intersection[hash_b;
1269: $.order[self|arg] ] added (implements #1215)
1270:
1.176 moko 1271: 2022-03-21 moko
1272:
1273: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
1274: xmlInitCharEncodingHandlers is called in libxml static
1275: initializers before gc_substitute_memory_management_functions in
1276: pa_globals and thus gc may not see reference to our
1277: xmlCharEncodingHandler and free it.
1278:
1.175 moko 1279: 2022-01-26 moko
1280:
1281: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
1282:
1.174 moko 1283: 2021-12-28 moko
1284:
1285: * tests/: 417.html, results/417.processed: test for empty string
1286: match added (related to bug #1224)
1287:
1288: * src/main/pa_string.C: empty string match now works (fixes bug
1289: #1224)
1290:
1.173 moko 1291: 2021-12-24 moko
1292:
1293: * tests/: 415_dir/29.p, results/415.processed: yet another test
1294:
1295: 2021-12-23 moko
1296:
1297: * src/: classes/table.C, main/pa_request.C: warnings war
1298:
1299: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
1300: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
1301:
1302: 2021-12-21 moko
1303:
1304: * tests/: 416.html, results/416.processed: test for ^break[] in
1305: ^hash/table.select[] (related to feature #1222)
1306:
1307: * src/classes/: hash.C, table.C: ^break[] support for
1308: ^hash/table.select[] (implements feature #1222)
1309:
1.172 moko 1310: 2021-11-30 moko
1311:
1312: * src/targets/cgi/parser3.C: default sock_ready interval changed to
1313: 0.5 sec
1314:
1.171 moko 1315: 2021-11-10 moko
1316:
1317: * tests/results/415.processed: more syntax errors tests added
1318:
1319: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
1320: 28.p: minor syntax error tests
1321:
1322: * src/main/pa_exception.C: pa_strdup added for compatibility
1323:
1324: * src/classes/curl.C: hint to call ^curl:options[
1325: $.library[correct.libcurl.so.name] ] added if default load fails.
1326:
1327: 2021-11-09 moko
1328:
1329: * src/main/compile.y: error message can be on stack
1330:
1331: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
1332:
1333: * src/main/pa_charset.C: memcpy is more correct and efficient in
1334: this case then strncpy
1335:
1336: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
1337: instead of strcpy where possible
1338:
1339: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
1340: used to avoid MAX_STRING limit in Exception comment
1341:
1342: * tests/results/415.processed: compiler exceptions are no longer
1343: limited to MAX_STRING
1344:
1345: * src/main/: compile.y, compile_tools.h: Parse_control uses const
1346: char * instead of fixed buffer
1347:
1348: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
1349: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
1350: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
1351: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
1352: results/415.processed: tests for parser.compile exceptions added
1353:
1354: 2021-11-08 moko
1355:
1356: * src/: classes/math.C, include/pa_common.h, main/compile.y,
1357: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
1358: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1359: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
1360: drawbacks
1361:
1.170 moko 1362: 2021-11-06 moko
1363:
1364: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
1365: (implements feature #1219)
1366:
1367: * tests/: 414.html, results/414.processed: test for
1368: ^hash.rename[from;to] added (related to feature #1144)
1369:
1370: 2021-11-05 moko
1371:
1372: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
1373: (related to feature #1144)
1374:
1375: 2021-11-04 moko
1376:
1377: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
1378: added (implements feature #1144)
1379:
1.169 moko 1380: 2021-10-19 moko
1381:
1382: * tests/: 413.html, results/413.processed: test for hash no longer
1383: is accepted as file parameter (related to bug #1218)
1384:
1385: * src/: classes/curl.C, classes/file.C, classes/image.C,
1386: classes/math.C, classes/xdoc.C, types/pa_value.C,
1387: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
1388: longer is accepted as file parameter (fixes bug #1218)
1389:
1.168 moko 1390: 2021-07-19 moko
1391:
1392: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
1393: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
1394:
1.167 moko 1395: 2021-04-16 moko
1396:
1397: * src/types/pa_vmail.C: message can be null when e-mail is broken,
1398: processing it leads to assertions.
1399:
1.166 moko 1400: 2021-03-25 moko
1401:
1402: * tests/: 412.html, results/412.processed: test to demonstrate bug
1403: #1213
1404:
1.165 moko 1405: 2021-02-12 moko
1406:
1407: * tests/: 360.html, results/360.processed, results/363.processed:
1408: parser method call in expression mode no longer differs from call
1409: in string mode (related to feature #1211)
1410:
1411: 2021-02-11 moko
1412:
1413: * src/types/pa_vmail.C: mail parsing with Windows line endings
1414: fixed (bug #1212)
1415:
1416: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
1417: when called $v[^test[]] vs $v(^test[]), numbers are converted to
1418: strings in both calls (implements feature #1211)
1419:
1.164 moko 1420: 2021-01-28 moko
1421:
1422: * buildall, etc/auto.p.in: to remove last patch in debian package
1423:
1424: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
1425: 3.4.7b
1426:
1.162 moko 1427: 2021-01-21 moko
1428:
1429: * src/main/pa_http.C: no alarm() in file::load when web server mode
1430: is MULTITHREADED
1431:
1.157 moko 1432: 2021-01-20 moko
1433:
1.161 moko 1434: * src/targets/apache/mod_parser3.c: it is more correct to recommend
1435: 'a2enmod mpm_prefork'
1436:
1.160 moko 1437: * src/targets/apache/mod_parser3.c: prefork name is now
1438: 'libapache2-mpm-itk'
1439:
1440: * src/targets/apache/mod_parser3_core.C: last regular malloc
1441: removed
1442:
1.159 moko 1443: * src/targets/isapi/Makefile.am: -pa_threads.C
1444:
1.158 moko 1445: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
1446: 3.4.6
1447:
1.157 moko 1448: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
1449:
1450: * etc/auto.p.in: @config[result] added to simplify $cfg change in
1451: /httpd.p
1452:
1453: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
1454: ^use[/httpd.p] + optional ^preprocess[] (related to feature
1455: #1203)
1456:
1457: 2021-01-19 moko
1458:
1459: * buildall: --disable-parallel-mark added to avoid "number of
1460: processors" threads creation for heap marking as it conflicts
1461: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
1462: limits threads)
1463:
1.156 moko 1464: 2021-01-16 moko
1465:
1466: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
1467: main/pa_globals.C, main/pa_memory.C,
1468: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
1469: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
1470: feature #1209)
1471:
1472: 2021-01-15 moko
1473:
1474: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
1475: 3.4.6rc
1476:
1477: * src/classes/json.C: get_delim added for delimiter caching (10%
1478: faster on large json)
1479:
1480: 2021-01-14 moko
1481:
1482: * operators.txt: updated with 3.4.6 changes
1483:
1484: * tests/results/224.processed: test result modified after
1485: today(shift) implemented
1486:
1487: * tests/: 407.html, results/407.processed: test for ^hash.select
1488: option $.default(bool) added (related to feature #1172)
1489:
1490: * src/classes/hash.C: ^hash.select option $.default(bool) added
1491: (related to feature #1172)
1492:
1493: * tests/: 141.html, results/141.processed: test modified for
1494: feature #1185.
1495:
1496: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
1497: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
1498: options $.lower(bool) (implements feature #1185)
1499:
1500: 2021-01-11 moko
1501:
1502: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
1503: #1192)
1504:
1505: * tests/: 411.html, results/411.processed: test for ^date::today(N)
1506: added (related to feature #1192)
1507:
1.155 moko 1508: 2021-01-05 moko
1509:
1510: * tests/: 270.html, results/270.processed: test modified to work
1511: under Windows
1512:
1513: * tests/: 390.html, 395.html, results/395.processed: tests updated
1514: 4 windows
1515:
1516: * tests/: 410.html, results/410.processed: test for
1517: $CLASS-GETTER-PROTECTED(false) added
1518:
1519: 2021-01-04 moko
1520:
1521: * tests/: 409.html, results/409.processed, results/auto.p: test for
1522: $MAIN:LOCALS(true) added
1523:
1.154 moko 1524: 2021-01-03 moko
1525:
1526: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
1527: types/pa_vclass.h, types/pa_vstateless_class.C,
1528: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
1529: +LOCALS. $main -> $MAIN in exception texts (implements feature
1530: #1207)
1531:
1532: 2021-01-02 moko
1533:
1534: * etc/auto.p.in: minor
1535:
1536: * src/main/pa_request.C: sending headers only after opening file to
1537: allow error reporting if file was not opened (foreign group,
1538: etc).
1539:
1540: 2020-12-31 moko
1541:
1542: * src/: include/pa_request.h, main/pa_request.C,
1543: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
1544:
1545: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
1546: main/pa_request.C: get_class_ref added and used
1547:
1548: * etc/auto.p.in: @CLASS httpd added
1549:
1550: * etc/auto.p.in: @auto[] is now first
1551:
1552: 2020-12-30 moko
1553:
1554: * tests/: 408.html, results/408.processed: test for bug #1166
1555: (windows only) added
1556:
1557: * src/main/pa_common.C: create_dir_for_file should not create dir
1558: for trailing / (fixes bug #1166)
1559:
1560: * tests/: 341.html, results/341.processed: tests for
1561: ^nameless_table.hash[] added (related to feature #1138)
1562:
1563: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
1564: (implements feature #1138), extra fields in named tables no
1565: longer ignored (implements feature #1138)
1566:
1567: * tests/results/390.processed: updated after exception text change
1568:
1569: 2020-12-29 moko
1570:
1571: * tests/: 407.html, results/407.processed: +$._default check
1572:
1573: * src/classes/hash.C: keep $_default in ^hash.reverse[]
1574:
1575: * tests/: 407.html, results/407.processed: test for ^hash.select[]
1576: and ^hash.reverse[] added (releated to feature #1172)
1577:
1578: * src/classes/hash.C:
1579: ^hash.select[key;value](bool-condition)[options hash] +
1580: ^hash.reverse[] added (implements feature #1172)
1581:
1582: * src/types/pa_vtable.h: warning war
1583:
1584: * src/include/pa_config_fixed.h: win32 fix
1585:
1.153 moko 1586: 2020-12-27 moko
1587:
1588: * tests/: 406.html, results/406.processed: test results updated
1589:
1590: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
1591: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
1592: spelling
1593:
1594: 2020-12-26 moko
1595:
1596: * tests/: 406.html, results/406.processed: tests for
1597: ^table.rename[] added (related to feature #1148)
1598:
1599: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
1600: ^table.rename[column name from;column name to], ^table.rename[
1601: $.[column name from][column name to] ... ] added (implements
1602: feature #1148)
1603:
1604: 2020-12-25 moko
1605:
1606: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
1607: request_info now on stack to avoid yet another THREAD_LOCAL
1608: memory deallocation issue (now with cookies), explained in #1203
1609:
1610: * src/types/pa_vcookie.C: fields should be inited
1611:
1612: 2020-12-24 moko
1613:
1614: * src/include/pa_stylesheet_connection.h: looks like
1615: xsltFreeStylesheet leads to memory double-free. If so, it's for
1616: sure libxml bug, but we have GC anyway, so we just remove this
1617: call and see...
1618:
1619: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
1620: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
1621: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
1622: abort.c:65:8 frame #3: 0x00000000004da663
1623: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
1624: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
1625: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
1626: malloc.c:617:9 frame #5: 0x0000000000577f0c
1627: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
1628: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
1629: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
1630: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
1631: frame #8: 0x000000000050d35c
1632: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
1633: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
1634: frame #10: 0x00000000004436e5
1635: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
1636: [inlined]
1637: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
1638: pa_stylesheet_connection.h:62:3
1639:
1640: 2020-12-23 moko
1641:
1642: * src/classes/image.C: ^image::measure[; $.video() ] option added
1643:
1644: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
1645: ^image::measure[; $.video(true) ] added
1646:
1647: * src/main/pa_exec.C: not cleared automatically in multithreaded
1648: httpd mode for unknown reasons
1649:
1650: 2020-12-22 moko
1651:
1652: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
1653: error_log uri of currently processed document", but never used
1654: and conflicts with how libgc stops threads on FreeBSD (#define
1655: SIG_SUSPEND SIGUSR1), thus removed.
1656:
1657: 2020-12-21 moko
1658:
1659: * src/main/pa_request.C: +comment
1660:
1.151 moko 1661: 2020-12-20 moko
1662:
1.152 moko 1663: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
1664: it is more safe to have versions of pa_strdup with one and two
1665: arguments, as helper_length=0 not always mean that strlen()
1666: should be called, but means zero.
1667:
1668: * src/targets/isapi/parser3isapi.C: minor
1669:
1670: * src/main/pa_http.C: +valid_http_method
1671:
1.151 moko 1672: * src/: include/pa_http.h, main/pa_http.C,
1673: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
1674:
1675: 2020-12-17 moko
1676:
1677: * tests/: 405.html, results/405.processed: test for split by regex
1678: added (related to feature #1160)
1679:
1680: * src/classes/string.C: split by regex implemented (feature #1160)
1681:
1682: * src/classes/string.C: minor
1683:
1684: * tests/: 404.html, results/404.processed: test for whitespace
1685: string is now OK for table argument (related to feature #1169)
1686:
1687: * src/: classes/image.C, classes/string.C, classes/table.C,
1688: types/pa_vmethod_frame.C: whitespace string is now OK for table
1689: argument (as with hash) (implements feature #1169)
1690:
1691: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
1692: limit for comment (fixes bug #1102)
1693:
1694: * src/targets/cgi/parser3.C: +HAVE_TLS check
1695:
1696: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
1697:
1698: * src/include/pa_config_includes.h: HAVE_TLS used
1699:
1700: * configure.ac: +TLS check
1701:
1702: * src/main/pa_http.C: content logging added
1703:
1704: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
1705: clear_response_headers added
1706:
1707: 2020-12-16 moko
1708:
1709: * buildall: as we now use threads, libatomic_ops still required for
1710: some OS.
1711:
1712: * src/main/pa_request.C: whitespace
1713:
1714: * src/: include/pa_request.h, main/pa_request.C:
1715: Request::Exception_trace::table extracted and used
1716:
1717: * src/main/pa_request.C: moving output_result call outside of try
1718: as network exceptions should not be handled by parser code
1719:
1720: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
1721: logging network exchange
1722:
1723: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
1724: via network if it was network write error.
1725:
1726: * src/targets/cgi/parser3.C: log -> pa_log
1727:
1728: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
1729:
1730: * src/main/pa_threads.C: getpid() if no gettid() found
1731:
1732: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1733: we need to ignore "void" connections from browsers (browsers open
1734: connections in advance and they will be empty if user does not
1735: request more pages)
1736:
1737: 2020-12-15 moko
1738:
1739: * src/targets/cgi/parser3.C: avoid previous uri in logs
1740:
1741: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
1742: RequestController not needed in httpd mode
1743:
1744: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
1745: classes/classes.h, classes/curl.C, classes/date.C,
1746: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
1747: classes/hashfile.C, classes/image.C, classes/inet.C,
1748: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1749: classes/memcached.C, classes/memory.C, classes/op.C,
1750: classes/reflection.C, classes/regex.C, classes/response.C,
1751: classes/string.C, classes/table.C, classes/void.C,
1752: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
1753: include/pa_array.h, include/pa_base64.h,
1754: include/pa_cache_managers.h, include/pa_charset.h,
1755: include/pa_charsets.h, include/pa_common.h,
1756: include/pa_config_fixed.h, include/pa_config_includes.h,
1757: include/pa_dictionary.h, include/pa_dir.h,
1758: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
1759: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
1760: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
1761: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
1762: include/pa_request_charsets.h, include/pa_request_info.h,
1763: include/pa_sapi.h, include/pa_socks.h,
1764: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
1765: include/pa_stack.h, include/pa_string.h,
1766: include/pa_stylesheet_connection.h,
1767: include/pa_stylesheet_manager.h, include/pa_symbols.h,
1768: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
1769: include/pa_uue.h, include/pa_xml_exception.h,
1770: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
1771: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
1772: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
1773: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
1774: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
1775: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
1776: main/compile.tab.C, main/compile.y, main/compile_tools.C,
1777: main/compile_tools.h, main/execute.C, main/pa_base64.C,
1778: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
1779: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
1780: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
1781: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
1782: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
1783: main/pa_sql_driver_manager.C, main/pa_string.C,
1784: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
1785: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
1786: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
1787: main/untaint.C, sql/pa_sql_driver.h,
1788: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
1789: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
1790: targets/isapi/parser3isapi.C, types/pa_junction.h,
1791: types/pa_method.h, types/pa_property.h, types/pa_value.C,
1792: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
1793: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
1794: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
1795: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
1796: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
1797: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
1798: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
1799: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
1800: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
1801: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
1802: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
1803: types/pa_vmemory.h, types/pa_vmethod_frame.C,
1804: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
1805: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
1806: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
1807: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
1808: types/pa_vstateless_object.h, types/pa_vstatus.C,
1809: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
1810: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
1811: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
1812: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1813: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
1814:
1815: * src/main/pa_request.C: old compilers support
1816:
1817: * tests/: 362.html, results/362.processed: test updated after
1818: changes after upgrade to libxml2-2.9.9 were made (related to bug
1819: #1108)
1820:
1821: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
1822: removed, as xsltFreeStylesheet has side effects on original doc.
1823: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
1824: not updated after xdoc modification (part 3 of test 362).
1825: (related to bug #1108)
1826:
1827: * src/targets/isapi/parser3isapi.C: +pa_strcat
1828:
1829: * src/: classes/memory.C, include/pa_memory.h,
1830: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
1831: PA_GC_GCOLLECT used
1832:
1833: * src/include/pa_memory.h: +PA_GC_COLLECT
1834:
1835: * src/targets/cgi/parser3.C: msvs support fixes
1836:
1837: * src/lib/gc/include/gc.h: more cleanup
1838:
1839: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
1840:
1841: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
1842: targets/cgi/parser3.C: $main:HTTPD.mode implemented
1843:
1844: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
1845:
1846: * configure.ac: pthread.h added to checked headers
1847:
1848: * src/classes/table.C: string stream is back :)
1849:
1850: * src/classes/memory.C: GC_generate_random_backtrace no longer
1851: exists
1852:
1853: * src/main/pa_globals.C: GC_dont_gc replaced
1854:
1855: * src/lib/gc/include/gc.h: major cleanup, only used functions are
1856: left to simplify adding new functions. depricated GC_dont_gc
1857: replaced with GC_disable and GC_enable calls.
1858:
1859: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
1860: CORD_from_file* not used and thus removed
1861:
1862: * src/lib/gc/include/gc_allocator.h: minor cleanup
1863:
1864: 2020-12-14 moko
1865:
1866: * src/classes/: curl.C, memory.C, table.C: every TLS should be
1867: referenced elsewhere, or GC will collect it.
1868:
1869: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
1870: main/pa_xml_io.C: bugfix: TLS variables should be referenced
1871: elsewhere, or GC will collect them (and we'll get GPF in
1872: multithreaded enviroment). May be it can be also fixed by some
1873: GC call, not sure. But this fix costs nothing (but hours of
1874: debugging to find the issue :).
1875:
1.150 moko 1876: 2020-12-11 moko
1877:
1878: * configure.ac: gettid() check added
1879:
1880: * src/main/pa_threads.C: HAVE_GETTID used
1881:
1882: * src/include/pa_config_auto.h.in: +HAVE_GETTID
1883:
1884: * src/: include/pa_threads.h, main/pa_threads.C: now unified
1885: version for isapi/cgi/apache
1886:
1887: * buildall: threads are now required.
1888:
1889: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
1890: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1891: main/main.vcproj: pa_threads.C moved to main
1892:
1893: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
1894: isapi/pa_threads.C: pa_threads.C moved to main
1895:
1896: * src/: main/Makefile.am, targets/cgi/Makefile.am,
1897: targets/apache/Makefile.am: pa_threads.C moved to main
1898:
1899: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
1900:
1901: * src/: include/pa_stylesheet_connection.h,
1902: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
1903: and weird GPF in multithreaded httpd is gone
1904:
1905: * src/include/: pa_stylesheet_connection.h,
1906: pa_sql_driver_manager.h: whitespace
1907:
1908: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
1909:
1910: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
1911: main/pa_stylesheet_manager.C: whitespace, warning war
1912:
1913: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
1914: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
1915: parser_multithreaded never used
1916:
1917: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
1918:
1919: 2020-12-10 moko
1920:
1921: * src/: include/pa_config_includes.h, include/pa_http.h,
1922: main/pa_http.C, targets/cgi/parser3.C: initial support for
1923: MULTITHREADED and PARALLEL httpd server modes
1924:
1925: * src/main/pa_globals.C: GC_java_finalization is depricated
1926:
1927: 2020-12-09 moko
1928:
1929: * etc/auto.p.in: + @httpd-main
1930:
1931: * src/: include/pa_common.h, main/pa_request.C,
1932: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
1933: work
1934:
1935: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1936: slow file_read_binary no longer used, send_range added
1937:
1938: 2020-12-08 moko
1939:
1940: * src/main/pa_request.C: >4Gb support
1941:
1942: * src/targets/cgi/parser3.C: msvc warning war
1943:
1944: * src/: include/pa_config_includes.h, main/pa_http.C,
1945: main/pa_request.C: msvc warnings war
1946:
1947: * src/classes/image.C: warning war
1948:
1949: * src/classes/table.C: MSVC warning war
1950:
1951: * src/targets/cgi/parser3.C: msvc warnings war
1952:
1953: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
1954: added
1955:
1.149 moko 1956: 2020-12-07 moko
1957:
1.150 moko 1958: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
1959: avoid logging beside system-wide auto.p
1960:
1961: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
1962:
1963: * configure, configure.ac, src/include/pa_config_auto.h.in:
1964: configure options added:
1965:
1966: --with-system-cfg=FILE to specify system-wide auto.p
1967: --with-system-log=FILE to specify system-wide parser3.log
1968:
1969: * Makefile.am: bin no longer exists
1970:
1971: * configure, configure.ac: auto.p moved to etc to simplify debian
1972: package
1973:
1974: * buildall: auto.p and parser3.charsets moved to their default
1975: location after install
1976:
1977: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
1978:
1979: * aclocal.m4, configure: automake 1.15 -> 1.16.1
1980:
1.149 moko 1981: * src/targets/cgi/parser3.C: locate_config call returned to
1982: original place as it requires pa_thread_request() under Windows
1983:
1984: * src/targets/cgi/parser3.C: renaming
1985:
1986: 2020-12-06 moko
1987:
1988: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
1989: check added
1990:
1991: 2020-12-04 moko
1992:
1993: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
1994: main/pa_request.C: unified uint64_t lseek implemented to support
1995: >4Gb files under x86, including Windows
1996:
1997: 2020-12-02 moko
1998:
1999: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
2000: with max_file_size
2001:
2002: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
2003: support for processing files sized >4Gb on 32 bit planforms
2004:
2005: * tests/399.html: file moved
2006:
2007: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
2008:
2009: * src/targets/cgi/pa_sapi_info.h: warning war
2010:
2011: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
2012: warning war
2013:
2014: 2020-12-01 moko
2015:
2016: * src/classes/image.C: mp4 extended size (>4Gb) support added
2017:
2018: * src/classes/image.C: for "size not found" exception to be shown
2019: if size not found until eof
2020:
2021: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
2022: bit linux)
2023:
2024: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
2025: #1188)
2026:
2027: 2020-11-30 moko
2028:
2029: * src/classes/image.C: definitions moved closer to code
2030:
2031: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
2032: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
2033: 395_dir/3_VP8X.webp, results/395.processed,
2034: results/396.processed: tests for ^image::measure[] .webp support
2035: added, all image files moved into one directory (related to
2036: feature #1188)
2037:
2038: * src/classes/image.C: ^image::measure[] now supports webp (feature
2039: #1188)
2040:
1.148 moko 2041: 2020-11-29 moko
2042:
2043: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
2044: processing, unnessesary defines removed
2045:
2046: 2020-11-24 moko
2047:
2048: * tests/results/: 099.processed, 100.processed, 205.processed,
2049: 309.processed, 310.processed: Content-Disposition: inline
2050: returned
2051:
2052: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
2053: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
2054: ] added (related to bug #1204)
2055:
2056: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
2057: ] supported to avoid Content-Disposition: inline;
2058: filename="<file>.ext" but still set Content-Type for ext (related
2059: to bug #1204)
2060:
1.147 moko 2061: 2020-11-22 moko
2062:
2063: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
2064: types/pa_vfile.C: pa_filename added to avoid useless rsplit
2065:
2066: * src/main/pa_request.C: content_disposition_inline returned.
2067:
2068: 2020-11-17 moko
2069:
2070: * src/main/pa_request.C: empty main method name support
2071:
2072: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
2073: config_handler added, stdout flush added.
2074:
2075: 2020-11-16 moko
2076:
2077: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
2078:
2079: * tests/results/: 099.processed, 205.processed, 237.processed,
2080: 309.processed, 310.processed: Content-Disposition: inline is not
2081: required and should not contain filename="<name>"
2082:
2083: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
2084: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2085: targets/isapi/parser3isapi.C: pa_strcat implemented and used
2086:
1.146 moko 2087: 2020-11-14 moko
2088:
2089: * src/targets/cgi/parser3.C: spelling
2090:
2091: * src/targets/cgi/parser3.C: renaming
2092:
2093: * src/targets/cgi/parser3.C: args_skip removed, locate_config
2094: relocated
2095:
2096: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
2097: before request processing, which is weired
2098:
2099: 2020-11-13 moko
2100:
2101: * src/main/pa_http.C: pa_recv added with timeout support, thus read
2102: copied in httpd.
2103:
2104: 2020-11-12 moko
2105:
2106: * src/main/pa_http.C: ALARM code unified to be used in httpd
2107:
2108: * src/: include/pa_request.h, main/pa_request.C,
2109: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
2110:
2111: * src/main/pa_http.C: URI validation added
2112:
2113: * src/targets/cgi/parser3.C: filespec_to_process now variable,
2114: can't be empty but can be null. httpd-main is now main method
2115: name for httpd mode
2116:
2117: 2020-11-11 moko
2118:
2119: * src/main/pa_request.C: path_translated can be null in httpd mode
2120:
2121: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
2122: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
2123: classes/xdoc.C, include/pa_request.h, main/execute.C,
2124: main/pa_request.C: r.absolute -> r.full_disk_path
2125:
2126: * src/targets/cgi/parser3.C: if filename to process is not
2127: specified, auto.p should be present.
2128:
1.145 moko 2129: 2020-11-03 moko
2130:
2131: * src/: classes/op.C, include/pa_request.h: unused argument removed
2132:
2133: * src/main/pa_request.C: content_disposition_inline is the default,
2134: not required.
2135:
1.144 moko 2136: 2020-10-29 moko
2137:
2138: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
2139: ^use[file; $.main(true) ] implemented for auto.p processing and
2140: path_translated changing to correct relative files path
2141: calculation in httpd mode
2142:
2143: * src/: include/pa_request.h, main/pa_request.C:
2144: fail_on_read_problem removed, as it allways true, as if should
2145: be.
2146:
2147: * src/: include/pa_request.h, main/pa_request.C,
2148: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2149: targets/isapi/parser3isapi.C: clearing config_filespec when
2150: config was not found, thus flag not required and removed.
2151:
2152: 2020-10-28 moko
2153:
2154: * tests/: 402.html, results/402.processed: error reporting test
2155:
2156: * src/main/execute.C: better error reporting when
2157: $result[^hash::create[]] in @main.
2158:
2159: * src/main/: execute.C, pa_request.C: frame.result() should be used
2160: + minor optimization
2161:
2162: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
2163: main/pa_xml_io.C: execute_*_method simplified and unified
2164:
2165: 2020-10-27 moko
2166:
2167: * tests/: 306.html, results/306.processed: a bit more testing. :)
2168:
2169: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
2170: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
2171: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
2172: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
2173: types/pa_vmethod_frame.h, types/pa_vobject.C,
2174: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
2175: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
2176: longer used in object-prototype mode
2177:
2178: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
2179: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
2180: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
2181: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
2182: $form:name[value] features
2183:
1.143 moko 2184: 2020-10-18 moko
2185:
2186: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
2187:
2188: 2020-10-15 moko
2189:
2190: * src/main/pa_http.C: url no longer needed as
2191: ALTER_EXCEPTION_SOURCE is used
2192:
2193: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
2194: main/pa_http.C: check_file_size filespec is now optional
2195:
2196: * src/: classes/curl.C, include/pa_exception.h,
2197: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
2198: ALTER_EXCEPTION_COMMENT added for better error reporting
2199:
2200: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
2201: results/346-curl.processed, results/379-curl.processed,
2202: results/379.processed: test results updated as load now provides
2203: better error reporting + curl responses updated
2204:
2205: 2020-10-14 moko
2206:
2207: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
2208: main/pa_string.C, targets/apache/mod_parser3_core.C,
2209: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
2210: checked. 10 is now default base, no hex autodetect by default
2211:
2212: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
2213: connection socket closing in destructor + accept exception
2214: handling
2215:
2216: * src/targets/cgi/parser3.C: warning war
2217:
2218: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
2219: main/pa_request.C, targets/apache/mod_parser3_core.C,
2220: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
2221: exception handling unified
2222:
2223: 2020-10-13 moko
2224:
2225: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
2226: autodetection
2227:
2228: * src/targets/apache/mod_parser3_core.C: reverted to atoi
2229:
2230: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
2231:
2232: * src/main/pa_http.C: warning war
2233:
1.142 moko 2234: 2020-10-12 moko
2235:
1.143 moko 2236: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
2237: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
2238: unhandled exception code optimization
2239:
2240: * src/targets/cgi/parser3.C: request_info now global variable
2241:
2242: * src/main/pa_http.C: http_read_response moved to HTTP_response
2243: class
2244:
2245: * src/: include/pa_http.h, main/pa_http.C,
2246: targets/cgi/pa_sapi_info.h: read_post implemented
2247:
1.142 moko 2248: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
2249: [host:]port syntax support in httpd mode
2250:
2251: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
2252: targets/cgi/parser3.C: populate_env added
2253:
2254: * src/include/pa_hash.h: to make get(char *) compiling in
2255: HashStringString
2256:
2257: 2020-10-10 moko
2258:
2259: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
2260: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
2261:
2262: * src/: include/pa_http.h, include/pa_request_info.h,
2263: main/pa_http.C, main/pa_string.C,
2264: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
2265: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
2266: types/pa_vrequest.C: initial httpd mode implementation
2267:
1.141 moko 2268: 2020-10-04 moko
2269:
2270: * src/targets/cgi/parser3.C: options together
2271:
2272: 2020-09-30 moko
2273:
2274: * src/main/pa_http.C: renamed
2275:
1.140 moko 2276: 2020-08-14 moko
2277:
2278: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
2279: src/targets/cgi/Makefile.am: no httpd as separate library
2280:
2281: 2020-08-13 moko
2282:
2283: * src/targets/cgi/parser3.C: SAPI::die used in exception in
2284: unhandled exception handler to report 500 instead of 200 it was
2285: before.
2286:
2287: * src/targets/apache/mod_parser3_core.C: minor cleanup
2288:
2289: * src/: include/pa_sapi.h, main/untaint.C,
2290: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2291: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
2292: thus replaced with SAPI::die and removed
2293:
2294: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
2295: cgi/parser3.C: whitespace
2296:
2297: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
2298:
2299: 2020-08-12 moko
2300:
2301: * src/targets/cgi/parser3.C: duplicate info in signal logging
2302: removed, whitespace was: SIGPIPE received while executing code.
2303: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
2304: cl=0]
2305:
2306: * parser3.sln: + httpd.vcproj
2307:
2308: 2020-08-11 moko
2309:
2310: * src/targets/cgi/Makefile.am: +libhttpd
2311:
2312: * configure.ac, src/lib/Makefile.am: +libhttpd
2313:
1.139 moko 2314: 2020-07-13 moko
2315:
2316: * tests/: 401.html, results/401.processed: test for hash key does
2317: not keep language, but tainted in foreach.
2318:
1.138 moko 2319: 2020-07-01 moko
2320:
2321: * tests/: 235.html, results/235.processed: test result updated as
2322: messages before attachments implemented (feature #1176)
2323:
1.137 moko 2324: 2020-06-27 moko
2325:
2326: * tests/: 400.html, results/400.processed: test updated to check
2327: ^return{code}
2328:
2329: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
2330: fixed
2331:
2332: 2020-06-26 moko
2333:
2334: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
2335: added (related to https://www.parser.ru/forum/?id=85319)
2336:
2337: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
2338: when $result assignment was last statement in the method
2339: (https://www.parser.ru/forum/?id=85319)
2340:
1.136 moko 2341: 2020-05-23 moko
2342:
2343: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
2344: whitespace, unused level removed
2345:
2346: 2020-05-19 moko
2347:
2348: * src/types/pa_vmail.C: whitespace
2349:
2350: * src/types/pa_vmail.C: files should be processed last (related to
2351: feature #1176)
2352:
1.135 moko 2353: 2020-05-12 moko
2354:
2355: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
2356: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
2357:
2358: * configure.ac: FreeBSD1X.X check added to avoid
2359: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
2360:
1.134 moko 2361: 2020-02-26 moko
2362:
2363: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
2364: compilation issue (related to bug #1201)
2365:
2366: * src/main/pa_common.C: entry_readable -> entry_exists,
2367: undocumented access(fname, R_OK) call removed (fixes bug #1201)
2368: -f and -d now works under Windows in UTF-8 with Russian
2369: filenames.
2370:
2371: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
2372: advice (related to feature #1199)
2373:
2374: 2020-02-25 moko
2375:
2376: * buildall: --silent removed
2377:
2378: * configure.ac: gmime-3.0 support
2379:
2380: * buildall: --with-system-mailreceive option added to build with
2381: system libgmime
2382:
2383: * src/types/pa_vmail.C: avoiding
2384: https://github.com/jstedfast/gmime/issues/83 "feature" (related
2385: to feature #1199)
2386:
1.133 moko 2387: 2020-02-18 moko
2388:
2389: * src/classes/op.C: windows x64 debug mode compile fix
2390:
2391: * src/main/pa_globals.C: no longer required due to -MD -> -MT
2392: change (releated to feature #1200)
2393:
2394: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
2395: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
2396: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
2397: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
2398: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
2399: targets/apache/ApacheModuleParser3.vcproj,
2400: targets/apache/ApacheModuleParser3Core.vcproj,
2401: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
2402: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
2403: dependency (related to feature #1200)
2404:
1.132 moko 2405: 2020-02-12 moko
2406:
2407: * src/types/pa_vmail.C: minimize diff
2408:
2409: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
2410: #1199)
2411:
1.131 moko 2412: 2020-01-18 moko
2413:
2414: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
2415:
1.130 moko 2416: 2019-12-28 moko
2417:
2418: * src/targets/cgi/parser3.C: avoid empty ?
2419:
2420: 2019-12-27 moko
2421:
2422: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
2423: DOCUMENT_ROOT (related to feature #1164)
2424:
2425: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
2426: fcgiwrap setup (implements feature #1164)
2427:
2428: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
2429: but no issues found (related to feature #1164)
2430:
2431: * src/targets/cgi/parser3.C: actualized
2432:
2433: 2019-12-26 moko
2434:
2435: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
2436: removed
2437:
2438: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
2439: removed
2440:
2441: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
2442: allocation errors, we don't want default gc warnings (without
2443: timestamp and URI).
2444:
2445: * src/: classes/memory.C, main/pa_globals.C,
2446: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2447: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
2448: pa_globals_init
2449:
2450: * src/main/pa_globals.C: setup_hex_value() removed, static array
2451: initialization used (optimization)
2452:
2453: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
2454: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
2455: pa_socks_init/pa_socks_done moved inside pa_globals_init
2456: (optimization)
2457:
1.129 moko 2458: 2019-12-09 moko
2459:
2460: * src/include/pa_config_fixed.h: warning war
2461:
1.128 moko 2462: 2019-12-08 moko
2463:
2464: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
2465: process grammar under Unix.
2466:
2467: 2019-12-07 moko
2468:
2469: * tests/389.html: For Windows XP. :)
2470:
2471: * tests/388-sql.html: Windows compatibility added
2472:
2473: 2019-12-06 moko
2474:
2475: * src/targets/cgi/parser3.C: warning war
2476:
2477: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
2478: == sizeof(CORD)) to avoid aligning bugs in future
2479:
2480: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
2481: XML_STATIC
2482:
2483: * src/include/pa_request.h: StackItem() not required
2484:
2485: * src/include/pa_stack.h: warning war
2486:
2487: * src/include/pa_config_includes.h: GCC warning silenced
2488:
2489: * src/include/pa_memory.h: warning war: the program should also
2490: define 'void operator delete [](void*, std::size_t)'
2491: [-Wsized-deallocation]
2492:
2493: * src/types/: pa_vregex.h, pa_vtable.h: warning war
2494:
2495: * src/classes/string.C: not reqired cast removed
2496:
2497: * src/classes/string.C: not reqired cast removed
2498:
2499: 2019-12-05 moko
2500:
2501: * src/lib/sdbm/pa_file_io.C: warning war
2502:
2503: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
2504: enum Language : size_t - required for VS2015+ to make
2505: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
2506: without it (related to feature #1198)
2507:
2508: 2019-12-04 moko
2509:
2510: * src/main/pa_base64.C: unsigned char -> uchar
2511:
2512: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
2513: as other libs
2514:
2515: * src/include/pa_version.h: +amd64
2516:
2517: 2019-12-03 moko
2518:
2519: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
2520: release
2521:
2522: * src/include/pa_config_includes.h: warning war
2523:
2524: * src/classes/image.C: warning war
2525:
2526: * src/main/pa_globals.C: x64 libs support
2527:
2528: * src/include/pa_config_includes.h: warning war
2529:
2530: * src/types/pa_method.h: warning war
2531:
1.127 moko 2532: 2019-11-28 moko
2533:
2534: * src/classes/math.C: vs2003 compatibility + warning war
2535:
2536: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
2537: libxml2-2.9.9 (related to feature #1136)
2538:
2539: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
2540: typecast for more compatibility (related to feature #1136)
2541:
2542: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
2543: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
2544: feature #1136)
2545:
2546: 2019-11-26 moko
2547:
2548: * src/main/: compile_tools.C, compile_tools.h: invalid assert
2549: removed (it was failing in $$var case), condition added
2550:
1.126 moko 2551: 2019-11-25 moko
2552:
2553: * tests/: 397.html, 399.html, results/141.processed,
2554: results/399.processed: base64 options tested
2555:
2556: * src/: classes/math.C, main/pa_http.C: base64 options used
2557:
2558: * src/main/pa_base64.C: base64 encode rewritten, base64 options
2559: implemented (feature #986)
2560:
2561: * src/main/pa_cache_managers.C: whitespace
2562:
2563: * tests/: 397.html, 399.html, results/399.processed: tests for
2564: ^base64 encode options added (related to feature #986)
2565:
2566: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
2567: pa_base64_encode(file) removed - more memory, but faster and less
2568: code (related fo feature #986)
2569:
2570: 2019-11-24 moko
2571:
2572: * tests/: 155.html, results/155.processed: limit and offset in
2573: ^table::load[] now supported, thus test added
2574:
2575: * src/: classes/file.C, classes/table.C, include/pa_common.h,
2576: main/pa_common.C: optimization: offset and limit options parsing
2577: moved inside file_load.
2578:
2579: 2019-11-23 moko
2580:
2581: * src/: classes/file.C, classes/op.C, include/pa_common.h,
2582: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
2583: optimization: file_read replaced with simplified file_read_binary
2584:
2585: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
2586: types/pa_vform.C: whitespace
2587:
2588: * src/: include/pa_common.h, main/pa_common.C: never used params
2589: removed
2590:
2591: 2019-11-21 moko
2592:
2593: * tests/: 193.html, results/193.processed, results/389.processed:
2594: test results updated as now base64 does not discard tail without
2595: padding (related to feature #986)
2596:
2597: 2019-11-20 moko
2598:
2599: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
2600: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
2601: pa_base64_decode (related to feature #986)
2602:
2603: * tests/398.html: tests for base64 decode added (related to feature
2604: #986)
2605:
2606: * src/main/pa_base64.C: base64_decode rewritten - padding option
2607: support, padding inside base 64 supported (related to feature
2608: #096)
2609:
2610: 2019-11-19 moko
2611:
2612: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
2613: FreeBSD 12
2614:
1.125 moko 2615: 2019-11-16 moko
2616:
2617: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
2618: support added, step support removed (related to #986)
2619:
2620: 2019-11-15 moko
2621:
2622: * src/classes/math.C: using log since log2 is not present on
2623: FreeBSD < 8.4 (related to feature #1177)
2624:
2625: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
2626: pa_base64_size extracted and used for files as well (related to
2627: feature 986)
2628:
2629: 2019-11-14 moko
2630:
2631: * tests/: 397.html, results/397.processed: + content check
2632:
2633: * tests/: 141.html, results/141.processed: make test resuls more
2634: readable
2635:
2636: * tests/: 397.html, results/193.processed, results/397.processed:
2637: test results updated after \x00 character was disabled in
2638: math:convert string mode (related to feature #1177)
2639:
2640: * src/classes/: math.C, string.C: \\x00 character disabled while
2641: converting to string (as in base64, related to feature #1177)
2642:
2643: * src/classes/file.C: more correct arguments separation
2644:
2645: * src/: classes/file.C, classes/math.C, classes/string.C,
2646: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
2647: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
2648: options added, but not yet implemented (related to feature #986)
2649:
2650: * src/classes/math.C: whitespace
2651:
2652: 2019-11-13 moko
2653:
2654: * tests/: 397.html, results/397.processed: +tainting test (related
2655: to feature #1177)
2656:
2657: * src/classes/math.C: as we now produce not only digits, result
2658: should be tainted (related to feature #1177)
2659:
2660: * src/main/pa_base64.C: whitespace
2661:
2662: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
2663: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
2664: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
2665: implementation moved from pa_common.h and pa_common.C
2666:
2667: 2019-11-12 moko
2668:
2669: * tests/: 275.html, results/275.processed: out of range test fixed,
2670: as ^math:convert now supports arbitrary precision
2671:
2672: 2019-11-11 moko
2673:
2674: * tests/results/389.processed: uctualized error message
2675:
2676: * tests/: 389.html, 397.html, results/397.processed: tests for
2677: ^math:convert added (related to feature #1177)
2678:
2679: * src/classes/math.C: ^math:convert now supports arbitrary
2680: precision, alphabet support added (implements feature #1177)
2681:
1.124 moko 2682: 2019-11-06 moko
2683:
2684: * tests/: 181.html, results/181.processed: entities usage added,
2685: more entites load tests (related to bug #842 discussion)
2686:
2687: 2019-11-05 moko
2688:
2689: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
2690: call from xmlFileOpen if http://localhost/<file> was not found
2691: (related to bug #842)
2692:
2693: * src/main/pa_xml_io.C: rename
2694:
2695: * src/main/pa_xml_io.C: +MemoryStream constructor
2696:
2697: * src/main/pa_xml_io.C: whitespace
2698:
1.123 moko 2699: 2019-10-31 moko
2700:
2701: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
2702: XML_PARSE_NOENT) added to fix entities load, (related to feature
2703: #1181)
2704:
1.122 moko 2705: 2019-10-25 moko
2706:
2707: * tests/: 388-sql.html, results/388-sql.processed: more multiple
2708: queries tests
2709:
2710: 2019-10-24 moko
2711:
2712: * tests/: 388-sql.html, results/388-sql.processed: support for
2713: pgsql driver test
2714:
2715: * tests/: 388-sql.html, results/388-sql.processed:
2716: multi_statements=1 now tested, mysql test now supported
2717: (connection must be specified in [parser3] section in .my.cnf)
2718: related to issues #1195 and #1194
2719:
1.121 moko 2720: 2019-09-11 moko
2721:
2722: * src/classes/int.C: whitespace
2723:
2724: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
2725: exception test
2726:
2727: * tests/results/388-sql.processed: sql queries now shown (related
2728: to feature #1196)
2729:
2730: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
2731: with old parser versions.
2732:
2733: * src/: classes/file.C, classes/hash.C, classes/string.C,
2734: classes/table.C, classes/void.C, include/pa_sql_connection.h,
2735: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
2736: instead of connect string in query_event_handlers exceptions
2737: (implements feature #1196)
2738:
1.120 moko 2739: 2019-09-06 moko
2740:
2741: * tests/388-sql.html: mysql compat
2742:
2743: * src/: classes/hash.C, classes/string.C, classes/table.C,
2744: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
2745: sql_ variables declaration moved to pa_common.h
2746:
1.116 moko 2747: 2019-01-15 moko
2748:
2749: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
2750: logically sorted
2751:
2752: 2018-12-27 moko
2753:
2754: * src/include/pa_config_includes.h: warning war:
2755: -Wdeprecated-register added for C++ 17
2756:
2757: 2018-10-15 moko
2758:
2759: * configure.ac: FreeBSD 11.2 can be build with ./configure
2760: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
2761: --with-xml=/usr/local/
2762:
2763: 2018-09-24 moko
2764:
2765: * tests/: 396.html, 396.tiff, results/396.processed: test for
2766: ^image::measure[] now supports tiff added (related to feature
2767: #1188)
2768:
2769: * src/classes/image.C: ^image::measure[] now supports tiff
2770: (implements feature #1188)
2771:
2772: 2018-09-20 moko
2773:
2774: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
2775: files measure added (related to ticket #1188)
2776:
2777: * src/classes/image.C: measure of bmp files implemented (related to
2778: ticket #1188)
2779:
2780: 2018-09-18 moko
2781:
2782: * tests/: 394-curl.html, results/394-curl.processed,
2783: results/auto.p: test for bug #1187 (max_file_size check for head
2784: requests) added
2785:
2786: 2018-08-24 moko
2787:
2788: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
2789: response content-length check is required (fixes bug #1187)
2790:
2791: 2018-05-11 moko
2792:
2793: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
2794: $.append(bool) ] option added (related to feature #919)
2795:
2796: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
2797: from misha@ patch (implements feature #919)
2798:
2799: 2018-03-22 moko
2800:
2801: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
2802: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
2803: with 128kb buffer. Now works at least 12 times faster. :) May be
2804: Windows-only problem.
2805:
2806: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
2807: build fix)
2808:
2809: 2018-02-03 moko
2810:
2811: * src/main/execute.C: removes irrelevant lines from exception stack
2812: trace when exceptions occurs in assigment (fixes bug #1165)
2813:
2814: * tests/: 393.html, results/393.processed: test for behavour after
2815: "Property can not be created, already exists field with that
2816: name" exception removed (related to feature #1183)
2817:
2818: * src/types/pa_vclass.C: "Property can not be created, already
2819: exists field with that name" exception removed (implements
2820: feature #1183)
2821:
2822: 2018-01-19 moko
2823:
2824: * src/classes/string.C: whitespace
2825:
2826: * src/classes/string.C: whitespace
2827:
2828: * tests/: 392.html, results/392.processed: test for
2829: ^regex::create[$regex] added (related to feature #1135)
2830:
2831: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
2832: ^regex::create[$regex] added (implements feature #1135)
2833:
2834: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
2835: commented define added (related to feature #1157)
2836:
2837: 2018-01-17 moko
2838:
2839: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
2840:
2841: 2018-01-15 moko
2842:
2843: * tests/: 390.html, results/390.processed: real path replaced by
2844: stub
2845:
2846: * tests/: 391.html, results/391.processed: test for feature #1181
2847: (XML_PARSE_HUGE exception) added
2848:
2849: 2018-01-11 moko
2850:
2851: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
2852: XML_PARSE_HUGE option passed by default (implements feature
2853: #1181)
2854:
2855: * src/classes/string.C: whitespace
2856:
2857: 2017-12-10 moko
2858:
2859: * tests/: 389.html, 390.html, results/389.processed,
2860: results/390.processed: image code coverage tests added (related
2861: to feature #1125)
2862:
2863: 2017-12-08 moko
2864:
2865: * tests/: 346-curl.html, 388-sql.html, 389.html,
2866: results/346-curl.processed, results/388-sql.processed,
2867: results/389.processed: more code coverage tests
2868:
2869: * tests/: 264.html, results/264.processed: code coverage for
2870: ^file::exec[]
2871:
2872: 2017-12-07 moko
2873:
2874: * tests/: 174.html, 388-sql.html, 389.html,
2875: results/388-sql.processed, results/389.processed,
2876: results/174.processed: more coverage tests
2877:
2878: * src/classes/math.C: exception text actualized
2879:
2880: 2017-12-06 moko
2881:
2882: * tests/388-sql.html: $SQL can be here
2883:
2884: * tests/results/auto.p: $SQL not required here
2885:
2886: * tests/: 388-sql.html, 389.html, Makefile,
2887: results/388-sql.processed, results/389.processed, results/auto.p:
2888: code coverage tests for sql (using sqlite) and int/double/bool
2889: added (related to feature #1125)
2890:
2891: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
2892: lib/json/json.vcproj, lib/md5/md5.vcproj,
2893: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
2894: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
2895: targets/apache/ApacheModuleParser3Core.vcproj,
2896: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
2897: types/types.vcproj: gc\include no longer required
2898:
2899: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
2900: required
2901:
2902: * src/: classes/Makefile.am, classes/table.C,
2903: include/pa_config_includes.h, include/pa_string.h,
2904: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2905: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
2906: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
2907: targets/apache/Makefile.am, targets/cgi/Makefile.am,
2908: types/Makefile.am: to be sure that our version of gc.h/cord.h is
2909: used, we now include it directly
2910:
2911: 2017-12-04 moko
2912:
2913: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
2914: memcached/memcached.vcproj, punycode/punycode.vcproj,
2915: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
2916: where required
2917:
2918: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
2919: now can be used to trace memory allocations
2920:
2921: * src/: classes/table.C, include/pa_config_includes.h,
2922: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2923: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
2924: method removes, libcord also can work without libgc
2925:
2926: * src/classes/json.C: pa_gc_malloc_atomic should not be used
2927:
2928: 2017-11-29 moko
2929:
2930: * src/classes/curl.C: no exception if some of ^curl:info[] elements
2931: are not present (related to feature #1173)
2932:
2933: * tests/346-curl.html: test updated to test curl content-length bug
2934: (related to feature #1173)
2935:
2936: * tests/results/346-curl.processed: more test for content-length
2937: curl bug (related to feature #1173)
2938:
2939: * tests/results/346-curl.processed: test results updated after
2940: #1173 implemented
2941:
2942: 2017-11-28 moko
2943:
2944: * src/classes/curl.C: another libcurl Content-length bug walkaround
2945: (related to feature #1173)
2946:
2947: 2017-11-27 moko
2948:
2949: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
2950: $.http_version[version string] added (implements feature #1173),
2951: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
2952: where $post(true) bug existed.
2953:
2954: 2017-11-18 moko
2955:
2956: * src/include/pa_memory.h: warning war (related to feature #1170)
2957:
2958: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
2959: feature #1170)
2960:
2961: 2017-11-17 moko
2962:
2963: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
2964: std::basic_stringstream used in ^table.csv-string[] is compatible
2965: with delete usage check only under Debian 9 (related to feature
2966: #1170)
2967:
2968: 2017-11-16 moko
2969:
2970: * src/: classes/curl.C, classes/hash.C, classes/json.C,
2971: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
2972: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
2973: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
2974: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
2975: types/pa_vxdoc.h: regular new/delete no longer used in our code,
2976: stubs defend from accidental use (implements feature #1170)
2977:
2978: 2017-06-24 moko
2979:
2980: * configure.ac: minor fix: thanks to alx@
2981:
1.115 moko 2982: 2017-05-29 moko
2983:
2984: * src/types/pa_vmail.C: mail headers are now correctly truncated -
2985: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
2986: added to avoid cutting of UTF-8 chars (fixed bug #123)
2987:
2988: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
2989: ignored, =?UTF-8?Q?= should start in case of leading space
2990: (related to bug #123)
2991:
2992: * buildall: echo -n -> printf for OS X. :)
2993:
2994: 2017-05-25 moko
2995:
2996: * tests/: 288.html, results/288.processed: test updated afted
2997: setting $o.prop without setter exception removed (related to
2998: feature #1157)
2999:
3000: * src/types/pa_vclass.C: no more "this property has no setter
3001: method" when setting $o.prop without setter (implements feature
3002: #1157)
3003:
3004: * buildall: echo \c -> echo -n for FreeBSD
3005:
3006: * configure, configure.ac, src/include/pa_config_auto.h.in,
3007: src/types/pa_vdouble.h: isfinite now checked in configure
3008:
3009: * compile, config.guess, config.sub, depcomp, install-sh, missing:
3010: upgraded to automake 1.15
3011:
3012: 2017-05-23 moko
3013:
3014: * src/types/pa_vdouble.h: finite returned where isfinite not
3015: defined
3016:
3017: 2017-05-22 moko
3018:
3019: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
3020:
3021: * buildall: extern CFLAGS setting support
3022:
3023: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
3024:
3025: * buildall: http -> https
3026:
3027: * buildall: gc-7.2f -> gc-7.6.0
3028:
3029: 2017-05-20 moko
3030:
3031: * buildall: https, pcre, xml, xslt updated to current versions
3032: (related to feature #1136)
3033:
3034: 2017-05-19 moko
3035:
3036: * tests/097.html: after parser.ru moved to https
3037:
3038: 2017-05-17 moko
3039:
3040: * tests/results/: 175.processed, 372.processed: tests resuls
3041: updated after lintian spelling typos fixed (related to bug #1156)
3042:
3043: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
3044: classes/string.C, classes/table.C, main/pa_charset.C,
3045: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
3046: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
3047: lintian reported by Sergey B Kirpichev (fixes bug #1156)
3048:
3049: * tests/results/096.processed: +XMP
3050:
3051: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
3052: $.xmp(true) options tested (test for feature #1154)
3053:
3054: * src/classes/image.C: ^image:measure[] options $.exif(false)
3055: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
3056: fetched by default! (implements feature #1154)
3057:
3058: 2017-05-16 moko
3059:
3060: * tests/: 256.html, results/256.processed: ^json:string[$image] now
3061: allowed (related to feature #1154)
3062:
3063: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
3064: initial XMP implementation - without options and transcode
3065: (related to feature #1154)
3066:
3067: 2017-05-12 moko
3068:
3069: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
3070: image: exif moved to ffields, skipped in ^image.html[] where
3071: iterators now used (preparation for feature #1154)
3072:
3073: 2017-05-05 moko
3074:
3075: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
3076: results/387.processed: test for circular class inheritance check
3077: added (related to bug #1150)
3078:
3079: * src/types/pa_vstateless_class.C: circular class inheritance check
3080: added (fixes endless add_derived bug #1150)
3081:
3082: 2017-05-04 moko
3083:
3084: * tests/: 386.html, results/386.processed: test for
3085: $table.value(number) added (related to feature #1152)
3086:
3087: * src/types/pa_vtable.C: table put_element: column value must be
3088: string - > column value must be string compatible to allow
3089: $t.value(1) (implements feature #1152)
3090:
3091: 2017-05-03 moko
3092:
3093: * src/main/pa_request.C: $use[$method] is not possible, reverting
3094: (related to feature #1151)
3095:
3096: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
3097: not possible, removing test (related to feature #1151)
3098:
3099: * src/: main/pa_request.C, types/pa_vstateless_class.h:
3100: get_element_method added and used to allow $use[$method] and
3101: $autouse[$method] (implements feature 1151)
3102:
3103: * tests/: 386.html, 386.p, results/386.processed: test for @use in
3104: variable added (related to feature #1151)
3105:
3106: * tests/results/226.processed: actualized after ^try-catch used
3107:
3108: * tests/: 226.html, 385.html, results/385.processed: test for
3109: @autouse in variable added
3110:
3111: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
3112:
1.114 moko 3113: 2017-02-27 moko
3114:
3115: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
3116:
1.113 moko 3117: 2017-02-20 moko
3118:
3119: * operators.txt: actualization + beauty
3120:
3121: 2017-02-16 moko
3122:
3123: * tests/: 384.html, results/384.processed: test for
3124: ^reflection:mixin[; $.name[] ] option added (related to feature
3125: #1089)
3126:
3127: * tests/: 384.html, results/384.processed: test for
3128: ^reflection:mixin[] added (related to feature #1089)
3129:
3130: * src/types/pa_value.h: warning war: virtual ~Value() added
3131:
1.112 moko 3132: 2017-02-15 moko
3133:
3134: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
3135: fixed
3136:
3137: * tests/: 320.html, results/320.processed: $.reverse(true/false)
3138: test added (related to feature #1069)
3139:
3140: * src/: classes/reflection.C, types/pa_vstateless_class.h:
3141: compilation without HASH_ORDER fixed
3142:
3143: * src/: classes/reflection.C, include/pa_hash.h:
3144: $.reverse(true/false) added to ^reflection:methods[] (related to
3145: feature #1069)
3146:
3147: 2017-02-14 moko
3148:
3149: * tests/: 152.html, results/152.processed: test for $._default hash
3150: added (related to bug #1131)
3151:
3152: * tests/: 277.html, results/277.processed: test for hash with only
3153: $._default is now defined (related to bug #1131)
3154:
3155: * src/types/pa_vhash.h: hash with only $._default is now defined
3156: (fixed bug #1131)
3157:
3158: 2017-02-13 moko
3159:
3160: * tests/cat-windows.sh: cat-windows added (cygwin required)
3161:
3162: * tests/: 171.html, 264.html, 286.html, 370.html,
3163: results/320.processed, results/375.processed, results/auto.p:
3164: cat-windows.sh support added
3165:
3166: * tests/375.html: Windows support
3167:
3168: * tests/270.html: documented
3169:
3170: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
3171: (not backslashes) even under Windows (broke test 270)
3172:
3173: 2017-02-12 moko
3174:
3175: * tests/: descript.ion, todo.txt: cleanup
3176:
3177: 2017-02-09 moko
3178:
3179: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
3180: run_tests.cmd: Windows compatibility
3181:
3182: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
3183: incorrectly (GMT) if parser is called from cygwin
3184:
1.111 moko 3185: 2017-02-08 moko
3186:
1.112 moko 3187: * operators.txt: actualization 15% completed
3188:
3189: * operators.txt: cp1251 -> utf-8
3190:
3191: * NEWS, README: minor update
3192:
3193: * src/include/pa_config_includes.h: warning war continues
3194:
3195: * src/: include/pa_config_includes.h, include/pa_memory.h,
3196: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
3197: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
3198: gcc 6.x issues fixed
3199:
1.111 moko 3200: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
3201: classes/classes.h, classes/curl.C, classes/date.C,
3202: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
3203: classes/hashfile.C, classes/image.C, classes/inet.C,
3204: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3205: classes/memcached.C, classes/memory.C, classes/op.C,
3206: classes/reflection.C, classes/regex.C, classes/response.C,
3207: classes/string.C, classes/table.C, classes/void.C,
3208: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3209: include/pa_array.h, include/pa_cache_managers.h,
3210: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
3211: include/pa_config_fixed.h, include/pa_config_includes.h,
3212: include/pa_dictionary.h, include/pa_dir.h,
3213: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
3214: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
3215: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
3216: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
3217: include/pa_request_charsets.h, include/pa_request_info.h,
3218: include/pa_sapi.h, include/pa_socks.h,
3219: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
3220: include/pa_stack.h, include/pa_string.h,
3221: include/pa_stylesheet_connection.h,
3222: include/pa_stylesheet_manager.h, include/pa_symbols.h,
3223: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
3224: include/pa_uue.h, include/pa_xml_exception.h,
3225: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
3226: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
3227: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
3228: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
3229: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
3230: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
3231: main/compile.tab.C, main/compile.y, main/compile_tools.C,
3232: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
3233: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
3234: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
3235: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
3236: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
3237: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
3238: main/pa_string.C, main/pa_stylesheet_connection.C,
3239: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
3240: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
3241: main/untaint.C, sql/pa_sql_driver.h,
3242: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
3243: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
3244: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
3245: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
3246: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
3247: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
3248: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
3249: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
3250: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
3251: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
3252: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
3253: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
3254: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
3255: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
3256: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
3257: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
3258: types/pa_vmemcached.h, types/pa_vmemory.h,
3259: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3260: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
3261: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
3262: types/pa_vresponse.C, types/pa_vresponse.h,
3263: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
3264: types/pa_vstateless_object.h, types/pa_vstatus.C,
3265: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
3266: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
3267: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3268: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
3269: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
3270: 2015->2017
3271:
1.110 moko 3272: 2017-02-07 moko
3273:
3274: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
3275:
3276: 2017-02-06 moko
3277:
3278: * src/main/pa_common.C: minor fixes, whitespace
3279:
3280: * src/: classes/curl.C, classes/file.C, classes/image.C,
3281: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
3282: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
3283: now used (implements feature #1081)
3284:
3285: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
3286:
3287: 2017-02-01 moko
3288:
3289: * src/include/pa_request.h: cleanup
3290:
3291: 2017-01-30 moko
3292:
3293: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
3294:
3295: 2017-01-29 moko
3296:
3297: * tests/: 383.html, results/383.processed: test for
3298: ^reflection:stack[] added (related to feature #1052)
3299:
3300: * src/classes/reflection.C: else added
3301:
3302: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
3303: $.max_file_lock_wait added (implements feature #1128)
3304:
3305: 2017-01-28 moko
3306:
3307: * tests/: 379-curl.html, results/379-curl.processed: curl empty
3308: body and other cases tests added (related to featue #1014)
3309:
3310: * src/classes/curl.C: bug if response is empty fixed (related to
3311: feature #1014)
3312:
3313: 2017-01-27 moko
3314:
3315: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
3316: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
3317: added (implements feature #1052)
3318:
3319: 2017-01-25 moko
3320:
3321: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
3322: method test added
3323:
3324: 2017-01-23 moko
3325:
3326: * src/classes/reflection.C: optimization: options->get replaced by
3327: hash iterator
3328:
3329: * tests/: 381.html, results/381.processed: now -> fixed date
3330:
3331: * src/main/pa_request.C: warning war
3332:
3333: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
3334: 5Mb (fixes bug #1058)
3335:
3336: * src/classes/curl.C: warning war
3337:
3338: * tests/: 381.html, results/381.processed: tests for ^json:string
3339: $.one-line(true) option added (related to feature #1124)
3340:
3341: * src/: classes/json.C, types/pa_value.h: $json-string
3342: $.one-line(true|false) options is now supported (implements
3343: feature #1124)
3344:
3345: * tests/: 380.html, results/380.processed: test for modified
3346: $.max_file_size added (related to bug #1014)
3347:
3348: * tests/: 379.html, results/auto.p: tests for rewritten http file
3349: load added (related to bug #1014)
3350:
3351: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3352: main/pa_common.C, main/pa_http.C: check_file_size added and used
3353: in curl / file load from disk and http, http file load rewritten
3354: (related to bug #1014)
3355:
3356: 2017-01-18 moko
3357:
3358: * tests/: 378.html, results/378.processed: tests for ^result[]
3359: added (related to feature #66)
3360:
3361: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
3362: Method::CO_WITHOUT_FRAME as frame still added in expression
3363: (related to feature #66)
3364:
3365: 2017-01-17 moko
3366:
3367: * tests/: 377.html, results/377.processed: test for different
3368: combinations of breaks in body and delimiter (related to bug
3369: #1077)
3370:
3371: * tests/: 376.html, results/376.processed: many ^break[] tests
3372: added (related to bug #1077)
3373:
3374: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
3375: passed to native method" exception added to avoid bugs due to
3376: WRITE_EXPR_RESULT skipped and native methods execution continues
3377: after ^break[] (related to bug #1077)
3378:
3379: 2017-01-14 moko
3380:
3381: * tests/: 330.html, results/330.processed: test results updated
3382: after ^break[] bugs where fixed (related to bug #1077)
3383:
3384: * tests/: 329.html, results/329.processed: test results updated
3385: after ^break[] bugs where fixed (related to bug #1077)
3386:
3387: * tests/results/320.processed: ^return[] added
3388:
3389: 2017-01-13 moko
3390:
3391: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
3392: classes/table.C, include/pa_request.h, main/execute.C,
3393: main/pa_request.C, targets/cgi/parser3.C,
3394: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
3395: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
3396: checked after each possible process/execute call (fixes bug
3397: #1077)
3398:
3399: 2016-12-29 moko
3400:
3401: * src/main/pa_common.C: warning war
3402:
3403: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
3404: include/pa_types.h, main/pa_request.C, main/pa_string.C:
3405: pa_file_size_limit added, ^math:random fixed for upper limit and
3406: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
3407: (related to feature #1014)
3408:
3409: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
3410: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
3411: (related to feature #1014)
3412:
3413: 2016-12-28 moko
3414:
3415: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
3416: warning war
3417:
3418: 2016-12-26 moko
3419:
3420: * tests/: 341.html, results/341.processed: test for
3421: ^table.hash[id;;$.type[string]] added (related to feature #1057)
3422:
3423: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
3424: (related to feature #1057)
3425:
3426: * src/types/pa_vdate.C: warning war continues...
3427:
3428: * src/: classes/date.C, classes/image.C, classes/table.C,
3429: include/pa_config_includes.h, types/pa_vfile.C: warning war
3430:
3431: * src/lib/gd/gifio.C: warning war / cleanup
3432:
3433: * src/lib/json/pa_json.C: warning war
3434:
3435: * src/classes/hash.C: warning war
3436:
3437: * src/types/pa_vfile.C: warning war
3438:
3439: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
3440: -Wall warning war continues
3441:
3442: * configure.ac: --with-build-warnings actualized
3443:
3444: 2016-12-25 moko
3445:
3446: * src/main/pa_exec.C: -wAll warning war
3447:
3448: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
3449: -wAll warning war
3450:
3451: * src/: include/pa_common.h, include/pa_sapi.h,
3452: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
3453: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
3454: -wAll warning war
3455:
3456: 2016-12-23 moko
3457:
3458: * src/lib/ltdl/Makefile.am: extra dist added
3459:
3460: * tests/results/344.processed: test result updated after $file.text
3461: prefetched in ^hash::create[$file] (related to feature #1075)
3462:
3463: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
3464: ^hash::create[$file] (related to feature #1075)
3465:
3466: 2016-12-22 moko
3467:
3468: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
3469: main/pa_request.C, main/pa_stylesheet_connection.C,
3470: types/pa_vfile.C: file_stat now return 64-bit size (implements
3471: #1014 under 32-bit unix versions)
3472:
3473: 2016-12-21 moko
3474:
3475: * tests/: 375.html, results/375.processed: test for exec returning
3476: stated file added (related to feature #1119)
3477:
3478: * src/classes/file.C: load should not return file with null body
3479: (fixes bug #1119)
3480:
3481: 2016-12-14 moko
3482:
3483: * tests/: 374.html, results/374.processed: test for $method.name
3484: added (related to feature #1117) plus method returning junction
3485: test
3486:
3487: 2016-12-13 moko
3488:
3489: * src/: include/pa_symbols.h, main/pa_symbols.C,
3490: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
3491: (implements feature #1117)
3492:
3493: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
3494: HEAD and TRACE can't have body (implements feature #1116)
3495:
3496: 2016-12-09 moko
3497:
3498: * tests/: 373.html, results/373.processed: tests for
3499: ^reflection:tainting added (related to feature #1098)
3500:
3501: * src/classes/reflection.C: ^reflection:tainting arguments order
3502: change (related to feature #1098)
3503:
3504: 2016-12-06 moko
3505:
3506: * src/: classes/reflection.C, include/pa_string.h,
3507: main/pa_string.C: ^reflection:tainting[$string] added (implements
3508: feature #1098)
3509:
3510: 2016-12-05 moko
3511:
3512: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
3513: (fixes bug #1114)
3514:
3515: 2016-12-04 moko
3516:
3517: * tests/: 206.html, results/206.processed: negative zero (0/-1)
3518: check added
3519:
3520: 2016-12-03 moko
3521:
3522: * tests/: 346-curl.html, results/346-curl.processed: test modified
3523: to test value.as_hash() usage
3524:
3525: * src/classes/curl.C: value.as_hash() used for correct hash
3526: processing
3527:
3528: * src/classes/reflection.C: exceptions texts fixes
3529:
3530: 2016-12-02 moko
3531:
3532: * tests/: 372.html, results/372.processed: tests for
3533: ^reflection:create[ $.class[name] $.constructor[name]
3534: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
3535: feature #1094)
3536:
3537: * src/types/pa_vmethod_frame.h: comment added: params should be
3538: declared outside of *_FRAME_ACTION as MethodParams destructor
3539: will be called in ~VNativeMethodFrame
3540:
3541: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
3542: ] minor fix
3543:
3544: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
3545: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
3546: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
3547: now supported (implements feature #1094) value::as_hash added
3548: (and should be used everywhere)
3549:
3550: * src/classes/reflection.C: cleanup
3551:
3552: 2016-12-01 moko
3553:
3554: * tests/: 356.html, results/356.processed: test for method
3555: junctions class name added to the resulting hash added (related
3556: to feature #1068)
3557:
3558: * src/classes/reflection.C: for method junctions class name added
3559: to the resulting hash (related to feature #1068)
3560:
3561: 2016-11-30 moko
3562:
3563: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
3564: exception (related to bug #1113)
3565:
3566: * src/types/pa_vhashfile.C: whitespace
3567:
3568: * src/main/pa_os.C: errno now returned as it should (fixes bug
3569: #1113)
3570:
3571: * tests/results/: 175.processed, 192.processed, 224.processed,
3572: 229.processed, 239.processed, 244.processed, 246.processed,
3573: 314.processed, 352.processed: tests results updated after method
3574: call exceptions improved as method now keeps its name
3575:
3576: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
3577: types/pa_vmethod_frame.h: method call exceptions improved as
3578: method now keeps its name
3579:
3580: * tests/: 224.html, 239.html, results/224.processed,
3581: results/239.processed: tests and tests results updated after
3582: Request::construct exception changed
3583:
3584: * src/: classes/reflection.C, main/execute.C: Request::construct
3585: exception optimized
3586:
3587: * tests/: 371.html, results/371.processed: test for
3588: WWrapper.get_element call in $.name.key[value] code added
3589: (related to feature #1091)
3590:
3591: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
3592: in $.name.key[value] code (related to feature #1091)
3593:
3594: 2016-11-29 moko
3595:
3596: * src/classes/op.C: VS warning war
3597:
3598: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
3599: C4239: nonstandard extension used : 'return' : conversion from
3600: 'Value' to 'Value &' (related to feature #1020)
3601:
3602: * src/: main/execute.C, types/pa_vmethod_frame.h,
3603: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
3604: used : 'return' : conversion from 'Value' to 'Value &' (related
3605: to feature #1020)
3606:
3607: * src/main/execute.C: VS warning war
3608:
3609: * src/targets/cgi/parser3.C: VS compatibility fix
3610:
3611: * src/include/pa_request.h: VS warning war
3612:
3613: * tests/: 370.html, results/370.processed: test for ^file::exec[
3614: ... $.stdin[$binary_file] ] added (related to bug #1044)
3615:
3616: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
3617: include/pa_string.h, main/pa_exec.C: pa_exec now supports
3618: $.stdin[$binary_file] (fixes bug #1044)
3619:
3620: 2016-11-28 moko
3621:
3622: * src/main/pa_exec.C: whitespace
3623:
3624: * src/main/pa_request.C: whitespace
3625:
3626: * tests/: 369.html, results/369.processed: test for
3627: $response:status usage added (related to feature #1099)
3628:
3629: * src/targets/cgi/parser3.C: HTTP response code used as exit status
3630: if < 100 (implements feature #1099)
3631:
3632: * src/targets/cgi/parser3.C: whitespace
3633:
3634: * src/targets/cgi/parser3.C: whitespace
3635:
3636: * tests/: 368.html, results/368.processed: test updated after
3637: ^reflection:filename[$method] added (related to feature #1053)
3638:
3639: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
3640: main/compile.y, main/execute.C, main/pa_request.C,
3641: types/pa_vclass.h: filename -> filespec,
3642: ^reflection:filename[$method] added (related to feature #1053)
3643:
3644: 2016-11-27 moko
3645:
3646: * tests/: 368.html, results/368.processed: test for
3647: reflection:filename[$class or object] added (related to feature
3648: #1053)
3649:
3650: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
3651: types/pa_vstateless_class.h: ^reflection:filename[$class or
3652: object] added (implements feature #1053)
3653:
3654: 2016-11-26 moko
3655:
3656: * src/: include/pa_request_info.h,
3657: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
3658: remove_absolute_uri -> strip_absolute_uri
3659:
3660: 2016-11-25 moko
3661:
3662: * src/: include/pa_request_info.h,
3663: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
3664: request_info.remove_absolute_uri added to remove possible
3665: http://site.name/ from $request:uri (implements feature #1112)
3666:
3667: 2016-11-24 moko
3668:
3669: * tests/: 367-curl.html, results/367-curl.processed: test for
3670: previous request headers clearing after redirect added (related
3671: to bug #1109)
3672:
3673: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
3674: response headers from previous requests are now cleared, only
3675: last request headers are collected (fixes bug #1109)
3676:
3677: * tests/results/: 266.processed, 321.processed, 356.processed:
3678: tests results updated as method name now added to the resulting
3679: hash for new syntax only (Imp1 compatimility fixed, related to
3680: feature #1068)
3681:
3682: * src/classes/reflection.C: method name now added to the resulting
3683: hash for new syntax only (Imp1 compatimility fixed, related to
3684: feature #1068)
3685:
3686: * tests/results/366.processed: test for native and parser
3687: implementation of ^use[] logic (related to feature #1074)
3688:
3689: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
3690: for native and parser implementation of ^use[] logic (related to
3691: feature #1074)
3692:
3693: 2016-11-23 moko
3694:
3695: * src/: classes/op.C, include/pa_request.h, main/compile.y,
3696: main/pa_request.C: @USE file now implemented as ^use[file;
3697: $.origin[origin_file] ] (implements feature #1074)
3698:
1.109 moko 3699: 2016-11-21 moko
3700:
1.110 moko 3701: * tests/: 365.html, results/365.processed: test for $caller bugs in
3702: 3.4.4 and $caller.method now tested (related to feature #1110)
3703:
3704: * tests/: 364.html, results/364.processed: $caller usage in
3705: different contexts now tested (related to feature #1110)
3706:
3707: * src/types/types.vcproj: +pa_vcaller_wrapper.h
3708:
3709: * src/types/Makefile.am: pa_vcaller_wrapper.h added
3710:
1.109 moko 3711: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
3712: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
3713: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
3714: used (implements feature #1110)
3715:
3716: 2016-11-20 moko
3717:
3718: * src/types/pa_vdouble.h: whitespace
3719:
3720: 2016-11-11 moko
3721:
3722: * tests/: 363.html, results/363.processed: more tests for feature
3723: #1091 (how parser methods work in expression context)
3724:
3725: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
3726: expressions strings are now written as strings, not values by
3727: write_as_string (related to feature #1091)
3728:
3729: * src/classes/op.C: to make more correct behavour in expression
3730: context
3731:
3732: 2016-11-07 moko
3733:
3734: * tests/: 362.html, results/362.processed: test for
3735: xsltParseStylesheetDoc caching as xsl modification after it added
3736: (related to bug #1108)
3737:
3738: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
3739: result now cached as xdoc is modified after it (fixes bug #1108)
3740:
3741: 2016-11-06 moko
3742:
3743: * src/types/pa_vxdoc.h: whitespace
3744:
3745: 2016-11-05 moko
3746:
3747: * src/types/pa_vmethod_frame.h: cleanup
3748:
3749: 2016-11-03 moko
3750:
3751: * tests/results/244.processed: more correct exception after method
3752: frames separation
3753:
3754: * src/types/pa_vmethod_frame.h: minor optimizaion
3755:
3756: * src/types/pa_method.h: optimization: params_count added
3757:
3758: * src/: classes/json.C, classes/op.C, classes/reflection.C,
3759: include/pa_request.h, main/execute.C, main/pa_request.C,
3760: types/pa_value.C, types/pa_vmethod_frame.C,
3761: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
3762: VMethodFrame now divided into VNativeMethodFrame,
3763: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
3764: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
3765: and used (related to feature #1104)
3766:
3767: 2016-11-02 moko
3768:
3769: * src/: classes/bool.C, classes/curl.C, classes/date.C,
3770: classes/double.C, classes/file.C, classes/hash.C,
3771: classes/hashfile.C, classes/image.C, classes/inet.C,
3772: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3773: classes/memcached.C, classes/op.C, classes/reflection.C,
3774: classes/regex.C, classes/string.C, classes/table.C,
3775: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
3776: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
3777: r.write (implements feature #1091)
3778:
3779: * src/main/execute.C: cleanup (related to feature #1104)
3780:
3781: * src/: include/pa_request.h, main/execute.C,
3782: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
3783: added, in_expression removed (implements feature #1104)
3784:
3785: 2016-10-31 moko
3786:
3787: * src/types/pa_value.C: whitespace
3788:
3789: 2016-10-28 moko
3790:
3791: * tests/results/244.processed: updated after error reporting fixed
3792: in pa_wcontext.C
3793:
3794: * src/types/pa_wcontext.C: error reporting fixed
3795:
3796: * src/types/pa_wcontext.h: whitespace
3797:
3798: * src/classes/image.C: not fully readed entries are no longer
3799: processed (fixes bug #1106)
3800:
3801: 2016-10-26 moko
3802:
3803: * src/classes/image.C: whitespace
3804:
3805: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
3806: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
3807: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
3808: longer required (related to feature #1091)
3809:
3810: * tests/results/: 264.processed, 350.processed: test results update
3811: reverted (whitespace optimization) after write_no_lang removed :)
3812: (related to feature #1091)
3813:
3814: * src/: classes/file.C, classes/hash.C, classes/op.C,
3815: classes/string.C, classes/table.C, classes/void.C,
3816: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
3817: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
3818: equal write_pass_lang (related to feature #1091)
3819:
3820: * tests/results/: 264.processed, 350.processed: test results
3821: updated (whitespace optimization) after write_assign_lang removed
3822: (related to feature #1091)
3823:
3824: * tests/: 361.html, results/361.processed: test for non-string
3825: ^untaint added (related to feature #1091)
3826:
3827: * src/: classes/curl.C, classes/date.C, classes/file.C,
3828: classes/hash.C, classes/op.C, classes/string.C,
3829: include/pa_request.h, main/execute.C: optimization:
3830: write_assign_lang removed as not required (first part of feature
3831: #1091 implementation)
3832:
1.108 moko 3833: 2016-10-12 moko
3834:
3835: * tests/: 360.html, results/360.processed: more test code (related
3836: to feature #1104)
3837:
3838: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
3839: include/pa_request.h, main/compile.y, main/execute.C: opcode
3840: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
3841: WContext is next task (implements feature #1104)
3842:
3843: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
3844: / CO_WITHOUT_WCONTEXT
3845:
3846: * tests/: 360.html, results/360.processed: test for in expression
3847: state (related to feature #1104)
3848:
3849: 2016-10-11 moko
3850:
3851: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
3852:
3853: * src/classes/op.C: default value removed from initializer
3854:
3855: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
3856:
3857: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
3858:
3859: 2016-10-10 moko
3860:
3861: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
3862: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
3863: to feature #42)
3864:
3865: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
3866: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
3867:
3868: 2016-10-08 moko
3869:
3870: * src/classes/double.C: whitespace
3871:
3872: 2016-10-07 moko
3873:
3874: * src/types/pa_vmethod_frame.h: reorder
3875:
3876: 2016-10-06 moko
3877:
3878: * src/classes/date.C: typo
3879:
3880: * src/types/pa_vmethod_frame.h: whitespace + cleanup
3881:
3882: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3883: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
3884: types/pa_vmethod_frame.h: params.get now returns Value&, not
3885: Value*
3886:
3887: * src/types/pa_vmethod_frame.C: params.get should return Value&.
3888:
3889: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
3890: removed; first as_* code rewrite
3891:
3892: 2016-10-05 moko
3893:
3894: * src/include/pa_request.h: whitespace
3895:
3896: * tests/: 359.html, results/359.processed: test for VCodeFrame and
3897: intercept_string added (related to feature #1097)
3898:
3899: * src/: classes/image.C, classes/op.C, classes/table.C,
3900: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3901: optimization: intercept_string removed (implements feature #1097)
3902:
3903: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
3904:
3905: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
3906: from VCodeFrame and WWrapper as not required
3907:
3908: 2016-10-04 moko
3909:
3910: * src/: classes/curl.C, classes/date.C, classes/double.C,
3911: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
3912: classes/int.C, classes/json.C, classes/op.C,
3913: classes/reflection.C, classes/string.C, classes/table.C,
3914: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3915: proces_to_value -> process after StringOrValue removed (related
3916: to feature #1020)
3917:
3918: * src/classes/form.C: whitespace
3919:
3920: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
3921:
3922: * tests/: 357.html, 358.html, results/357.processed,
3923: results/358.processed, results/auto.p: test for @conf
3924: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
3925:
3926: 2016-10-03 moko
3927:
3928: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
3929: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
3930: supported (implements feature #42)
3931:
3932: * src/types/pa_vregex.h: no reason for VRegex to be
3933: is_evaluated_expr
3934:
3935: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
3936: (implements feature #1095)
3937:
3938: 2016-10-01 moko
3939:
3940: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
3941: false by default (related to feature #1089)
3942:
3943: 2016-09-30 moko
3944:
3945: * src/types/pa_wcontext.h: cleanup
3946:
3947: 2016-09-29 moko
3948:
3949: * src/main/execute.C: whitespace
3950:
3951: * src/include/pa_request.h: whitespace
3952:
3953: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3954: classes/op.C, classes/table.C, include/pa_request.h,
3955: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
3956: types/pa_vobject.C, types/pa_wcontext.h: optimization:
3957: StringOrValue removed as it just slows down and adds complexity
3958: (implements feature #1020)
3959:
3960: 2016-09-28 moko
3961:
3962: * tests/: 356.html, results/266.processed, results/321.processed,
3963: results/356.processed: tests updated after name was added to
3964: method_info hash, test for ^reflection:method_info[junction]
3965: added (related to feature #1068)
3966:
3967: * src/classes/reflection.C: ^reflection:method_info[junction] now
3968: supported, method name added to the resulting hash (implements
3969: feature #1068)
3970:
3971: * tests/: 276.html, results/276.processed: more tests for
3972: ^reflection:delete[]
3973:
3974: * src/classes/reflection.C: fixed bug then ^reflection:delete
3975: didn't work on class and could damage native objects (like file)
3976:
3977: 2016-09-26 moko
3978:
3979: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
3980: results/345.processed, results/346-curl.processed,
3981: results/347-curl.processed, results/348.processed: numbers added
3982: to simplify diff analysis
3983:
3984: * tests/: 352.html, results/352.processed: test result updated as
3985: method name used
3986:
3987: * src/classes/reflection.C: method name used
3988:
3989: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
3990: its name
3991:
3992: * src/types/pa_method.h: whitespace
3993:
3994: * src/classes/reflection.C: both method and field with one name can
3995: exist.
3996:
3997: * src/classes/reflection.C: ^reflection:mixin added (implements
3998: feature #1089)
3999:
4000: * tests/: 355.html, results/355.processed: property appears in
4001: derived class if added in base test added
4002:
4003: * src/types/pa_vstateless_class.h: get_method declaration +
4004: whitespace
4005:
4006: * tests/: 354.html, results/354.processed: nice test from method
4007: and property with one name in class added
4008:
4009: 2016-09-23 moko
4010:
4011: * src/classes/reflection.C: ^reflection:method usage documented
4012:
4013: 2016-09-22 moko
4014:
4015: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
4016: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
4017: compile warning and GPF occures on VS2003 (related to feature
4018: #1087)
4019:
4020: * tests/: 350.html, results/350.processed: test added for
4021: $.encloser[] support in ^table::create (related to feature #11)
4022:
4023: * src/classes/table.C: another minor fix (related to feature #11)
4024:
1.107 moko 4025: 2016-09-21 moko
4026:
4027: * src/include/pa_config_fixed.h: vs2015 compilation fixes
4028:
4029: * src/: classes/curl.C, classes/file.C, classes/hash.C,
4030: classes/json.C, classes/string.C, classes/table.C,
4031: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
4032: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4033: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
4034: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
4035: pa_charsets, vs2015 warning war
4036:
4037: * src/classes/table.C: vs2015 warning war
4038:
4039: * src/types/pa_vdate.C: vs2015 warning war
4040:
4041: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
4042:
4043: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
4044: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
4045:
4046: * src/main/pa_common.C: vs2015 compilation fixes
4047:
4048: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
4049: vs2015 compilation fixes
4050:
4051: * src/main/pa_charset.C: vs2015 warning war
4052:
4053: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
4054:
4055: * src/main/pa_charset.C: vs2015 warning war
4056:
4057: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
4058:
4059: * src/types/pa_vdate.C: vs2015 compilation fix
4060:
4061: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
4062:
4063: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
4064: VS2015 compilation fixes
4065:
4066: * src/classes/table.C: minor fix (related to feature #11)
4067:
4068: * tests/results/282.processed: no longer skipping extra enclosers
4069: (related to feature #11)
4070:
4071: * src/classes/table.C: minor fix + no longer skipping extra
4072: enclosers (related to feature #11)
4073:
4074: * src/classes/table.C: minor optimization (related to feature #11)
4075:
4076: * src/classes/table.C: minor fix and optimization (related to
4077: feature #11)
4078:
4079: 2016-09-20 moko
4080:
4081: * tests/: 353.html, results/353.processed: test for
4082: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
4083: added (related to bug #1090)
4084:
4085: * src/main/compile.y: PC.cclass->is_vars_local() check added for
4086: one_big_piece (fixes bug #1090)
4087:
4088: * tests/: 229.html, results/229.processed: code coverage tests
4089:
4090: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
4091: body) was called
4092:
4093: * src/classes/op.C: whitespace
4094:
4095: * tests/: 323.html, results/323.processed: test for code junction
4096: should not be returned by ^reflection:class, ^reflection:base
4097:
4098: * src/classes/reflection.C: bugfix: code junction should not be
4099: returned by ^reflection:class, ^reflection:base
4100:
4101: * tests/: 323.html, 352.html, results/352.processed: no more
4102: exception for ^reflection:method[class;no-such-method] (related
4103: to feature #1087)
4104:
4105: * src/classes/reflection.C:
4106: ^reflection:method[class;no-such-method] : exception -> void
4107: (related to feature #1087)
4108:
4109: * src/include/pa_request.h: request::write_value added to allow
4110: write value without convertion (related to issue #1091)
4111:
4112: 2016-09-19 moko
4113:
4114: * src/main/pa_random.C: windows build fix
4115:
4116: * src/types/pa_vhash.h: warning war
4117:
4118: 2016-09-14 moko
4119:
4120: * tests/: 352.html, 552.html, results/352.processed,
4121: results/552.processed: test for ^reflection:method[] extension
4122: added (related to feature #1087)
4123:
4124: * tests/: 552.html, results/552.processed: test for
4125: ^reflection:method[] extension added (related to feature #1087)
4126:
4127: * src/classes/reflection.C: compatibility issue fixed, VClass
4128: dynamic_cast check added (related to feature #1087)
4129:
4130: * tests/: 351.html, results/351.processed: test for @auto[]
4131: inheritance bug diring ^process[] added (related to bug #1088)
4132:
4133: * src/: classes/op.C, main/pa_request.C,
4134: types/pa_vstateless_class.C: set_method now checks for @auto[] to
4135: disable it inheritance during ^process (fixes bug #1088)
4136:
4137: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
4138: added (implements feature #1087)
4139:
4140: 2016-09-13 moko
4141:
4142: * tests/: 349.html, results/auto.p: test for objects prototyping
4143: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
4144: to feature #1086)
4145:
4146: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
4147: types/pa_vobject.C: objects now are not class instances, but have
4148: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
4149: in @conf (implements feature #1086)
4150:
4151: 2016-09-08 moko
4152:
4153: * src/: classes/file.C, classes/mail.C, classes/string.C,
4154: classes/table.C, main/pa_http.C, main/pa_string.C,
4155: include/pa_string.h: cleanup: string::split limit argument
4156: removed as no longer required, pos_after no longer reference
4157: (related to feature #11)
4158:
4159: * src/classes/table.C, tests/results/348.processed: now exception
4160: is rised when invalid option is passed to ^table::create[]
4161:
4162: * tests/: 282.cfg, 282.html, results/282.processed: more code
4163: coverage tests
4164:
4165: * tests/: 348.html, results/348.processed: code coverage tests
4166: added
4167:
4168: * tests/: 348.html, results/348.processed: generic ^table::create[]
4169: tests
4170:
4171: * tests/: 035.html, results/035.processed, results/272.processed:
4172: tests updated after $.encloser[] support for ^table::create
4173: implementation (related to feature #11)
4174:
4175: * src/classes/table.C: $.encloser[] support for ^table::create
4176: finally added (implements feature #11)
4177:
4178: 2016-09-07 moko
4179:
4180: * src/include/pa_string.h: added StringSplitHelper as friend
4181: (related to feature #11)
4182:
4183: * src/include/pa_string.h: body and langs now protected, not
4184: private to allow inheritance (related to feature #11)
4185:
4186: * src/classes/table.C: lsplit optimized before cloning for
4187: ^table::create with $.encloser[] (related to feature #11)
4188:
4189: * src/classes/table.C: optimizaion: TableControlChars.separators
4190: added and used (related to feature #11)
4191:
4192: * src/classes/table.C: spelling:
4193:
4194: TableSeparators -> TableControlChars column -> separator
4195: separators -> control_chars
4196:
4197: 2016-09-06 moko
4198:
4199: * src/main/pa_string.C: whitespace
4200:
4201: * src/main/pa_string.C: whitespace
4202:
4203: 2016-09-01 moko
4204:
4205: * tests/: 347-curl.html, results/347-curl.processed: to make tests
4206: results OS-independent
4207:
4208: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
4209: compiler (related to feature #1042)
4210:
4211: 2016-08-15 moko
4212:
4213: * src/include/pa_string.h: whitespace
4214:
4215: * src/classes/table.C: whitespace
4216:
1.106 moko 4217: 2016-08-05 moko
4218:
4219: * tests/: 344.html, results/344.processed: test for
4220: ^hash::create[$file] added (related to feature #1075)
4221:
4222: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
4223: supported (implements feature #1075)
4224:
4225: 2016-08-04 moko
4226:
4227: * tests/: 341.html, results/341.processed: more code coverage tests
4228:
4229: * tests/: 346-curl.html, results/346-curl.processed: more code
4230: coverage tests for curl
4231:
4232: * tests/: 346-curl.html, results/346-curl.processed: more code
4233: coverage tests for curl
4234:
4235: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
4236: results/223.processed: code coverage tests: $.form[ $.table[] ]
4237: test added
4238:
4239: * tests/: 223-curl.html, results/223-curl.processed: more code
4240: coverage tests for curl
4241:
4242: 2016-08-03 moko
4243:
4244: * src/classes/curl.C: dlink(curl_library) now called not once, but
4245: until it will be loaded, allowing to find existing library.
4246:
4247: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
4248: results/347-curl.processed: more code coverage tests for curl
4249:
4250: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
4251: results/339-curl.processed, results/346-curl.processed: curl
4252: functionality tests
4253:
4254: 2016-08-02 moko
4255:
4256: * tests/: 339.html, results/339.processed: test for tables in
4257: ^file:load[] and ^curl:load[] (commented) added (related to
4258: feature #1042)
4259:
4260: * tests/: 345.html, results/345.processed: code coverage tests for
4261: file class
4262:
4263: * tests/: 344.html, results/344.processed: code coverage tests
4264:
4265: * tests/: 344.html, results/344.processed: mdate removed from
4266: output
4267:
4268: * src/classes/file.C: minor bugfix: is_text should be taked from
4269: fcontent.is_text_mode() if not set (related to feature #1061)
4270:
4271: * tests/: 344.html, results/344.processed: more tests
4272:
4273: * tests/: 343.html, 344.html, results/343.processed,
4274: results/344.processed: tests for ^file::create[ $.from-charset
4275: and $.to-charset ] (related to feature #1061)
4276:
4277: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
4278: aset_text_mode argument optimized
4279:
4280: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
4281: checkBOM now used in detect_binary_content (related to feature
4282: #1061)
4283:
4284: * src/main/pa_request.C: load_charset no longer required to_upper
4285:
4286: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
4287: preserves original file mode (if no $.mode specified)
4288:
4289: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
4290: ^file::create now supports $.from-charset[] and $.to-charset
4291: options (implements feature #1061), automatic transcode is done
4292: if text file is created from binary file and charset is detected.
4293:
4294: 2016-07-30 moko
4295:
4296: * src/classes/table.C: ^t.hash[..;] now supported (related to
4297: feature #1057)
4298:
4299: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
4300: added (related to feature #1057)
4301:
4302: * tests/: 286.html, results/286.processed: code tests coverage
4303:
4304: 2016-07-29 moko
4305:
4306: * src/classes/table.C: table size should be checked inside menu and
4307: foreach (related to feature #858)
4308:
4309: * src/: classes/curl.C, classes/file.C, classes/string.C,
4310: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
4311: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
4312: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
4313: charsets.get now does str_upper inside (related to feature #1061)
4314:
4315: * tests/: 342.html, results/342.processed: more code coverage tests
4316:
4317: * tests/: 342.html, outputs/342.processed: table menu code coverage
4318: + foreach test added (related to feature #858)
4319:
4320: * tests/: 341.html, results/341.processed: tests for
4321: ^table.hash[]{code} added + code coverage tests (related to
4322: feature #1057)
4323:
4324: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
4325: value} support (implements feature #1057)
4326:
4327: * src/classes/table.C: whitespace
4328:
4329: 2016-07-28 moko
4330:
4331: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
4332: from URL, if not specified query string removed from url-based
4333: filenames in ^curl:load[] and ^file::load[] (related to feature
4334: #1042)
4335:
4336: 2016-07-27 moko
4337:
4338: * tests/: 340.html, results/340.processed: test for
4339: transcode_text_result=false added (related to issue #1042)
4340:
4341: 2016-07-26 moko
4342:
4343: * src/types/pa_vfile.C: file name should not be empty (if file path
4344: is folder and ends with /) (related to feature #1042)
4345:
4346: * src/main/pa_http.C: whitespace optimizaion
4347:
4348: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
4349: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
4350: multiple headers, ^file::load supports headers transcoding
4351: (implements feature #1042)
4352:
4353: 2016-07-25 moko
4354:
4355: * src/include/pa_common.h: PA_DEFAULT added
4356:
4357: 2016-07-22 moko
4358:
4359: * tests/: 338.html, results/338.processed: test for
4360: $date.field(value) added (related to feature #1066)
4361:
4362: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
4363: $date.field(value) now supported for y/m/d/h/m/s (implements
4364: feature #1066)
4365:
1.105 moko 4366: 2016-07-21 moko
4367:
4368: * src/: classes/file.C, classes/image.C, include/pa_common.h,
4369: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
4370: arguments removed; image.C - absolute path shown in exception
4371: (implements feature #1071)
4372:
4373: * tests/: 235.html, results/235.processed: test and test result
4374: updated after static boundary in mail and Errors-To: mail header
4375: removed (related to feature #1047)
4376:
4377: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
4378: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
4379: used, static boundary in mail removed, Errors-To: mail header
4380: removed (implements feature #1047)
4381:
4382: 2016-07-20 moko
4383:
4384: * src/: classes/reflection.C, types/pa_vstateless_class.h:
4385: equest.classes(): Value -> VStateless_class, part 3 (related to
4386: issue #1051)
4387:
4388: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
4389: request.classes(): Value -> VStateless_class, part 2 (related to
4390: issue #1051)
4391:
4392: * tests/results/: 224.processed, 323.processed: classes without
4393: methods should not be methoded (related to issue #1051)
4394:
4395: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
4396: main/compile_tools.h, main/pa_request.C: request.classes(): Value
4397: -> VStateless_class, part 1 (related to issue #1051)
4398:
4399: * tests/: 337.html, results/337.processed: test for
4400: ^reflection:fields_reference[] and VHashReference class added
4401: (related to feature #1072)
4402:
4403: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
4404: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
4405: and VHashReference added, allowing ^reflection:fields_reference[]
4406: implementation (closes feature #1072)
4407:
4408: 2016-07-19 moko
4409:
4410: * tests/: 323.html, results/323.processed: we want to see
4411: "methoded"
4412:
4413: * tests/: 336.html, results/336.processed: test for $BASE:property
4414: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
4415: #1059)
4416:
4417: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
4418: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
4419: somebody_entered_some_class, $BASE:property works again,
4420: ^BASE:method[] bugs fixed (fixes bug #1059)
4421:
4422: 2016-07-14 moko
4423:
4424: * tests/: 335.html, results/335.processed: test for feature #1055
4425: added
4426:
4427: * src/classes/hash.C: bugfix: $._default was not copied if empty
4428: feature: ^hash.contains[_default] added (implements feature
4429: #1055)
4430:
4431: 2016-07-13 moko
4432:
4433: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
4434: should not call @autouse (http://www.parser.ru/forum/?id=83480)
4435:
4436: 2016-07-05 moko
4437:
4438: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
4439: in ^hash.foreach (related to feature #1073)
4440:
4441: 2016-07-04 moko
4442:
4443: * tests/: 134.html, 281.html, results/134.processed,
4444: results/281.processed: tests updated after hash blocking removed
4445: (related to feature #1073)
4446:
4447: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
4448: no longer blocks on change during foreach (implements feature
4449: #1073)
4450:
4451: 2016-06-17 moko
4452:
4453: * tests/: 330.html, results/330.processed: try exception source
4454: test added (related to bug in #1062)
4455:
4456: * tests/: 334.html, results/334.processed: Exception stack trace
4457: test added (related to bug in $1062)
4458:
4459: * src/classes/op.C: Exception trace now correctly restored and
4460: errors reported (related to bug #1062)
4461:
1.104 moko 4462: 2016-05-25 moko
4463:
4464: * src/main/compile.y: minor cleanup + beauty
4465:
4466: 2016-05-24 moko
4467:
4468: * tests/: 333.html, results/333.processed: more exceptions testing
4469:
4470: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
4471: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
4472: features #1056, #1026)
4473:
4474: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
4475: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
4476: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
4477: (implements feature #1056)
4478:
4479: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
4480: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
4481: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
4482: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
4483: feature #1026)
4484:
4485: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
4486: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
4487: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
4488: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
4489: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
4490: feature #1026)
4491:
4492: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
4493: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
4494: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
4495: SYMBOLS_CACHING define implemented (related to feature #1026)
4496:
4497: * src/main/main.vcproj: + ps_symbols
4498:
4499: * src/: include/Makefile.am, include/pa_string.h,
4500: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
4501: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
4502: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
4503: types/pa_vstateless_class.C: initial implementation for symbols
4504: cache (related to feature #1026)
4505:
4506: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
4507:
4508: * src/main/pa_globals.C: minor cleanup
4509:
4510: 2016-05-19 moko
4511:
4512: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
4513: (related to feature #1046)
4514:
4515: * tests/: 331.html, results/331.processed: test for
4516: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
4517: (related to feature #1051)
4518:
4519: * src/main/compile.y:
4520: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
4521: (implements feature #1054)
4522:
4523: 2016-05-18 moko
4524:
4525: * src/types/pa_vtable.C, tests/results/324.processed: no more
4526: "column not found" exception for ^table.no-such-method[] (related
4527: to feature #1046)
4528:
4529: * tests/: 261.html, results/261.processed: test added and updated
4530: after feature #1046 implementation
4531:
4532: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
4533: types/pa_vvoid.h: $string.anything works for whitespace strings,
4534: ^string.contains added for hash compatibility, $string.method no
4535: longer returns stting method (implements feature #1046)
4536:
4537: 2016-05-12 moko
4538:
4539: * src/classes/curl.C: content-type response header no longer
4540: ignored (fixes issue #1045)
4541:
4542: * tests/: 330.html, results/330.processed: test for incomplete
4543: finally execution when break occures added (related to issue
4544: #1077)
4545:
4546: * src/classes/op.C: bugfix: Request::skip reset is called before
4547: executing catch and finally code (fixes issue #1062)
4548:
4549: 2016-05-11 moko
4550:
4551: * tests/: 329.html, results/329.processed: test for invalid
4552: ^break[] behavour added (bug #1077)
4553:
4554: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
4555:
4556: 2016-04-24 moko
4557:
4558: * src/types/pa_vstateless_class.h: warning war
4559:
4560: 2016-04-17 moko
4561:
4562: * tests/: 328.html, results/328.processed: test for
4563: ^break(condition) and ^continue(condition) (related to feature
4564: #1063)
4565:
4566: * src/classes/op.C: ^break(condition) and ^continue(condition)
4567: implemented (feature #1063)
4568:
4569: 2016-04-12 moko
4570:
4571: * tests/results/280.processed: ordered hash now used for class
4572: methods and properties (test results updated for feature #1069)
4573:
4574: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
4575: to xdoc.C as under FreeBSD it was inited after and inheritance
4576: failed (related to issue #1051)
4577:
4578: * tests/: 320.html, results/320.processed: xdoc and xnode methods
4579: are printed to check inheritance (related to feature #1051)
4580:
1.103 moko 4581: 2016-04-09 moko
4582:
4583: * tests/results/320.processed: ordered hash now used for class
4584: methods and properties (test results updated for feature #1069)
4585:
4586: * src/types/pa_vstateless_class.h: ordered hash now used for class
4587: methods and properties (implements feature #1069)
4588:
4589: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
4590: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
4591: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
4592: feature #1051)
4593:
4594: 2016-04-07 moko
4595:
4596: * src/main/execute.C: returned Value in .CLASS case for VJunction
4597: (related to feature #1051)
4598:
4599: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
4600: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
4601: string constants deduplication (related to feature #1051)
4602:
4603: * tests/results/224.processed: test result updated (related to
4604: feature #1051)
4605:
4606: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
4607: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
4608: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
4609: types/pa_vstatus.h: classes hash now contains only
4610: VStateless_class derived objects, .CLASS is also allways
4611: VStateless_class derived object (related to feature #1051).
4612:
4613: 2016-04-06 moko
4614:
4615: * tests/results/323.processed: test result updated after feature
4616: #1051 implementation
4617:
4618: * src/: classes/classes.h, classes/op.C, classes/response.C,
4619: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
4620: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
4621: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
4622: types/pa_vresponse.C, types/pa_vresponse.h,
4623: types/pa_vstateless_class.h: base -> methoded_donor for static
4624: classes, type() moved from VStateless_class to VClass and
4625: Methoded (implements feature #1051)
4626:
4627: 2016-04-04 moko
4628:
4629: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
4630: beauty: put_class added (related to feature #1051)
4631:
4632: 2016-04-01 moko
4633:
4634: * tests/results/: 175.processed, 192.processed, 224.processed,
4635: 229.processed, 244.processed, 246.processed, 316.processed: test
4636: results updated as class.type() removed from error messages, only
4637: type() left (related to feature #1051)
4638:
4639: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
4640: classes/op.C, classes/reflection.C, main/compile.y,
4641: main/compile_tools.h, main/execute.C, main/pa_request.C,
4642: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
4643: types/pa_vmethod_frame.h, types/pa_vobject.h,
4644: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
4645: from VStateless_class, type() is used instead (related to feature
4646: #1051)
4647:
4648: * src/classes/mail.C: old logic restored.
4649:
4650: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
4651: classes/classes.h, classes/curl.C, classes/date.C,
4652: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
4653: classes/hashfile.C, classes/image.C, classes/inet.C,
4654: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
4655: classes/memcached.C, classes/memory.C, classes/reflection.C,
4656: classes/regex.C, classes/response.C, classes/string.C,
4657: classes/table.C, classes/xdoc.C, classes/xnode.C,
4658: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
4659: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
4660: feature #1051)
4661:
4662: 2016-03-30 moko
4663:
4664: * tests/: 327.html, results/224.processed, results/327.processed:
4665: test for TZ specification in ^date::create[], TZ is kept during
4666: ^date::create[$dt] (related to feature #1048)
4667:
4668: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
4669: ^date::create[], TZ is kept during ^date::create[$dt] (implements
4670: feature #1048)
4671:
4672: 2016-03-29 moko
4673:
4674: * tests/: 315.html, results/315.processed: test for timezone format
4675: +HHmm added (related to feature #1065)
4676:
4677: * src/classes/date.C: timezone format +HHmm now supported
4678: (implements feature #1065)
4679:
4680: 2016-03-28 moko
4681:
4682: * tests/: 202.html, results/131.processed, results/202.processed,
4683: results/224.processed, results/256.processed,
4684: results/315.processed: test results updated after %.2d now
4685: default for hours offset in iso-string (was %2d), test for
4686: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
4687: added (related to feature #1065)
4688:
4689: 2016-03-27 moko
4690:
4691: * src/types/pa_vdate.C: '+' sign for zero offset (related to
4692: feature #1065)
4693:
4694: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
4695: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
4696: added (implements feature #1065)
4697:
4698: 2016-03-24 moko
4699:
4700: * tests/: 202.html, results/202.processed: test $date.week added
4701: (related to bug #1067)
4702:
4703: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
4704: date (fix for bug #1067)
4705:
4706: 2016-03-10 moko
4707:
4708: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
4709:
1.102 moko 4710: 2015-12-07 moko
4711:
4712: * tests/: 326.html, results/326.processed: test for .CLASS &
4713: .CLASS_NAME optimization added (related to feature #844)
4714:
4715: 2015-11-17 moko
4716:
4717: * tests/: 323.html, results/323.processed: order added
4718:
4719: * tests/: 325.html, results/325.processed: double range test added
4720: (related to bug #1049)
4721:
4722: 2015-11-16 moko
4723:
4724: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
4725: added to disallow NaN and Infinity (fixes bug #1049)
4726:
4727: 2015-11-11 moko
4728:
4729: * tests/324.html: parser 3.4.3 execution support added (related to
4730: feature #1017)
4731:
4732: * tests/: 324.html, results/324.processed: test for
4733: GET_ELEMENT4CALL feature added (feature #1017)
4734:
1.101 moko 4735: 2015-10-29 moko
4736:
4737: * operators.txt: updated for 3.4.4
4738:
4739: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
4740:
4741: * src/main/pa_exec.C: get_exit_status implemented for Windows
4742: (related to bug #1043)
4743:
4744: 2015-10-28 moko
4745:
4746: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
4747: hangup during ^file::exec (fixes bug #1043)
4748:
1.100 moko 4749: 2015-10-27 moko
4750:
4751: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
4752:
1.99 moko 4753: 2015-10-26 moko
4754:
1.100 moko 4755: * tests/322.html, src/classes/reflection.C: arguments reorder
4756: (related to issue #1041)
4757:
4758: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
4759: Copyright year updated
4760:
1.99 moko 4761: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
4762: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
4763: classes/form.C, classes/hash.C, classes/hashfile.C,
4764: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
4765: classes/mail.C, classes/math.C, classes/memcached.C,
4766: classes/memory.C, classes/op.C, classes/reflection.C,
4767: classes/regex.C, classes/response.C, classes/string.C,
4768: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
4769: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
4770: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
4771: include/pa_config_fixed.h, include/pa_config_includes.h,
4772: include/pa_dictionary.h, include/pa_dir.h,
4773: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
4774: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
4775: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
4776: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
4777: include/pa_request_charsets.h, include/pa_request_info.h,
4778: include/pa_sapi.h, include/pa_socks.h,
4779: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
4780: include/pa_stack.h, include/pa_string.h,
4781: include/pa_stylesheet_connection.h,
4782: include/pa_stylesheet_manager.h, include/pa_table.h,
4783: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
4784: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
4785: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
4786: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
4787: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
4788: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
4789: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
4790: main/compile.y, main/compile_tools.C, main/compile_tools.h,
4791: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
4792: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
4793: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
4794: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
4795: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
4796: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
4797: main/pa_string.C, main/pa_stylesheet_connection.C,
4798: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
4799: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
4800: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
4801: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
4802: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
4803: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
4804: targets/isapi/parser3isapi.C, types/pa_junction.h,
4805: types/pa_method.h, types/pa_property.h, types/pa_value.C,
4806: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
4807: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
4808: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
4809: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
4810: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4811: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
4812: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
4813: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
4814: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
4815: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
4816: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
4817: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
4818: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
4819: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
4820: types/pa_vresponse.C, types/pa_vresponse.h,
4821: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
4822: types/pa_vstateless_object.h, types/pa_vstatus.C,
4823: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
4824: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
4825: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4826: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
4827: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
4828:
4829: * src/targets/cgi/parser3.C: year updated
4830:
4831: * src/classes/reflection.C: VS2003 compatibility fixed (related to
4832: issue #1041)
4833:
4834: * tests/: 323.html, results/323.processed: test for base classes
4835: added
4836:
4837: * tests/: 261.html, results/261.processed: updated after better
4838: error reporting done for $string.key exception
4839:
4840: * src/types/pa_vstring.h: better error report for $string.key
4841: exception
4842:
4843: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
4844: copied as VObject::get_element4call to remove extra virtual call
4845:
4846: * tests/: 322.html, results/322.processed: test for
4847: ^reflection:is[] added (related to feature #1041)
4848:
4849: * src/classes/reflection.C: ^reflection:is empty value is void
4850: (related to feature #1041)
4851:
4852: * src/classes/reflection.C:
4853: ^reflection:is[class_name|code|method;[context;]element_name]
4854: added (implements feature #1041)
4855:
4856: 2015-10-24 moko
4857:
4858: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
4859:
1.98 moko 4860: 2015-10-22 moko
4861:
4862: * tests/: 321.html, results/321.processed: test for
4863: ^reflection:method_info[] file detection added
4864:
4865: * tests/: 320.html, results/320.processed: test for
4866: ^reflection:class_by_name[class_name] added (related to feature
4867: #993)
4868:
4869: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
4870: added (implements feature #993)
4871:
4872: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
4873: (related to feature #1017)
4874:
4875: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
4876: added (related to issue #1039)
4877:
4878: * src/main/pa_request.C: ^throw origin fixed (related to feature
4879: #1039)
4880:
4881: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
4882: for VDate
4883:
4884: * tests/results/182.processed: updated after feature #1038
4885: implemented
4886:
4887: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
4888: compile-time exception origin added (test for feature #1039)
4889:
4890: * src/: include/pa_request.h, main/compile.C, main/compile.y,
4891: main/pa_request.C: exception unification: compile-time exceptions
4892: now have origin, @USE origins also tracked (implements feature
4893: #1039)
4894:
4895: 2015-10-20 moko
4896:
4897: * src/main/pa_request.C: cleanup
4898:
4899: 2015-10-15 moko
4900:
4901: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
4902:
4903: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
4904: types/pa_vtable.C: new feature: no more $table.method and
4905: $hash.method, aliases for _at, _count, _key (related to feature
4906: #1017)
4907:
1.97 moko 4908: 2015-10-14 moko
4909:
1.98 moko 4910: * tests/: 317.html, results/317.processed: test for
4911: ^string.unescape[] added (related to feature #120)
4912:
1.97 moko 4913: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
4914: defined" bug (described in issue #1036)
4915:
4916: * tests/: 247.html, results/247.processed: test for checkBOM added
4917: (test for bug #1037)
4918:
4919: * src/: include/pa_charsets.h, main/pa_charsets.C,
4920: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
4921: it's not enforced, skips BOM signature if it complies charset
4922: (fixes bug #1037)
4923:
4924: 2015-10-13 moko
4925:
4926: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
4927: linking
4928:
4929: * src/classes/inet.C: vs2003 compilation fix
4930:
4931: * src/classes/math.C: warning war
4932:
4933: * src/lib/punycode/pa_punycode.c: warning war
4934:
4935: 2015-10-12 moko
4936:
4937: * src/lib/punycode/pa_punycode.c: warning war
4938:
4939: * parser3.sln: moved parser3 first, to make it default startup
4940: project
4941:
4942: * buildall: parser "mirror" now used for external libs sources
4943: (implements feature #1036)
4944:
4945: * buildall: most external libs are updated to their current
4946: versions (related to feature #1036)
4947:
4948: * src/classes/image.C: more tags added
4949:
4950: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
4951:
4952: 2015-10-11 moko
4953:
4954: * src/classes/curl.C: minor optimization (related to feature #1035)
4955:
4956: 2015-10-09 moko
4957:
4958: * src/classes/curl.C: pa_strdup added for strings from curl
4959: (related to feature #1035)
4960:
4961: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
4962: ULLONG_MAX definition
4963:
4964: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
4965: (implements feature #1035)
4966:
4967: * src/main/pa_charset.C: String::Body(String::C) used
4968:
4969: * src/main/pa_charset.C: exceptions unified
4970:
4971: * src/: include/pa_charset.h, main/pa_charset.C: declarations
4972: unified
4973:
4974: * src/: classes/file.C, classes/image.C, classes/mail.C,
4975: classes/op.C, classes/xdoc.C, classes/xnode.C,
4976: include/pa_string.h, main/pa_request.C, main/pa_string.C,
4977: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
4978: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
4979: String::Body(String::C) constructor added (related to bug #957)
4980:
4981: * src/classes/file.C: minor optimization
4982:
4983: * src/include/pa_hash.h: hash.get(char*) added, to minimize
4984: Cord(char*) autocreation (related to bug #957)
4985:
4986: * src/: classes/string.C, main/untaint.C: minor optimizations
4987:
4988: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
4989: String(char*, Lang, length) removed, String(C(), Lang) used
4990: instead (related to bug #957)
4991:
4992: 2015-10-08 moko
4993:
4994: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
4995: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
4996: main/untaint.C: Now char * is converted to CORD only using
4997: AS_CORD() to check for empty cord bug (fixes bug #957)
4998:
4999: * src/include/pa_hash.h: fixed compilation without
5000: HASH_CODE_CACHING
5001:
5002: * src/classes/string.C:
5003: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
5004: feature #120)
5005:
5006: * src/main/pa_common.C: reduce js flags checks count (related to
5007: feature #120)
5008:
1.96 moko 5009: 2015-10-07 moko
5010:
5011: * tests/: 275.html, results/275.processed: test modified after
5012: unsigned long long int support implemented (feature #1034)
5013:
5014: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
5015: pa_atoul added for unsigned long long int support
5016:
5017: 2015-10-06 moko
5018:
5019: * src/types/pa_vdate.C: INT_MAX used
5020:
5021: 2015-10-03 moko
5022:
5023: * tests/: 302.html, results/302.processed: test for bug #1023
5024: (\u2028, \u2029 escaping) added
5025:
5026: * src/main/untaint.C: \u2028, \u2029 are now escaped in
5027: json:string[] (fixes bug #1023)
5028:
5029: 2015-09-29 moko
5030:
5031: * tests/305.html: try-catch added for OS without ipv6 support
5032:
5033: * src/lib/json/pa_json.C: more unique prefixes for Solaris
5034: compilation
5035:
5036: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
5037: main/execute.C, types/pa_value.h, types/pa_vhash.h,
5038: types/pa_vtable.C, types/pa_vtable.h: get_element4call
5039: implemented to distinguish ^hash.method from $hash.field
5040: (implements feature #1017)
5041:
5042: * src/lib/punycode/pa_punycode.c: warning war
5043:
5044: * src/include/pa_config_includes.h: warning war
5045:
5046: * src/include/pa_config_includes.h: pragma warning actualized a bit
5047:
5048: * src/include/pa_config_includes.h: warning war
5049:
5050: * src/include/pa_hash.h: clang compilation fix
5051:
5052: 2015-09-27 moko
5053:
5054: * src/main/compile.tab.C: Bison 3 is now default
5055:
5056: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
5057:
5058: 2015-09-25 moko
5059:
5060: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
5061: works with undefined HASH_ORDER (related to feature #196)
5062:
5063: 2015-09-24 moko
5064:
5065: * tests/: 027.html, results/027.processed: test modified to test
5066: ^hash.sort (feature #196)
5067:
5068: * src/: classes/hash.C, include/pa_hash.h:
5069: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
5070: added (implements feature #196)
5071:
5072: * tests/: 316.html, results/316.processed: Added test for bug #1025
5073: (exception handling in non-cached ^cache), plus for "it does not
5074: have logical value" and "$exception.handled value must be either
5075: boolean or string 'cache'" exceptions.
5076:
5077: * src/classes/op.C: ^cache: exceptions now handled in non-cached
5078: code (fixes bug #1025)
5079:
1.95 moko 5080: 2015-09-23 moko
5081:
5082: * src/classes/table.C: warning war
5083:
5084: * src/: classes/math.C, types/pa_vcookie.C: warning war
5085:
5086: * src/classes/file.C: warning war
5087:
5088: * src/: include/pa_table.h, main/pa_table.C: warning war
5089:
5090: * src/: main/pa_request.C, classes/date.C: warning war
5091:
5092: * src/: types/pa_vdate.C, classes/op.C: warning war
5093:
5094: * tests/: 122.html, results/122.processed: win sync: to remove
5095: differences with OS that doesn't keep timezone change history
5096:
5097: * src/types/pa_vdate.C: tzset() should be called in Windows after
5098: TZ change (related to feature #36)
5099:
5100: * tests/: 075.html, results/075.processed: win sync: to remove
5101: differences with OS that doesn't keep timezone change history
5102:
5103: * tests/: 315.html, results/315.processed: win sync: to remove
5104: differences with OS that doesn't keep timezone change history
5105:
5106: * tests/: 256.html, results/256.processed: win sync: to remove
5107: differences with OS that doesn't keep timezone change history
5108:
5109: * tests/: 124.html, results/124.processed: win results sync: to
5110: avoid hitting time change hole.
5111:
5112: * src/types/pa_vdate.C: static returned. :)
5113:
5114: 2015-09-22 moko
5115:
5116: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
5117:
5118: * tests/results/131.processed: more tests for feature #1032
5119:
5120: * src/classes/date.C: minor fix related to feature #1032
5121:
5122: * operators.txt: ISO date creation documented (related to feature
5123: #1032)
5124:
5125: * operators.txt: iso-string documented (related to feature #1032)
5126:
5127: * tests/: 315.html, results/315.processed: more tests added
5128: (related to feature #1032)
5129:
5130: * tests/: 131.html, results/131.processed: date range checks
5131: updated (related to feature #36)
5132:
5133: * tests/: 315.html, results/057.processed, results/315.processed:
5134: test added for ISO date support (related to issue #315)
5135:
5136: * src/classes/date.C: more readable exceptions in date creation
5137: (related to ticket #1032)
5138:
5139: 2015-09-18 moko
5140:
5141: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
5142: added (related to issue #1032)
5143:
5144: * tests/results/256.processed, src/classes/json.C: iso-string
5145: documented (related to issue #1032)
5146:
5147: * tests/: 256.html, results/256.processed: ISO date check added
5148: (related to issue #1032)
5149:
5150: * tests/: 057.html, results/057.processed, results/224.processed:
5151: tests results updated after ISO date support implemented (related
5152: to feature #1032)
5153:
5154: * src/: classes/date.C, classes/image.C, types/pa_value.h,
5155: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
5156: ^date::create[string] constructor formalized, ^date.iso-string[]
5157: added (implements feature #1032)
5158:
5159: 2015-09-05 moko
5160:
5161: * operators.txt: actualized
5162:
5163: * operators.txt: date changes documented (related to ticket #36)
5164:
5165: 2015-09-04 moko
5166:
5167: * src/types/pa_vdate.C: warning war
5168:
5169: * src/: classes/op.C, types/pa_vhashfile.C: warning war
5170:
5171: 2015-09-03 moko
5172:
5173: * tests/results/096.processed: test result updated for 0..9999 year
5174: date range support (related to feature #36)
5175:
5176: * tests/: 314.html, results/314.processed: test for
5177: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
5178: bug #1031)
5179:
5180: * src/classes/string.C: Static calls fixed for ^string:base64[],
5181: ^string:idna[], ^string:js-escape[] (closes bug #1031)
5182:
1.116 moko 5183: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
5184: configure.in -> configure.ac
1.95 moko 5185:
1.116 moko 5186: * configure, configure.in, src/include/pa_config_auto.h.in: more
5187: correct timezone check for FreeBSD Warning war: configure.in ->
5188: configure.ac
1.95 moko 5189:
5190: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 5191: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
5192: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
5193: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
5194: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
5195: src/main/Makefile.am, src/targets/apache/Makefile.am,
5196: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 5197: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
5198: check added
5199:
5200: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
5201:
5202: * tests/results/: 124.processed, 224.processed: test resuls updated
5203: for new date implementation (related to feature #36)
5204:
5205: * src/: classes/date.C, classes/image.C, include/pa_common.h,
5206: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
5207: types/pa_vdate.h: new double date implementation with internal
5208: support for extended 0..9999 year range, default timezone support
5209: (related to feature #36)
5210:
5211: 2015-08-28 moko
5212:
5213: * src/types/pa_vmail.C: fixed $mail:received.date calculations
5214: (fixes bug #1030)
5215:
5216: 2015-08-21 moko
5217:
5218: * src/classes/inet.C: snprintf size "bug" commented
5219:
5220: * src/main/pa_common.C: snprintf comments updated
5221:
5222: 2015-08-16 moko
5223:
5224: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
5225:
5226: 2015-08-11 moko
5227:
5228: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
5229: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
5230: can be null (fixes bug #1029)
5231:
5232: 2015-08-06 moko
5233:
1.116 moko 5234: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
5235: pa_vdate.C added
1.95 moko 5236:
5237: 2015-08-05 moko
5238:
5239: * tests/: 313.html, results/313.processed: test for
5240: ^table.count[columns] and ^table.flip[] with nameless tables
5241: (feature #1003)
5242:
5243: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
5244: max_cell added, now ^table.count[columns] and ^table.flip[] works
5245: correctly for nameless tables (implements feature #1003)
5246:
5247: 2015-08-03 moko
5248:
5249: * tests/312.html: test for ^table.append[$hash] and
5250: ^table.insert[$hash] added (related to feature #1028)
5251:
5252: * src/classes/table.C: ^table.append[$hash] and
5253: ^table.insert[$hash] now supported (implements feature #1028)
5254:
5255: * tests/: 312.html, results/312.processed: test row copy in
5256: ^table.hash[; $.type[table] ] added (related to feature #1016)
5257:
5258: * src/classes/table.C: row copy now created in ^table.hash[;
5259: $.type[table] ] (related to feature #1016)
5260:
5261: 2015-07-29 moko
5262:
5263: * tests/: 312.html, results/312.processed: test for ^table.delete[]
5264: added (related to feature #1016)
5265:
5266: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
5267: ^table.delete[] added to delete current row (related to feature
5268: 1016)
5269:
5270: 2015-07-28 moko
5271:
5272: * tests/: 312.html, results/312.processed: test for
5273: $table.column[value] and ^table.insert{row} (related to feature
5274: #1016)
5275:
5276: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
5277: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
5278: ^table.insert{row} are now implemented (feature #1016)
5279:
5280: * src/include/pa_array.h: Optimization: bool reverse removed from
5281: append(), insert() added, memmove arguments order in remove()
5282: fixed (related to feature #1016)
5283:
5284: 2015-07-23 moko
5285:
5286: * src/classes/json.C: tainted json and empty json exception added
5287: (implements feature #1015)
5288:
5289: * tests/: 311.html, results/311.processed: empty json and tainted
5290: json exception test added (related to issue #1015)
5291:
5292: 2015-07-22 moko
5293:
5294: * tests/: 311.html, results/311.processed: test for UTF-8
5295: processing added
5296:
5297: * tests/: 311.html, results/311.processed: test for
5298: json_exception_with_source added (related to issue #394)
5299:
5300: * src/classes/json.C: json_exception_with_source added (implements
5301: feature #394)
5302:
5303: 2015-06-29 moko
5304:
5305: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
5306: directories are now correctly determined if _d_type == DT_UNKNOWN
5307: (closes bug #1027)
5308:
5309: 2015-06-10 moko
5310:
5311: * src/types/pa_vxnode.h: extern "C" not requred and causes build
5312: error if libxml has LIBXML_ICU_ENABLED.
5313:
5314: 2015-06-04 moko
5315:
5316: * tests/099.html: ups, reverting
5317:
5318: * tests/: 099.html, 309.html, 310.html, results/309.processed,
5319: results/310.processed: tests for $response:body[ $.file[] ] and
5320: $response:last-modified added
5321:
5322: * src/main/pa_request.C: last-modified check fixed
5323:
5324: 2015-06-03 moko
5325:
5326: * tests/: 204.html, 205.html, 293.html, results/204.processed,
5327: results/205.processed, results/293.processed: $response:headers
5328: logging added (tests for feature #1007)
5329:
5330: * src/: include/pa_common.h, include/pa_request.h,
5331: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
5332: $response:headers are now in uppercase (closes feature #1007)
5333:
5334: 2015-06-02 moko
5335:
5336: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
5337: build errors reverted for clang compatibility
5338:
5339: 2015-06-01 moko
5340:
5341: * src/include/pa_memory.h: -pedantic build errors fixed
5342:
5343: * src/classes/math.C: -pedantic build error fixed
5344:
5345: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
5346:
5347: 2015-05-31 moko
5348:
5349: * src/classes/table.C: USE_STRINGSTREAM optimized
5350:
5351: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
5352: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
5353: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
5354: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
5355: types/pa_vxnode.h: warning war (-pedantic flag)
5356:
5357: 2015-05-28 moko
5358:
5359: * tests/: 308.html, results/308.processed: test for
5360: ^table::create[$t;], etc work added (related to bug #975)
5361:
5362: * src/classes/table.C: check_option_param removed,
5363: ^table::create[$t;], etc now works (fixes bug #975)
5364:
5365: 2015-05-27 moko
5366:
5367: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
5368: (Debian jessie) fixed (closes issue #1024)
5369:
5370: * tests/Makefile: sort added as in Debian jessie list become
5371: unsorted
5372:
5373: 2015-05-18 moko
5374:
5375: * tests/: 201.html, results/201.processed: test for
5376: ^string.trim[what] feature #1022
5377:
5378: * src/classes/string.C: ^string.trim[what] now supported,
5379: implements feature #1022
5380:
5381: 2015-05-17 moko
5382:
5383: * tests/results/185.processed: test result updated as feature #1021
5384: implemented (left/right accept negative parameter)
5385:
5386: * src/classes/string.C: left/right now accept negative parameter
5387: (implements feature #1021)
5388:
5389: 2015-05-08 moko
5390:
5391: * src/classes/math.C: isalnum -> pa_isalnum
5392:
5393: * src/main/execute.C: optimization in getter-junction processing
5394: (related to issue #997)
5395:
5396: 2015-05-07 moko
5397:
5398: * tests/: 307.html, results/307.processed: test for issue #997
5399: added
5400:
5401: * src/main/execute.C: process_getter result now checked if junction
5402: returned (closes issue #997)
5403:
5404: * tests/: 305.html, results/305.processed: sort added to ignore
5405: different order
5406:
5407: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
5408: assignment (closes issue #994)
5409:
5410: * tests/: 306.html, results/306.processed: test for issue #994
5411: added
5412:
5413: * tests/: 303.html, results/303.processed: two more errors tested
5414:
5415: 2015-05-06 moko
5416:
5417: * tests/: 305.html, results/305.processed: test for name2ip &
5418: ip2name added (related to feature #992)
5419:
5420: * tests/: 303.html, 304.html, results/303.processed,
5421: results/304.processed: tests for idna conversion added (related
5422: to issue #849)
5423:
5424: 2015-05-02 moko
5425:
5426: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
5427: implemented
5428:
5429: 2015-04-30 moko
5430:
5431: * src/main/pa_http.C: idna_host added, related to issue #849
5432:
5433: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
5434: (related to issue #849)
5435:
5436: 2015-04-24 moko
5437:
5438: * src/types/pa_vjunction.C: warning war
5439:
5440: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
5441: unification
5442:
5443: * src/lib/punycode/pa_idna.c: warning war
5444:
5445: 2015-04-22 moko
5446:
5447: * src/main/main.vcproj: punycode include path added
5448:
5449: * src/lib/punycode/pa_idna.c: windows compile error fixed
5450:
5451: * src/lib/punycode/pa_idna.c: warning war
5452:
5453: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
5454: project file added
5455:
5456: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
5457:
5458: * src/include/pa_memory.h: warning war
5459:
5460: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
5461: ^string:idna[xn--...], ^string.idna[] - idna conversion support
5462: implemented (related to feature #849)
5463:
5464: * configure.in, src/main/Makefile.am,
5465: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
5466: libpunycode added in Unix
5467:
5468: 2015-04-21 moko
5469:
5470: * configure.in: large files support
5471:
5472: 2015-04-15 moko
5473:
5474: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
5475: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
5476: pa_punycode.h: initial version for punycode/idna support library
5477: (ticket #849)
5478:
5479: 2015-04-08 moko
5480:
5481: * src/: classes/curl.C, classes/date.C, classes/file.C,
5482: classes/image.C, classes/mail.C, classes/reflection.C,
5483: classes/string.C, classes/xnode.C, include/pa_request.h,
5484: include/pa_string.h, include/pa_stylesheet_connection.h,
5485: main/compile.y, main/compile_tools.h, main/execute.C,
5486: main/pa_common.C, main/pa_request.C, main/pa_string.C,
5487: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
5488: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
5489: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
5490: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
5491: clang compiler warnings (closes issue #1018)
5492:
5493: * src/include/pa_string.h: String::Body comparation operators with
5494: char * added (related to issue #958)
5495:
5496: 2015-04-07 moko
5497:
5498: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
5499: pa_malloc/pa_free to remove system malloc/free usage (related to
5500: issue #1018)
5501:
5502: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
5503: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
5504: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
5505: main/pa_http.C, main/pa_request.C, main/pa_string.C,
5506: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
5507: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
5508: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
5509: malloc/strdup/free replaced with pa_ version and checks for
5510: accidental use of non-pa_ version added (related to issue #1018)
5511:
5512: 2015-04-03 moko
5513:
5514: * buildall: pcre-8.33 -> pcre-8.36
5515:
5516: * src/: main/compile.y, classes/form.C, classes/mail.C,
5517: classes/op.C, classes/string.C, main/compile.tab.C,
5518: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
5519: main/pa_sql_driver_manager.C, types/pa_vfile.C,
5520: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
5521: ticket #958)
5522:
5523: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
5524: main/pa_common.C, main/pa_http.C, main/pa_request.C,
5525: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
5526: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
5527: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
5528: $request:headers, $request:method added (implements feature
5529: #1007)
5530:
5531: 2015-03-17 misha
5532:
5533: * tests/302.html: - test for
5534: ^json:string[...;$._default[method-name]]
5535:
5536: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
5537: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
5538: option $._default[method-name] is specified in ^json:string[], a
5539: method with specified name will be called for classes/objects
5540: serialization ( new feature: #982 )
5541:
5542: 2015-03-16 misha
5543:
5544: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
5545: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
5546: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
5547: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
5548: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
5549: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
5550: types/pa_vmemory.h, types/pa_vmethod_frame.C,
5551: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
5552: types/pa_vrequest.h, types/pa_vstateless_class.C,
5553: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
5554: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
5555: $var.CLASS_NAME now have special opcodes. This can be switched
5556: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
5557: on pa_opcode.h ( new feature: #844 )
5558:
5559: 2015-03-15 misha
5560:
5561: * tests/075.html: - test for $response:header[]
5562:
5563: * src/types/pa_vresponse.C: - $response:header[] deletes header
5564: that was set earlie ( new feature: #1001 )
5565:
5566: 2015-03-12 misha
5567:
5568: * tests/246.html: - more tests for ^hash._at[]
5569:
5570: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
5571: accepts second param [key|value|hash] ( new feature: #1012 )
5572:
5573: 2015-03-09 moko
5574:
5575: * src/types/pa_vmail.C: exception for everything but
5576: $mail:received, closes issue #1011
5577:
5578: 2015-02-20 moko
5579:
5580: * tests/: 275.html, results/275.processed: hex detection in
5581: pa_atoui fix test (closes issue #1010)
5582:
5583: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
5584: issue #1010)
5585:
5586: 2015-02-17 moko
5587:
5588: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
5589: tainted.
5590:
5591: 2015-02-03 misha
5592:
5593: * tests/301.html: - test for ^json:string($double) causes
5594: exception. bugfix: #1008
5595:
5596: * src/classes/json.C: - ^json:string($double) causes exception.
5597: bugfix: #1008
5598:
5599: * tests/014.html: - updated for work with ^hash.delete[]
5600:
5601: 2015-01-12 misha
5602:
5603: * src/: classes/form.C, include/pa_common.h,
5604: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
5605: types/pa_vform.h: - supports body with PUT method as well ( new
5606: feature: #1006 )
5607:
5608: * src/classes/file.C: - warnings war
5609:
5610: 2015-01-11 misha
5611:
5612: * tests/300.html: - test for ^hash.delete[] is added
5613:
5614: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
5615: feature: #989 ) - tiny optimization in intersects
5616:
5617: 2015-01-06 moko
5618:
5619: * src/types/pa_vmail.C: file names transcode added, to and cc added
5620: with transcode, attachments detection fixed
5621:
5622: * src/main/pa_request.C: filling mail received after cgi/auto.p
5623: load to allow charset switch (related to issue #996)
5624:
5625: 2014-12-31 moko
5626:
5627: * src/types/pa_vmail.C: from and subject now transcoded if not
5628: UTF-8 source charset (fixes issue 996)
5629:
5630: * src/main/pa_exception.C: fixed string from stack bug (closes
5631: issue #1000)
5632:
5633: 2014-12-11 misha
5634:
5635: * src/types/pa_vhashfile.C: - check if key is not empty before
5636: access ( bug fix: #1005 )
5637:
5638: 2014-11-13 misha
5639:
5640: * src/main/compile.y: - PC.append does not reset to false while
5641: creating a new class. bugfix: #990
5642:
5643: * tests/299.html: - test for creation class after working with
5644: partial class (create+append)
5645:
5646: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
5647: #995
5648:
5649: * tests/232.html: - test for @get[def] added
5650:
5651: 2014-10-12 moko
5652:
5653: * src/lib/pcre/pcre_internal.vcproj: correct path
5654:
5655: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
5656: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
5657: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
5658: targets/apache/ApacheModuleParser3.vcproj,
5659: targets/apache/ApacheModuleParser3Core.vcproj,
5660: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
5661: types/types.vcproj: project GUID inserted in *.vcproj for correct
5662: conversion in newer VS versions
5663:
5664: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
5665: pcre_internal.vcproj added
5666:
5667: 2014-08-28 moko
5668:
5669: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
5670: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
5671: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
5672:
5673: 2014-06-30 misha
5674:
5675: * tests/298.html: - tests for ^reflection:def[class;className]
5676: added
5677:
5678: * src/classes/reflection.C: - ^reflection:def[class;className]
5679: added ( new feature: #918 )
5680:
5681: 2014-06-29 misha
5682:
5683: * src/classes/table.C: - ^table::create[unsupported data] -
5684: exception comment changed to "body must be table or code" ( bug
5685: fix: #951 )
5686:
5687: * tests/: 261.html, results/261.processed: - tests for
5688: ^json:string[...;$.void[null|string]] added
5689:
5690: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
5691: option $.void[string|null] added to ^json:string[...] ( new
5692: feature: #952 )
5693:
5694: 2014-06-28 moko
5695:
5696: * src/classes/curl.C: $.charset now processed before other curl
5697: options (closes issue #980)
5698:
5699: 2014-05-23 misha
5700:
5701: * src/classes/json.C: - bug fix: #987
5702:
5703: 2014-05-04 misha
5704:
5705: * tests/: 253.html, 253_json.txt: - test for
5706: ^json:parse[$.int(false)] is added
5707:
5708: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
5709: default true). The option is similar to $.double(bool) but for
5710: integers.
5711:
5712: 2014-05-01 moko
5713:
5714: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
5715: #12 )
5716:
5717: 2014-04-16 moko
5718:
5719: * src/main/pa_http.C: response-charset option should finally work
5720: now (fix for issue #867)
5721:
5722: * src/main/pa_http.C: response-charset option should work now (fix
5723: for issue #867)
5724:
5725: 2014-03-07 moko
5726:
5727: * buildall: libgc moved
5728:
5729: * buildall: libgc moved
5730:
5731: 2013-12-29 moko
5732:
5733: * src/classes/string.C: ^string:js-unescape result now tainted,
5734: closes issue #966
5735:
5736: * tests/: 186.html, results/186.processed: ^string:js-unescape
5737: result now tainted, issue #966
5738:
5739: 2013-12-03 moko
5740:
5741: * src/: classes/memcached.C, types/pa_vmemcached.C,
5742: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
5743: option was added for http://www.parser.ru/forum/?id=79343
5744:
5745: * src/classes/file.C: bugfix for
5746: http://www.parser.ru/forum/?id=79337
5747:
5748: 2013-11-05 moko
5749:
5750: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
5751:
5752: * src/main/pa_globals.C: spelling fixed
5753:
5754: 2013-10-29 moko
5755:
5756: * src/lib/json/json.vcproj: json.c -> pa_json.C
5757:
5758: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
5759: #892
5760:
5761: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
5762: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
5763: exceptions to be thrown thougth json library), related to issue
5764: #892
5765:
5766: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
5767: related to issue #896
5768:
5769: 2013-10-24 moko
5770:
5771: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
5772:
5773: 2013-10-23 moko
5774:
5775: * README: actualization
5776:
5777: 2013-10-22 moko
5778:
5779: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
5780: compatibility patch from Sergey Kirpichev
5781:
5782: * tests/: 297.html, results/297.processed: non-working getter fix
5783: test for issue #948
5784:
5785: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
5786: called when saving value of $match variable in ^string.match[] to
5787: increase compatibility (related to issue #948).
5788:
5789: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
5790: usage optimization
5791:
5792: 2013-10-21 moko
5793:
5794: * tests/: 182.html, results/182.processed: local path removed for
5795: compatibility
5796:
5797: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
5798: results/244.processed, results/253.processed,
5799: results/254.processed, results/275.processed,
5800: results/281.processed: try_catch -> try-catch
5801:
5802: * tests/: 288.html, 294.html, 296.html, results/288.processed,
5803: results/294.processed, results/296.processed: try_catch ->
5804: try-catch
5805:
5806: 2013-10-20 moko
5807:
5808: * tests/: 296.html, results/296.processed: test for xsl exception
5809: for issue #938 added.
5810:
5811: * src/: include/pa_xml_exception.h,
5812: main/pa_stylesheet_connection.C: forgotten to be replaced
5813: XmlException is now replaced (once again closes issue #938)
5814:
5815: 2013-10-18 moko
5816:
5817: * buildall: disable clock_gettime detection to avoid librt linking
5818: (which in turn depends on libpthread), related to issue #943
5819:
5820: 2013-10-18 misha
5821:
5822: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
5823: lib/smtp/smtp.vcproj, main/main.vcproj,
5824: targets/apache/ApacheModuleParser3Core.vcproj,
5825: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
5826: types/types.vcproj: - new locations for libxml2 includes where
5827: added to vcproj files
5828:
5829: 2013-10-18 moko
5830:
5831: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
5832: fix
5833:
5834: * tests/: 295.html, results/295.processed: test for issue #948
5835: updated
5836:
5837: * src/classes/table.C: hopefully last lost part for issue #948 fix.
5838: :)
5839:
5840: * tests/: 295.html, results/295.processed: test for issue #948
5841: added
5842:
5843: * src/: classes/hash.C, classes/string.C, classes/table.C,
5844: include/pa_request.h, types/pa_method.h: for getters and setters
5845: to be executed request.put_element should be called, not
5846: context.put_element (fixes issue #948)
5847:
5848: 2013-10-17 moko
5849:
5850: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
5851: LIBXML2_NEW_BUFFER check (closes issue #943)
5852:
5853: * buildall: libxml 2.9.1 build is broken --without-reader.
5854:
5855: 2013-10-16 moko
5856:
5857: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
5858:
5859: * tests/: 294.html, results/294.processed: test for issue #938
5860:
5861: * src/: classes/xdoc.C, classes/xnode.C,
5862: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
5863: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
5864:
5865: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
5866: libxslt-1.1.26 -> libxslt-1.1.28
5867:
5868: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
5869: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
5870: to '?', related to issue #938
5871:
5872: 2013-10-15 moko
5873:
5874: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
5875: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
5876: minor optimizations (closes issue #896)
5877:
5878: * tests/results/: 292.processed, 293.processed: results updated to
5879: comply with issue #896
5880:
5881: * tests/: 292.html, 293.html, results/292.processed,
5882: results/293.processed: tests for json escaping
5883:
5884: 2013-10-14 moko
5885:
5886: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
5887: and cleanup, code moved from .h to .C, no changes in code
5888:
5889: 2013-10-12 moko
5890:
5891: * tests/results/119.processed: updated test result commited
5892:
5893: * tests/: 291.html, results/291.processed: test for issue #894
5894: added
5895:
5896: * src/types/pa_wcontext.h: base methods call support function
5897: get_somebody_entered_some_class should not be true forever, as
5898: wcontext can have many get_elements calls (fixes issue #894)
5899:
5900: 2013-10-11 moko
5901:
5902: * tests/: 290.html, results/290.processed: test for junction GPF
5903: issue #942 added
5904:
5905: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
5906: to native method fixed (closes issue #942)
5907:
5908: * tests/: 158.html, results/158.processed: test for csv-string[]
5909: added
5910:
5911: * src/classes/table.C: minor fixes for table.csv-string[] (closes
5912: feature #907)
5913:
5914: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
5915: feature #907)
5916:
5917: 2013-10-09 moko
5918:
5919: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
5920: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
5921: types/pa_vstateless_class.C: GET_default, SET_default now works
5922: properly not only in objects, but in classes as well (closes
5923: issue #903)
5924:
5925: * tests/: 289.html, results/289.processed: GET/SET_default now
5926: works in classes, not only objects, test case added, related to
5927: issue #903
5928:
5929: * tests/: 288.html, results/288.processed: test for endless
5930: recursion bug added (related to issue #903)
5931:
5932: 2013-10-05 moko
5933:
5934: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
5935: classes/table.C, main/execute.C, types/pa_method.h,
5936: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
5937: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
5938: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
5939: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
5940: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
5941: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
5942: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
5943: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
5944: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
5945: optimization: put_element no longer has "bool areplace" argument,
5946: related to issue #903
5947:
5948: 2013-10-03 moko
5949:
5950: * tests/results/182.processed: result for $.replace(false) test
5951: commited
5952:
5953: * src/classes/date.C: ^date::create(number) processed correctly
5954: (fixes issue #901)
5955:
5956: * src/classes/image.C: as_no_junction removed, as param can be
5957: expression (closes issue #931)
5958:
5959: * tests/233.html: test for issue #931 added
5960:
5961: 2013-10-02 moko
5962:
5963: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
5964: modified, test for $.replace(false) added
5965:
5966: * src/main/compile_tools.h: forgotten class replace returned. :)
5967:
5968: 2013-09-30 moko
5969:
5970: * tests/: 141.html, results/141.processed: md5 tainting test added
5971:
5972: * src/: classes/op.C, include/pa_request.h, main/compile.y,
5973: main/compile_tools.h, main/pa_request.C: allow_class_replace
5974: implemented; $.replace option added to ^process and ^use
5975:
5976: 2013-08-27 moko
5977:
5978: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
5979: cstr_to_string_body_untaint should be called with charsets for
5980: possible uri language and connection for possible sql language.
5981: related to issue #857
5982:
5983: * buildall: and -> or fixed
5984:
5985: 2013-08-26 moko
5986:
5987: * buildall: prepare_ functions logic changed to support
5988: gc-7.2d.tar.gz extracting to gc-7.2 directory
5989:
5990: 2013-08-23 moko
5991:
5992: * src/include/pa_config_fixed.h: gc and xml libs are now linked
5993: statically
5994:
5995: 2013-08-22 moko
5996:
5997: * src/classes/string.C: String::Empty used (related to issue #912)
5998: append_know_length removed (related to old GPF bug)
5999:
6000: 2013-08-21 moko
6001:
6002: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
6003:
6004: * src/classes/math.C: ^math:digest[...;$file] support added
6005: (related to ticket #857
6006:
6007: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
6008: implemented
6009:
6010: * src/types/pa_vhashfile.h: warning war
6011:
6012: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
6013: include/pa_request.h, main/pa_request.C, types/pa_value.h:
6014: anti_endless_json_string_recoursion removed from request;
6015: json_string_recoursion added to json_options; $.indent[indent
6016: value] now supported and passed within recoursion closes feature
6017: #937
6018:
6019: * tests/: 287.html, results/287.processed: test for feature #937
6020:
6021: 2013-07-31 moko
6022:
6023: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
6024: compilation having #define _S
6025:
6026: * src/main/pa_globals.C: cleanup
6027:
6028: 2013-07-30 moko
6029:
6030: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
6031: main/pa_common.C: vs2003 warning war
6032:
6033: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
6034:
6035: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
6036:
6037: * src/lib/md5/pa_sha2.c: warning war
6038:
6039: 2013-07-29 moko
6040:
6041: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
6042: patches from github
6043:
6044: * src/: classes/bool.C, classes/double.C, classes/int.C,
6045: classes/memcached.C, include/pa_config_includes.h,
6046: types/pa_vfile.C, types/pa_vfile.h: warning war
6047:
6048: * src/lib/json/json.vcproj: C++ -> C
6049:
6050: * src/lib/json/: json.c, pa_json.C: C++ warning revert
6051:
6052: * src/lib/json/: json.c, pa_json.C: windows compatibility
6053:
6054: * src/lib/json/: json.c, pa_json.C: windows compatibility
6055:
6056: * src/lib/json/: json.c, pa_json.C: warning war
6057:
6058: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
6059:
6060: * src/include/pa_config_fixed.h: uint16_t added
6061:
6062: * configure.in: uint16_t check added
6063:
6064: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 6065: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
6066: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
6067: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
6068: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 6069:
6070: 2013-07-25 moko
6071:
6072: * parser3.sln: dependencies added
6073:
6074: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
6075: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
6076: module support
6077:
6078: * src/targets/apache/mod_parser3_core.C: win32 cleanup
6079:
6080: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
6081:
6082: 2013-07-23 moko
6083:
6084: * src/: include/pa_memory.h, main/pa_memory.C: non-working
6085: PA_DEBUG_GC_MEMORY removed
6086:
6087: * src/: main/pa_globals.C, targets/cgi/parser3.C:
6088: PA_DEBUG_DISABLE_GC compilation fix
6089:
6090: * src/: classes/op.C, classes/table.C, include/pa_request.h,
6091: main/pa_request.C: outdated RESOURCES_DEBUG removed
6092:
6093: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
6094: garbage cleanup
6095:
6096: * src/main/pa_common.C: warning war
6097:
6098: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
6099:
6100: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
6101: minor cleanup
6102:
6103: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
6104: uses cygwin, not WIN32 implementation
6105:
6106: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
6107: able to exec shell scripts
6108:
6109: * src/classes/math.C: ifdef WIN32 cleanup
6110:
6111: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
6112:
6113: * src/classes/curl.C: LT_MODULE_EXT used
6114:
6115: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
6116:
6117: 2013-07-22 moko
6118:
6119: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
6120: includes fix
6121:
6122: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
6123:
6124: * configure.in, src/include/pa_config_includes.h,
6125: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
6126: src/main/pa_exec.C: includes cleanup
6127:
6128: * src/targets/cgi/parser3.C: 2012->2013
6129:
6130: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
6131:
6132: * configure.in, src/include/pa_config_includes.h,
6133: src/include/pa_http.h, src/lib/json/JSON_parser.h,
6134: src/main/pa_random.C, src/main/pa_socks.C,
6135: src/types/pa_vstatus.C: cygwin support cleanup
6136:
6137: * configure.in: dirent.h check added
6138:
6139: * src/: include/pa_config_includes.h, include/pa_dir.h,
6140: main/pa_dir.C: includes cleanup, dirent.h check added filePath
6141: not copied
6142:
6143: 2013-07-21 moko
6144:
6145: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
6146:
6147: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
6148: parser3.vcproj: unused getopt.h / getopt.c removed
6149:
6150: * operators.txt, src/classes/file.C, tests/022.html,
6151: tests/results/022.processed: ^file:list[path][$.filter[regexp]
6152: $.stat(true)] usage commented
6153:
6154: * configure.in, src/classes/file.C, src/include/pa_dir.h,
6155: src/main/pa_dir.C: ^file:list[] now has dir column and when
6156: $.stat(true) it has size/*date columns modified patch from misha@
6157: that closes issue #914.
6158:
6159: * src/: include/pa_config_includes.h, main/pa_globals.C:
6160: PA_RELEASE_ASSERTS removed
6161:
6162: * src/lib/md5/pa_md5c.c: minor cleanup
6163:
6164: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
6165: localeconv()->decimal_point usage remoed (related to issue #934)
6166:
6167: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
6168: cordprnt.c removed
6169:
6170: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
6171: pa-include/pa_errno.h, pa-include/pa_file_io.h,
6172: pa-include/pa_strings.h: includes cleanup
6173:
6174: * src/lib/md5/pa_md5c.c: headers cleanup
6175:
6176: 2013-07-20 moko
6177:
6178: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
6179: cleanup
6180:
6181: 2013-07-19 moko
6182:
6183: * src/classes/math.C: extern "C" added for crypt
6184:
6185: 2013-07-18 moko
6186:
6187: * src/classes/math.C: fix redhat7.2 build
6188:
6189: 2013-07-17 moko
6190:
6191: * configure.in, src/include/pa_config_includes.h,
6192: src/include/pa_config_fixed.h: headers actualized (inttypes.h
6193: added for uint8/32/64_t)
6194:
6195: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
6196: pa_config_includes.h used for uint32/64_t
6197:
6198: 2013-07-16 moko
6199:
6200: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
6201: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
6202: war
6203:
6204: * src/main/compile.tab.C: compile.y was updated
6205:
6206: * src/main/compile.y: warning war
6207:
6208: * src/: include/pa_exception.h, main/pa_exception.C,
6209: main/pa_xml_exception.C: warning war
6210:
6211: * src/: include/pa_common.h, main/pa_common.C: warning war
6212:
6213: * configure.in: beauty :)
6214:
6215: * tests/: 141.html, results/141.processed: sha256/512 added
6216:
6217: 2013-07-13 moko
6218:
6219: * src/lib/md5/md5.vcproj: sha2 added
6220:
6221: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
6222: classes/math.C: sha2 support (sha256/sha512 digest)
6223:
6224: 2013-07-08 moko
6225:
6226: * src/classes/image.C: directory read or other read problem message
6227: fixed (related to issue #933)
6228:
6229: 2013-07-07 moko
6230:
6231: * AUTHORS: + misha + moko. :)
6232:
6233: 2013-07-06 moko
6234:
6235: * src/: classes/curl.C, include/pa_globals.h,
6236: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
6237: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
6238: for lt_dlinit to be called once and lt_dlexit called at right
6239: place (related to issue #925)
6240:
6241: 2013-07-04 moko
6242:
6243: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
6244: VString::as_vfile now uses vfile.set_binary_string to avoid
6245: content-type to be set, as it brokes badly designed logic in
6246: response output. This hopefully finishes issue #928.
6247:
6248: * tests/results/: 256.processed, 286.processed: file now displayed
6249: as name, size, mode, content-type
6250:
6251: * src/main/pa_common.C: read error now reported cottectly (fixes
6252: issue #933
6253:
6254: 2013-06-28 moko
6255:
6256: * tests/: 286.html, results/286.processed: test extended
6257:
6258: * tests/: 286.html, results/286.processed: Test for issue #928
6259: added. it tests default content-type change.
6260:
6261: * src/types/pa_vfile.C: closes issue #928 - default content-type
6262: now updated
6263:
6264: 2013-06-25 moko
6265:
6266: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
6267: content-type for text/binary files without name added;
6268: ^file::create[$f;...] options now works properly and $f
6269: properties are default (fixes issue #928)
6270:
6271: 2013-05-16 misha
6272:
6273: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
6274: added
6275:
6276: * src/main/pa_table.C: - a tiny memory optimisation while creating
6277: table if specified limit is bigger than source rows count
6278:
6279: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
6280: added ( new feature: #858 )
6281:
6282: 2013-04-29 moko
6283:
6284: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
6285: $.ipresolve(0|1|2) added (closes issue #891)
6286:
6287: * src/lib/curl/curl.h: CURL_IPRESOLVE added
6288:
6289: 2013-04-24 moko
6290:
6291: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6292: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6293: types/pa_vmemcached.h: ^memcache.release[] added, calls
6294: memcached_quit (refs #893)
6295:
6296: 2013-04-22 moko
6297:
6298: * src/: include/pa_string.h, main/pa_common.C: no more double
6299: slashes in file path (fixes bug #872)
6300:
6301: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
6302: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
6303: #739)
6304:
6305: * tests/results/266.processed: $.max_params added (feature #915)
6306:
6307: * src/: include/pa_common.h, main/pa_http.C: response-charset
6308: option added to file::load (closes issue #867)
6309:
6310: 2013-04-20 misha
6311:
6312: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
6313: commited
6314:
6315: 2013-03-15 misha
6316:
6317: * src/classes/: hash.C, table.C: - Optimisation: do not create
6318: multiple empty strings while ::sql. uae String::Empty instead
6319:
6320: 2013-03-14 misha
6321:
6322: * src/classes/reflection.C: - for user classes
6323: ^reflection:method_info[] returns $.max_params and $.extra_param
6324: with $.call_type if they available ( new feature: #915 )
6325:
6326: * src/classes/file.C: - ^file:delete[] now supports an option
6327: $.exception(false) that suppress any exception while deleting
6328: file ( new feature: #916 )
6329:
6330: * src/classes/curl.C: - parsing cookies after curl:load now should
6331: work :)
6332:
6333: 2013-03-12 misha
6334:
6335: * src/types/pa_vfile.C: - if specified file_name is empty string
6336: set default name for the file
6337:
6338: 2013-03-11 misha
6339:
6340: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
6341: also available in $f.cookies
6342:
6343: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
6344: moved to a separate method
6345:
6346: 2013-03-10 moko
6347:
6348: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
6349: added
6350:
6351: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
6352: removed (declared by autoconf)
6353:
6354: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
6355: uint32_t define
6356:
6357: 2013-03-10 misha
6358:
6359: * src/classes/file.C: ^file:delete and ^file:move now support
6360: option $.keep-empty-dirs(true) ( new feature: #884 )
6361:
6362: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
6363: empty dirs is added
6364:
6365: 2013-03-10 moko
6366:
6367: * src/classes/: bool.C, double.C, int.C: default can be present,
6368: but default check removed from ^int/double/bool.int/double/bool
6369: for string.int/double/bool compatibility (related to issue #913)
6370:
6371: * src/classes/string.C: ^string.int/dobule/bool no longer
6372: internally throws exception if default is present (closes issue
6373: #913)
6374:
6375: 2013-03-09 misha
6376:
6377: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
6378: optimisations ( #845 )
6379:
6380: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
6381:
6382: 2013-03-08 moko
6383:
6384: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
6385: creates correct table (fixes issue #910)
6386:
6387: * src/classes/op.C: r.connection() -> r.connection(false) to allow
6388: use outside of 'connect' operator (fixes issue #911)
6389:
6390: * tests/results/: 096.processed, 122.processed: test results
6391: updated as doubles now printed with 15 significant digits, not 5
6392: (fixes issue #882)
6393:
6394: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
6395: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
6396:
6397: 2013-02-21 moko
6398:
6399: * src/classes/table.C: _locate_name_value does not check arguments
6400: count, so we check it in advance (fixes issue #905)
6401:
6402: 2012-10-23 moko
6403:
6404: * buildall: old shell for and echo compatibility (for six)
6405:
6406: 2012-10-19 moko
6407:
6408: * buildall: --strip added --disable-safe-mode listed in usage
6409:
6410: 2012-10-17 misha
6411:
6412: * src/classes/op.C: - apply-taint should not throw "outside
6413: connect" exception with sql lang now
6414:
6415: 2012-10-17 moko
6416:
6417: * src/main/pa_request.C: bugfix: safe mode should be inited for
6418: each request (for apache module)
6419:
6420: 2012-09-26 moko
6421:
6422: * src/doc/doxygen.cfg: png -> svg
6423:
6424: 2012-09-25 moko
6425:
6426: * tests/: 141.html, results/141.processed: md5 hmac added, long key
6427: test added
6428:
6429: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
6430: double use when key is long
6431:
6432: 2012-09-16 moko
6433:
6434: * src/classes/math.C: Format -> Method Encode -> Format
6435:
6436: * tests/: 141.html, results/141.processed: math:digest hmac test
6437: added
6438:
6439: 2012-09-14 moko
6440:
6441: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
6442: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
6443: implementation added
6444:
6445: 2012-09-12 moko
6446:
6447: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
6448: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
6449: targets.dox and string.dox slightly actualized
6450:
6451: 2012-08-31 moko
6452:
6453: * ChangeLog: now generated with patched cvs2cl.pl
6454:
6455: 2012-07-29 moko
6456:
6457: * tests/285.html, src/main/execute.C, tests/results/285.processed:
6458: result should be pushed after VMethodFrame destructor is called,
6459: as it deletes junctions from stack params (fixes issue #868)
6460:
6461: 2012-07-23 moko
6462:
6463: * INSTALL, README: buildall script usage documented, other outdated
6464: info updated.
6465:
6466: * buildall-with-xml, buildall-without-xml: replaced by buildall
6467:
6468: 2012-07-21 moko
6469:
6470: * buildall: glib does not compile when threads are disabled...
6471:
6472: * src/types/pa_vmail.C: g_assertion fixes for empty input
6473:
6474: * src/types/pa_vmail.C: yet another fix (strange GPF on object
6475: unref, can't unref nested objects)
6476:
6477: * src/types/pa_vmail.C: another check added
6478:
6479: 2012-07-19 moko
6480:
6481: * buildall: usage added
6482:
6483: * buildall: new buildall script that unites buildall-with-xml,
6484: buildall-without-xml, --with-apache and --with-mailreceive
6485:
6486: * configure.in: support for static gmime and dynamic glib linking.
6487: fixes for FreeBSD
6488:
6489: 2012-07-17 moko
6490:
6491: * configure.in: --with-mailreceive replaced
6492: --with-static-mailreceive and --with-shared-mailreceive pathlink
6493: removed
6494:
6495: 2012-07-16 moko
6496:
6497: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
6498: capitalized, content now decoded and text content converted to
6499: $request:charset. all properties are accessed by functions, this
6500: ready for dynamic load.
6501:
6502: 2012-06-28 moko
6503:
1.116 moko 6504: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
6505: 32 bit
1.95 moko 6506:
6507: 2012-06-27 moko
6508:
6509: * buildall-with-xml, buildall-without-xml: fetch requires -p for
6510: passive ftp
6511:
6512: * src/lib/ltdl/ltdl.vcproj: release build fixed
6513:
6514: * configure.in: 3.4.2 RC -> 3.4.2
6515:
6516: 2012-06-22 moko
6517:
6518: * src/types/pa_vfile.C: returned empty mode to stated files (issue
6519: #815)
6520:
6521: * tests/: 284.html, results/284.processed: output options test
6522: (feature #265)
6523:
6524: 2012-06-22 misha
6525:
6526: * tests/215.html: - little changes
6527:
6528: 2012-06-21 moko
6529:
6530: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
6531: types/pa_vxdoc.h: output_options returned and used (bugfix for
6532: feature #265)
6533:
6534: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
6535: breaks long .*, default 10M restored. (issue #216)
6536:
6537: * tests/: 283.html, results/283.processed: test for issue #815
6538: added
6539:
6540: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
6541: again, cstrm not required.
6542:
6543: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
6544: Win32 and broken FreeBSD (issue #45)
6545:
6546: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
6547:
6548: * src/main/pa_string.C: warnings war
6549:
6550: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
6551: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
6552: main/pa_socks.C, targets/apache/pa_threads.C,
6553: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6554: types/pa_vstatus.C: compilation under cygwin fixed
6555:
6556: 2012-06-19 moko
6557:
6558: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
6559: Windows fixed
6560:
6561: * parser3.sln: removed antique pcre_ctype
6562:
6563: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
6564:
6565: * src/include/pa_config_fixed.h: undefined reference to
6566: __imp__pcre_* fix for Windows
6567:
6568: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 6569: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
6570: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
6571: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
6572: define fixed
1.95 moko 6573:
6574: 2012-06-18 moko
6575:
6576: * src/classes/memcached.C: flush -> clear
6577:
6578: * src/classes/memcached.C: memcached does not support quotes even
6579: in server name
6580:
6581: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6582: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
6583: called on open to check servers existance. $.key(true) syntax
6584: now supported
6585:
6586: 2012-06-17 moko
6587:
6588: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
6589: cleanup
6590:
6591: * src/classes/table.C, tests/282.cfg, tests/282.html,
6592: tests/results/282.processed: encloser at the EOF bug fixed,
6593: incorrectly enclosed data now processed more logicaly (fixes
6594: #339)
6595:
6596: 2012-06-15 moko
6597:
6598: * buildall-without-xml: sync with buildall-with-xml
6599:
6600: * buildall-with-xml: download auto-detected between fetch and curl
6601:
6602: * configure.in: --with-gc and --with-pcre now also processed
6603: correctly
6604:
1.116 moko 6605: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
6606: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
6607: should be run on rol1 using automake / aclocal (GNU automake)
6608: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 6609:
6610: * configure.in: new PARSER_VERSION logic
6611:
6612: * src/include/pa_version.h: new pa_version.h logic
6613:
6614: * src/: classes/curl.C, classes/file.C, classes/image.C,
6615: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
6616: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
6617: feols_normalized -> fis_text_content set_binary added
6618:
6619: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
6620:
6621: 2012-06-15 misha
6622:
6623: * src/: classes/curl.C, classes/file.C, classes/image.C,
6624: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
6625: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
6626: ^file::create[text;content] EOLs in content now is normalized. (
6627: new feature: #815 )
6628:
6629: 2012-06-15 moko
6630:
6631: * configure.in: --disable-version-update added to disable version
6632: update with host information (for debian package) whitespace
6633: optimized
6634:
6635: * configure.in: version changed to 3.4.2 RC no-pic added for
6636: libtool
6637:
6638: * src/include/pa_version.h: Nice pa_version.h default. Please keep
6639: it.
6640:
6641: 2012-06-14 moko
6642:
6643: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
6644: tests/results/281.processed: "hash flocked" error removed for
6645: safe operations like ^h._count[] ( new feature: #335 )
6646:
1.116 moko 6647: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 6648:
6649: * buildall-with-xml, buildall-without-xml: --with-static -> --with
6650:
6651: * configure.in: --with-static/shared xml replaced with --with-xml,
6652: xml compilation check added
6653:
6654: * configure.in: --with-static/shared-gc, --with-static-pcre are
6655: replaced with --with-gc and --with-pcre test for pcre linking
6656: added
6657:
6658: 2012-06-13 moko
6659:
6660: * configure.in: apxs2 check optimized
6661:
6662: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
6663: .la, includes optimized
6664:
6665: * buildall-with-xml: --with-pic looks better for -fPIC
6666:
6667: * configure.in: switched to convenience library in static linking
6668:
6669: * src/targets/apache/Makefile.am: switched to convenience library
6670: usage to avoid libtool warnings
6671:
6672: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
6673: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
6674: smtp/Makefile.am: switched to convenience library usage
6675:
6676: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
6677:
6678: * src/targets/apache/Makefile.am: updated for libtool usage
6679:
6680: * buildall-without-xml: --with-included-ltdl added
6681:
6682: * buildall-without-xml: sync with buildall-with-xml
6683:
6684: * buildall-with-xml: --with-included-ltdl added $cflags added for
6685: -fPIC for x64 $download added for wget success check added
6686:
6687: * buildall-without-xml: --with-dynamic-stdcpp removed
6688:
6689: * configure.in: disable-static returned
6690:
6691: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
6692: LIBTOOLFLAGS
6693:
6694: 2012-06-12 moko
6695:
6696: * configure.in, src/targets/cgi/Makefile.am: disable-static not
6697: compatible with LIBTOOLFLAGS for unknown reasons
6698:
6699: * buildall-with-xml: --with-dynamic-stdcpp removed
6700:
6701: * configure.in: static/dynamic -lstdc++ linking option removed
6702: apxs2 check added
6703:
6704: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
6705: option removed
6706:
6707: 2012-06-10 moko
6708:
6709: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
6710: added
6711:
6712: * src/targets/cgi/pp3.cmd: old PAF stuff
6713:
1.116 moko 6714: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
6715: beauty
1.95 moko 6716:
6717: * depcomp: from libtool 2.4.2
6718:
6719: * configure.in: ltdl directory removed, it has correct Makefile.in
6720:
6721: 2012-06-09 moko
6722:
1.116 moko 6723: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
6724: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 6725: autogenerated files updated after libtool update
6726:
1.116 moko 6727: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
6728: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 6729: config_auto.h.in, config_fixed.h, configure, configure.ac,
6730: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
6731: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
6732: config/compile, config/config.guess, config/config.sub,
6733: config/depcomp, config/install-sh, config/ltmain.sh,
6734: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
6735: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
6736: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
6737: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
6738: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
6739: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
6740: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
6741: m4/lt~obsolete.m4: libtool updated to version 2.4.2
6742:
6743: * configure.in: preparation for new libtool
6744:
6745: * configure.in: Some beauty added :)
6746:
6747: * src/targets/apache/Makefile.am: := -> =
6748:
6749: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
6750: again. :)
6751:
6752: * src/include/pa_config_includes.h, configure.in: limits.h added,
6753: previously was taken from pcre_internal.h. :)
6754:
6755: * src/lib/pcre/Makefile.am: config.h returned
6756:
6757: * src/lib/pcre/config.h: still need this. :)
6758:
6759: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
6760:
6761: * configure.in: --with-charsets removed; --with-mysql-client & co
6762: removed
6763:
6764: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
6765: now in parser tree, no need to copy
6766:
6767: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
6768: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
6769: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
6770: debian/patches/101_pcre.patch - local copy of pcre_internal.h
6771: extracts now used old trash removed
6772:
6773: * etc/parser3.charsets/Makefile.am: charsets now in share
6774: (debian/patches/104_automake.patch) + all charsets are copied
6775:
6776: * buildall-with-xml, buildall-without-xml: curl option removed +
6777: extra arguments now supported
6778:
6779: 2012-06-08 misha
6780:
6781: * src/classes/table.C: - one params.as_hash usage was rolled back:
6782: the 2nd option in ^table.hash[] could be hash or table so
6783: .as_hash will throw an exception when table option is specified
6784:
6785: * src/: classes/curl.C, classes/file.C, classes/hash.C,
6786: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
6787: classes/table.C, classes/void.C, classes/xdoc.C,
6788: include/pa_exception.h, types/pa_vmethod_frame.C,
6789: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
6790: and improved (whitespaces are allowed as empty options) -
6791: MethodParams::as_table is added - above methods are used for
6792: parsing methods' options ( new feature: #9 )
6793:
6794: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
6795: to vclass. now class fields can be accessible as a hash:
6796: $h[^hash::create[$asd:CLASS]]
6797:
6798: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
6799: have get_fields method so their fields can be accessed with
6800: ^reflection:fields[...] & ^reflection:field[...]
6801:
6802: 2012-06-06 misha
6803:
6804: * tests/280.html: - tests for
6805: ^reflection:method[obj-or-class;method],
6806: ^reflection:field[obj-or-class;field] and
6807: ^reflection:fields[obj-or-class] are added
6808:
6809: 2012-06-05 misha
6810:
6811: * src/classes/reflection.C: - ^reflection:method[class or
6812: object;method name] and ^reflection:field[class or object;field
6813: name] are added
6814:
6815: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
6816: is used
6817:
6818: * src/types/pa_method.h: - Method::as_vjunction method is added
6819:
6820: 2012-06-05 moko
6821:
1.116 moko 6822: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 6823:
6824: * src/classes/memcached.C: flish ttl fixed
6825:
6826: 2012-06-04 moko
6827:
6828: * src/classes/json.C, src/classes/op.C, tests/279.html,
6829: tests/results/279.processed: ^json:parse[] now supports $.taint
6830: option (new feature #833)
6831:
6832: 2012-06-04 misha
6833:
6834: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
6835: - search_stop method was moved from pa_vcookie.C to pa_common.C
6836:
6837: 2012-06-03 misha
6838:
6839: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
6840: cookies are parced and stored into $.cookies ( new feature: #31 )
6841:
6842: 2012-05-30 misha
6843:
6844: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
6845: incomplete class into a scope while @USE is found
6846:
6847: * src/main/compile.y: - add incomplete class into a scope while
6848: @USE and @CLASS instructions are found ( bugfix: #838 )
6849:
6850: 2012-05-30 moko
6851:
6852: * src/types/pa_vclass.C, tests/278.html,
6853: tests/results/278.processed: removed "property has no getter
6854: method" exception when GET_DEFAULT present (fixes #269)
6855:
6856: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
6857: $._default
6858:
6859: 2012-05-29 moko
6860:
6861: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
6862: uninitialized values usage (new feature: #154)
6863:
6864: 2012-05-28 moko
6865:
6866: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
6867: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
6868: src/types/pa_vdate.h, src/types/pa_vdouble.h,
6869: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
6870: src/types/pa_vobject.C, src/types/pa_vobject.h,
6871: src/types/pa_vstring.h, src/types/pa_vtable.C,
6872: tests/results/277.processed, src/types/pa_vtable.h,
6873: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
6874: ^json:string[$o; $.default[$method]] implemented for VObject (new
6875: feature #803)
6876:
6877: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
6878: tests/results/277.processed: json numbers are now treated as
6879: double ( new feature: #834 )
6880:
6881: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
6882: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
6883: added for out of range checks, zero division in vint/vdouble
6884: check added ( fixes #832 )
6885:
6886: * tests/: 275.html, results/275.processed: tests for pa_atoui added
6887: ( fixes #832 )
6888:
6889: 2012-05-28 misha
6890:
6891: * buildall-with-xml: - --without-lzma option is added to libxml2
6892: configure
6893:
6894: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
6895: added - tests for unsupported values for options $.file, $.table
6896: and $.date are added
6897:
6898: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
6899: accepts "stat" $.file[] option's value in addition to existed
6900: "text" and "base64" ( new feature: #835 )
6901:
6902: * tests/276.html: - test for
6903: ^reflection:delete[$object-or-class;field-name]
6904:
6905: * src/classes/reflection.C: -
6906: ^reflection:delete[$object-or-class;field-name] is added ( new
6907: feature: #268 )
6908:
6909: 2012-05-27 misha
6910:
6911: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
6912:
6913: 2012-05-24 misha
6914:
6915: * src/include/pa_common.h: - method lastposafter was removed
6916:
6917: * src/classes/file.C: - use strrpbrk & rskipchars instead of
6918: lastposafter - ^file:dirname[] & Co proper handle windows file
6919: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
6920: work as *nix commands
6921:
6922: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
6923:
6924: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
6925: rskipchars were added
6926:
6927: * tests/270.html: - more tests for ^file:find[]
6928:
6929: * tests/065.html: - more tests for ^file:dirname[] & Co
6930:
6931: * src/include/pa_version.h: - must be "win32" here. it is
6932: auto-generated on *nix
6933:
6934: 2012-05-24 moko
6935:
6936: * src/classes/math.C: ^math:convert[] now supports uint32 and
6937: throws overflow exception ( new feature: #830 )
6938:
6939: * tests/: 275.html, results/275.processed: test for ^math:convert[]
6940: uint32 support and overflow added ( new feature: #830 )
6941:
6942: 2012-05-23 moko
6943:
6944: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
6945: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
6946: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
6947: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
6948: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
6949: types/pa_vregex.h, types/pa_vstateless_class.C,
6950: types/pa_vstateless_class.h, types/pa_vstring.h,
6951: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6952: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
6953: "return string as-is" removed from as_expr_result. ( new feature:
6954: #831 )
6955:
6956: * tests/results/244.processed: test changed after bug #782 fix
6957: commited
6958:
6959: * tests/results/229.processed: test results for bug #782 commited
6960:
6961: * tests/: 254.html, results/254.processed: uid now just compared,
6962: not printed. :)
6963:
6964: 2012-05-20 moko
6965:
6966: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
6967: feature: #341 )
6968:
6969: * tests/: 254.html, results/254.processed: test for
6970: ^reflection:uid[] added
6971:
6972: * tests/: 254.html, results/254.processed: test for
6973: ^reflection:uid[$obj] added
6974:
6975: 2012-05-17 misha
6976:
6977: * src/main/untaint.C: - do not replace ' char by _26 while
6978: exploding filespec-tainting ( new feature: #829 )
6979:
6980: 2012-05-12 moko
6981:
6982: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
6983: not.
6984:
6985: 2012-05-08 moko
6986:
6987: * src/types/pa_vmethod_frame.h: bug #782 fixed
6988:
6989: * tests/229.html: test for bug #782
6990:
6991: * tests/results/259.processed, src/main/pa_request.C,
6992: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
6993: src/types/pa_vstring.h, src/types/pa_vvoid.C,
6994: src/types/pa_vvoid.h: feature #154 - first empty param now
6995: string; defined locals are empty strings; $STRICT-VARS(true)
6996: added
6997:
6998: 2012-04-27 moko
6999:
1.116 moko 7000: * src/targets/apache/Makefile.am:
1.95 moko 7001: ../../lib/memcached/libmemcached.a added
7002:
7003: 2012-04-27 misha
7004:
7005: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
7006: ( #827 )
7007:
7008: 2012-04-25 moko
7009:
7010: * src/: classes/json.C, classes/memcached.C,
7011: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
7012: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
7013: implemented.
7014:
7015: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
7016:
7017: 2012-04-23 moko
7018:
7019: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
7020: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
7021: types/pa_vmemcached.h: open allows options hash for new
7022: memcached(options) function
7023:
7024: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
7025: not appended
7026:
7027: 2012-04-21 moko
7028:
7029: * src/classes/curl.C: '' added. :)
7030:
7031: * src/classes/classes.vcproj: new curl.h location
7032:
7033: * src/classes/curl.C: verbose output redirection from stderr to
7034: file curl option added
7035:
7036: 2012-04-20 moko
7037:
7038: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
7039: contains what we need from curl, #ifdef HAVE_CURL removed
7040:
1.116 moko 7041: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 7042: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 7043: src/lib/Makefile.am, src/lib/curl/Makefile.am,
7044: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 7045: configure option
7046:
7047: 2012-04-19 moko
7048:
7049: * src/: classes/double.C, classes/inet.C, classes/int.C,
7050: classes/string.C, lib/gc/include/gc_allocator.h,
7051: types/pa_vform.C: PVS-Studio detected errors fixes, unused
7052: options from sql_result_string removed. (closes issue #468)
7053:
7054: * src/types/pa_vmemcached.C: empty string fix
7055:
7056: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
7057: pa_vstring.C, pa_vstring.h: serialization helpers moved to
7058: pa_vmemcached.C
7059:
7060: 2012-04-18 moko
7061:
7062: * src/targets/apache/mod_parser3.c: "Parser3 module requires
7063: apache2-mpm-prefork" error displayed in threaded mpm.
7064:
7065: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
7066: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
7067: installed (issue #354)
7068:
7069: 2012-04-16 moko
7070:
7071: * src/types/pa_vmemcached.C: call to memcached_result_create and
7072: memcached_result_free removed
7073:
7074: 2012-04-14 moko
7075:
7076: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
7077:
7078: * src/types/pa_vmemcached.C: check_key added and used
7079:
7080: 2012-04-13 moko
7081:
7082: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
7083: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
7084: Serialization_data now added and used, VString now serialized
7085: with languages into memcached.
7086:
7087: 2012-03-28 moko
7088:
7089: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
7090: lib/memcached/pa_memcached.h: result lengths added
7091:
7092: 2012-03-27 moko
7093:
7094: * src/types/pa_vmemcached.C: strdup added
7095:
7096: 2012-03-24 moko
7097:
7098: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
7099: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
7100: types/pa_vmemcached.h: memcached: mget, flush, fttl added
7101:
7102: 2012-03-20 moko
7103:
1.116 moko 7104: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 7105:
7106: * src/targets/cgi/Makefile.am: cleanup
7107:
7108: * src/: types/Makefile.am, types/pa_vmemcached.C,
7109: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
7110:
7111: * src/: classes/Makefile.am, classes/memcached.C,
7112: lib/memcached/Makefile.am, lib/memcached/constants.h,
7113: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
7114: lib/memcached/types.h, lib/Makefile.am: memcached initial
7115:
7116: 2012-03-16 moko
7117:
7118: * src/main/execute.C: ident now works under Linux + ident displays
7119: filenames (closes issue #818)
7120:
1.116 moko 7121: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 7122: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
7123: pa_vmethod_frame_local.h removed
7124:
7125: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
7126: classes/classes.h, classes/curl.C, classes/date.C,
7127: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
7128: classes/hashfile.C, classes/image.C, classes/inet.C,
7129: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
7130: classes/memory.C, classes/op.C, classes/reflection.C,
7131: classes/regex.C, classes/response.C, classes/string.C,
7132: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
7133: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
7134: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
7135: include/pa_config_fixed.h, include/pa_config_includes.h,
7136: include/pa_dictionary.h, include/pa_dir.h,
7137: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
7138: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
7139: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
7140: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
7141: include/pa_request_charsets.h, include/pa_request_info.h,
7142: include/pa_sapi.h, include/pa_socks.h,
7143: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
7144: include/pa_stack.h, include/pa_string.h,
7145: include/pa_stylesheet_connection.h,
7146: include/pa_stylesheet_manager.h, include/pa_table.h,
7147: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
7148: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
7149: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
7150: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
7151: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
7152: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
7153: main/compile.tab.C, main/compile.y, main/compile_tools.C,
7154: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
7155: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
7156: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
7157: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
7158: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
7159: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
7160: main/pa_string.C, main/pa_stylesheet_connection.C,
7161: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
7162: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
7163: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
7164: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
7165: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
7166: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
7167: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
7168: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
7169: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
7170: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
7171: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
7172: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
7173: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
7174: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
7175: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
7176: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
7177: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
7178: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
7179: types/pa_vmemory.h, types/pa_vmethod_frame.C,
7180: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
7181: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
7182: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
7183: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
7184: types/pa_vresponse.h, types/pa_vstateless_class.C,
7185: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
7186: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
7187: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
7188: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
7189: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
7190: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
7191: ident now works under Linux + ident displays filenames (closes
7192: issue #818) Copyright updated
7193:
7194: 2012-03-13 moko
7195:
7196: * src/main/pa_string.C: compilation fix for feature #741
7197:
7198: 2012-03-09 misha
7199:
7200: * tests/193.html: - tests for ^string:base64[encoded] are updated
7201:
7202: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
7203: now detects invalid base64 chars in the middle of encoded stricg
7204: ( new feature: #55 )
7205:
7206: * src/include/pa_exception.h: - new exception type for base64
7207: decoding is added
7208:
7209: 2012-03-06 misha
7210:
7211: * tests/274.html: - tests for ^date::today[] and
7212: ^date.sql-string[datetime|date|time] are added
7213:
7214: * src/classes/date.C: - constructor ^date::today[] is added ( new
7215: feature: #811 ) - ^date.sql-string[] now can accept one param --
7216: strings "datetime", "date" or "time" - comments tidying up
7217:
7218: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
7219: date and time
7220:
7221: 2012-03-03 misha
7222:
7223: * tests/193.html: - tests for
7224: ^string:base64[encoded;$.strict(true)] are added
7225:
7226: * tests/results/auto.p: - try-catch operator is added
7227:
7228: * src/: classes/file.C, classes/string.C, include/pa_common.h,
7229: main/pa_common.C: - $.strict(true|false) option is added to
7230: base64 decode methods ( new feature: #55 )
7231:
7232: * src/main/pa_common.C: - base64 decode memory usage was decreased
7233: ( new feature: #819 )
7234:
7235: 2012-02-28 moko
7236:
7237: * src/classes/hash.C: ident test
7238:
7239: 2012-02-27 misha
7240:
7241: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
7242:
7243: 2012-01-08 misha
7244:
7245: * tests/273.html: - tests for ^string.replace[from;to] are added
7246:
7247: * src/: classes/string.C, include/pa_dictionary.h,
7248: main/pa_dictionary.C, main/pa_string.C: -
7249: ^string.replace[from;to] is added ( new feature: #741 ) -
7250: ^string.replace[one subst here] is slightly optimized
7251:
7252: 2011-12-07 misha
7253:
7254: * src/classes/table.C: - $t[^table::create{$empty}] now creates
7255: named table with one empty column ( bugfix: #63 )
7256:
7257: 2011-11-30 misha
7258:
7259: * src/classes/json.C: - it's possible to set user's method for
7260: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
7261: #763 )
7262:
7263: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
7264:
7265: 2011-11-23 misha
7266:
7267: * src/: classes/curl.C, classes/file.C, classes/image.C,
7268: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
7269: types/pa_vfile.h, types/pa_vform.C: - constructor
7270: ^file::create[mode;filename;content[;options]] now accepts binary
7271: mode and file-content - new constructor's format:
7272: ^file::create[string-or-file-content[;$.name[filename]
7273: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
7274: feature: #65 )
7275:
7276: * src/: include/pa_request.h, main/pa_request.C: - new method
7277: mime_type_of(const String*) is added
7278:
7279: * src/include/pa_exception.h: - new exception constant
7280: FILE_NAME_MUST_BE_SPECIFIED is added
7281:
7282: * src/classes/table.C: - bug with negative offset transformed into
7283: a feature. it means pointing to a row from the end of the table (
7284: new feature: #810 )
7285:
7286: 2011-11-19 misha
7287:
7288: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
7289: â ìåòîäå _select ( new feature: #810 )
7290:
7291: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
7292: options were specified together is simplified
7293:
7294: 2011-11-12 misha
7295:
7296: * src/main/pa_request.C: - forgotten fix for escaping filename in
7297: HTTP content-disposition header (a part of bug #361 )
7298:
7299: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
7300: checks for ancestors' classes as well ( new feature: #456 )
7301:
7302: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
7303: "without cycle" now have types "parser.break" and
7304: "parser.continue" instead of "parser.runtime" ( new feature: #799
7305: )
7306:
7307: 2011-11-11 misha
7308:
7309: * tests/results/: 099.processed, 100.processed, 205.processed,
7310: 237.processed: - since bug #361 was fixed the content of filename
7311: in HTTP headers is quoted
7312:
7313: * tests/results/270.processed: - result for test 270
7314:
7315: * tests/: 065.html, results/065.processed: - more tests for
7316: ^file:basename[] & Co were added
7317:
7318: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
7319:
7320: * tests/270.html: - tests for ^file:find[] are added
7321:
7322: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
7323: using option $.charset. option $.engoding is still supported but
7324: these options can not be specified together
7325:
7326: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
7327: comparation charset name with string "UTF-8" ( bugfix: #759 )
7328:
7329: 2011-10-11 misha
7330:
7331: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
7332: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
7333: #622)
7334:
7335: 2011-09-30 misha
7336:
7337: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
7338: exception "saving stat-ed file" ( bugfix: #395 )
7339:
7340: 2011-05-30 misha
7341:
7342: * src/classes/string.C: - fixed bug which was added with
7343: params.as_hash into string:sql
7344:
7345: 2011-05-29 misha
7346:
7347: * src/types/pa_value.C: - filename in content-disposition header
7348: must be quoted ( bugfix: #361 )
7349:
7350: 2011-05-27 misha
7351:
7352: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
7353: created file
7354:
7355: * src/classes/: hash.C, mail.C: - little tunning with get_hash
7356: usage
7357:
7358: * src/include/pa_exception.h: - one more string for exception was
7359: added
7360:
7361: 2011-05-25 misha
7362:
7363: * tests/269.html: - tests for checking input params in some dom
7364: methods
7365:
7366: * src/classes/: xdoc.C, xnode.C: - validation of some input params
7367: was added. it isn't possible not wo create xdoc with invalid
7368: tagName. ( bugfix: #160 )
7369:
7370: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
7371: string "data must be string" was mover from pa_exception.h to
7372: pa_xml_exception.h
7373:
7374: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
7375: as_xmlncname, as_xmlname and as_xmlnsuri were added
7376:
7377: * src/main/pa_xml_exception.C: - XmlException accepts more options
7378:
7379: * src/include/pa_xml_exception.h: - XmlException accepts more
7380: options - XML-related exception's strings were added
7381:
7382: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
7383: output_options were removed)
7384:
7385: 2011-05-19 misha
7386:
7387: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
7388: params.as_hash is used more while parsing methods hash-options
7389:
7390: 2011-05-18 misha
7391:
7392: * operators.txt: - info about json-serialization of xdoc was added
7393:
7394: * tests/256.html: - tests for json-serialization xdoc were added
7395:
7396: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
7397:
7398: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
7399: classes/json.C, classes/xdoc.C: - now json:string can serialize
7400: xdoc-objects. options (the same as ^xdoc.string[]) could be
7401: specified in $.xdoc[] ( new feature: #265 )
7402:
7403: 2011-05-15 misha
7404:
7405: * tests/268.html: - tests for ^table.count[with options] were added
7406:
7407: * src/classes/table.C: - method ^table.count[] now can accept
7408: options ( new feature: #93 ): ^table.count[column] returns number
7409: of columns for named table; ^table.count[cells] returns number of
7410: cells in the current row; ^table.count[] & ^table.count[rows]
7411: return number of rows in a table.
7412:
7413: * tests/267.html: - test for checking switch/case in boolean mode
7414: was added
7415:
7416: * src/classes/op.C: - if switch's or case's value is bool, they are
7417: compared as bool values, not as double values: new feature: #351
7418:
7419: 2011-05-06 misha
7420:
7421: * tests/242.html: - EOL before EOF was added
7422:
7423: * tests/169.html: - tests for splitting empty string and void were
7424: added
7425:
7426: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
7427: returned table with one empty cell)
7428:
7429: 2011-04-03 misha
7430:
7431: * src/include/pa_version.h, configure.in: - version in head was
7432: changed to 3.4.2b
7433:
7434: 2011-03-30 misha
7435:
7436: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
7437: as well ( new feature #294 )
7438:
7439: 2011-03-29 misha
7440:
7441: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
7442: limited to approx. 6 MB. previous limits were too big for real
7443: life. bugfix: #216
7444:
7445: 2011-03-04 moko
7446:
7447: * etc/parser3.charsets/cp866.cfg: Conforms to
7448: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
7449:
7450: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
7451: vlalek@
7452:
7453: 2011-02-22 misha
7454:
7455: * src/include/pa_charset.h, operators.txt: - some methods mustn't
7456: be under #ifdef XML or parser can't be compiled without xml
7457: support
7458:
7459: 2011-02-21 misha
7460:
1.116 moko 7461: * src/targets/apache/: Makefile.am: - mention
1.95 moko 7462: ApacheModuleParser3.vcproj was removed
7463:
7464: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
7465: removed)
7466:
7467: 2011-02-20 misha
7468:
7469: * tests/: 266.html, 266.p: - tests for checking $.inherited and
7470: $.overridden in ^reflection:method_info[...] were added
7471:
7472: * src/classes/reflection.C: - beautifying result of
7473: ^reflection:method_info[] ($.overridden/inherited)
7474:
7475: 2011-02-18 misha
7476:
7477: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
7478: and pa_isalnum instead of isalpha and isalnum - bug with
7479: redundand quoting lowercased latin chars while building email
7480: body was fixed
7481:
7482: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
7483: added (they check for latin chars only)
7484:
7485: 2011-02-16 misha
7486:
7487: * src/main/pa_charset.C: - bugfix: in some cases the calculating
7488: string size for transcoding gave too small value (should ever
7489: look for availability char in dest charset inspite of the char
7490: size)
7491:
7492: 2011-02-04 moko
7493:
7494: * tests/223.html: header values now not url-encoded (issue #195)
7495:
7496: 2011-02-01 misha
7497:
7498: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
7499:
7500: 2011-01-31 misha
7501:
7502: * src/main/pa_request.C: - throw exception if param file_name in
7503: use_file is empty
7504:
7505: 2011-01-08 moko
7506:
7507: * src/classes/curl.C: compilations errors fixed
7508:
7509: 2010-12-29 moko
7510:
7511: * tests/: 265.html, results/265.processed: test for issue #200
7512: added
7513:
7514: * src/main/pa_string.C: empty regex result check added (fixes issue
7515: #200)
7516:
7517: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
7518:
7519: * tests/results/223.processed: header values now not url-encoded
7520: (issue #195)
7521:
7522: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
7523: main/untaint.C: L_HTTP_HEADER now used in http headers values,
7524: pa_http_safe_header_name added for headers names (fixes bug #195)
7525:
7526: 2010-12-18 misha
7527:
7528: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
7529: => pa-include
7530:
7531: 2010-11-28 moko
7532:
7533: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
7534:
7535: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
7536: -> pa
7537:
7538: * configure.in: apr -> pa
7539:
7540: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
7541:
7542: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
7543: classes/Makefile.am, types/Makefile.am: apr -> pa
7544:
7545: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
7546: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
7547: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
7548: pa-include/pa_apr.h, pa-include/pa_errno.h,
7549: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
7550: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
7551: module apr name conflict resolved)
7552:
7553: 2010-11-27 misha
7554:
7555: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
7556: libbz2
7557:
7558: 2010-11-26 misha
7559:
7560: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
7561: warnings removed
7562:
7563: 2010-11-25 moko
7564:
7565: * operators.txt: $.indent(true)
7566:
7567: * operators.txt: another bugfix. :)
7568:
7569: * operators.txt: bugfix. :)
7570:
7571: * buildall-with-xml: libxml2-2.7.8 + with-apache
7572:
7573: 2010-11-24 moko
7574:
1.116 moko 7575: * configure: apxs support
1.95 moko 7576:
7577: * configure.in: apxs support -Bstatic gc removed for OS X
7578:
7579: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
7580:
7581: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
7582: THREAD_LOCAL usage
7583:
7584: * src/: classes/curl.C, include/pa_config_includes.h,
7585: main/pa_globals.C: THREAD_LOCAL defined and used
7586:
7587: 2010-11-23 moko
7588:
7589: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
7590: should be passed to pa_sleep, and only fractional part (bugfix:
7591: #188)
7592:
7593: * src/targets/apache/mod_parser3.c: 1.3 compatibility
7594:
7595: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
7596: GC_dont_gc=1, as in cgi version
7597:
7598: * src/targets/apache/mod_parser3.c: warning war
7599:
7600: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
7601: pa_httpd.h: version removed, some trash removed
7602:
7603: * src/targets/apache/mod_parser3.c: version removed (we don't want
7604: to show it), warning war
7605:
7606: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
7607: pa_httpd.h: parser_status_allowed removed + merge config
7608: functions removed (override is the default) + beauty
7609:
7610: * src/: include/pa_request.h, main/pa_request.C,
7611: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
7612: hide $status used in apache module removed
7613:
7614: 2010-11-18 moko
7615:
7616: * operators.txt: $.table[compact] added for ^json:string[]
7617:
7618: 2010-11-16 moko
7619:
7620: * src/targets/apache/mod_parser3.c: some cleanup done
7621:
7622: * src/main/untaint.C: bugfix: first, second String::Body argument
7623: is hashcode; second, info.fragment_begin is original, not
7624: resulting length
7625:
7626: * src/classes/file.C: new feature: $.stdin now untainted
7627:
7628: * tests/results/264.processed: new feature: $.stdin[] now untainted
7629:
7630: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
7631:
7632: * src/classes/op.C: ^apply-taint[] method added
7633:
7634: * tests/: 264.html, results/264.processed: ^apply-taint[] test
7635: added; $.stdin untaint test added
7636:
7637: 2010-11-15 moko
7638:
7639: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
7640: removed
7641:
7642: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
7643: pa_httpd.h: 2x2 calculated under apache2. :)
7644:
7645: 2010-11-13 moko
7646:
7647: * src/targets/apache/mod_parser3.c: initial changes to build module
7648: with apache 2.x includes
7649:
7650: * src/targets/apache/: Makefile.am, mod_parser3.c,
7651: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
7652: united apache 1.3 / apache 2.x DSO module
7653:
7654: 2010-11-09 moko
7655:
7656: * src/types/pa_method.h: check added to dissallow @method[name;*]
7657: syntax
7658:
7659: * tests/: 263.html, results/263.processed: test from method[*args]
7660: added
7661:
7662: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
7663: number of params can now be passed to a method declared with *arg
7664:
7665: 2010-11-06 moko
7666:
7667: * src/classes/table.C: formating fixed. :)
7668:
7669: * src/classes/table.C: closes #4: ^table.select now supports
7670: $.limit(), $.offset, $.reverse() options
7671:
7672: * tests/: 262.html, results/262.processed: test for ^table:select
7673: with options added (feature #4)
7674:
7675: * src/include/pa_array.h: remove function added
7676:
7677: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
7678: object in get_element/put_element, using static one.
7679:
7680: 2010-11-04 moko
7681:
7682: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
7683: options is passed
7684:
7685: * tests/: 256.html, results/256.processed: $.table[compact] feature
7686: now tested; k and p in handler now tested.
7687:
7688: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
7689: $.table[compact] feature added
7690:
7691: * src/classes/json.C: key is now passed to handler in
7692: value_json_string; ^json:string result now process tainting
7693: inside and returns clean string, related to issue #153
7694:
7695: * src/main/untaint.C: bugfix: charset can be null (in
7696: ^string:save[] as example), thus check is added
7697:
7698: 2010-10-31 moko
7699:
7700: * src/classes/string.C: error message changed (fixes issue #149)
7701:
7702: 2010-10-29 moko
7703:
7704: * src/main/pa_http.C: ":port" is now added to "Host:" header if
7705: port is not default (fixes issue #155); exception on invalid port
7706: added.
7707:
7708: * src/main/untaint.C: '*' is now not urlencoded to allow header
7709: "Accept: */*" to be passed
7710:
7711: 2010-10-28 moko
7712:
7713: * src/classes/curl.C: bugfix: detect_charset() was throwing
7714: exception on unknown charset even if response_charset was
7715: specified
7716:
7717: 2010-10-27 moko
7718:
7719: * src/classes/string.C: ^string.append removed for void
7720: compatibility
7721:
7722: 2010-10-26 moko
7723:
7724: * src/classes/json.C: libjson supports array at top level, we too
7725: (GPF fixed)
7726:
7727: 2010-10-25 moko
7728:
7729: * tests/: 253.html, results/253.processed: libjson supports array
7730: at top level, parser now supports it as well.
7731:
7732: * tests/261.html, tests/results/261.processed,
7733: src/types/pa_vstring.h: empty string is now void compatible
7734: (allows $empty.key)
7735:
7736: 2010-10-22 misha
7737:
7738: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
7739: while adding additional expires checkout)
7740:
7741: * tests/030.html: - test for session cookie was added
7742:
7743: 2010-10-21 moko
7744:
7745: * src/: classes/string.C, classes/void.C, main/execute.C,
7746: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
7747: string (feature #111)
7748:
7749: * tests/: 261.html, results/261.processed: checks void from string
7750: inheritance (feature #111)
7751:
7752: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
7753: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
7754: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
7755: now true by default
7756:
7757: 2010-10-17 moko
7758:
7759: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
7760: upload now uses binary blocks instead of L_FILE_POST tainting.
7761: (bugfix: #128)
7762:
7763: * tests/: 223.html, results/223.processed: binary file upload test
7764: added, GPF (issue #128) also checked in this test
7765:
7766: 2010-10-13 misha
7767:
7768: * tests/260.html: - test for math:convert
7769:
7770: * src/classes/math.C: - error in math:convert was fixed
7771:
7772: * operators.txt: - info about
7773: ^math:convert[number](from-base;to-base) was added
7774:
7775: * src/classes/math.C: - method
7776: ^math:convert[number](from-base;to-base) for converting number
7777: represention from one base to another was added ( new feature:
7778: #23 )
7779:
7780: 2010-10-13 moko
7781:
7782: * src/main/compile.tab.C: [] now is empty string, not void
7783:
7784: * src/main/compile.y: [] now is empty string, not void
7785:
7786: * src/types/pa_vvoid.h: void now passed as parameter
7787:
7788: * tests/: 259.html, results/259.processed: to test difference
7789: between void and empty string (see ticket #111)
7790:
7791: * tests/results/152.processed: $sEmpty[] is now empty string, not
7792: void
7793:
7794: * tests/256.html: $s[$void] is no longer empty string
7795:
7796: * tests/254.html: empty string is no longer void
7797:
7798: 2010-10-12 misha
7799:
7800: * src/types/pa_vcookie.C: - check if $.expires value can be
7801: converted to date during cookies set up ( bugfix: #104 )
7802:
7803: * tests/041.html: - more tests for ^table.locate were added
7804:
7805: * src/classes/table.C: - ^table.locate[field;value;options] didn't
7806: work ( bugfix: #129 ) - exception comment for incorrect options
7807: ^table.locate[field;value;options] was fixed
7808:
7809: 2010-10-10 moko
7810:
7811: * src/: classes/reflection.C, main/execute.C: constructor returning
7812: another object feature returned
7813:
7814: * tests/results/258.processed: test result updated as constructor
7815: returning another object feature returned
7816:
7817: * tests/: 258.html, results/258.processed: test for constructor
7818: returning another object
7819:
7820: 2010-10-08 misha
7821:
7822: * tests/257.html: - whitespaces after @METACOMMANDS and their
7823: options shouldn't cause exceptions any longer
7824:
7825: 2010-10-06 moko
7826:
7827: * src/classes/: hash.C, table.C: length from sql server is now
7828: ignored, as sql string can contain 0x00 inside (bugfix: #119)
7829:
7830: 2010-10-02 misha
7831:
7832: * operators.txt: - the X mark was removed from ^cache[file]. it is
7833: usable to delete cache file.
7834:
7835: 2010-10-02 moko
7836:
7837: * tests/: 253.html, results/253.processed: hook_key added for key
7838: checking
7839:
7840: * src/classes/json.C: null key bug fixed
7841:
7842: 2010-09-29 misha
7843:
7844: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
7845:
7846: 2010-09-25 moko
7847:
7848: * src/classes/json.C: small fixed
7849:
7850: * tests/results/: 253.processed, 255.processed: just updated
7851:
7852: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
7853: results/255.processed: charset transcode test added for
7854: json:parse
7855:
7856: 2010-09-24 moko
7857:
7858: * src/types/pa_value.h: warning war :)
7859:
7860: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
7861: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
7862: ^json:string
7863:
7864: 2010-09-22 moko
7865:
7866: * src/main/pa_charset.C: parser charset tables declare only
7867: white-space before 0x20, thus adding the missing chars
7868:
7869: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
7870: to http://unicode.org/Public/MAPPINGS/VENDORS/
7871:
7872: 2010-09-21 misha
7873:
7874: * src/main/compile.y: - some semicolons were added (VS2010 don't
7875: want to compile grammar if they are absent)
7876:
7877: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
7878:
7879: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
7880:
7881: * src/main/main.vcproj: - path to bison is changed
7882:
7883: 2010-09-21 moko
7884:
1.116 moko 7885: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
7886: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
7887: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 7888:
7889: 2010-09-20 misha
7890:
7891: * src/types/pa_vtable.C: - add EOLs while json-serializing table
7892:
7893: * src/classes/json.C: - add EOL while json-serializing hash
7894:
7895: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
7896: compilers don't like 'ES'.
7897:
7898: 2010-09-17 misha
7899:
7900: * operators.txt: - info about json class was added
7901:
7902: * src/classes/json.C: - ^json:string[object]
7903:
7904: * src/: include/pa_request.h, main/pa_request.C: - stuff for
7905: preventing infinite recursion while executing json:string was
7906: added
7907:
7908: * src/include/pa_string.h: - method append_quoted was added
7909:
7910: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
7911: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
7912: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
7913: was added to Value & Co
7914:
7915: * src/classes/date.C: - methods get_gmt_string and get_sql_string
7916: were used
7917:
7918: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
7919: were added
7920:
7921: 2010-09-10 moko
7922:
7923: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7924: die_or_abort (backport from 3.4.1)
7925:
7926: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7927: die_or_abort (bugfix: #106)
7928:
7929: 2010-09-09 moko
7930:
7931: * src/classes/json.C: warning war. :)
7932:
7933: 2010-09-08 misha
7934:
7935: * src/lib/json/Makefile.am: - additional include directories were
7936: added (for pa_memory.h and gc.h)
7937:
7938: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
7939: compile as C++ instead default - additional include directory was
7940: added (for gc.h)
7941:
7942: * src/types/pa_vform.C: - little code reformating
7943:
7944: * src/classes/file.C: - $.content-type option now can be specified
7945: in ^file::create ( new feature: #102 )
7946:
7947: 2010-09-08 moko
7948:
7949: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
7950: pa_malloc/pa_free
7951:
7952: 2010-09-07 moko
7953:
7954: * tests/results/254.processed: VStateless_class:put_element
7955: exception was fixed
7956:
7957: * src/types/: pa_value.h, pa_vstateless_class.h: now
7958: VStateless_class:put_element barks self.type, not this.type
7959: (bugfix: #105)
7960:
7961: 2010-09-06 moko
7962:
7963: * src/classes/reflection.C: bugfix: new String() is required for
7964: exception handling
7965:
7966: * tests/: 254.html, results/254.processed: test modified
7967:
7968: 2010-09-05 moko
7969:
7970: * tests/: 254.html, results/254.processed: ^reflection:copy test
7971: added
7972:
7973: * src/: classes/reflection.C, include/pa_request.h:
7974: ^reflection:copy implemented (new feature: #100)
7975:
7976: 2010-09-03 moko
7977:
7978: * src/lib/json/JSON_parser.C: c++ compatiblity
7979:
7980: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
7981: option testing added
7982:
7983: 2010-09-02 moko
7984:
7985: * src/classes/json.C: $.distinct[first|last|all] added
7986:
7987: 2010-09-01 moko
7988:
7989: * tests/results/253.processed: json test result
7990:
7991: * tests/: 253.html, 253_json.txt: json test added
7992:
7993: * src/classes/json.C: json.C update to actual version + hash key
7994: creation bugfix
7995:
7996: 2010-08-31 misha
7997:
7998: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
7999: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
8000: src/lib/Makefile.am, src/classes/Makefile.am,
8001: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
8002: json library was added
8003:
8004: 2010-08-30 moko
8005:
8006: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
8007: types/pa_vobject.C: cosmetic optimization in
8008: request:execute_method usage
8009:
8010: * src/: include/pa_charset.h, main/pa_charset.C: small
8011: optimization, just to decrease number of lines. :)
8012:
8013: 2010-08-27 misha
8014:
8015: * src/classes/op.C: - taint[json] was added
8016:
8017: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
8018: were added
8019:
8020: * src/main/pa_exec.C: - warning fix was rolled back.
8021:
8022: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
8023: include/pa_string.h: - taint[json] was added - escaping was
8024: slightly modified
8025:
8026: 2010-08-25 misha
8027:
8028: * src/classes/file.C: - typo in file:sql exception was fixed
8029:
8030: * src/main/pa_exec.C: - warning about declared and not used
8031: variable forced_allow was removed
8032:
8033: 2010-08-14 misha
8034:
8035: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
8036: were removed
8037:
8038: 2010-08-11 moko
8039:
8040: * tests/: 249.html, results/249.processed: default setter and
8041: anti-recursive default getter test added
8042:
8043: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
8044: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
8045: types/pa_vobject.h, types/pa_vstateless_class.C,
8046: types/pa_vstateless_class.h: default setter support +
8047: anti-recursive default getter support ( new feature: #13 )
8048:
8049: * src/include/pa_hash.h: optimization: threshold member removed
8050: from hash, reducing sizeof(hash)
8051:
8052: 2010-08-10 misha
8053:
8054: * tests/196.html: - junction-method was added to the test
8055:
8056: * tests/248.html: - ups. typo :)
8057:
8058: * tests/248.html: - test for checking .match with 4 params
8059:
8060: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
8061: 247_windows1251.txt: - test for "transcode file from utf-8 to
8062: $request:charset during loading if the BOM code is detected"
8063:
8064: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
8065: $request:charset during loading if the BOM code is detected ( new
8066: feature: #98 )
8067:
8068: 2010-08-05 misha
8069:
8070: * src/classes/image.C: - ^image.replace now can accept only 2
8071: params. in this case the whole image is affected ( new feature:
8072: #95 )
8073:
8074: 2010-08-04 misha
8075:
8076: * tests/246.html: - test tor ^hash._at[] was added
8077:
8078: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
8079: #53 )
8080:
8081: * src/include/pa_hash.h: - methods for accessing the first and the
8082: last values of ordered hash were added (first_value and
8083: last_value)
8084:
8085: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
8086: (similar to others file's methods):
8087: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
8088: #68 )
8089:
8090: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
8091:
8092: 2010-08-01 moko
8093:
8094: * src/classes/op.C: to correctly process $result[] in code, called
8095: from ^process
8096:
8097: * tests/245.html: $result in ^process[] test added
8098:
8099: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
8100: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
8101: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
8102: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
8103: caller, self) op_call(VMethodFrame &frame, bool constructing)
8104: removed, construct(class,method) added
8105:
8106: * tests/results/: 192.processed, 244.processed: request::construct
8107: added
8108:
8109: * tests/: 244.html, 245.html, results/244.processed,
8110: results/245.processed: object creation exceptions and ^process
8111: tests added
8112:
8113: 2010-07-28 misha
8114:
8115: * tests/make_tests.cmd: - win32 EOLs
8116:
8117: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
8118: tests on Win32 were added (The system timezone should be GMT+3)
8119:
8120: 2010-07-26 misha
8121:
8122: * tests/: 212.html, results/212.processed: - sizes were removed
8123: mecause they could be different on different OSs
8124:
8125: * tests/065.html: - make it "win32 friendly"
8126:
8127: 2010-07-25 misha
8128:
8129: * src/main/compile.y: - all EOLs between methods are removed during
8130: compilation ( new feature: #47 )
8131:
8132: * tests/results/149.processed: - prepare tests to trim trailing
8133: methods' EOLs
8134:
8135: * tests/149.html: - prepare tests to trim trailing methods' EOLs
8136:
8137: * tests/: results/006.processed, results/014.processed, 006.html,
8138: 014.html, 022.html: - prepare tests to trim trailing methods'
8139: EOLs
8140:
8141: * tests/: 059.html, 071.html, 149.html, results/059.processed,
8142: results/071.processed, results/022.processed: - prepare tests to
8143: trim trailing methods' EOLs
8144:
8145: * tests/: results/073.processed, results/109.processed,
8146: results/142.processed, results/144.processed,
8147: results/149.processed, 073.html, 096.html, 109.html, 142.html,
8148: 144.html: - prepare tests to trim trailing methods' EOLs
8149:
8150: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
8151: 149.html, 152.html, results/096.processed, results/107.processed,
8152: results/109.processed, results/142.processed,
8153: results/144.processed: - prepare tests to trim trailing methods'
8154: EOLs
8155:
8156: 2010-07-24 moko
8157:
8158: * tests/results/: 156.processed, 224.processed: fix for #54 changed
8159: the hash order in this test
8160:
8161: * tests/014.html: to check hash order, hash no is longer sorted
8162: before print
8163:
8164: * src/include/pa_hash.h: hash copy constructor now keeps order
8165: (bugfix: #54)
8166:
8167: 2010-07-23 moko
8168:
8169: * tests/results/224.processed: @auto[] is no longer inherited
8170:
8171: * src/types/pa_vstateless_class.C, tests/227.html,
8172: tests/results/227.processed: @auto[] is no longer inherited
8173: (bugfix: #57)
8174:
8175: 2010-07-22 misha
8176:
8177: * src/classes/table.C: - don't skip comment lines during
8178: table::load if encloser or separator is set as '#' ( new feature:
8179: #30 )
8180:
8181: * src/targets/cgi/parser3.C: - don't run as cgi if
8182: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
8183: #12 )
8184:
8185: * src/classes/file.C: - set PARSER_VARSION env before external
8186: script executing
8187:
8188: 2010-07-13 misha
8189:
8190: * tests/058.html: - test for suppressing @border was added - test
8191: for user attribute was added
8192:
8193: * tests/results/186.processed: unescaping from \uXXXX
8194:
8195: * tests/186.html: unescaping from \uXXXX
8196:
8197: * tests/: 239.html, results/239.processed: method call type
8198:
8199: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
8200: $junction_method.CLASS_NAME (+CLASS)
8201:
8202: 2010-07-07 misha
8203:
8204: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
8205: *nix
8206:
8207: 2010-07-05 misha
8208:
8209: * src/: classes/curl.C, classes/file.C, classes/hash.C,
8210: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
8211: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
8212: comment strings "options must be hash", "options must be hash,
8213: not code" and "called with invalid option" were replaced by
8214: constatns - exception comment string "invalid option passed" was
8215: replaced by "called with invalid option" (now in different
8216: methods are the same exception comment string)
8217:
8218: * src/include/pa_exception.h: - more exception strings were defined
8219:
8220: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
8221: types/pa_vstateless_class.h: - now we can define possible
8222: method's call type ( new feature: #5 ) 1.
8223: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
8224: methods 2. @static:method[params] (only static keyword could be
8225: used here) -- for specified methods
8226:
8227: * src/main/pa_common.C: - junction points should not be deleted on
8228: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
8229: cleanup
8230:
8231: 2010-07-03 misha
8232:
8233: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
8234: results/158.processed, results/160.processed,
8235: results/161.processed, results/162.processed,
8236: results/163.processed: - prepare tests to trim trailing methods'
8237: EOLs
8238:
8239: * tests/results/169.processed: - prepare tests to trim trailing
8240: methods' EOLs
8241:
8242: * tests/results/: 168.processed, 169.processed: - prepare tests to
8243: trim trailing methods' EOLs
8244:
8245: * tests/: results/170.processed, results/167.processed,
8246: results/168.processed, results/169.processed, 167.html, 168.html,
8247: 169.html: - prepare tests to trim trailing methods' EOLs
8248:
8249: * tests/: results/170.processed, results/171.processed,
8250: results/172.processed, results/173.processed,
8251: results/174.processed, results/175.processed, 170.html, 171.html,
8252: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
8253: trailing methods' EOLs
8254:
8255: * tests/: results/176.processed, results/180.processed,
8256: results/184.processed, results/185.processed,
8257: results/191.processed, results/192.processed,
8258: results/196.processed, results/197.processed,
8259: results/198.processed, 176.html, 180.html, 184.html, 185.html,
8260: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
8261: to trim trailing methods' EOLs
8262:
8263: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
8264: results/199.processed, results/208.processed,
8265: results/209.processed, results/213.processed,
8266: results/214.processed: - prepare tests to trim trailing methods'
8267: EOLs
8268:
8269: 2010-06-29 misha
8270:
8271: * tests/: 220.html, 218.html, results/218.processed,
8272: results/215.processed, results/217.processed, 215.html, 217.html:
8273: - prepare tests to trim trailing methods' EOLs
8274:
8275: * tests/: results/224.processed, 224.html, 223.html,
8276: results/223.processed, results/220.processed: - prepare tests to
8277: trim trailing methods' EOLs
8278:
8279: * tests/results/: 226.processed, 230.processed: - prepare tests to
8280: trim trailing methods' EOLs
8281:
8282: * tests/: 229.html, results/229.processed: - prepare tests to trim
8283: trailing methods' EOLs
8284:
8285: * tests/: 232.html, 235.html, results/232.processed,
8286: results/235.processed, 226.html, 227.html, 228.html, 230.html,
8287: results/226.processed, results/227.processed,
8288: results/228.processed, results/230.processed: - prepare tests to
8289: trim trailing methods' EOLs
8290:
8291: 2010-06-16 moko
8292:
8293: * tests/: 229.html, results/229.processed: elseif now supported in
8294: ^if
8295:
8296: * src/classes/op.C: new feature: #56 elseif now supported in ^if
8297:
8298: 2010-06-03 misha
8299:
8300: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
8301: instead of memcopy for overlaped regions
8302:
8303: 2010-05-25 misha
8304:
8305: * src/main/pa_common.C: - wanring about unused vars was removed
8306:
8307: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
8308: get_method_filename was moved to execute.C
8309:
8310: 2010-05-23 misha
8311:
8312: * src/main/pa_request.C: - more accurate detection of method's file
8313:
8314: 2010-05-22 misha
8315:
8316: * src/classes/reflection.C: - bugfix: core during detection of
8317: .file if filespec isn't detected successfully
8318:
8319: 2010-05-20 misha
8320:
8321: * src/main/pa_request.C: - fix in get_method_filename
8322:
8323: * src/include/pa_request.h: - new feature: #24 -- searching
8324: included file in @USE/^use is changed. if its filespec doesn't
8325: start from '/' it will be searched in caller file directory
8326:
8327: * src/classes/reflection.C: - ^reflection:method_info returns file
8328: where the method is defined
8329:
8330: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
8331: classes/op.C: - new feature: #24 -- searching included file in
8332: @USE/^use is changed. if its filespec doesn't start from '/' it
8333: will be searched in caller file directory
8334:
8335: * src/: classes/file.C, include/pa_common.h: - method lastposafter
8336: is moved to pa_common.h
8337:
8338: 2010-05-18 misha
8339:
8340: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
8341: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
8342: cookie parser decode \uXXXX as well as %uXXXX
8343:
8344: 2010-05-17 misha
8345:
8346: * src/classes/curl.C: beauty: - unused param is removed in method
8347: _curl_version_action - some spaces were removed or replaced by
8348: tabs
8349:
8350: * src/classes/table.C: - bugfix: #72 core with empty value during
8351: ^table.hash[...;name_of_the_last_column][$.type[string]]
8352:
8353: 2010-05-16 misha
8354:
8355: * src/classes/curl.C: new: #61 more curl options were added
8356: (contributed by Sumo)
8357:
8358: 2010-04-29 pretender
8359:
8360: * src/main/pa_string.C: fixes #63 Split result from empty string
8361: now empty string.
8362:
8363: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
8364: string type.
8365:
8366: 2010-04-28 pretender
8367:
8368: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
8369: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
8370: macrodefinition removed
8371:
8372: 2010-04-19 pretender
8373:
8374: * src/main/execute.C: fixes #60 Stacktrace now contains info for
8375: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
8376:
8377: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
8378: fixes #64 Now file.missing exception generates in unsafe mode to.
8379:
8380: * src/classes/file.C: fixes #48 Now not throw "not save environment
8381: variable" exception in grpunlim version.
8382:
8383: 2010-04-05 misha
8384:
8385: * src/classes/string.C: - new feature: 4th param was added to
8386: match. if specified its value is returned in case of nothing was
8387: found
8388:
8389: 2010-04-01 misha
8390:
8391: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
8392: multiple execution of /a/b/auto.p
8393:
8394: 2010-03-19 misha
8395:
8396: * src/main/execute.C: - core in $table1.$table2 was fixed
8397:
8398: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
8399:
8400: 2010-01-27 misha
8401:
8402: * src/main/pa_common.C: - bugfix: there are no excaption.type if
8403: trying to open file by path /existing-file/non-exixting-file
8404:
8405: 2010-01-26 misha
8406:
8407: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
8408: was added (returns file)
8409:
8410: 2009-12-22 misha
8411:
8412: * src/classes/curl.C: - method 'option' was renamed to 'options' -
8413: now parser doesn't have class curl if it was built without it
8414:
8415: 2009-12-15 misha
8416:
8417: * configure.in: - little cheat with curl include dir was added
8418:
8419: 2009-12-05 misha
8420:
8421: * src/classes/curl.C: - some fixes
8422:
8423: 2009-12-04 misha
8424:
8425: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
8426: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
8427: buildall-with-xml, buildall-without-xml, configure.in: - curl
8428: class was added
8429:
8430: * src/include/pa_hash.h: - hash-iterator was added
8431:
8432: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
8433: was added to pcre
8434:
8435: 2009-11-27 misha
8436:
8437: * src/classes/image.C: - don't add @border attribute to output of
8438: ^image.html[] if it was specified by user with empty value
8439:
8440: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
8441: root element and we are trying to access .documentElement
8442:
8443: 2009-11-11 misha
8444:
8445: * src/classes/table.C: - in ^table.flip[] look at number of columns
8446: instead of number of items in first row for named tables
8447:
8448: 2009-11-10 misha
8449:
8450: * operators.txt: - info about hash-options in ^file::create was
8451: added
8452:
8453: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
8454: added
8455:
8456: 2009-11-09 misha
8457:
8458: * buildall-with-xml: - moving to libxml 2.7.6
8459:
8460: * tests/236.html: - tests for comparations cords with functions
8461: were added
8462:
8463: * src/include/pa_string.h: - optimisation: cacheing of cstr was
8464: added
8465:
8466: * src/main/pa_http.C: - little optimisation
8467:
8468: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
8469: GPF mallocs + stringstream (table.save)
8470:
8471: * src/classes/file.C: - file::create now accepts 4th param: options
8472: with $.charset
8473:
8474: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
8475: bug in cord (comparation cords with functions was buggy)
8476:
8477: 2009-11-06 misha
8478:
8479: * src/main/pa_string.C: - bugfix: calculation string.length
8480: sometimes was buggy
8481:
8482: * src/classes/string.C: - bugfix: Temp_value_element wasn't
8483: destroyed if exception occured during match/replace
8484:
8485: * src/: main/pa_charset.C, include/pa_charset.h: - method
8486: lengthUTF8Char was added
8487:
8488: * src/classes/op.C: - clean tainting lang was added for user's
8489: usage
8490:
8491: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
8492: fixed: checkouts are required after GC_MALLOC
8493:
8494: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
8495:
8496: * operators.txt: - actually, there is no ^untaint[xml] in
8497: file::create
8498:
8499: 2009-10-15 misha
8500:
8501: * tests/: 235.html, 235_attach.txt: - tests for preparing email
8502: were added
8503:
8504: * tests/234.html: - more tests for checking ^taint[uri] escaping
8505: were added
8506:
8507: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
8508: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
8509: hacking: for dealing with transcoding+^taint[uri]
8510: transcode_and_untaint was replaced by untaint_and_transcode
8511:
8512: 2009-10-13 misha
8513:
8514: * tests/: 121.html, results/121.processed: - test transcoding +
8515: url-escaping now
8516:
8517: * tests/results/auto.p: - more helpers' methods were added
8518:
8519: * src/main/pa_globals.C: - die instead of abort
8520:
8521: 2009-10-06 misha
8522:
8523: * src/main/pa_common.C: - don't allocate memory during
8524: capitalization if input string is already capitalized
8525:
8526: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
8527:
8528: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
8529: use format function because it calls malloc
8530:
8531: * src/include/pa_common.h: - more capitalized headers were added
8532:
8533: * src/main/pa_common.C: - in safe mode clear executable bits during
8534: file writing
8535:
8536: 2009-10-05 misha
8537:
8538: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
8539:
8540: 2009-10-03 misha
8541:
8542: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
8543: ^img.text[] & ^img.length[] can work in utf-8 now
8544:
8545: * src/: include/pa_charset.h, main/pa_charset.C: - class
8546: UTF8_string_iterator was added
8547:
8548: * src/classes/image.C: - respect utf-8 when calculate alphabet
8549: length
8550:
8551: * src/classes/mail.C: - check from before get message.cstr
8552:
8553: 2009-10-02 misha
8554:
8555: * tests/233.html: - test for image.font, image.length, image.text
8556: with text in utf-8 were added
8557:
8558: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
8559:
8560: * buildall-with-xml, buildall-without-xml: - comment about gc
8561: version for freebsd 4 was added
8562:
8563: 2009-10-01 misha
8564:
8565: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
8566: terminator) - read_pipe were slightly optimized
8567:
8568: 2009-09-28 misha
8569:
8570: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
8571: removed
8572:
8573: * src/types/pa_vmail.C: - forgot about space after ':'
8574:
8575: * src/types/pa_vmail.C: - escape filenames while preparing mail
8576: body - small simplifications
8577:
8578: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
8579: inout params like pa_base64
8580:
8581: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
8582: option $.debug-print(1) was added to mail:send - changes for
8583: using uue_encode which uses less memory
8584:
8585: * src/main/pa_common.C: - pa_base64_encode uses less memory now
8586:
8587: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
8588: memory now
8589:
8590: 2009-09-26 misha
8591:
8592: * src/types/pa_vmail.C: - default encoding now is base64
8593:
8594: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
8595:
8596: 2009-09-25 misha
8597:
8598: * src/types/pa_vmail.C: - capitalization of headers was added to
8599: sending mail as well
8600:
8601: * buildall-with-xml: - catalog package was removed from libxml
8602:
8603: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
8604: win32 absolute path
8605:
8606: * src/include/pa_common.h: - one more capitalized header was added
8607:
8608: 2009-09-22 misha
8609:
8610: * INSTALL: - comment about building just httpd binary while
8611: building apache module was added
8612:
8613: 2009-09-21 misha
8614:
8615: * buildall-with-xml: - moving to the latest versions of xml libs:
8616: libxml 2.7.4 and libxslt 1.1.25
8617:
8618: 2009-09-19 misha
8619:
8620: * tests/231.html: - test for encoding cookie in win-1251
8621:
8622: 2009-09-18 misha
8623:
8624: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
8625: object] were added
8626:
8627: * operators.txt: - info about method ^reflection:fields[class or
8628: object] was added
8629:
8630: * src/classes/reflection.C: - method ^reflection:fields[class or
8631: object] was added
8632:
8633: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
8634: methods get_fields were added
8635:
8636: * tests/232.html: - tests for @GET[name]
8637:
8638: * src/classes/table.C: - some changes in handling hash-options for
8639: creare, join and locate
8640:
8641: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
8642: defined with option: the type of requested value
8643:
8644: 2009-09-17 misha
8645:
8646: * tests/212.html: - tests for .pattern and .options were added
8647:
8648: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
8649: $regex.options were added
8650:
8651: 2009-09-11 misha
8652:
8653: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
8654: rewrited. it checks not just one case of sending cookies during
8655: file::load[http], but also sending headers and fields (including
8656: files)
8657:
8658: 2009-09-10 misha
8659:
8660: * src/main/untaint.C: - workaround in file-spec lang for old Macs
8661: was removed => now parser can open files with Russian 'r' in
8662: filename
8663:
8664: * src/main/untaint.C: - bugfix: client charset whould be analized
8665: while escaping cookies but now source charset
8666:
8667: * src/main/pa_http.C: - bugfix: the values of http headers didn't
8668: ^tainted[uri] so it was possible to make request with incorrect
8669: http header
8670:
8671: * src/main/pa_http.C: - capitalization of http headers during
8672: file::load[http was slightly changes - bugfix: all headers which
8673: parser sends during file::load[http should be transcoded and only
8674: then escaped
8675:
8676: * src/main/untaint.C: - a bit more comments were added
8677:
8678: * src/classes/: file.C, string.C: - types where changes (minus 2
8679: warnings)
8680:
8681: * src/include/pa_common.h: - 2 capitalized strings for making http
8682: headers during file::load[http were added
8683:
8684: 2009-09-08 misha
8685:
8686: * operators.txt: - changes in file.save and string.save were added
8687:
8688: * tests/: 230.html, 230.txt: - tests for checking options in
8689: file.save and string.save were added
8690:
8691: * src/main/pa_request.C: - http headers names, which are passed to
8692: SAPI::add_header_attribute are lowercased now (it'll be
8693: capitalized in that method)
8694:
8695: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
8696: classes/string.C: - file_write accepts Request_charsets and asked
8697: charset and cound transcode content before writing - string.save
8698: and file.save have option $.charset now
8699:
8700: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
8701: classes/xdoc.C: - file_write accepts Request_charsets and asked
8702: charset and cound transcode content before writing
8703:
8704: * src/include/pa_exception.h: - new exception comment string was
8705: defined
8706:
8707: 2009-09-07 misha
8708:
8709: * src/main/compile.y: - grammar $name\ name stops now for regex
8710: sub-pattern\s
8711:
8712: 2009-09-04 misha
8713:
8714: * src/main/pa_http.C: - capitalization of http headers during
8715: file::load[http was implemented
8716:
8717: 2009-09-03 misha
8718:
8719: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
8720: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
8721: types/pa_vmail.C, targets/cgi/parser3.C,
8722: targets/isapi/parser3isapi.C: - back to storing response http
8723: headers in lowercase - capitalize them during output
8724:
8725: 2009-08-31 misha
8726:
8727: * src/classes/table.C: - allow call with any brackets (it could be
8728: useful in methods with explict result declaration)
8729:
8730: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
8731: correctly if $request:charset==koi8-r
8732:
8733: 2009-08-30 misha
8734:
8735: * src/: include/pa_common.h, main/pa_request.C: - http headers were
8736: changed: content-type => Content-type and so on
8737:
8738: * src/classes/file.C, src/include/pa_common.h,
8739: src/include/pa_request.h, src/main/pa_http.C,
8740: src/main/pa_request.C, src/types/pa_vcookie.C,
8741: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
8742: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
8743: tests/results/002.processed, tests/results/003.processed,
8744: tests/results/004.processed, tests/results/005.processed,
8745: tests/results/006.processed, tests/results/007.processed,
8746: tests/results/008.processed, tests/results/009.processed,
8747: tests/results/010.processed, tests/results/011.processed,
8748: tests/results/012.processed, tests/results/013.processed,
8749: tests/results/014.processed, tests/results/015.processed,
8750: tests/results/016.processed, tests/results/017.processed,
8751: tests/results/018.processed, tests/results/019.processed,
8752: tests/results/020.processed, tests/results/021.processed,
8753: tests/results/022.processed, tests/results/023.processed,
8754: tests/results/024.processed, tests/results/025.processed,
8755: tests/results/026.processed, tests/results/027.processed,
8756: tests/results/028.processed, tests/results/029.processed,
8757: tests/results/030.processed, tests/results/031.processed,
8758: tests/results/032.processed, tests/results/033.processed,
8759: tests/results/034.processed, tests/results/035.processed,
8760: tests/results/036.processed, tests/results/037.processed,
8761: tests/results/038.processed, tests/results/039.processed,
8762: tests/results/040.processed, tests/results/041.processed,
8763: tests/results/042.processed, tests/results/043.processed,
8764: tests/results/044.processed, tests/results/045.processed,
8765: tests/results/046.processed, tests/results/047.processed,
8766: tests/results/048.processed, tests/results/049.processed,
8767: tests/results/050.processed, tests/results/051.processed,
8768: tests/results/052.processed, tests/results/053.processed,
8769: tests/results/054.processed, tests/results/055.processed,
8770: tests/results/056.processed, tests/results/057.processed,
8771: tests/results/058.processed, tests/results/059.processed,
8772: tests/results/060.processed, tests/results/061.processed,
8773: tests/results/062.processed, tests/results/063.processed,
8774: tests/results/064.processed, tests/results/065.processed,
8775: tests/results/066.processed, tests/results/067.processed,
8776: tests/results/068.processed, tests/results/069.processed,
8777: tests/results/070.processed, tests/results/071.processed,
8778: tests/results/072.processed, tests/results/073.processed,
8779: tests/results/074.processed, tests/results/075.processed,
8780: tests/results/076.processed, tests/results/077.processed,
8781: tests/results/078.processed, tests/results/079.processed,
8782: tests/results/080.processed, tests/results/081.processed,
8783: tests/results/082.processed, tests/results/083.processed,
8784: tests/results/084.processed, tests/results/085.processed,
8785: tests/results/086.processed, tests/results/087.processed,
8786: tests/results/088.processed, tests/results/089.processed,
8787: tests/results/090.processed, tests/results/091.processed,
8788: tests/results/092.processed, tests/results/093.processed,
8789: tests/results/094.processed, tests/results/095.processed,
8790: tests/results/096.processed, tests/results/097.processed,
8791: tests/results/098.processed, tests/results/099.processed,
8792: tests/results/100.processed, tests/results/101.processed,
8793: tests/results/102.processed, tests/results/103.processed,
8794: tests/results/104.processed, tests/results/105.processed,
8795: tests/results/106.processed, tests/results/107.processed,
8796: tests/results/108.processed, tests/results/109.processed,
8797: tests/results/110.processed, tests/results/111.processed,
8798: tests/results/112.processed, tests/results/113.processed,
8799: tests/results/114.processed, tests/results/115.processed,
8800: tests/results/116.processed, tests/results/117.processed,
8801: tests/results/118.processed, tests/results/119.processed,
8802: tests/results/120.processed, tests/results/121.processed,
8803: tests/results/122.processed, tests/results/123.processed,
8804: tests/results/124.processed, tests/results/125.processed,
8805: tests/results/126.processed, tests/results/127.processed,
8806: tests/results/128.processed, tests/results/129.processed,
8807: tests/results/130.processed, tests/results/131.processed,
8808: tests/results/132.processed, tests/results/133.processed,
8809: tests/results/134.processed, tests/results/135.processed,
8810: tests/results/136.processed, tests/results/138.processed,
8811: tests/results/139.processed, tests/results/140.processed,
8812: tests/results/141.processed, tests/results/142.processed,
8813: tests/results/143.processed, tests/results/144.processed,
8814: tests/results/145.processed, tests/results/146.processed,
8815: tests/results/147.processed, tests/results/148.processed,
8816: tests/results/149.processed, tests/results/150.processed,
8817: tests/results/151.processed, tests/results/152.processed,
8818: tests/results/153.processed, tests/results/154.processed,
8819: tests/results/155.processed, tests/results/156.processed,
8820: tests/results/157.processed, tests/results/158.processed,
8821: tests/results/159.processed, tests/results/160.processed,
8822: tests/results/161.processed, tests/results/162.processed,
8823: tests/results/163.processed, tests/results/164.processed,
8824: tests/results/165.processed, tests/results/166.processed,
8825: tests/results/167.processed, tests/results/168.processed,
8826: tests/results/169.processed, tests/results/170.processed,
8827: tests/results/171.processed, tests/results/172.processed,
8828: tests/results/173.processed, tests/results/174.processed,
8829: tests/results/175.processed, tests/results/176.processed,
8830: tests/results/177.processed, tests/results/178.processed,
8831: tests/results/179.processed, tests/results/180.processed,
8832: tests/results/181.processed, tests/results/182.processed,
8833: tests/results/183.processed, tests/results/184.processed,
8834: tests/results/185.processed, tests/results/186.processed,
8835: tests/results/187.processed, tests/results/188.processed,
8836: tests/results/189.processed, tests/results/190.processed,
8837: tests/results/191.processed, tests/results/192.processed,
8838: tests/results/193.processed, tests/results/194.processed,
8839: tests/results/195.processed, tests/results/196.processed,
8840: tests/results/197.processed, tests/results/198.processed,
8841: tests/results/199.processed, tests/results/200.processed,
8842: tests/results/201.processed, tests/results/202.processed,
8843: tests/results/203.processed, tests/results/204.processed,
8844: tests/results/205.processed, tests/results/206.processed,
8845: tests/results/207.processed, tests/results/208.processed,
8846: tests/results/209.processed, tests/results/210.processed,
8847: tests/results/211.processed, tests/results/212.processed,
8848: tests/results/213.processed, tests/results/214.processed,
8849: tests/results/215.processed, tests/results/216.processed,
8850: tests/results/217.processed, tests/results/218.processed,
8851: tests/results/219.processed, tests/results/220.processed,
8852: tests/results/221.processed, tests/results/222.processed,
8853: tests/results/223.processed, tests/results/224.processed,
8854: tests/results/225.processed, tests/results/226.processed,
8855: tests/results/227.processed, tests/results/228.processed,
8856: tests/results/229.processed: - http headers were changed:
8857: content-type => Content-type and so on
8858:
8859: 2009-08-27 misha
8860:
8861: * src/: main/pa_random.C, include/pa_random.h,
8862: targets/cgi/parser3.C: - year was updated :)
8863:
8864: 2009-08-26 misha
8865:
8866: * tests/: 224.html, 224.p: - test for creating of parser object
8867: using constructor without params - little bugfix in test
8868:
8869: * src/main/compile_tools.h: - bugfix: should't call autouse while
8870: checking existed class while processing partial option
8871:
8872: * src/classes/reflection.C: - bugfix: core when creating object
8873: with reflection and constructor doesn't have params
8874:
8875: 2009-08-24 misha
8876:
8877: * tests/229.html: - tests for checking the number of parameters
8878: were added
8879:
8880: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
8881: number of method's parameters wasn't checked correctly (the bug
8882: was introduced in 3.4.0)
8883:
8884: 2009-08-22 misha
8885:
8886: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
8887: transcoded, but tainted pieces are escaped only when
8888: content-type==url-encoding
8889:
8890: * tests/228.html: - test for checking
8891: ^file::load[http://...;$.body[]]
8892:
8893: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
8894: post charset was too early (charsets is empty at this moment)
8895:
8896: 2009-08-21 misha
8897:
8898: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
8899: main/untaint.C: - some fixes with transcode+untaint
8900:
8901: 2009-08-15 misha
8902:
8903: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
8904: was increaced to 100 (was 50)
8905:
8906: * tests/227.html: - test for checking overriding properties in
8907: static classes was added
8908:
8909: * tests/: 226.html, 226.p: - test for @autoload[] was added
8910:
8911: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
8912: main/execute.C, main/pa_request.C, classes/reflection.C: -
8913: autouse was implemented
8914:
8915: 2009-08-14 misha
8916:
8917: * src/classes/reflection.C: - outdated checkout was removed
8918:
8919: * src/classes/reflection.C: - optimization - method ^dynamical was
8920: added.
8921:
8922: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
8923: types/pa_vstateless_class.h, main/execute.C: - optimization
8924:
8925: * src/types/pa_vclass.C: - exception if base on sytem class
8926:
8927: 2009-08-12 misha
8928:
8929: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
8930: pa_vstateless_class.h: - little optimisation
8931:
8932: 2009-08-11 misha
8933:
8934: * tests/224.html: - method_params => method_info - checking for
8935: $.inherited
8936:
8937: * src/classes/reflection.C, operators.txt: - method method_params
8938: was renamed to method_info and now it returns class name, if
8939: method was defined in ancestor
8940:
8941: * tests/225.html: - tests for cheching properties in hierarhical
8942: classes were added
8943:
8944: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
8945: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8946: main/compile.y, main/execute.C, classes/classes.C: - problems
8947: with properties in new classes implementation were fixed
8948:
8949: 2009-08-10 misha
8950:
8951: * src/main/execute.C: - now constructor shouldn't be defined in
8952: class. it could be defined in parent.
8953:
8954: 2009-08-09 misha
8955:
8956: * src/classes/reflection.C: - ^reflection:methods doesn't return
8957: base's methods
8958:
8959: 2009-08-08 misha
8960:
8961: * src/: classes/classes.h, classes/date.C, classes/file.C,
8962: classes/form.C, classes/hash.C, classes/hashfile.C,
8963: classes/image.C, classes/mail.C, classes/op.C,
8964: classes/reflection.C, classes/regex.C, classes/string.C,
8965: classes/table.C, classes/xdoc.C, classes/xnode.C,
8966: classes/xnode.h, include/pa_hash.h, main/execute.C,
8967: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
8968: types/pa_method.h, types/pa_property.h, types/pa_value.C,
8969: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8970: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8971: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
8972: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
8973: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
8974: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
8975: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
8976: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
8977: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
8978: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
8979: types/pa_vresponse.C, types/pa_vresponse.h,
8980: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8981: types/pa_vstateless_object.h, types/pa_vstatus.C,
8982: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
8983: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
8984: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
8985: types/pa_wwrapper.h, types/types.vcproj: - new classes
8986: implementation
8987:
8988: * buildall-with-xml, buildall-without-xml: - gc has a bug if
8989: USE_MUNMAP is used. so it is disabled as a workaround.
8990:
8991: 2009-08-05 misha
8992:
8993: * src/: main/pa_common.C, include/pa_common.h: - not needed
8994: parameter was removed
8995:
8996: * src/main/pa_http.C: - bugfix: error was during detecting
8997: content-type of file which was loaded by http
8998:
8999: 2009-08-01 misha
9000:
9001: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
9002: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
9003: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
9004: can't be disabled with defines any longer
9005:
9006: 2009-07-29 misha
9007:
9008: * src/classes/reflection.C, tests/results/224.processed: - for
9009: native methods with any call type now returned empty call_type
9010: value
9011:
9012: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
9013: classes/table.C, include/pa_hash.h, include/pa_request.h,
9014: main/pa_request.C: - break in cycles was optimized
9015:
9016: * INSTALL: - more defines were described
9017:
9018: 2009-07-28 misha
9019:
9020: * operators.txt: - some changes in information about reflection
9021: class
9022:
9023: * tests/: 224.html, 224.p: - tests for reflection class
9024:
9025: * src/classes/reflection.C: - some bugs were fixed, method classes
9026: was added, refactoring
9027:
9028: 2009-07-26 misha
9029:
9030: * src/classes/classes.vcproj: - reflection class wass added to
9031: project
9032:
9033: * operators.txt: - information about reflection class was added
9034:
9035: * src/classes/reflection.C: - class was redesigned
9036:
9037: 2009-07-24 misha
9038:
9039: * src/classes/: Makefile.am, reflection.C: - class reflection was
9040: added
9041:
9042: * src/types/pa_vstateless_class.h: - method for reflection method's
9043: in classes was added
9044:
9045: 2009-07-22 misha
9046:
9047: * src/main/compile_tools.h: - bugfix: $object.$var was
9048: over-optimized. it failed if $object1.$object2.field
9049:
9050: 2009-07-16 misha
9051:
9052: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
9053: lib/cord/cordxtra.c, lib/cord/include/cord.h,
9054: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
9055: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
9056: one more arg: length of cord
9057:
9058: 2009-07-15 misha
9059:
9060: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
9061: tainted in ^file::load[http://...;$.cookies[]]
9062:
9063: * src/classes/: op.C, regex.C, string.C: - new string with
9064: exception was used
9065:
9066: * src/include/pa_exception.h: - new string with exception was added
9067:
9068: * tests/223.html: - test for checking cookie-encoding during
9069: ^file::load[http was added
9070:
9071: * tests/: 221.html, 222.html: - tests for checking type of
9072: $table.fields.field were added
9073:
9074: * src/types/pa_vtable.C: - not used var decl was removed
9075:
9076: * src/include/pa_string.h: - use cached string length in Body::mid.
9077: it improves speed of match with brackets in pattern
9078:
9079: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
9080: outside
9081:
9082: 2009-07-14 misha
9083:
9084: * src/types/pa_vtable.C: - $table.fields.a return string even if
9085: column is empty (sometime returned void) - $table.fields was
9086: added for nameless tables
9087:
9088: * src/targets/cgi/getopt.c: - one warning resolved
9089:
9090: * src/main/pa_string.C: - potentian bug fixed
9091:
9092: * src/classes/op.C: - small optimization in taint/untaint
9093:
9094: 2009-07-13 misha
9095:
9096: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
9097: added
9098:
9099: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
9100: souldn't add the attribut to output
9101:
9102: 2009-07-11 misha
9103:
9104: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
9105: stack size was increaced to 2MB (default=1MB)
9106:
9107: 2009-07-08 misha
9108:
9109: * src/main/pa_string.C: - link to UTF-8 description was added
9110:
9111: * src/include/pa_hash.h: - hash keeps element's order in more
9112: places (ex: ._keys[])
9113:
9114: * tests/220.html: - test for checking order of elements in hash in
9115: foreach was added
9116:
9117: * tests/172.html: - small changes in printing hash
9118:
9119: * tests/129.html: - small changes in printing hash
9120:
9121: * src/: include/pa_common.h, include/pa_hash.h,
9122: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
9123: types/pa_vmethod_frame.h: - hash now keeps order of elements
9124:
9125: * tests/014.html: - small changes in printing hash
9126:
9127: 2009-07-07 misha
9128:
9129: * src/classes/op.C: - new taint language "parser-code" was added
9130:
9131: * tests/219.html: - test for auto untaint parser code in process
9132: was added
9133:
9134: * src/classes/op.C: - tainted pieces in body of process are
9135: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
9136:
9137: * src/: include/pa_string.h, main/untaint.C: - new language
9138: L_PARSER_CODE for auto-untaint in process was added
9139:
9140: * src/: classes/file.C, classes/hash.C, classes/image.C,
9141: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
9142: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
9143: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
9144: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
9145: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
9146: code cleanup
9147:
9148: 2009-07-06 misha
9149:
9150: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
9151: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
9152: deleted. taint_cstr[m] and untaint_cstr[m] should be used
9153:
9154: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
9155: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
9156: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
9157: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
9158: should be used
9159:
9160: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
9161: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
9162: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
9163: untaint_cstr[m] should be used
9164:
9165: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
9166: deleted. taint_cstr[m] and untaint_cstr[m] should be used
9167:
9168: * tests/218.html: - test for checking automatic file-spec-taint was
9169: added
9170:
9171: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
9172: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
9173: classes/file.C, classes/hash.C, classes/image.C,
9174: classes/string.C, classes/table.C, classes/void.C,
9175: classes/xdoc.C: - optimizations and simplification of
9176: string.cstr(...)
9177:
9178: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
9179: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
9180: - optimizations and simplification of string.cstr(...)
9181:
9182: 2009-07-04 misha
9183:
9184: * tests/217.html: - test for recursion detection was added
9185:
9186: * src/: types/types.vcproj, main/main.vcproj,
9187: classes/classes.vcproj, targets/cgi/parser3.vcproj,
9188: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
9189: from .vcproj
9190:
9191: * src/types/pa_wwrapper.h: - dynamic_cast was removed
9192:
9193: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
9194: uploading files and case-insensitive http-method were added
9195:
9196: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
9197: tainted pattern in ^file:list[] was added
9198:
9199: 2009-07-03 misha
9200:
9201: * src/: classes/classes.vcproj, main/main.vcproj,
9202: types/types.vcproj, targets/cgi/parser3.vcproj,
9203: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
9204: for dynamic_cast) - little options changes
9205:
9206: * src/main/pa_http.C: - file::load[http works now with uploading
9207: files _and_ changing $.charset
9208:
9209: 2009-06-29 misha
9210:
9211: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
9212: while creating pattern
9213:
9214: 2009-06-25 misha
9215:
9216: * src/classes/image.C, operators.txt: - options' names for
9217: ^image.font were changed to $.space, $.width and $spacing -
9218: default space width now == gif's width
9219:
9220: 2009-06-24 misha
9221:
9222: * tests/215.html: - tests for $file.mode were added
9223:
9224: * operators.txt: - added info about $file.mode and changes in
9225: ^image.font[
9226:
9227: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
9228: param now could be omited - third param now could be hash (with
9229: all widths options: $.space-width, $.letter-width) - it's
9230: possible to specify tracking ($.letter-space)
9231:
9232: * src/classes/file.C: - file objects now could have mode field
9233: (text|binary)
9234:
9235: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
9236:
9237: 2009-06-23 misha
9238:
9239: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
9240: trim can work with utf-8 chars now
9241:
9242: 2009-06-20 misha
9243:
9244: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
9245: was implemented
9246:
9247: * src/classes/table.C: - string length cacheing was implemented
9248:
9249: * src/include/pa_string.h: - string length cacheing was implemented
9250:
9251: 2009-06-17 misha
9252:
9253: * src/main/execute.C: - value param was removed from
9254: WContext::WContext
9255:
9256: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
9257: pa_wwrapper.h: - value param was removed from WContext::WContext
9258: - field wcontext was removed from VCodeFrame (using fparent
9259: instead)
9260:
9261: * tests/214.html: - test with hash copying
9262:
9263: 2009-06-16 misha
9264:
9265: * tests/: 062.html, results/062.processed: - evaluation hardcoded
9266: strings doesn't work in expression anymore
9267:
9268: * src/main/execute.C: - less calls for get_constructing() - little
9269: refactoring
9270:
9271: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
9272: include/pa_request.h: - less calls for get_constructing()
9273:
9274: * src/classes/: hash.C, hashfile.C: - fixed bug which was
9275: introduced with OPTIMIZE_SINGLE_STRING optimization
9276:
9277: 2009-06-14 misha
9278:
9279: * src/: classes/date.C, classes/file.C, classes/hash.C,
9280: classes/hashfile.C, classes/image.C, classes/regex.C,
9281: classes/table.C, classes/xdoc.C, classes/xnode.h,
9282: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
9283: types/pa_vstateless_class.h, main/execute.C: - create object for
9284: storing object's fields only for parser objects
9285:
9286: 2009-06-13 misha
9287:
9288: * buildall-with-xml, buildall-without-xml: - new option was added
9289: for building GC (it slightly reduces memory usage)
9290:
9291: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
9292: single string write
9293:
9294: * src/main/execute.C: - bytecode optimization of ^class:constructor
9295: - optimization of single string write
9296:
9297: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
9298: - bytecode optimization of ^class:constructor
9299:
9300: 2009-06-09 misha
9301:
9302: * src/targets/cgi/parser3.C: - type size_t was changed to int in
9303: main (better compatibility)
9304:
9305: 2009-06-08 misha
9306:
9307: * src/main/compile.y: - I've forgot to commit it :(
9308:
9309: 2009-06-07 misha
9310:
9311: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
9312: WITH_READ and WITH_ROOT
9313:
9314: * src/main/: compile.y, compile_tools.C, compile_tools.h,
9315: execute.C: - more optimizations for WITH_SELF, WITH_READ and
9316: WITH_ROOT - little refactoring
9317:
9318: 2009-06-06 misha
9319:
9320: * tests/213.html: - tests for 3rd match string-param were added
9321:
9322: * src/classes/string.C: - 3rd match param could be string now
9323:
9324: * src/main/: compile.y, compile_tools.h: - much more bytecode's
9325: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
9326: GET_OBJECT_ELEMENT
9327:
9328: 2009-06-05 misha
9329:
9330: * src/main/pa_http.C: - bugfix: content-length was not calculated
9331: if $.body was specified
9332:
9333: 2009-06-04 misha
9334:
9335: * src/classes/op.C: - optimizing write_assign_lang in connect
9336:
9337: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
9338:
9339: * src/main/execute.C: - little refactoring - optimizing
9340: write_assign_lang in taint/untaint
9341:
9342: * src/include/pa_opcode.h: - little refactoring
9343:
9344: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
9345: main/compile_tools.h, main/execute.C: - optimizations for
9346: $self.field, ^self.method, $self.field[...] and $self.field(...)
9347: were added
9348:
9349: 2009-06-03 misha
9350:
9351: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
9352:
9353: 2009-06-02 misha
9354:
9355: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
9356: include/pa_opcode.h: - refactoring in last optimizations
9357: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
9358: now but code is much easy and it is ready for further
9359: improvements.
9360:
9361: 2009-05-27 misha
9362:
9363: * src/: types/pa_junction.h, types/pa_vjunction.C,
9364: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
9365: changed in destructing junctions
9366:
9367: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
9368: String:Body
9369:
9370: 2009-05-26 misha
9371:
9372: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
9373: one method detect_charset was deleted - bug was fixed in this
9374: method (error while detecting charset in content_type withot last
9375: ';')
9376:
9377: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
9378: once
9379:
9380: 2009-05-25 misha
9381:
9382: * src/classes/file.C: - bugfix: file::exec didn't work after
9383: optimizing of helper_length
9384:
9385: 2009-05-24 misha
9386:
9387: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
9388: were added - little refactoring
9389:
9390: * src/main/execute.C: - core while printing in debug log
9391: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
9392: optimisations were added
9393:
9394: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
9395: were added
9396:
9397: 2009-05-23 misha
9398:
9399: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
9400: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
9401: CORD_cat optimization
9402:
9403: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
9404: - call constr optimisation under separate define now
9405:
9406: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
9407: in $b should be string, not void
9408:
9409: * src/main/compile.y: - little fix for rem-cut optimisation
9410:
9411: * src/: include/pa_opcode.h, main/compile_tools.C,
9412: main/compile_tools.h, main/execute.C: - optimisations for
9413: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
9414:
9415: * INSTALL: - description of some #defined were added
9416:
9417: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
9418: before 1st access (memory usage is reduced if don't access to
9419: .text field)
9420:
9421: * src/include/pa_array.h: - array grows step now not static (it
9422: reduces numbers of reallocs)
9423:
9424: 2009-05-20 misha
9425:
9426: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
9427: $.b(2), $c[d] and $.e[f] was added
9428:
9429: * src/main/: compile.y, compile_tools.C, compile_tools.h,
9430: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
9431: $.e[f] was added
9432:
9433: * src/main/execute.C: - debug printing moved in defines
9434:
9435: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
9436: and little refactoring for OP_GET_OBJECT_ELEMENT +
9437: OP_GET_OBJECT_VAR_ELEMENT optimisation
9438:
9439: 2009-05-19 misha
9440:
9441: * src/main/: compile.y, compile_tools.C, compile_tools.h,
9442: execute.C: - $a.$b & ^a.$b bytecode optimisation
9443:
9444: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
9445: ^a.$b optimisation)
9446:
9447: * src/main/compile.y: - compiler now generate new opcodes:
9448: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
9449: ^a.b - compiler now cut off ^rem{ with all content ; any number
9450: of params }
9451:
9452: * src/main/execute.C: - code for handle new opcodes
9453: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
9454:
9455: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
9456: added for LA2V and LA2S
9457:
9458: * src/include/pa_opcode.h: - new defines which can be used for
9459: disable some bytecode optimisation and new opcodes were added
9460:
9461: 2009-05-17 misha
9462:
9463: * src/lib/cord/cordxtra.c: - bugfix.
9464:
9465: * tests/212.html: - .size[] and .study_size[] were added to tests
9466:
9467: * operators.txt: - info about regex class was added
9468:
9469: * tests/212.html: - tests for regex class were added
9470:
9471: 2009-05-16 misha
9472:
9473: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
9474: gc7.1
9475:
9476: * tests/022.html: - test for ^file:list[path;] (empty second param)
9477: was added
9478:
9479: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
9480: param) should work
9481:
9482: 2009-05-15 misha
9483:
9484: * src/classes/table.C: - automatically disable stringstream usage
9485: on freebsd4
9486:
9487: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
9488: scope
9489:
9490: * tests/211.html: - test with different types of access to hash was
9491: added
9492:
9493: * tests/210.html: - test which checks for loosing tainting in
9494: hash's keys was added
9495:
9496: * tests/208.html: - some parser work added. or stime == 0 %-)
9497:
9498: * src/lib/cord/cordbscs.c: - little hack was added to cord
9499:
9500: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
9501:
9502: * src/include/pa_version.h, configure.in: - moko have made a lot of
9503: optimisations for increacing version number more dramatically :)
9504:
9505: * src/classes/date.C: - little refactoring: use constructor which
9506: accepts formated string
9507:
9508: * src/: include/pa_string.h, main/pa_string.C: - String constructor
9509: which can print formatted string was added
9510:
9511: 2009-05-14 misha
9512:
9513: * src/include/pa_string.h: - type was fixed
9514:
9515: * src/: classes/hashfile.C, classes/op.C,
9516: include/pa_cache_managers.h, include/pa_charset.h,
9517: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
9518: include/pa_request.h, include/pa_sql_driver_manager.h,
9519: include/pa_string.h, include/pa_stylesheet_manager.h,
9520: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
9521: main/pa_charsets.C, main/pa_string.C,
9522: main/pa_stylesheet_connection.C, types/pa_value.h,
9523: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9524: types/pa_vobject.C, types/pa_vstateless_class.C,
9525: types/pa_vstateless_class.h: - hash_code caching was implemented
9526: (seaches should be faster now)
9527:
9528: * src/: classes/file.C, classes/hash.C, classes/image.C,
9529: classes/string.C, classes/table.C, include/pa_string.h,
9530: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
9531: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
9532: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
9533: types/pa_vrequest.C: - String constructors don't have that stupid
9534: true/false param which means 'tainted'. they accept lang instead.
9535:
9536: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
9537: with OPTIMIZE_RESULT
9538:
9539: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
9540: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
9541:
9542: 2009-05-13 misha
9543:
9544: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
9545: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
9546: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9547: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
9548: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
9549: main/pa_common.C, main/pa_request.C, main/pa_string.C,
9550: include/pa_string.h, classes/date.C, classes/file.C,
9551: classes/hash.C, classes/image.C, classes/string.C,
9552: classes/table.C, classes/xdoc.C: - result optimisation -
9553: helper_length parameter removed from string constructors
9554:
9555: 2009-05-11 misha
9556:
9557: * tests/209.html: - tests for ^hash::create[hash] were added
9558:
9559: * tests/208.html: - tests for $status:rusage, $status:memory,
9560: ^memory:compact[] were added
9561:
9562: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
9563: log10 were added
9564:
9565: * tests/206.html: - test for try with finally was added
9566:
9567: 2009-05-10 misha
9568:
9569: * tests/205.html: - test for ^file::create[...] was added
9570:
9571: * tests/204.html: - test for ^response:clear[] was added
9572:
9573: * tests/038.html: - tests for trigonometric functions were added
9574:
9575: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
9576: added - more tests for .add, .sub, .union, .intersects and
9577: .intersections
9578:
9579: * tests/065.html: - test for ^file:dirname was added
9580:
9581: * tests/030.html: - test for $cookie:fields was added
9582:
9583: * tests/203.html: - test for ^h._keys[column name] was added
9584:
9585: * tests/201.html: - tests for .trim were added
9586:
9587: * tests/202.html: - tests for last-day,
9588: date:calendar[type](YYYY;MM;DD) were added
9589:
9590: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
9591: .offset[type](N) were added
9592:
9593: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
9594: and .pos[c](N) were added
9595:
9596: * tests/141.html: - test for math:sha1 was added
9597:
9598: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
9599:
9600: 2009-05-09 misha
9601:
9602: * src/main/compile.y: - rollback
9603:
9604: 2009-05-05 misha
9605:
9606: * src/main/pa_exec.C: - little optimisation: somewhere length() was
9607: replaced by is_empty()
9608:
9609: * src/: include/pa_string.h, main/pa_charset.C: - little
9610: optimisation: somewhere length() was replaced by is_empty()
9611:
9612: * src/classes/table.C: - little optimisation: somewhere length()
9613: was replaced by is_empty()
9614:
9615: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
9616: classes/op.C, classes/table.C, main/pa_exception.C: - little
9617: optimisation: somewhere length() was replaced by is_empty()
9618:
9619: 2009-05-04 misha
9620:
9621: * src/: types/pa_method.h, types/pa_vstateless_class.C,
9622: types/pa_vstateless_class.h, main/execute.C,
9623: include/pa_request.h, classes/hash.C, classes/op.C,
9624: classes/table.C: - more optimisations were added: some operators
9625: don't switch write context anylonger
9626:
9627: 2009-05-01 misha
9628:
9629: * src/main/compile.y: - slightly more opcode optimisations for
9630: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
9631:
9632: * src/main/execute.C: - simplifying process for getters
9633:
9634: 2009-04-30 misha
9635:
9636: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
9637:
9638: * tests/results/199.processed: - test for checking $result into
9639: ^rem was added
9640:
9641: * tests/199.html: - test for checking $result into ^rem was added
9642:
9643: * tests/: 022.html, 096.html: - þsort after :list was asses (on
9644: some OS it returns list in different order)
9645:
9646: * src/: include/pa_array.h, include/pa_request.h,
9647: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
9648: changes in stack impl - get_element() optimisation: 3rd param
9649: removed - bugfix: problems with reading empty input param -
9650: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
9651:
9652: * tests/results/198.processed: - test for reading empty local var
9653: was added
9654:
9655: * tests/198.html: - test for reading empty local var was added
9656:
9657: 2009-04-29 misha
9658:
9659: * src/main/compile.y: - bugfix: couldn't compile because
9660: OP_VALUE__GET_ELEMENT should be unde #ifdef
9661:
9662: * src/: include/pa_array.h, include/pa_opcode.h,
9663: include/pa_request.h, main/compile.y, main/execute.C,
9664: main/pa_request.C, types/pa_vmethod_frame.C,
9665: types/pa_vmethod_frame.h: - we can work without opcode
9666: OP_STORE_PARAM, so it was removed
9667:
9668: 2009-04-28 misha
9669:
9670: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
9671: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
9672: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
9673: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
9674: 4.
9675: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
9676:
9677: * src/main/compile_tools.h: - new stuff for op-codes optimisation
9678:
9679: * src/: main/pa_string.C, classes/string.C: - !length() =>
9680: is_empty()
9681:
9682: 2009-04-27 misha
9683:
9684: * src/types/pa_vregex.h: - back explicit vars initialisation
9685:
9686: 2009-04-24 misha
9687:
9688: * src/classes/string.C: - ups. typo fixed
9689:
9690: * src/main/execute.C: - more replacements '*new VBool' to
9691: 'VBool::get' - checks for ^break[], ^continue[] and
9692: parser.interrupted were optimised
9693:
9694: * src/classes/string.C: - number of params.count() calls was
9695: slightly reduced
9696:
9697: 2009-04-23 misha
9698:
9699: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
9700: make it x64 friendly
9701:
9702: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
9703: parser is x64 friendly now
9704:
9705: 2009-04-22 misha
9706:
9707: * src/types/pa_vhashfile.C: - coder friendly exception about
9708: exceeding record size was added
9709:
9710: * src/classes/file.C: - use vregex object instead of direct calls
9711: methods from pcre lib
9712:
9713: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
9714: classes/string.C: - use vregex object instead of direct calls
9715: methods from pcre lib
9716:
9717: * src/: include/pa_common.h, main/pa_common.C: - method
9718: print_pcre_exec_error_text was moved to class vregex
9719:
9720: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
9721: was added
9722:
9723: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
9724: - class vregex was added
9725:
9726: 2009-04-21 misha
9727:
9728: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
9729:
9730: * src/: types/pa_junction.h, types/pa_value.C,
9731: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
9732: types/pa_wcontext.h, main/execute.C, classes/op.C: -
9733: junction-optimisation (destructors)
9734:
9735: * src/include/pa_array.h: - free under if now
9736:
9737: 2009-04-19 misha
9738:
9739: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
9740:
9741: 2009-04-18 misha
9742:
9743: * src/include/pa_version.h:
9744: :q :
9745:
9746: CV:
9747: ----------------------------------------------------------------------
9748:
9749: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
9750: refactoring
9751:
9752: * src/: include/pa_array.h, include/pa_hash.h,
9753: types/pa_vmethod_frame.h: - destructors under #ifdef now
9754:
9755: * src/include/pa_memory.h: - define for using destructors was added
9756:
9757: * src/: types/pa_method.h, types/pa_vstateless_class.C,
9758: main/execute.C: - some junctions will be cached now
9759:
9760: * src/include/pa_hash.h: - hash destructor frees pairs now
9761:
9762: * src/include/pa_array.h: - inline was added to destructor
9763:
9764: * src/types/pa_method.h: - comment was changed
9765:
9766: 2009-04-17 misha
9767:
9768: * src/: include/pa_array.h, include/pa_hash.h,
9769: types/pa_vmethod_frame.h: - destructors were added
9770:
9771: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
9772: renamed to always_use_result
9773:
9774: * src/main/: compile.y, compile_tools.h: - rollback changes in
9775: compiler: full backward compatibility is better
9776:
9777: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
9778: result in var's hash
9779:
9780: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
9781: optimisation in method_frame
9782:
9783: * src/include/pa_array.h: - optimisation in array (allocate
9784: elements only when needed)
9785:
9786: * src/types/pa_vresponse.C: - check for $response:headers field
9787: before looking at custom fields
9788:
9789: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
9790: not needed to check existance var with name 'result' in var's
9791: hash
9792:
9793: * src/main/compile.y: - compiler was changed: now it detects
9794: writings to $result and set flag writo_to_result in method
9795:
9796: * src/classes/string.C: - little optimisation: no needed to write
9797: number with lang
9798:
9799: * src/main/pa_charset.C: - methods readChar and skipChar which is
9800: used for read utf8-strings were renamed - is_escaped was renamed
9801: to isEscaped (to the same name convention)
9802:
9803: * src/: types/pa_method.h, main/compile_tools.h: - flag
9804: write_to_result added. compiler get this info from code.
9805:
9806: 2009-04-16 misha
9807:
9808: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
9809: String only before 1st write
9810:
9811: * src/include/pa_string.h: - not needed template removed
9812:
9813: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
9814: types/pa_vjunction.C, types/pa_vproperty.C,
9815: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
9816: main/pa_request.C, classes/bool.C, classes/double.C,
9817: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
9818: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
9819: bool objects)
9820:
9821: 2009-04-15 misha
9822:
9823: * src/lib/cord/cordxtra.c: - more optimisation
9824:
9825: * src/: include/pa_string.h, main/untaint.C: - String::append
9826: optimisation
9827:
9828: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
9829: then get and can sometime be used)
9830:
9831: * src/main/pa_string.C: - String::length optimisation
9832:
9833: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
9834: these methods read different strings
9835:
9836: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
9837: fresult_initial_void removed + some optimisation - if $result
9838: defined we don't write to context anymore
9839:
9840: * src/main/pa_charset.C: - readChar => skipChar (in this place we
9841: need just skip char)
9842:
9843: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9844: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
9845: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
9846:
9847: * src/types/pa_vvoid.h: - added get() method for retreave one
9848: instance
9849:
9850: 2009-04-11 misha
9851:
9852: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
9853:
9854: * tests/197.html: - test for parser://test in xml was added
9855:
9856: * src/classes/string.C: - small optimisation
9857:
9858: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
9859: optimisation
9860:
9861: 2009-04-10 misha
9862:
9863: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
9864: to pcre-7.8
9865:
9866: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
9867:
9868: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
9869: added
9870:
9871: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
9872: $request:CLASS_NAME were added
9873:
9874: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
9875: were added
9876:
9877: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
9878: $env:CLASS_NAME were added
9879:
9880: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
9881: '@todo' now
9882:
9883: * src/targets/cgi/parser3.C: - size_t -> int for calming down
9884: compirer
9885:
9886: * src/main/pa_string.C: - little code cleanup
9887:
9888: * src/main/pa_common.C: - describe one more UTF-8 related error
9889: during PCRE compile/execute
9890:
9891: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
9892: normalizing todo-comments: '@todo' now
9893:
9894: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
9895:
9896: * src/main/pa_charset.C: - type changed for making compiler happy
9897:
9898: 2009-03-10 misha
9899:
9900: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
9901: in main()
9902:
9903: 2009-02-01 misha
9904:
9905: * src/main/pa_http.C: - bugfix: double CRLF before the end of
9906: boundary
9907:
9908: 2009-01-25 misha
9909:
9910: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
9911:
9912: * src/classes/file.C: - more changes for parsing different number
9913: of params for file::load
9914:
9915: * tests/193.html: - tests for exception while base64-decode binary
9916: to string was added
9917:
9918: * tests/192.html: - tests for file::load with different number of
9919: options
9920:
9921: * src/classes/math.C: - ups. forgot '+1'
9922:
9923: * src/: classes/table.C, classes/file.C, include/pa_common.h,
9924: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
9925: main/pa_http.C: - ^file::load[...;http://...;] now can post files
9926: (new option $.encode[multipart-form/data] should be specified) -
9927: $.method[] option for file::load now is not case-sensitive
9928:
9929: * src/: include/pa_string.h, main/untaint.C: - for file post the
9930: new taint language L_FILE_POST was added
9931:
9932: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
9933: main/main.vcproj, classes/math.C, include/Makefile.am: - some
9934: stuff was moved to separate files
9935:
9936: 2009-01-23 misha
9937:
9938: * src/classes/math.C: - little optimisation in ^math:sha1[] -
9939: spaces to tabs were converted
9940:
9941: 2009-01-12 misha
9942:
9943: * src/main/pa_http.C: - value of $.method[] option force uppercased
9944: now
9945:
9946: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
9947: types/pa_vform.C, types/pa_vmail.C: - some constants changed
9948: their names
9949:
9950: * src/main/pa_common.C: - changes in formating
9951:
9952: * src/: classes/file.C, main/pa_http.C: - some constants changed
9953: their names
9954:
9955: * src/include/pa_http.h: - some spaces were converted to tabs
9956:
9957: * src/include/pa_common.h: - some constants changed their names
9958:
9959: * src/classes/file.C: - fixed 4-th paramether for file::load -
9960: little code rewriting
9961:
9962: * src/types/pa_vfile.C: - little code rewriting
9963:
9964: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
9965: types/pa_value.h: - some formating changes
9966:
9967: * src/include/pa_common.h: - some formating spaces transformed to
9968: tabs
9969:
9970: * src/classes/string.C: - exception while base64-decode binary to a
9971: string
9972:
9973: 2009-01-11 misha
9974:
9975: * configure.in: - version changed to 3.3.1b
9976:
9977: 2008-09-05 misha
9978:
9979: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
9980: release_3_3_0 on 2008-09-05 10:59:35 +0000
9981:
9982: 2008-09-04 misha
9983:
9984: * tests/: 130.html, 131.html: - these exceptions not typeless
9985: anymore
9986:
9987: * src/classes/op.C: - exception with 'invalid taint language' not
9988: typeless anylonger
9989:
9990: * src/classes/image.C: - some exceptions while operations with
9991: image not typeless anymore
9992:
9993: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
9994: main/pa_exec.C, main/pa_http.C: - some exceptions while
9995: operations with files not typeless anymore
9996:
9997: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
9998: types/pa_vdate.h: - exceptions while checking date range not
9999: typeless anymore
10000:
10001: * src/include/pa_exception.h: - exception type string for invalid
10002: date range was added
10003:
10004: 2008-09-03 misha
10005:
10006: * src/: classes/file.C, main/pa_string.C: - exception while pce
10007: operations not typeless anymore
10008:
10009: * src/include/pa_exception.h: - exception type for pce operations
10010: was added
10011:
10012: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
10013: and .CLASS_NAME insite classes
10014:
10015: * src/classes/table.C: - don't save table header whiile
10016: ^table.save[append;filename] if file exists
10017:
10018: 2008-09-02 misha
10019:
10020: * src/main/compile.y, src/main/compile_tools.h,
10021: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
10022: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
10023: renamed to partial and it login changed: we must mark class as
10024: partial for allow their modifications in future.
10025:
10026: 2008-08-29 misha
10027:
10028: * tests/results/022.processed: - testing taint[regex] in mask for
10029: file:list
10030:
10031: * tests/022.html: - testing taint[regex] in mask for file:list
10032:
10033: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
10034: for file:list was added
10035:
10036: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
10037: file:list
10038:
10039: 2008-08-26 misha
10040:
10041: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
10042: last derived object
10043:
10044: * src/classes/image.C: - many strings "image.format" replaced by
10045: IMAGE_FORMAT constant string - handle GPS info while parse exif -
10046: understand some more exif tags
10047:
10048: * src/include/pa_exception.h: - string "image.format" was added
10049:
10050: 2008-08-21 misha
10051:
10052: * src/: main/pa_string.C, classes/file.C: - use method for print
10053: pcre_exec text error
10054:
10055: * src/main/pa_common.C: - method for print pcre_exec text error was
10056: added
10057:
10058: * src/include/pa_common.h: - method declaration for print pcre_exec
10059: text error was added
10060:
10061: 2008-08-19 misha
10062:
10063: * src/main/execute.C: - bugfix: opcodes must be in separate
10064: namespace while debug execution as well
10065:
10066: * tests/: 015.html, results/015.processed: - test for escaping some
10067: parser chars was added
10068:
10069: 2008-08-18 misha
10070:
10071: * tests/: 190.html, 190.p, results/190.processed: - test for
10072: $caller.self.field + default getter in one class was added
10073:
10074: * tests/: 189.html, results/189.processed: - test for
10075: ^date::create[date object]
10076:
10077: * tests/: 188.html, results/188.processed: - tests for match with
10078: UTF-8 strings
10079:
10080: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
10081: ^string.match[]
10082:
10083: * ChangeLog: - parser 3.3.0 beta13
10084:
10085: 2008-08-15 misha
10086:
1.116 moko 10087: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
10088: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
10089: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
10090: dftables.c: - old PCRE files removed
1.95 moko 10091:
10092: * src/lib/pcre/config.h: - configuration for PCRE library
10093:
10094: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
10095: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
10096:
10097: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
10098: library and set flag UTF8 if $request:charset is UTF-8
10099:
10100: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
10101: include/pa_config_fixed.h: - moved to new PCRE library
10102:
10103: * src/: main/main.vcproj, types/types.vcproj,
10104: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
10105: win32\pcre instead of parser3\src\lib\pcre
10106:
10107: * src/: include/pa_opcode.h, include/pa_operation.h,
10108: main/compile.C, main/compile.y, main/compile_tools.C,
10109: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
10110: opcodes were moved to separate namespace
10111:
10112: 2008-08-14 misha
10113:
10114: * src/types/pa_vstateless_class.C: - newline at the end missed
10115:
10116: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
10117: tainting
10118:
10119: 2008-08-11 misha
10120:
10121: * tests/: 187.html, 187.p, results/187.processed: - tests for
10122: $caller.self, $caller.self.field and $caller.self.field[value]
10123: were added
10124:
10125: * src/types/pa_vmethod_frame.h: - still need to check 'self'
10126: runtime as well (for $caller.self)
10127:
10128: 2008-07-25 misha
10129:
10130: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
10131: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
10132: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
10133: tests with international characters
10134:
10135: 2008-07-23 misha
10136:
10137: * src/main/pa_http.C: - escape $cookies as %uXXXX while
10138: file::load[...;http://
10139:
10140: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
10141: now everywhere in separate namespace
10142:
10143: * src/types/pa_vmethod_frame.h: - looking for caller before looking
10144: for vars
10145:
10146: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
10147: can be escaped by '^'
10148:
10149: 2008-07-22 misha
10150:
10151: * src/classes/string.C, tests/186.html: - names changes:
10152: escape=>js-escape, unescape=>js-unescape
10153:
10154: 2008-07-21 misha
10155:
10156: * tests/results/186.processed: - test for string escape/unescape
10157:
10158: * tests/186.html: - test for string escape/unescape
10159:
10160: * src/classes/string.C: - string has escape and unescape methods
10161: now
10162:
10163: * src/: include/pa_string.h, main/pa_string.C: - escape method was
10164: added
10165:
10166: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
10167: method-layers added (with different params)
10168:
10169: 2008-07-18 misha
10170:
10171: * tests/results/185.processed: - test for ^str.pos[substr](offset)
10172: was added
10173:
10174: * tests/185.html: - test for ^str.pos[sub](offset) added
10175:
10176: * src/classes/string.C, src/classes/void.C, operators.txt: -
10177: ^string.pos[substr](offset) -- 2nd param accepted now
10178:
10179: * src/main/pa_string.C: - .pos works fine with offset for utf-8
10180: strings
10181:
10182: 2008-07-17 misha
10183:
10184: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
10185: helper length added for mid for small optimisation
10186:
10187: 2008-07-16 misha
10188:
10189: * tests/: 185.html, results/185.processed: - tests for
10190: length/left/right/mid/pos with utf-8 strings
10191:
10192: * src/classes/string.C: - left/right/mid/length/pos works fine for
10193: utf-8 strings
10194:
10195: * src/main/untaint.C: - comments removed
10196:
10197: * src/: include/pa_string.h, main/pa_string.C,
10198: include/pa_charset.h, main/pa_charset.C: - methods for working
10199: with pos/mid for strings in utf-8 were added
10200:
10201: 2008-07-15 misha
10202:
10203: * tests/: 184.html, results/184.processed: - test for case body as
10204: expression: $var(^switch(1){^case(1)(true)..})
10205:
10206: * src/classes/op.C: - case body can be expression now:
10207: $var(^switch(1){^case(1)(true)..})
10208:
10209: * tests/: results/183.processed, 183.html: - added test for testing
10210: new cookie encoding (%uXXXX)
10211:
10212: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
10213: decoding for backward compatibility they decoded from %XX in
10214: request:charset too
10215:
10216: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
10217: - cookie class now decode cookies before first access after last
10218: request:charset changing (as form class).
10219:
10220: * src/main/pa_charset.C: - added method escape for escaping cookies
10221: as %uXXXX - before transcode calculate required space for dest
10222: string. it reduce mem usage for transcode
10223:
10224: * src/include/pa_charset.h: - added method escape for escaping
10225: cookies as %uXXXX
10226:
10227: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
10228: was added. will used for escaping cookies as %uXXXX
10229:
10230: * src/include/pa_common.h: - escape method has new option for skip
10231: converting '+' to a space char
10232:
10233: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
10234: transcode - escape method has new option for skip converting '+'
10235: to a space char
10236:
10237: 2008-07-08 misha
10238:
10239: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
10240: (no UE if more then 1 case matches anylonger) - optimization:
10241: doing searching.as_string() || searching.as_double() only once
10242:
10243: 2008-07-04 misha
10244:
10245: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
10246: now ^date::create[date object] works
10247:
10248: * src/classes/string.C: - left and right added as aliases for start
10249: and end in ^string.trim[]
10250:
10251: 2008-07-03 misha
10252:
10253: * src/classes/file.C: - allow $.limit for file::sql as well
10254:
10255: * src/classes/file.C: - allow $.offset option for file::sql - force
10256: send limit=1 to query for use sql specifics authomatically
10257:
10258: * src/classes/: hash.C, string.C, table.C: - don't throw exception
10259: if $.limit value if empty. autoconvert it as everywere
10260:
10261: 2008-07-02 misha
10262:
10263: * configure.in: - time to change version number to 3.3.0 %-)
10264:
10265: * src/include/pa_version.h: - time to change version number to
10266: 3.3.0 %-)
10267:
10268: 2008-06-26 misha
10269:
10270: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
10271: $.limit(0) fixes
10272:
10273: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
10274: - $.limit(0) fixes
10275:
10276: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
10277: new API)
10278:
10279: * src/: include/pa_sql_driver_manager.h,
10280: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
10281: classes/op.C: - document_root added
10282:
10283: * src/main/compile.tab.C: - error message was changed
10284:
10285: 2008-06-25 misha
10286:
10287: * src/main/compile.y: - error message was changed
10288:
10289: 2008-06-24 misha
10290:
10291: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
10292:
10293: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
10294: tests for @OPTIONS\nappend
10295:
10296: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
10297:
10298: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
10299:
10300: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
10301:
10302: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
10303: compile.y
10304:
10305: 2008-06-17 misha
10306:
10307: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
10308: compilation: ^if(default){true. it's incorrect. must be
10309: exception}
10310:
10311: 2008-06-16 misha
10312:
10313: * tests/: 181.ent, 181.html, results/181.processed: - test for
10314: checking external reference loading with 'http://localhost'
10315: prefix while creating xdoc
10316:
10317: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
10318: ^math:long2ip[] and ^math:ip2long[]
10319:
10320: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
10321: added which use scalar stateless class method when user object
10322: used in scalar context - use get_scalar_value when user object
10323: requested in scalar context
10324:
10325: * src/main/pa_common.C: - size must be int but not size_t or we
10326: can't compare with 0 sprintf result
10327:
10328: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
10329: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
10330: with internal switch between local/global vars
10331:
10332: * src/types/pa_vclass.C: - register scalar if method @GET[] was
10333: specified
10334:
10335: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
10336: pa_vstateless_object.h: - stateless class and object now has
10337: private scalar field and getter/setter for working with it
10338:
10339: * src/classes/math.C: - methods math:long2ip & math:ip2long were
10340: moved to inet static class
10341:
10342: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
10343: class added (^inet:aton[IP], ^inet:ntoa(number))
10344:
10345: * tests/: 180.html, results/180.processed: - tests for
10346: ^math:long2ip(long) and ^math:ip2long[IP]
10347:
10348: * src/classes/math.C: - ^math:ip2long[IP] added
10349:
10350: 2008-06-11 misha
10351:
10352: * src/main/pa_xml_io.C: - use file_read_text again because of we
10353: need cut BOM code and remove DOS newline chars. but don't
10354: transcode it anyway.
10355:
10356: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
10357: main/pa_http.C: - option for disable transcoding while file_read
10358: and file_read_text added
10359:
10360: 2008-06-10 misha
10361:
10362: * tests/: 179.html, 179.p, results/179.processed: - test for many
10363: classes in 1 file
10364:
10365: * src/main/: compile.C, compile_tools.h: - compile return list of
10366: classes now.
10367:
10368: * src/main/: compile.y, compile.tab.C: - compile return list of
10369: classes now. internals.
10370:
10371: * src/main/pa_request.C: - compile return list of classes now. try
10372: call @conf and @auto for each returned class
10373:
10374: * src/include/pa_request.h: - compile return list of classes now
10375:
10376: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
10377: return list of classes when compile buf)
10378:
10379: 2008-06-07 misha
10380:
10381: * src/main/pa_request.C: - constructing VRequest object with 3rd
10382: param -- form
10383:
10384: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
10385: 3rd param: form. needed for get post_charset
10386:
10387: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
10388: added
10389:
10390: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
10391: types/pa_vform.C, types/pa_vform.h: - some polish
10392:
10393: 2008-06-06 misha
10394:
10395: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
10396: charset and decode chars from it but not from response:charset
10397:
10398: * src/main/pa_http.C: - detect_charset moved out of here
10399:
10400: * src/: include/pa_common.h, main/pa_common.C: - more helpers
10401: methods moved here - unescape_chars accepn one charset now
10402:
10403: * src/main/pa_http.C: - new constants used - don't allow
10404: $.content-type in ^file::load[;http://;$.method[POST]] - add
10405: charset info while ^file::load[;http://;$.method[POST]] - option
10406: $.omit-post-charset(true) added to ^file::load[;http://] for
10407: disabling charset during post
10408:
10409: * src/types/pa_vform.C: - new constants used
10410:
10411: * src/include/pa_common.h: - some constants were added
10412:
10413: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
10414: instead of StrEqNc
10415:
10416: * src/main/pa_common.C: - new method for caseless search
10417: c-substring in c-string - use isxdigit instead of is_hex_digit
10418:
10419: * src/include/pa_common.h: - new method for caseless search
10420: c-substring in c-string
10421:
10422: 2008-06-05 misha
10423:
10424: * tests/results/178.processed: - test for testing default getter
10425:
10426: * tests/178.html: - test for testing default getter
10427:
10428: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
10429: for test for testing default getter
10430:
10431: * src/main/execute.C: - default getter soul
10432:
10433: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
10434: requested objects' field not found
10435:
10436: * src/types/pa_vclass.C: - register default getter if defined - get
10437: default getter if requested field not found
10438:
10439: * src/types/pa_vstateless_object.h: - method get_default_getter was
10440: added
10441:
10442: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10443: pointer to default getter and methods for get/set it were added
10444:
10445: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
10446: auto_name field (for default getter)
10447:
10448: 2008-06-04 misha
10449:
10450: * src/main/pa_xml_io.C: - load external xml in binary mode (no
10451: transcoding, no cutting BOM code, no fixing line breaks) and get
10452: it to libxml "as is"
10453:
10454: 2008-06-03 misha
10455:
10456: * src/main/pa_common.C: - use store_Char instead of
10457: transcodeCharFromUTF8
10458:
10459: * src/: include/pa_charset.h, main/pa_charset.C: - method
10460: store_Char added, transcodeCharFromUTF8 -- removed
10461:
10462: 2008-06-02 misha
10463:
10464: * tests/: results/177.processed, 177.html: - test for checking
10465: .[acm]date after local ^file::load[] was added
10466:
10467: * tests/: results/176.processed, 176.html: - test for checking
10468: @OPTION\locals + @method[vars][locals] added
10469:
10470: * tests/results/auto.p: - CLASS_PATH specified for checking use
10471:
10472: 2008-05-30 misha
10473:
10474: * src/main/: compile.y, compile.tab.C: - changes in compiler:
10475: @OPTION\nlocals + @method[vars][;locals;] were added
10476:
10477: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
10478: moved to separate method op_code - switch from VMethodFrame to
10479: VMethodFrameGlobal + VMethodFrameLocal
10480:
10481: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
10482: was moved to separate method op_code
10483:
10484: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
10485: VMethodFrame now
10486:
10487: * src/types/pa_vstateless_class.h: - stateless class have bool flag
10488: all_vars_local as well
10489:
10490: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
10491: pa_vmethod_frame_local.h, Makefile.am: - who children for
10492: VMethodFrame were added: one (global) works as VMethodFrame
10493: before and second (local) write all vars in self vars scope
10494:
10495: * src/types/pa_method.h: - method has bool flag all_vars_local now
10496:
10497: 2008-05-29 misha
10498:
10499: * tests/: 129.html, results/129.processed: - more tests for
10500: ^table.hash[]
10501:
10502: * src/classes/hash.C: - ^hash::sql has a new option:
10503: $.type[hash|string|table] as ^table.hash[] one.
10504:
10505: * src/classes/op.C: - ^try has 3rd param now: finally code which
10506: executed anyway after try or catch section
10507:
10508: 2008-05-27 misha
10509:
10510: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
10511: must not fail if $.distinct(1) wasn't specified
10512:
10513: 2008-05-26 misha
10514:
10515: * src/classes/op.C: - allow ^throw[my type]
10516:
10517: 2008-05-22 misha
10518:
10519: * configure.in, configure: - version number updated to 3.2.4b
10520:
10521: * src/classes/: op.C, string.C: - trim format string before
10522: eval/format
10523:
10524: * tests/: results/175.processed, 175.html: - more tests for
10525: different format strings in .format[]
10526:
10527: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
10528: as well (not only %XX)
10529:
10530: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
10531: charset specified - checks for format before print number
10532: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
10533: (instead of tabs) removed
10534:
10535: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
10536: charset specified
10537:
10538: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
10539: char in requested charset from utf code was added
10540:
10541: 2008-05-19 misha
10542:
10543: * tests/: 174.html, results/174.processed: - test for
10544: ^hashfile.cleanup[] added
10545:
10546: * src/classes/hashfile.C: - optimization: don't create any key or
10547: value variable if it's name weren't specified
10548: (^hf.foreach[;v]{...})
10549:
10550: 2008-05-16 misha
10551:
10552: * src/classes/hash.C: - optimization: don't create any key variable
10553: if variable name wasn't specified (^h.foreach[;v]{...})
10554:
10555: 2008-05-15 misha
10556:
10557: * src/classes/op.C: - small changes
10558:
10559: * src/classes/hashfile.C: - code reformating (as hash.foreach)
10560:
10561: * src/classes/hash.C: - calculate var_context once before foreach
10562:
10563: 2008-05-14 misha
10564:
10565: * src/classes/hashfile.C: - incorrect vars context calculation for
10566: ^hashfile.foreach[;]{} fixed
10567:
10568: * src/classes/: hash.C, table.C: - little optimisation
10569:
10570: * src/classes/file.C: - bugfix: double absolute path while loading
10571: file
10572:
10573: * tests/: 174.html, results/174.processed: - tests for hashfile
10574: were added
10575:
10576: * buildall-with-xml: - moving to libxslt 1.1.24
10577:
10578: 2008-04-30 misha
10579:
10580: * src/classes/file.C: - stat file while loading (local only) so
10581: .adate, .mdate and .cdate available without additional ::stat
10582:
10583: 2008-04-28 misha
10584:
10585: * src/classes/file.C: - $.name and $.content-type available for
10586: stated file
10587:
10588: 2008-04-14 misha
10589:
10590: * src/targets/cgi/parser3.C: - new year in copyright %-)
10591:
10592: * src/include/pa_version.h: - new version number in head
10593:
10594: 2008-04-10 misha
10595:
10596: * tests/: 080.html, results/080.processed: - cut '0' from
10597: exponential part because of on diff OS it differ (20 or 020 for
10598: ex)
10599:
10600: * tests/: 119.html, results/119.processed: - check for encoding
10601: while creating xdoc
10602:
10603: 2008-04-09 misha
10604:
10605: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
10606:
10607: * src/main/pa_common.C: - comment added
10608:
10609: * src/classes/date.C: - little refactoring
10610:
10611: 2008-04-07 misha
10612:
10613: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
10614: style of ^table.save[]: prepare one big string and sabe it at
10615: once. it's safe on freebsd 4.x but use much more memory.
10616:
10617: * buildall-with-xml, buildall-without-xml: - option
10618: --disable-stringstream added (under comment. use it on freebsd
10619: 4.x)
10620:
10621: 2008-02-22 misha
10622:
10623: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
10624: specified together in file::load[;http] - get back transcoding
10625: $.body[] in file::load[;http]
10626:
10627: 2008-02-21 misha
10628:
10629: * src/classes/date.C: - ^date.gmt-string[] was added
10630:
10631: * src/types/pa_value.C: - method for output date in RFC 822 format
10632: moved to pa_common.h
10633:
10634: * src/include/pa_common.h: - method for output date in RFC 822
10635: format moved here from pa_value.C
10636:
10637: * src/types/pa_vmail.C: - fixed core in sending mail with
10638: attachment in simple mode ($.file[file here]) introduced in 3.2.2
10639:
10640: 2008-02-20 misha
10641:
10642: * src/main/pa_http.C: - transcode $.headers before escaping into
10643: specified charset while ^file::load[...;http://...] (L_URI
10644: instead of L_HTTP_HEADER) - $.cookies param available in
10645: ^file::load[;http://...] now (but we don't parse set-cookies from
10646: response yet) (cookies not transcoded as common $cookies)
10647:
10648: 2008-02-19 misha
10649:
10650: * src/main/pa_request.C: - rollback: we mustn't force taint
10651: $response:field values because in this case
10652: $response:locateion[http://...] don't works.
10653:
10654: 2008-02-15 misha
10655:
10656: * src/classes/op.C: - little refactoring
10657:
10658: * src/main/pa_http.C: - taint names of $.headers for load[;http
10659:
10660: * src/main/pa_request.C: - force taint values of $response:field
10661:
10662: 2008-02-14 misha
10663:
10664: * src/main/pa_request.C: - $response:field transcoded to
10665: $response:charset before escaping now
10666:
10667: * src/main/pa_http.C: - some outdated comments removed
10668:
10669: * src/classes/date.C: - lastdat -> last-day
10670:
10671: * src/classes/date.C: - ^date:lastday(year;month) and
10672: ^date.lastday[] were added - little code refactoring - comments
10673: changes
10674:
10675: * tests/: 159.html, results/159.processed: - test for number of
10676: days in February
10677:
10678: * src/types/pa_value.C: - fixes in code formatting
10679:
10680: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
10681: and comments
10682:
10683: 2008-02-13 misha
10684:
10685: * src/main/pa_common.C: - bugfix for february at leap year
10686:
10687: 2008-01-28 misha
10688:
10689: * tests/: 160.html, results/160.processed: - more test for cache
10690: added
10691:
10692: * src/classes/op.C: - bugfix: cache body executed twice if contains
10693: unhandled exception
10694:
10695: 2008-01-25 misha
10696:
10697: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
10698: bug when hashfile became inavailable after memory:compact)
10699:
10700: * src/lib/sdbm/apr_strings.C: - +arp_malloc
10701:
10702: 2008-01-22 misha
10703:
10704: * src/classes/table.C: - little refactiring and exception texts
10705: changes in method ^table.hash[]
10706:
10707: * src/types/pa_vcookie.C: - link to cookie specification changed
10708:
10709: 2008-01-21 misha
10710:
10711: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
10712: file::exec/cgi
10713:
10714: * src/classes/file.C: - bugfix: core while processing headers if
10715: executed cgi script don't return content
10716:
10717: 2008-01-18 misha
10718:
10719: * buildall-with-xml: - move to libxml2 version 2.6.31
10720:
10721: * src/include/pa_version.h, configure.in: - version number updated
10722: to '3.2.3b'
10723:
10724: 2007-12-28 misha
10725:
10726: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
10727: hash.contains
10728:
10729: 2007-12-27 misha
10730:
10731: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10732: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
10733: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
10734: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
10735: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10736: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
10737: src/targets/cgi/parser3.vcproj,
10738: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
10739: back to VS2003 because of Apache 1.3 module can't work if it was
10740: built in VS 2005. with cgi all file so VS2003 project files can
10741: be easy converted to the new format.
10742:
10743: 2007-12-04 misha
10744:
10745: * src/types/pa_vcode_frame.h: - changes in comment
10746:
10747: 2007-11-29 misha
10748:
10749: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
10750: intercept strings any longer
10751:
10752: * tests/: 173.html, results/173.processed: - tests for
10753: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
10754: but not in main code frame
10755:
10756: * tests/: 172.html, results/172.processed: - more tests for pass
10757: objects from code frames
10758:
10759: 2007-11-27 misha
10760:
10761: * tests/: 152.html, results/152.processed: - tests for converting
10762: strings 'true'/'false' to bool were added
10763:
10764: * tests/152.html: - added checks for converting strings
10765: 'true'/'false' to bool
10766:
10767: * src/classes/string.C: - ^srting.bool[] now can convert to bool
10768: not only strings with numbers but with values 'true'/'false' as
10769: well
10770:
10771: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
10772: for parser3.log increased
10773:
10774: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
10775:
10776: * src/include/pa_common.h: - remove_crlf return cstring size now
10777:
10778: * src/include/pa_types.h: - constant with buffer size for
10779: parser3.log added
10780:
10781: 2007-11-16 misha
10782:
10783: * tests/cat.sh: - script for tests for file::exec/cgi
10784:
10785: * tests/171.html: - tests for file::exec/cgi
10786:
10787: * tests/results/171.processed: - tests results for file::exec/cgi
10788:
10789: 2007-11-15 misha
10790:
10791: * src/main/pa_exec.C: - fixed incorrect exec code for unix
10792:
10793: * src/classes/file.C: - .body must be set before analyzing cgi
10794: headers
10795:
10796: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
10797: only if exec/cgi return anything.
10798:
10799: 2007-11-14 misha
10800:
10801: * operators.txt: - info about new text|binary option for
10802: file::exec/cgi was added
10803:
10804: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
10805: ^file:exec[[text|binary];script;...]
10806:
10807: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
10808: classes/string.C, classes/table.C: - more text strings moved to
10809: the one place
10810:
10811: 2007-11-09 misha
10812:
10813: * src/types/pa_vrequest.C: - $request:argv must be taint
10814:
10815: * ChangeLog: - $request:argv [patch from Sumo]
10816:
10817: * operators.txt: - $request:argv
10818:
10819: * src/: include/pa_request_info.h, types/pa_vrequest.C,
10820: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
10821:
10822: 2007-10-25 misha
10823:
10824: * buildall-with-xml, buildall-without-xml: - options preparations
10825: for ./configure rewrited
10826:
10827: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
10828: error occure in unhandled_exception finally fixed
10829:
10830: 2007-10-23 misha
10831:
10832: * tests/: 170.html, results/170.processed: - test for
10833: @method[][result]
10834:
10835: * operators.txt: - added info about node.prefix and
10836: node.namespaceURI
10837:
10838: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
10839:
10840: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
10841: added for node and attribute
10842:
10843: 2007-10-22 misha
10844:
10845: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
10846:
10847: * src/main/pa_request.C: - added const content-transfer-encoding
10848:
10849: * src/include/pa_request.h: - added const content-transfer-encoding
10850: - ups. constants must be in lowercase (for search)
10851:
10852: * src/types/pa_vmail.C: - more constants used -
10853: content-transfer-encoding: 8bit added
10854:
10855: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
10856:
10857: * src/include/pa_request.h: - more constants
10858:
10859: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
10860: ommit anymore if $.content-disposition was specified - little
10861: refactoring
10862:
10863: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
10864:
10865: 2007-10-17 misha
10866:
10867: * operators.txt: - info about
10868: table::create[nameless]{data}[>options<] was added
10869:
10870: * src/main/: compile.tab.C, compile.y: - if error occure while
10871: compile method don't put this method in methods table anymore.
10872: in other case the parser coredumped if @unhandled_exception
10873: method can't be compiled because of parser.compile error.
10874:
10875: * src/main/execute.C: - little code reformating
10876:
10877: * src/main/pa_request.C: - little code reformating - comment
10878: changed
10879:
10880: 2007-10-16 misha
10881:
10882: * tests/: 035.html, results/035.processed: - tests
10883: table::create[]{}[options] added
10884:
10885: * src/classes/table.C: - table::create[]{} now accept 3rd param:
10886: options (only $.seperator[] yet)
10887:
10888: 2007-10-10 misha
10889:
10890: * src/classes/table.C: - some contstants moved to pa_common.h -
10891: some code changes
10892:
10893: 2007-10-02 misha
10894:
10895: * src/main/pa_uue.C: - memory usage during uuencode reduced more
10896: then three time as much. but base64 encoding method still use
10897: less memory anyway.
10898:
10899: 2007-09-17 misha
10900:
10901: * operators.txt: - added info about $cookie:fields
10902:
10903: * src/types/pa_vcookie.C: - $cookie:fields available now
10904:
10905: * src/classes/hash.C: - some stuff for use with .for_each moved to
10906: common
10907:
10908: * src/include/pa_common.h: - some stuff for use with .for_each
10909: moved here
10910:
10911: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
10912:
10913: 2007-09-14 misha
10914:
10915: * buildall-with-xml: - new xml libs again =)
10916:
10917: 2007-08-28 misha
10918:
10919: * operators.txt: - texts about ^table.columns[[column name]] and
10920: ^string.split[...][v][column name] were added
10921:
10922: * tests/: 168.html, 169.html, results/168.processed,
10923: results/169.processed: - tests for ^table.columns[[column name]]
10924: and ^string.split[...][v][column name] were added
10925:
10926: * src/classes/table.C: - new option ^table.columns[[column name]]
10927: was added
10928:
10929: * src/classes/string.C: - new option ^string.split[...;v;[column
10930: name]]
10931:
10932: * src/include/pa_exception.h: - error text message for
10933: ^hash._keys[], ^table.columns[] and ^string.split[]
10934:
10935: 2007-08-27 misha
10936:
10937: * src/main/untaint.C: - try to fix coredump on unix if print to
10938: body ^taint[sql][something] outside of connect
10939:
10940: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
10941: outside of connect
10942:
10943: * buildall-with-xml, buildall-without-xml: - strip parser3 was
10944: added (commented by default)
10945:
10946: 2007-08-20 misha
10947:
10948: * operators.txt: - comment about new method ^node.hasAttributes[]
10949: was added
10950:
10951: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
10952: duplicated exception text strings were removed
10953:
10954: * src/include/pa_exception.h: - more exception text strings moved
10955: here
10956:
10957: * src/classes/table.C: - some duplicate exceptions' text strings
10958: removed
10959:
10960: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
10961: xdoc.C, xnode.C: - some duplicate exceptions' text strings
10962: removed
10963:
10964: * src/include/pa_exception.h: - some exception text strings movet
10965: to pa_exception
10966:
10967: * tests/: 149.html, results/149.processed: - test for
10968: ^xnode.hasAttributes[] was added - some code changes
10969:
10970: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
10971: added
10972:
10973: 2007-08-17 misha
10974:
10975: * tests/: results/006.processed, results/059.processed, 006.html,
10976: 059.html: - more tests for match
10977:
10978: * tests/: 129.html, results/129.processed: - tests for
10979: ^table.hash[...][$.type[string|hash|table]] added
10980:
10981: * src/targets/cgi/parser3.C: - little syntax changes
10982:
10983: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
10984: syntax changes
10985:
10986: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
10987: messages in parser3.log switched off by default. If someone
10988: really still need it: use $SIGPIPE(1)
10989:
10990: 2007-08-08 misha
10991:
10992: * buildall-with-xml, buildall-without-xml: - remove libs source
10993: files by default since now
10994:
10995: 2007-08-07 misha
10996:
10997: * buildall-without-xml: - some option syntax changes
10998:
10999: * buildall-with-xml: - compile libxml2 without http support - some
11000: option syntax changes
11001:
11002: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
11003:
11004: 2007-08-06 misha
11005:
11006: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
11007:
11008: * tests/: 160.html, results/160.processed: - cache test was
11009: rewrited
11010:
11011: 2007-07-06 misha
11012:
11013: * tests/: 153.html, results/153.processed: - added test for
11014: ^math:sha1[string]
11015:
11016: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
11017: transcoded
11018:
11019: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
11020: were added
11021:
11022: 2007-06-28 misha
11023:
11024: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
11025: some incorrect chars
11026:
11027: 2007-06-19 misha
11028:
11029: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
11030: were moved on top because of gcc 4 had a problems during
11031: building.
11032:
11033: 2007-06-18 misha
11034:
11035: * tests/results/019.processed: - new image commited
11036:
11037: 2007-06-09 misha
11038:
11039: * src/classes/: op.C, table.C: - in while and table.select method
11040: as_expression used now
11041:
11042: * src/types/pa_vmethod_frame.h: - method as_expression was added
11043:
11044: 2007-06-08 misha
11045:
11046: * tests/: 166.html, results/166.processed: - test for
11047: ^match[...][n]
11048:
11049: * tests/: 165.html, results/165.processed: - tests for loops
11050:
11051: * src/lib/cord/include/private/cord_pos.h: - back to origin value
11052: because of no speed/memory optimisation but some proglems with
11053: long cycles occure
11054:
11055: 2007-06-06 misha
11056:
11057: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
11058: ^table.select(true) and ^table.select(1) didn't works because of
11059: awaiting junction-param only. fixed.
11060:
11061: 2007-05-24 misha
11062:
11063: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
11064: with 0.5 secs interval
11065:
11066: * src/classes/op.C: - cache was rewrited. I hope it works with
11067: locking system now on unix
11068:
11069: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
11070: system locks which wait till other threads release it but try get
11071: lock, if fail wait 1 sec and make 10 attempts.
11072:
11073: * src/include/pa_os.h: - consts for blocking locks + some comments
11074: were added
11075:
11076: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
11077: opening files
11078:
11079: * src/classes/table.C: - changes in includes. if unclude <sstream>
11080: after our classes on unix it can't be build
11081:
11082: * src/types/pa_vhashfile.C: - not needed code removed
11083:
11084: 2007-05-23 misha
11085:
11086: * src/: classes/file.C, classes/op.C, main/pa_common.C,
11087: include/pa_common.h: - cosmetic changes
11088:
11089: 2007-05-18 misha
11090:
11091: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
11092: often. it's give some speed increasing
11093:
11094: * tests/results/160.processed: - returned time corrected
11095:
11096: * tests/160.html: - time increased because on unix 1 mean nothing
11097: :(
11098:
11099: * operators.txt: - added info about ^hash.contain[key]
11100:
11101: * src/classes/hash.C: - added ^hash.contain[key]
11102:
11103: * src/include/pa_hash.h: - added method for checking key exists in
11104: hash
11105:
11106: 2007-05-07 misha
11107:
11108: * src/include/pa_string.h: - was compilation error during build on
11109: freebsd4
11110:
11111: 2007-05-03 misha
11112:
11113: * src/classes/table.C: - option $.type[hash|string|table] was added
11114: for ^table.hash[]
11115:
11116: * src/classes/file.C: - comment removed
11117:
11118: 2007-04-26 misha
11119:
11120: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
11121: real files doesn't opened in place anymore
11122:
11123: 2007-04-24 misha
11124:
11125: * src/classes/math.C: - I thought one more time and remove lg(N) :)
11126:
11127: * src/include/pa_exception.h: "static" removed
11128:
11129: 2007-04-23 misha
11130:
11131: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
11132:
11133: * src/classes/math.C: added: - ^math:ln(N) (the same as
11134: ^math:log(N)) - ^math:lg(N)
11135:
11136: * tests/: 097.html, results/097.processed: - charsets converstion
11137: during ^file::load[text;http://...] added
11138:
11139: * tests/: 164.html, results/164.processed: - check for set expires
11140: as a date
11141:
11142: * tests/: 164.html, results/164.processed: - test for hashfile
11143:
11144: * src/classes/hashfile.C: - little comment changes
11145:
11146: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
11147: access
11148:
11149: * src/: classes/date.C, classes/double.C, classes/file.C,
11150: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
11151: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
11152: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
11153: classes/xnode.h, include/pa_request.h, main/execute.C,
11154: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11155: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
11156: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
11157: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
11158: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
11159: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
11160: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11161: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
11162: "parser.runtime" strings were removed
11163:
11164: * src/classes/hashfile.C: - with .clear[] called files_delete()
11165: now.
11166:
11167: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
11168:
11169: * src/include/pa_exception.h: - string constant with
11170: "parser.runtime" text was added
11171:
11172: 2007-04-20 misha
11173:
11174: * operators.txt: - some comments changing
11175:
11176: * operators.txt: - added info about .^hashfile.release[],
11177: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
11178:
11179: * configure: =cheching for unsetenv
11180:
11181: * src/classes/hashfile.C: - ^hashfile.cleanup[],
11182: ^hashfile.release[] were added
11183:
11184: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
11185: ^string.match[][] understand new option now: return number of
11186: matches but not table wit results
11187:
11188: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
11189: reopen now
11190:
11191: * src/classes/op.C: - bug. must be false
11192:
11193: * configure.in: - checking for unsetenv was added
11194:
11195: * src/types/pa_vform.C: - some comments
11196:
11197: 2007-04-18 misha
11198:
11199: * buildall-with-xml: moving to libxml2-2.6.28
11200:
11201: * buildall-with-xml, buildall-without-xml: added commented lines
11202: with --disable-safe-mode option
11203:
11204: * operators.txt: - info about $form:files
11205:
11206: 2007-04-17 misha
11207:
11208: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
11209: $form:files was added
11210:
11211: * tests/: 163.html, results/163.processed: removing auto format
11212:
11213: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
11214:
11215: 2007-04-16 misha
11216:
11217: * tests/: 163.html, results/163.processed: - test for .int[],
11218: floor, round, ceiling and .format[]
11219:
11220: * src/classes/file.C: - little optimization for getting args in
11221: exec/cgi
11222:
11223: 2007-04-13 misha
11224:
11225: * src/classes/file.C: - arguments for file::exec/cgi can be
11226: specified now as s table with one column
11227:
11228: 2007-03-27 misha
11229:
11230: * tests/: 162.html, results/162.processed: - test for
11231: ^table.select(^condition[$t])
11232:
11233: * tests/results/auto.p: - load windows-1251 charset for some tests
11234:
11235: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
11236:
11237: * tests/: results/161.processed, 161.html, 161_utf8.txt,
11238: 161_windows1251.txt: - added test for
11239: ^file::load[text;/local/file.txt;$.charset[...]]
11240:
11241: * tests/: results/013.processed, 013.html: - added test for
11242: checking $._default value while hash modifications
11243:
11244: * tests/: 160.html, results/160.processed: - add test for
11245: ^cache[key](secs){code}, ^cache[] and ^cache(0)
11246:
11247: 2007-03-22 misha
11248:
11249: * src/include/pa_common.h: - "charset" string defined for
11250: ^file::load[text;/local.txt] and ^table::load[/table.txt]
11251:
11252: * src/main/: pa_common.C, pa_http.C: - $.charset option for
11253: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
11254: added - not needed transcodes were removed from
11255: ^file::load[...;http://...]
11256:
11257: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
11258: added
11259:
11260: * src/classes/date.C: - date.week was fixed
11261:
11262: * operators.txt: - added info about date.weekyear
11263:
11264: * tests/: 159.html, results/159.processed: - tests for date.week
11265: and date.weekyear added
11266:
11267: 2007-03-15 misha
11268:
11269: * src/classes/table.C: - enclose column numbers for nameless tables
11270: as well
11271:
11272: 2007-03-14 misha
11273:
11274: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
11275:
11276: * src/classes/table.C: - table.save optimization: now required much
11277: less memory
11278:
11279: 2007-03-13 misha
11280:
11281: * tests/results/: 158.processed, 158.processes: - tests for
11282: table.save/table.load
11283:
11284: * tests/: 158.html, results/158.processes: - tests for
11285: table.save/table.load
11286:
11287: * buildall-with-xml: libxml2: --without-ftp --without-docbook
11288:
11289: * buildall-with-xml: - pattern needed now for building
11290:
11291: * tests/results/097.processed: - added test results for xdoc::load
11292: & xdoc::load[http://...]
11293:
11294: * tests/097.html: - added test for xdoc::load
11295:
11296: 2007-03-12 misha
11297:
11298: * tests/: 107.html, results/107.processed: - added test for xpath
11299: '//man'
11300:
11301: 2007-03-01 misha
11302:
11303: * tests/: 097.html, results/097.processed: - added test for
11304: creating xdoc from file
11305:
11306: * tests/: results/157.processed, 157.html: - added test for
11307: file:move
11308:
11309: 2007-02-28 misha
11310:
11311: * src/classes/xdoc.C: - another attempt
11312:
11313: * src/classes/xdoc.C: - roll back last changes for a while
11314:
11315: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
11316:
11317: * src/classes/file.C: - under lock we create non-exist dir anyway
11318:
11319: * tests/results/099.processed: - ever send content-disposition to
11320: client with file
11321:
11322: * tests/157.html: + test for file:copy
11323:
11324: 2007-02-26 misha
11325:
11326: * src/classes/file.C: - some similar strings moved to #define
11327: instead of to be copy/pasted many times
11328:
11329: * src/types/pa_vfile.h: - class name string ("file") moved to
11330: #define
11331:
11332: 2007-02-20 misha
11333:
11334: * configure.in: - added some strings for sqlite detection
11335:
11336: 2007-02-19 misha
11337:
11338: * operators.txt: - some comments changes
11339:
11340: * buildall-with-xml, buildall-without-xml: - some modifications
11341:
11342: 2007-02-17 misha
11343:
11344: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
11345:
11346: * src/main/pa_request.C: - damn, i forgot to commit it while I
11347: change console behaviour
11348:
11349: 2007-02-12 misha
11350:
11351: * src/targets/cgi/parser3.C: - don't print headers if
11352: $console:line[data] was used during cgi execution.
11353:
11354: * src/types/pa_vconsole.h: - console class have bool flag now which
11355: marked as 'true' if class was used.
11356:
11357: * tests/: 152.html, results/152.processed: - more types was added
11358: to test 152
11359:
11360: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
11361: adding 'bool' (^if($image){} caused exception)
11362:
11363: 2007-02-09 misha
11364:
11365: * tests/: 152.html, results/152.processed: - test alightly updated
11366:
11367: * tests/: 152.html, results/152.processed: - test rewrited
11368:
11369: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
11370: bugfix. I broke xdoc & xnode in expression
11371:
11372: 2007-02-08 misha
11373:
11374: * tests/: 152.html, results/152.processed: - add test for checking
11375: 'def' for void, string, bool, int & double
11376:
11377: 2007-02-07 misha
11378:
11379: * operators.txt: - ^file:base64[filespec] was added
11380:
11381: * tests/results/153.processed: - result test for
11382: ^file:base64[filespec] was updated
11383:
11384: * tests/153.html: - test for ^file:base64[filespec] was added
11385:
11386: * src/types/pa_vconsole.h: - little optimization
11387:
11388: * src/classes/file.C: - ^file:base64[filespec]
11389:
11390: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
11391:
11392: * src/include/pa_common.h: - declarations for
11393: ^file:base64[filespec]
11394:
11395: * src/types/pa_vcookie.C: - little optimization
11396:
11397: 2007-02-06 misha
11398:
11399: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
11400: were temporary commented
11401:
11402: * src/types/pa_vbool.h: - bugfix
11403:
11404: * tests/156.html: - added test for bool cookie
11405:
11406: * src/types/pa_vcookie.h: - not needed string "cookie" removed
11407:
11408: * tests/: 155.html, results/155.processed: - added test for check
11409: $.encloser[] option for table save/load
11410:
11411: * tests/: 153.html, 154.html, todo.txt: - two more tests added
11412:
11413: 2007-02-05 misha
11414:
11415: * tests/results/152.processed: - newline at the end was missed
11416:
11417: * tests/results/141.processed: - math:md5 must be lowercased
11418:
11419: * src/targets/cgi/parser3.C: - 2007 in help ;)
11420:
11421: 2007-02-03 misha
11422:
11423: * tests/results/: 150.processed, 151.processed, 152.processed: -
11424: test for bool added and some content length fixes
11425:
11426: * tests/152.html: - test for bool added
11427:
11428: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
11429:
11430: * operators.txt: - info bool class was added
11431:
1.116 moko 11432: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 11433: classes/classes.vcproj, classes/double.C, classes/int.C,
11434: classes/string.C, classes/void.C, classes/xnode.C,
11435: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
11436: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
11437: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
11438: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11439: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
11440: types/types.vcproj: - bool class was added
11441:
11442: * src/main/pa_request.C: - fix
11443:
11444: 2007-01-18 misha
11445:
11446: * src/: main/pa_string.C, classes/string.C: - return table during
11447: ^string.match[][] even if no matched found.
11448:
11449: 2006-12-20 misha
11450:
11451: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
11452: http://www.parser.ru/forum/?id=55598 ]
11453:
11454: 2006-12-19 misha
11455:
11456: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
11457: details: http://www.parser.ru/forum/?id=52359
11458:
11459: * src/main/pa_request.C: - always set content-disposition for
11460: $response:body[hash here]. more details:
11461: http://www.parser.ru/forum/?id=52130
11462:
11463: 2006-12-07 misha
11464:
11465: * operators.txt: - added info about bool params in cookie set
11466:
11467: * src/types/pa_vcookie.C: - bool param in cookies available now
11468: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
11469: ]
11470:
11471: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
11472: was added
11473:
11474: 2006-12-02 misha
11475:
11476: * src/classes/file.C: - file_block_read used instead of native read
11477:
11478: * src/main/pa_common.C: - added file_block_read with read error
11479: detection - file_block_read used instead of native read
11480:
11481: * src/include/pa_common.h: - added file_block_read declaration
11482:
11483: 2006-12-01 misha
11484:
11485: * operators.txt: - info about $var.CLASS_NAME was added
11486:
11487: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
11488: $var.CLASS_NAME added
11489:
11490: * operators.txt: - added info about ^file:copy[]
11491:
11492: * src/classes/file.C: - ^file:copy[from;fo] was added
11493:
11494: 2006-11-20 misha
11495:
11496: * src/classes/date.C: - bug fix :)
11497:
11498: 2006-11-17 misha
11499:
11500: * src/include/pa_common.h: - array in crc32 calculation was changed
11501: to static
11502:
11503: * src/main/pa_common.C: - little optimization in getMonthDays -
11504: small changes in crc32 calculation
11505:
11506: * src/classes/date.C: - not needed code was removed
11507:
11508: 2006-11-16 misha
11509:
11510: * src/types/pa_vmail.C: - fix missed brakes
11511:
11512: * src/types/pa_vmail.C: - mail:send now set content-type:
11513: multipart/related instead of multipart/mixed if file have
11514: $.content-id[]
11515:
11516: 2006-11-15 misha
11517:
11518: * src/types/pa_vdouble.h: abs -> fabs
11519:
11520: 2006-11-14 misha
11521:
11522: * operators.txt: - added info about ^file.md5[] and
11523: ^file:md5[file-name]
11524:
11525: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
11526: added
11527:
11528: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
11529: FILE_BUFFER_SIZE
11530:
11531: * src/classes/math.C: - hex_string was moved to pa_common.h
11532:
11533: * src/include/pa_common.h: - hex_string was moved from math.C -
11534: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
11535:
11536: * src/types/pa_vdouble.h: - incorrect frac detection with negative
11537: values was fixed
11538:
11539: 2006-11-13 misha
11540:
11541: * operators.txt: - added info about ^math:crc32[string],
11542: ^file:crc32[file-name] & ^file.crc32[]
11543:
11544: * src/classes/math.C: - added ^math:crc32[string]
11545:
11546: * src/classes/file.C: - some comments were changed - added
11547: ^file:crc32[file-name] and ^file.crc32[]
11548:
11549: * src/: include/pa_common.h, main/pa_common.C: - some functions for
11550: crc32 calculation added
11551:
11552: 2006-11-03 misha
11553:
11554: * src/include/pa_array.h: - not needed variable removed
11555:
11556: * tests/: 150.html, 151.html, results/150.processed,
11557: results/151.processed: - 2 tests were added
11558:
11559: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
11560: with $.reverse(1) were fixed
11561:
11562: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
11563: query converted to $.charset during ^file::load[http://...]
11564:
11565: 2006-11-02 misha
11566:
11567: * src/include/pa_table.h: ups. forget '=' char
11568:
11569: * src/include/pa_table.h: - one more fix in
11570: .locate[...][$.reverse(1)]
11571:
11572: 2006-11-01 misha
11573:
11574: * src/classes/math.C: - bug fix, details:
11575: http://www.parser.ru/forum/?id=53360
11576:
11577: * src/include/pa_table.h: - bug fix during ^table.locate( condition
11578: false for all records )[$.reverse(1)]
11579:
11580: * src/main/pa_http.C: - second param for this mid method is length
11581: but not end_index so this method has error and can't detect
11582: charsets in next content-types: Content-type: text/html;
11583: charset="windows-1251" Content-type: text/html;
11584: charset="windows-1251"; Content-type: text/html;
11585: charset=windows-1251;
11586:
11587: only Content-type: text/html; charset=windows-1251 was fine
11588:
11589: 2006-10-31 misha
11590:
11591: * src/classes/file.C: - empty args in file::exec removed now
11592:
11593: 2006-09-03 paf
11594:
11595: * src/classes/file.C: proper tainting of
11596: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
11597:
11598: 2006-06-09 paf
11599:
11600: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
11601:
11602: * src/classes/table.C: formatting
11603:
11604: * src/classes/table.C: incorporated patch from misha: Sent:
11605: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
11606: ignoring string options for ^table.save[]
11607:
11608: * src/classes/hash.C: incorporated patch from misha Sent:
11609: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
11610: $hash._default disappear while
11611:
11612: * operators.txt: ^mail:send[ $.file1[ $.value[file]
11613: $.format[!uue|!base64] << new base64 option. default uue ] ]
11614:
11615: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
11616: PM Subject: patch for base64 in ^mail:send[] %-)
11617:
11618: 2006-04-09 paf
11619:
11620: * src/main/compile.tab.C: ` change compiled
11621:
11622: * gnu.vcproj, operators.txt, parser3.sln,
11623: src/classes/classes.vcproj, src/classes/file.C,
11624: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
11625: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
11626: src/classes/xnode.C, src/include/pa_array.h,
11627: src/include/pa_config_fixed.h, src/include/pa_dir.h,
11628: src/include/pa_memory.h, src/include/pa_request.h,
11629: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
11630: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
11631: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
11632: src/lib/pcre/pcre_dftables.vcproj,
11633: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
11634: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
11635: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
11636: src/main/pa_cache_managers.C, src/main/pa_charset.C,
11637: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
11638: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
11639: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
11640: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
11641: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
11642: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
11643: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
11644: src/types/pa_value.h, src/types/pa_vcookie.C,
11645: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
11646: src/types/pa_vmail.C, src/types/pa_vresponse.C,
11647: src/types/pa_vstatus.C, src/types/types.vcproj,
11648: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
11649: ^menu, ^hash/hashfile.foreach
11650:
11651: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
11652: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
11653: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
11654: src/classes/xnode.C, src/include/pa_array.h,
11655: src/include/pa_config_fixed.h, src/include/pa_dir.h,
11656: src/include/pa_memory.h, src/include/pa_request.h,
11657: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
11658: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
11659: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
11660: src/lib/pcre/pcre_dftables.vcproj,
11661: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
11662: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
11663: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
11664: src/main/pa_cache_managers.C, src/main/pa_charset.C,
11665: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
11666: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
11667: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
11668: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
11669: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
11670: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
11671: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
11672: src/types/pa_value.h, src/types/pa_vcookie.C,
11673: src/types/pa_vmail.C, src/types/pa_vresponse.C,
11674: src/types/pa_vstatus.C, src/types/types.vcproj,
11675: tests/descript.ion: ! switched to VS2005 (projects and
11676: object<info explicitly typed>.for_each(, info)) +
11677: $response:field[] setting void means removing + grammar $name`
11678: name stops now, for mysql `$field` + started ^break[]
11679: ^continue[], in ^for. TODO: to other iterators (while, menu,
11680: foreach) + all log messages += [uri=, method=, cl=]
11681:
11682: * buildall-with-xml: merged . ftp paths update
11683:
11684: * buildall-with-xml: . ftp paths update
11685:
11686: 2006-03-04 paf
11687:
11688: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
11689: checks++ [thanks to Igor Zinkovsky for detailed report]
11690:
11691: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
11692: Igor Zinkovsky for detailed report]
11693:
11694: 2006-03-01 paf
11695:
11696: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
11697: \n to ' ' in
11698:
11699: 2006-02-18 paf
11700:
11701: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
11702: \n to ' ' in
11703:
11704: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
11705:
11706: 2006-02-03 paf
11707:
11708: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
11709: base64
11710:
11711: * src/main/pa_common.C: ! bugfix: decoding from base64
11712:
11713: 2006-01-20 paf
11714:
11715: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
11716: economy fix
11717:
11718: * src/classes/: table.C: merged from HEAD ! bugfix
11719: ^table.save[$.encloser-s now handled properly
11720:
11721: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
11722: handled properly
11723:
11724: 2006-01-19 paf
11725:
11726: * buildall-with-xml, buildall-without-xml: merged from HEAD !
11727: libgc:USE_MUNMAP activates merging of free memory blocks which
11728: helps a lot in our case: after transform we want
11729: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
11730:
11731: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
11732: economy fix
11733:
11734: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
11735: activates merging of free memory blocks which helps a lot in our
11736: case: after transform we want CORD(main.result)->cstr[big
11737: malloc]->transcode[big malloc]
11738:
11739: 2006-01-17 paf
11740:
11741: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
11742: before reading them. got rid of reallocs = became quicker and
11743: less fragmentated
11744:
11745: 2005-12-29 paf
11746:
1.116 moko 11747: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
11748: configure, configure.in, src/include/pa_version.h,
11749: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 11750: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
11751: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
11752: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
11753: src/lib/ltdl/missing: . merged from 3.2.1
11754:
1.116 moko 11755: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
11756: packaged when 'make dist', so do configure companion files in
11757: src/lib/ltdl
11758:
11759: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
11760: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
11761: missing: . now config_auto.h is created with configure [were
11762: constant]
1.95 moko 11763:
11764: * INSTALL: . references to documentation and some clarification
11765:
11766: * buildall-with-xml, buildall-without-xml: . farawell doc
11767: indication
11768:
1.116 moko 11769: * Makefile.am: . dist+=buildall*
1.95 moko 11770:
11771: 2005-12-28 paf
11772:
11773: * configure: . 3.2.1
11774:
11775: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
11776: simplify build process, see INSTALL
11777:
11778: 2005-12-26 paf
11779:
11780: * configure: ver
11781:
11782: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
11783: version
11784:
11785: 2005-12-21 paf
11786:
11787: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
11788: compiled with bison 1.875b, it reports unexpected token names
11789:
11790: 2005-12-19 paf
11791:
11792: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
11793: holds a link to xmlNode to prevent premature gc(xmlNode)
11794:
11795: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
11796: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
11797: src/main/main.vcproj, src/main/pa_globals.C,
11798: src/targets/cgi/parser3.vcproj,
11799: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
11800: configure, configure.in, src/include/pa_version.h: . killing
11801: gdome [what a relief]
11802:
11803: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
11804: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
11805: run_parser.sh, results/001.processed, results/002.processed,
11806: results/003.processed, results/004.processed,
11807: results/005.processed, results/006.processed,
11808: results/008.processed, results/009.processed,
11809: results/010.processed, results/011.processed,
11810: results/012.processed, results/013.processed,
11811: results/014.processed, results/015.processed,
11812: results/016.processed, results/017.processed,
11813: results/018.processed, results/020.processed,
11814: results/021.processed, results/022.processed,
11815: results/023.processed, results/024.processed,
11816: results/025.processed, results/026.processed,
11817: results/027.processed, results/028.processed,
11818: results/029.processed, results/030.processed,
11819: results/031.processed, results/032.processed,
11820: results/033.processed, results/034.processed,
11821: results/035.processed, results/036.processed,
11822: results/037.processed, results/038.processed,
11823: results/039.processed, results/040.processed,
11824: results/041.processed, results/042.processed,
11825: results/043.processed, results/044.processed,
11826: results/045.processed, results/046.processed,
11827: results/047.processed, results/048.processed,
11828: results/049.processed, results/050.processed,
11829: results/051.processed, results/052.processed,
11830: results/053.processed, results/054.processed,
11831: results/055.processed, results/056.processed,
11832: results/057.processed, results/058.processed,
11833: results/059.processed, results/060.processed,
11834: results/061.processed, results/062.processed,
11835: results/063.processed, results/064.processed,
11836: results/065.processed, results/066.processed,
11837: results/067.processed, results/068.processed,
11838: results/069.processed, results/070.processed,
11839: results/071.processed, results/072.processed,
11840: results/073.processed, results/074.processed,
11841: results/075.processed, results/076.processed,
11842: results/077.processed, results/078.processed,
11843: results/079.processed, results/080.processed,
11844: results/081.processed, results/082.processed,
11845: results/083.processed, results/084.processed,
11846: results/085.processed, results/086.processed,
11847: results/087.processed, results/088.processed,
11848: results/089.processed, results/090.processed,
11849: results/091.processed, results/092.processed,
11850: results/093.processed, results/094.processed,
11851: results/095.processed, results/096.processed,
11852: results/097.processed, results/099.processed,
11853: results/100.processed, results/101.processed,
11854: results/102.processed, results/104.processed,
11855: results/105.processed, results/106.processed,
11856: results/107.processed, results/108.processed,
11857: results/109.processed, results/110.processed,
11858: results/111.processed, results/112.processed,
11859: results/113.processed, results/114.processed,
11860: results/115.processed, results/117.processed,
11861: results/119.processed, results/120.processed,
11862: results/121.processed, results/122.processed,
11863: results/123.processed, results/124.processed,
11864: results/125.processed, results/126.processed,
11865: results/127.processed, results/128.processed,
11866: results/129.processed, results/130.processed,
11867: results/131.processed, results/132.processed,
11868: results/133.processed, results/134.processed,
11869: results/135.processed, results/136.processed,
11870: results/138.processed, results/139.processed,
11871: results/140.processed, results/141.processed,
11872: results/142.processed, results/143.processed,
11873: results/144.processed, results/145.processed,
11874: results/146.processed, results/147.processed,
11875: results/148.processed, results/149.processed, results/auto.p: .
11876: now works if we turn off default auto.p
11877:
1.116 moko 11878: * configure: . makes
1.95 moko 11879:
11880: * src/types/pa_vxnode.C: . less warnings
11881:
11882: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
11883: tests/145.html, tests/149.html, tests/descript.ion,
11884: tests/outputs/d.cmd, tests/results/142.processed,
11885: tests/results/143.processed, tests/results/144.processed,
11886: tests/results/145.processed, tests/results/146.processed,
11887: tests/results/147.processed, tests/results/148.processed,
11888: tests/results/149.processed: . removed .nodeValue from all node
11889: types other than 5 (grabbed piece from gdome)
11890:
11891: * tests/: 137.html, results/137.processed: . not handled this case
11892: yet. code does not hang from inserting parent into child,
11893: considering thing minor issue -- nodes are removed from source
11894: anyway, don't know why shold that be an error after all
11895:
11896: * src/targets/cgi/parser3.C: . style
11897:
11898: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
11899: xdoc too [were barking "not element"]
11900:
11901: 2005-12-16 paf
11902:
11903: * tests/: 146.html, 147.html, 148.html: . more tests
11904:
11905: * src/classes/xnode.C: . also bark on possible errors
11906:
11907: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
11908: props
11909:
11910: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
11911: main/compile.y: merged from HEAD ! fixed overoptimized
11912: ^call(false) case. (confused it with ^call[] case)
11913:
11914: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
11915: ^call(false) case. (confused it with ^call[] case)
11916:
11917: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
11918:
11919: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
11920: results/001.processed, results/002.processed,
11921: results/003.processed, results/004.processed,
11922: results/005.processed, results/006.processed,
11923: results/008.processed, results/009.processed,
11924: results/010.processed, results/011.processed,
11925: results/012.processed, results/013.processed,
11926: results/014.processed, results/015.processed,
11927: results/016.processed, results/017.processed,
11928: results/018.processed, results/019.processed,
11929: results/020.processed, results/021.processed,
11930: results/022.processed, results/023.processed,
11931: results/024.processed, results/025.processed,
11932: results/026.processed, results/027.processed,
11933: results/028.processed, results/029.processed,
11934: results/030.processed, results/031.processed,
11935: results/032.processed, results/033.processed,
11936: results/034.processed, results/035.processed,
11937: results/036.processed, results/037.processed,
11938: results/038.processed, results/039.processed,
11939: results/040.processed, results/041.processed,
11940: results/042.processed, results/043.processed,
11941: results/044.processed, results/045.processed,
11942: results/046.processed, results/047.processed,
11943: results/048.processed, results/049.processed,
11944: results/050.processed, results/051.processed,
11945: results/052.processed, results/053.processed,
11946: results/054.processed, results/055.processed,
11947: results/056.processed, results/057.processed,
11948: results/058.processed, results/059.processed,
11949: results/060.processed, results/061.processed,
11950: results/062.processed, results/063.processed,
11951: results/064.processed, results/065.processed,
11952: results/066.processed, results/067.processed,
11953: results/068.processed, results/069.processed,
11954: results/070.processed, results/071.processed,
11955: results/072.processed, results/073.processed,
11956: results/074.processed, results/075.processed,
11957: results/076.processed, results/077.processed,
11958: results/078.processed, results/079.processed,
11959: results/080.processed, results/081.processed,
11960: results/082.processed, results/083.processed,
11961: results/084.processed, results/085.processed,
11962: results/086.processed, results/087.processed,
11963: results/088.processed, results/089.processed,
11964: results/090.processed, results/091.processed,
11965: results/092.processed, results/093.processed,
11966: results/094.processed, results/095.processed,
11967: results/096.processed, results/097.processed,
11968: results/099.processed, results/101.processed,
11969: results/102.processed, results/104.processed,
11970: results/105.processed, results/106.processed,
11971: results/107.processed, results/108.processed,
11972: results/109.processed, results/110.processed,
11973: results/111.processed, results/112.processed,
11974: results/113.processed, results/114.processed,
11975: results/115.processed, results/116.processed,
11976: results/117.processed, results/118.processed,
11977: results/119.processed, results/120.processed,
11978: results/121.processed, results/122.processed,
11979: results/123.processed, results/124.processed,
11980: results/125.processed, results/126.processed,
11981: results/127.processed, results/128.processed,
11982: results/129.processed, results/130.processed,
11983: results/131.processed, results/132.processed,
11984: results/133.processed, results/134.processed,
11985: results/135.processed, results/136.processed,
11986: results/137.processed, results/138.processed,
11987: results/139.processed, results/140.processed,
11988: results/141.processed: . refreshed old tests, made them work
11989: without auto.p (in utf8) . things noted: . gif got encoded
11990: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
11991: some strange year)
11992:
11993: * INSTALL: . revived linux libgc fix
11994:
11995: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
11996: glib/gdome in INSTALL and patches]
11997:
11998: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11999: include/pa_charset.h, include/pa_config_includes.h,
12000: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
12001: include/pa_xml_exception.h, lib/cord/Makefile.am,
12002: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
12003: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
12004: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
12005: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
12006: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
12007: types/pa_vxnode.h: . started killing gdome
12008:
12009: 2005-12-13 paf
12010:
12011: * src/main/: pa_request.C: merged from HEAD ! when code in
12012: @unhandled_exception thrown another exception, print correct
12013: origin (earlier code in catch of exception inside of
12014: @unhandled_exception grabbed parent_frame(original_exception)
12015: origin and printed it, instead of true origin)
12016:
12017: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
12018: another exception, print correct origin (earlier code in catch of
12019: exception inside of @unhandled_exception grabbed
12020: parent_frame(original_exception) origin and printed it, instead
12021: of true origin)
12022:
12023: 2005-12-09 paf
12024:
12025: * INSTALL: . updated INSTALL doc to work around linux stack base
12026: detection problem, due to change in gc6.4 code
12027:
12028: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
12029: ignored in ^string.matched :(
12030:
12031: * src/main/pa_string.C: ! regex tainting were ignored in
12032: ^string.matched :(
12033:
12034: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
12035: src/include/pa_config_fixed.h, src/include/pa_version.h,
12036: src/main/compile.y, src/main/compile_tools.h,
12037: src/main/pa_charset.C, src/main/pa_common.C,
12038: src/main/pa_globals.C, src/main/pa_string.C,
12039: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
12040: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
12041:
12042: 2005-12-08 paf
12043:
12044: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
12045: 500 chars now handled OK [were wrapped on 500th char according to
12046: rfc, but sendmail failed to unwrap it properly]
12047:
12048: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
12049: handled OK [were wrapped on 500th char according to rfc, but
12050: sendmail failed to unwrap it properly]
12051:
12052: * src/targets/isapi/parser3isapi.C: . less warnings
12053:
12054: * src/targets/isapi/parser3isapi.C: . undone some strange change
12055: since 3.1.5
12056:
12057: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
12058: link fixes
12059:
12060: * src/: classes/date.C, include/pa_config_fixed.h,
12061: main/compile.tab.C, main/compile.y, main/compile_tools.h,
12062: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
12063: main/pa_string.C, targets/cgi/getopt.c: . less warnings
12064:
12065: * src/include/pa_config_fixed.h: . removed outdated string origins
12066: [in current storage scheme there's no place for them. someday we
12067: can add third CORD to store origins and special version of parser
12068: which stores origins there [separate binary]]
12069:
12070: 2005-12-07 paf
12071:
12072: * src/targets/isapi/parser3isapi.C: . now links in release mode
12073:
12074: * src/include/pa_version.h: makefiles
12075:
12076: * src/include/pa_version.h: . not beta
12077:
12078: * configure, configure.in, src/include/pa_version.h: not beta
12079:
12080: 2005-12-06 paf
12081:
12082: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
12083: [some details here http://i2/tasks/edit/?id=4869912143891354460]
12084: decided to undo the change ^call[$void] passes void. now it will
12085: pass empty string again.
12086:
12087: * src/main/: compile.tab.C, compile.y: . version readded
12088:
12089: * src/classes/op.C: . in this version there is no ^switch[$nothing]
12090: = ^switch[void] problem
12091:
12092: 2005-12-01 paf
12093:
12094: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
12095: caused ^case[string] to be coerced to double since searching
12096: value were not string (it was vvoid)
12097:
12098: * src/classes/op.C: . bugfix ^switch[$void_value] caused
12099: ^case[string] to be coerced to double since searching value were
12100: not string (it was vvoid)
12101:
12102: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
12103: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
12104:
12105: 2005-11-30 paf
12106:
12107: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
12108: win32 must putenv("TZ="), on unix works only putenv("TZ")
12109:
12110: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
12111: putenv("TZ="), on unix works only putenv("TZ")
12112:
12113: * INSTALL: . xml libs versions updated
12114:
12115: * src/main/pa_globals.C: //20051130 trying to remove this, author
12116: claims that fixed a lot there // 20040920 for now both
12117: workarounds needed. wait for new libxml/xsl versions
12118:
12119: 2005-11-28 paf
12120:
12121: * src/classes/table.C: merged from HEAD: ! nameless table has
12122: columns==0
12123:
12124: * src/classes/table.C: ! nameless table has columns==0
12125:
12126: * src/main/pa_http.C: merged from HEAD: ! status line check made
12127: earlier [was totally wrong]
12128:
12129: * src/main/pa_http.C: ! status line check made earlier [was totally
12130: wrong]
12131:
12132: 2005-11-25 paf
12133:
12134: * src/include/pa_array.h: -this reduces speed(table::load) strange.
12135: undoing for now...
12136:
12137: * src/include/pa_version.h: -this reduces speed(table::load),
12138: strange. undoing
12139:
12140: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
12141:
12142: * src/classes/op.C: + ^while(){}[SEPARATOR]
12143:
12144: * src/include/pa_array.h: + optimistics added: all arrays (table
12145: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
12146: this speeds things up and saves memory a LOT! (not noticed
12147: negative effect on syntetic tests, future will tell...)
12148:
12149: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
12150: changed gc_malloc implementation, which obscured profiling
12151:
12152: * src/classes/table.C: merged from HEAD: + optimized
12153: table::load/sql, now row ArrayString-s allocated with
12154: columns.count() elements and don't always grow from
12155: count=3[realloc,realloc]
12156:
12157: * src/classes/table.C: + optimized table::load/sql, now row
12158: ArrayString-s allocated with columns.count() elements and don't
12159: always grow from count=3[realloc,realloc]
12160:
12161: * src/classes/table.C: merged from HEAD: . ^table.save unused
12162: buffer after save
12163:
12164: * src/classes/table.C: . ^table.save unused buffer after save
12165:
12166: 2005-11-24 paf
12167:
12168: * configure.in: . merged glib2-config patch
12169:
12170: * configure.in: + trying to find glib2-config
12171:
12172: * src/: classes/file.C, include/pa_common.h, main/execute.C,
12173: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
12174: file/dir_readable to simple file/dir_exist, this would help in
12175: situations "class not found because .p file has bad rights" << in
12176: that case error would be explicit "access denied to 'this' file"
12177:
1.116 moko 12178: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 12179:
12180: * src/: classes/file.C, include/pa_common.h, main/execute.C,
12181: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
12182: to simple file/dir_exist, this would help in situations "class
12183: not found because .p file has bad rights" << in that case error
12184: would be explicit "access denied to 'this' file"
12185:
12186: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
12187: include/pa_http.h, main/Makefile.am, main/main.vcproj,
12188: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
12189: ^file::exec/cgi[script;$.charset[changed]
12190: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
12191: encoded in $.charset charset
12192:
12193: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
12194: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
12195: encoded in $.charset charset
12196:
12197: * src/: include/Makefile.am, include/pa_common.h,
12198: include/pa_http.h, main/Makefile.am, main/main.vcproj,
12199: main/pa_common.C, main/pa_http.C: . extracted http:// into
12200: separate file [preparation for
12201: ^file::cgi[script;$.form[$.field1[]
12202:
12203: 2005-11-22 paf
12204:
12205: * src/: include/pa_version.h, main/compile.tab.C: makefiles
12206:
12207: * acinclude.m4, configure.in: . merged underquting fixes
12208:
1.116 moko 12209: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 12210:
12211: * src/classes/op.C: . overmerged a little
12212:
12213: * src/main/compile.tab.C: Makefile
12214:
12215: * src/main/: pa_common.C: . less gcc warnings
12216:
12217: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
12218: now reports original exception if we have no old cache
12219:
12220: * src/classes/op.C: + $exception.handled[cache] now reports
12221: original exception if we have no old cache
12222:
12223: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
12224: from HEAD: + ^taint/untaint[regex] << escapes these:
12225: \^$.[]|()?*+{}
12226:
12227: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
12228: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
12229:
12230: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
12231: getenv-ed variable, which does not work both on win32&unix.
12232: copied old TZ value now
12233:
12234: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
12235: stored pointer to getenv-ed variable, which does not work both on
12236: win32&unix. copied old TZ value now
12237:
12238: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
12239: getenv-ed variable, which does not work both on win32&unix.
12240: copied old TZ value now
12241:
12242: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
12243: access to internal hash
12244:
12245: * src/types/pa_vresponse.C: + $response:headers access to internal
12246: hash
12247:
12248: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
12249: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
12250: isapi] this reduces number of "GC Warning: Repeated allocation of
12251: very large block" messages to only important onces
12252:
12253: * src/targets/isapi/parser3isapi.C: +
12254: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
12255: isapi] this reduces number of "GC Warning: Repeated allocation of
12256: very large block" messages to only important onces
12257:
12258: * src/classes/string.C: merged from HEAD: + removed limitation on
12259: ^string/int/double:sql{}[$.default[({param style})] ]
12260:
12261: * src/classes/string.C: + removed limitation on
12262: ^string/int/double:sql{}[$.default[({param style})] ]
12263:
12264: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
12265: with ?params or $.form option" limitation
12266:
12267: * src/main/pa_common.C: + removed "use either uri with ?params or
12268: $.form option" limitation
12269:
12270: * src/: classes/file.C, classes/string.C, include/pa_common.h,
12271: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
12272: ^file::base64[encoded] decode
12273:
12274: * src/: classes/file.C, classes/string.C, include/pa_common.h,
12275: main/pa_common.C: + ^file.base64[] encode +
12276: ^file::base64[encoded] decode
12277:
12278: * src/classes/: file.C, string.C: + ^string.base64[] encode +
12279: ^string:base64[encoded] decode
12280:
12281: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
12282: ^string:base64[in] encode + ^string.base64[] decode
12283:
12284: 2005-11-21 paf
12285:
12286: * src/classes/file.C: + merged from HEAD:
12287: ^file::create[text;file.xml;^untaint[xml]{data}]
12288:
12289: * src/classes/file.C: +
12290: ^file::create[text;file.xml;^untaint[xml]{data}]
12291:
12292: * src/main/pa_request.C: ! merged: $response:body[file] now
12293: differes from :download, it does not return content-disposition
12294: at all now [previusely it returned valueless content-disposition]
12295:
12296: * src/main/pa_request.C: ! $response:body[file] now differes from
12297: :download, it does not return content-disposition at all now
12298: [previusely it returned valueless content-disposition]
12299:
12300: * src/main/: compile.tab.C, compile.y: ! overoptimized void
12301: literals, reverted to just vvod, recreating empty array with each
12302: void_value token. that's absolutely needed, since that array
12303: grows
12304:
12305: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
12306: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
12307: types/pa_vmethod_frame.h: + merged: expression literals:
12308: true/false. ^format[$.indent(true)]
12309:
12310: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
12311: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
12312: types/pa_vmethod_frame.h: + expression literals: true/false.
12313: ^format[$.indent(true)]
12314:
12315: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
12316: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
12317: i386-pc-win32)"
12318:
12319: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
12320: $env:PARSER_VERSION reports "3.1.5beta (compiled on
12321: i386-pc-win32)"
12322:
12323: 2005-11-18 paf
12324:
12325: * src/classes/: double.C, int.C: ! ^int/double:sql{select
12326: null}[$.default(123)] will now return default value
12327:
12328: * src/classes/op.C: + merged ^cache[] << returns current cache
12329: expiration time
12330:
12331: * src/classes/op.C: + ^cache[] << returns current cache expiration
12332: time
12333:
12334: * src/classes/table.C: ! merged ^table::create[not'nameless';
12335: failed << Exception.problem_source pointed to local var!
12336:
12337: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
12338: Exception.problem_source pointed to local var!
12339:
12340: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
12341: now loads VFile.ptr!=0, so such files can be saved now
12342:
12343: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
12344: loads VFile.ptr!=0, so such files can be saved now
12345:
12346: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
12347: only . and .. now removed from list [were removed all .*]
12348:
12349: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
12350: .. now removed from list [were removed all .*]
12351:
12352: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
12353: open error now checked, were not :( [stole that piece from apache
12354: 1.3 sources]
12355:
12356: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
12357: checked, were not :( [stole that piece from apache 1.3 sources]
12358:
12359: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
12360: untainting of @main result if returned by $result or
12361: $response:body
12362:
12363: * src/main/pa_request.C: ! ensured proper untainting of @main
12364: result if returned by $result or $response:body
12365:
12366: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
12367: issue: now tries to guess content-length and allocates one big
12368: piece if possible [regretfully gc_realloc works as malloc+free,
12369: leaving lots of holes behind]
12370:
12371: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
12372: fixed file load memory issue: now tries to guess content-length
12373: and allocates one big piece if possible [regretfully gc_realloc
12374: works as malloc+free, leaving lots of holes behind]
12375:
12376: 2005-11-16 paf
12377:
12378: * src/: include/pa_common.h, classes/file.C, classes/table.C,
12379: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
12380: table::save with enclosers now doubles them: "->"" !
12381: table::save/load do not remove elements from options hash
12382:
12383: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
12384: [were overoptimized ^if(double_literal), compiler confused
12385: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
12386:
12387: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
12388: [were overoptimized ^if(double_literal), compiler confused
12389: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
12390:
12391: * src/: classes/file.C, classes/table.C, include/pa_common.h,
12392: main/pa_common.C: ! table::save with enclosers now doubles them:
12393: "->"" ! table::save/load do not remove elements from options hash
12394:
12395: 2005-11-03 paf
12396:
1.116 moko 12397: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
12398: compilation, not all makefiles liked that
1.95 moko 12399:
12400: 2005-08-30 paf
12401:
12402: * src/classes/op.C: merge . speedup check of [DEFAULT]
12403:
12404: * src/classes/op.C: . speedup check of [DEFAULT]
12405:
12406: 2005-08-26 paf
12407:
12408: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
12409:
12410: * src/: classes/date.C, types/pa_vdate.h: + date.week
12411:
12412: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
12413: complains about bad!=nameless
12414:
12415: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
12416: about bad!=nameless
12417:
12418: * src/classes/: hash.C, string.C, table.C, void.C: merged !
12419: optional options were allowed to be empty. were checked
12420: if(is_string), changed to !defined||is_string to allow void
12421:
12422: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
12423: classes/string.C, classes/table.C, classes/void.C: ! optional
12424: options were allowed to be empty. were checked if(is_string),
12425: changed to !defined||is_string to allow void
12426:
12427: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
12428: as_junction where they needed as_int/double, so failed with
12429: recent "(const) now no junction" optimization
12430:
12431: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
12432: merged ! many classes/* used as_junction where they needed
12433: as_int/double, so failed with recent "(const) now no junction"
12434: optimization
12435:
12436: * src/: classes/double.C, classes/int.C, classes/math.C,
12437: classes/op.C, classes/string.C, classes/table.C,
12438: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
12439: used as_junction where they needed as_int/double, so failed with
12440: recent "(const) now no junction" optimization
12441:
12442: 2005-08-24 paf
12443:
12444: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
12445: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
12446: stripped it
12447:
12448: 2005-08-09 paf
12449:
12450: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
12451: not cleared
12452:
12453: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12454: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12455: classes/hashfile.C, classes/image.C, classes/int.C,
12456: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12457: classes/response.C, classes/string.C, classes/table.C,
12458: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12459: include/pa_array.h, include/pa_cache_managers.h,
12460: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12461: include/pa_config_fixed.h, include/pa_config_includes.h,
12462: include/pa_dictionary.h, include/pa_dir.h,
12463: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12464: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12465: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12466: include/pa_request_charsets.h, include/pa_request_info.h,
12467: include/pa_sapi.h, include/pa_socks.h,
12468: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12469: include/pa_stack.h, include/pa_string.h,
12470: include/pa_stylesheet_connection.h,
12471: include/pa_stylesheet_manager.h, include/pa_table.h,
12472: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12473: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12474: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12475: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12476: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
12477: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
12478: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12479: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
12480: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
12481: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
12482: main/pa_sql_driver_manager.C, main/pa_string.C,
12483: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
12484: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
12485: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
12486: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
12487: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12488: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
12489: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
12490: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
12491: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
12492: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
12493: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
12494: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
12495: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12496: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
12497: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
12498: types/pa_vmemory.h, types/pa_vmethod_frame.C,
12499: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12500: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
12501: types/pa_vresponse.C, types/pa_vresponse.h,
12502: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12503: types/pa_vstateless_object.h, types/pa_vstatus.C,
12504: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
12505: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
12506: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12507: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12508: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
12509:
12510: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
12511: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
12512: speedup consequent checks in vmethod_frame
12513:
12514: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
12515: not cleared
12516:
12517: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
12518: params: 50 max (were 10)
12519:
12520: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
12521: params: 50 max (were 10)
12522:
12523: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
12524: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
12525: pa_wcontext.h: + ^call[$void] param inside now is void (were:
12526: empty string) ! simplified (double) speedup consequent checks in
12527: vmethod_frame
12528:
12529: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
12530: optimized constants in expressions vstring->vdouble + optimized
12531: ^call(vdouble), no junction creation, no calls later
12532:
12533: 2005-08-08 paf
12534:
12535: * src/main/: compile.tab.C, compile.y, compile_tools.C,
12536: compile_tools.h: merged + optimized constants in expressions
12537: vstring->vdouble + optimized ^call(vdouble), no junction
12538: creation, no calls later
12539:
12540: * src/types/pa_vdouble.h: merged . double values without fractional
12541: part now default printed as %.0f instead of %g
12542:
12543: * src/types/pa_vdouble.h: . double values without fractional part
12544: now default printed as %.0f instead of %g
12545:
12546: * src/classes/hashfile.C: . merged ! second hashfile::open would
12547: cause an exception
12548:
12549: * src/classes/hashfile.C: ! second hashfile::open would cause an
12550: exception
12551:
12552: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
12553: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12554: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12555: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12556: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
12557: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12558: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12559: types/pa_vresponse.h, types/pa_vstateless_class.C,
12560: types/pa_vstateless_object.h, types/pa_vvoid.h,
12561: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
12562: merged VJunction(new Junction) optimization from 3.1.4
12563:
12564: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
12565: types/pa_vstateless_class.C: + optimized new VJunction(new
12566: Junction(params)) to new VJunction(params), thousands of mallocs
12567: removed
12568:
12569: 2005-08-05 paf
12570:
12571: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
12572: types/pa_vdouble.h, types/pa_vmethod_frame.C,
12573: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
12574: creation, no calls later
12575:
12576: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12577: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12578: classes/hashfile.C, classes/image.C, classes/int.C,
12579: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12580: classes/response.C, classes/string.C, classes/table.C,
12581: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12582: include/pa_array.h, include/pa_cache_managers.h,
12583: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12584: include/pa_config_fixed.h, include/pa_config_includes.h,
12585: include/pa_dictionary.h, include/pa_dir.h,
12586: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12587: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12588: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12589: include/pa_request_charsets.h, include/pa_request_info.h,
12590: include/pa_sapi.h, include/pa_socks.h,
12591: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12592: include/pa_stack.h, include/pa_string.h,
12593: include/pa_stylesheet_connection.h,
12594: include/pa_stylesheet_manager.h, include/pa_table.h,
12595: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12596: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12597: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12598: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12599: lib/smtp/smtp.h, main/compile.C, main/compile.y,
12600: main/compile_tools.C, main/compile_tools.h, main/execute.C,
12601: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
12602: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
12603: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
12604: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
12605: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
12606: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
12607: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
12608: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
12609: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
12610: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12611: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
12612: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
12613: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12614: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
12615: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
12616: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
12617: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
12618: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
12619: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
12620: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
12621: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
12622: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12623: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12624: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12625: types/pa_vstateless_object.h, types/pa_vstatus.C,
12626: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
12627: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
12628: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12629: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12630: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
12631:
12632: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
12633: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
12634: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
12635: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
12636: main/compile.y, main/compile_tools.C, main/compile_tools.h,
12637: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
12638: optimized constants in expressions vstring->vdouble
12639:
12640: 2005-07-29 paf
12641:
12642: * src/types/pa_vclass.C: . shaped up error messages a bit
12643:
12644: * src/types/pa_vclass.C: + property getter can now be overridden
12645:
12646: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
12647: bug fix: static parent fields were not replaced in case
12648: $derived:field[put] + property setter can now be overridden
12649:
12650: 2005-07-28 paf
12651:
12652: * configure, configure.in, src/classes/classes.h,
12653: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
12654: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
12655: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
12656: src/classes/xnode.h, src/include/pa_hash.h,
12657: src/include/pa_version.h, src/main/execute.C,
1.116 moko 12658: src/types/Makefile.am, src/types/pa_method.h,
12659: src/types/pa_value.h, src/types/pa_vclass.C,
12660: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
12661: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
12662: src/types/pa_vcookie.h, src/types/pa_vhash.h,
12663: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
12664: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
12665: src/types/pa_vobject.C, src/types/pa_vobject.h,
12666: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
12667: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
12668: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
12669: src/types/pa_vstateless_class.h,
1.95 moko 12670: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
12671: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12672: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
12673: dynamic_fields_join
12674:
12675: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
12676: classes/xnode.C, include/pa_hash.h, main/execute.C,
12677: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
12678: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12679: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
12680: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12681: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12682: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12683: types/pa_vresponse.h, types/pa_vstateless_object.h,
12684: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
12685: types/pa_wwrapper.h: ! restored put_element('replace' param), and
12686: restored its checks in vobject.put_element->static fields |
12687: dynamic properties
12688:
12689: 2005-07-27 paf
12690:
12691: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
12692: is some old code containing @set_name $name
12693:
12694: * src/types/pa_vobject.h: . fixed warning
12695:
12696: * configure, configure.in, src/include/pa_version.h,
1.116 moko 12697: src/types/Makefile.am: 3.2.0beta started
1.95 moko 12698:
12699: * src/: classes/xnode.C, include/pa_hash.h,
12700: types/pa_vstateless_class.C: ! new asserts were all false.
12701: regretfully reverted them all to checks
12702:
12703: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
12704: classes/op.C, main/execute.C, types/pa_method.h,
12705: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12706: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12707: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12708: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
12709: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12710: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12711: types/pa_vstateless_object.h, types/pa_vvoid.h,
12712: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
12713: joined_dynamic_fields: removed unused param from put_method
12714: (returned to 3 params)
12715:
12716: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
12717: joined_dynamic_fields: dynamic get/set works with overriding
12718: props [alpha2]
12719:
12720: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
12721: works [alfa]
12722:
12723: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
12724: classes/op.C, include/pa_hash.h, main/execute.C,
12725: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
12726: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12727: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
12728: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12729: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12730: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12731: types/pa_vresponse.h, types/pa_vstateless_class.C,
12732: types/pa_vstateless_object.h, types/pa_vvoid.h,
12733: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
12734: joined_dynamic_fields: just compiled
12735:
12736: * src/: classes/date.C, classes/file.C, classes/hash.C,
12737: classes/hashfile.C, classes/image.C, classes/table.C,
12738: classes/xdoc.C, classes/xnode.h, main/execute.C,
12739: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
12740: types/pa_vstateless_class.h: joined_dynamic_fields: started
12741:
12742: * src/types/pa_vobject.C: . object setters [only started, does not
12743: work yet]
12744:
12745: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
12746: object setters [only started, does not work yet]
12747:
12748: 2005-07-26 paf
12749:
12750: * src/: include/pa_request.h, main/execute.C: . properties: set
12751: works [alpha2]. for classes. todo: for objects
12752:
12753: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
12754: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12755: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12756: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12757: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
12758: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12759: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12760: types/pa_vstateless_object.h, types/pa_vvoid.h,
12761: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
12762: properties: set works [alpha1]
12763:
12764: 2005-07-25 paf
12765:
12766: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
12767: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
12768: properties: started, get works [alpha1, other approach]
12769:
12770: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
12771: properties: started, get works [alpha2]
12772:
12773: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
12774: pa_vstateless_class.h: . properties: started, get works [alpha]
12775:
12776: 2005-07-15 paf
12777:
12778: * src/: classes/classes.h, classes/op.C, main/execute.C,
12779: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
12780: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
12781: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
12782: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12783: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
12784: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
12785: types/pa_vresponse.C, types/pa_vresponse.h,
12786: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12787: types/pa_vstateless_object.h, types/pa_vvoid.h,
12788: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
12789: types/pa_wwrapper.h, types/types.vcproj: + started property
12790: [getters work but think of changing them too to precaching]
12791:
12792: 2005-07-08 paf
12793:
12794: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
12795: gpf
12796:
12797: 2005-06-28 paf
12798:
12799: * src/: classes/file.C, main/untaint.C: ! string invariant violated
12800: in passing empty strings to file::exec/cgi environment
12801:
12802: 2005-06-06 paf
12803:
12804: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
12805: ^table:sql ^hash:sql now DO process $.bind option
12806:
12807: 2005-05-24 paf
12808:
12809: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
12810: $.limit] now work again [support was broken in 3.1.4]
12811:
12812: * src/: main/pa_string.C, classes/op.C: . steps toward removing
12813: ALL_INTERIOR_POINTERS
12814:
12815: 2005-05-12 paf
12816:
12817: * configure: 3.1.5beta
12818:
12819: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
12820:
12821: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
12822: $.limit] now work again [support was broken in 3.1.4]
12823:
12824: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
12825: line-width [was refusing to fill if line-width >1, thanks to
12826: Seras <seras@pinxit.lt> for repro case
12827:
12828: 2005-04-25 paf
12829:
12830: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
12831: correctly
12832:
12833: 2005-04-19 paf
12834:
12835: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
12836: in VString violating invariant!!
12837:
12838: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
12839: getenv("TZ")==null
12840:
12841: 2005-04-08 paf
12842:
12843: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
12844: bugfix: when there is no char in charset one byte produces 6
12845: (ÿ <<max). increased buffer size!
12846:
12847: 2005-03-23 paf
12848:
12849: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
12850: ^date.sql-string now takes TZ into account
12851:
12852: 2005-03-16 paf
12853:
12854: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
12855: gcc 3.4
12856:
12857: * src/types/pa_vhash.C: . warning about eof eol
12858:
12859: 2005-02-17 paf
12860:
12861: * operators.txt, src/classes/op.C: + operator ^sleep(double
12862: seconds)
12863:
12864: 2005-02-02 paf
12865:
12866: * src/classes/xnode.C: beauty: removed needless includes
12867:
12868: 2005-01-31 paf
12869:
12870: * src/types/pa_vmail.C: change: $.partX now always 1... change:
12871: $.partNoNumber now alias to $.part1
12872:
12873: * src/types/pa_vmail.C: change: incoming letter part contains
12874: "content-disposition" header with any value? now considering that
12875: part to be "file#" [for text/plain text/html were $.text#
12876: $.html#]
12877:
12878: * INSTALL: updatet to latest working versions available
12879:
12880: 2005-01-20 paf
12881:
12882: * configure.in, src/include/pa_version.h: version
12883:
12884: 2005-01-19 paf
12885:
1.116 moko 12886: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
12887: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
12888: couple warnings in parser3.C
1.95 moko 12889:
12890: 2004-12-23 paf
12891:
12892: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
12893:
12894: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
12895: dir to directory of script (when shbang used), not to directory
12896: of its interpreter
12897:
12898: * src/include/pa_version.h: compiled on win32...
12899:
12900: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
12901: we need more hspace
12902:
12903: * configure, configure.in, src/include/pa_version.h: configured
12904: host to pa_version. will be displayed everywhere
12905:
12906: * src/main/pa_request.C: new: @unhandled_exception can prevent
12907: exception from being logged by setting $exception.handled(1)
12908:
12909: * operators.txt, src/classes/file.C: change:
12910: ^file::sql{query}[[options]] options: $.name[file name]
12911: $.content-type[application/what]
12912:
12913: * src/: include/pa_common.h, main/pa_common.C,
12914: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
12915: new file
12916:
12917: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
12918: bugfix: table->hash now regards _default
12919:
12920: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
12921: created by accessing $name_of_method it acquired bad self=closest
12922: methodframe; instead of proper self (current class)
12923:
12924: * src/types/pa_vhashfile.C: bugfix: reading empty string from
12925: hashfile produced bad cord
12926:
12927: 2004-12-10 paf
12928:
12929: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
12930: subsequent failures though defined in .h
12931:
12932: * src/main/pa_common.C: comment on volatile
12933:
12934: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
12935: alarm function were not used since the beginning due to stupid
12936: error [setsigjmp were not checked in configure.in]
12937:
12938: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
12939: unix too
12940:
12941: * src/main/pa_common.C: http: exception status of send/recv errors
12942: change to most probable http.timeout
12943:
12944: * src/main/pa_common.C: win32: http connection $.timeout option now
12945: works [setsockopt on send/receive]
12946:
12947: 2004-12-08 paf
12948:
12949: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
12950: cstr-ed knowing mail charset, and untainting uri lang now knows
12951: proper charset
12952:
12953: 2004-11-24 paf
12954:
12955: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
12956:
12957: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
12958: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
12959:
12960: 2004-11-12 paf
12961:
12962: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
12963: [since 3.0.4]
12964:
12965: 2004-11-09 paf
12966:
12967: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
12968: writes basics to c:\parser3.log
12969:
12970: 2004-10-21 paf
12971:
12972: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
12973: tainted strings [were returning clean onces]
12974:
12975: 2004-10-15 paf
12976:
12977: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
12978: cycles(i=1; i=2), which was wrong, now does ONE
12979:
12980: 2004-10-12 paf
12981:
12982: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
12983:
12984: 2004-10-07 paf
12985:
12986: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
12987: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
12988: release asserts
12989:
12990: * src/: main/pa_string.C, include/pa_string.h: debugger help:
12991: String.dump() to stdout in detailed form [were String.v() in
12992: short form]
12993:
12994: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
12995: \t\r\n as @#| and truncates long char sequences less
12996:
12997: 2004-10-06 paf
12998:
12999: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
13000: win32 beauty: socket errors properly decoded
13001:
13002: 2004-10-05 paf
13003:
13004: * src/: include/pa_request.h, main/pa_request.C: bugfix:
13005: request::configure_user/admin done always, even if no
13006: file-to-process useful in @unhandled_exception [say, if they
13007: would want to mail by SMTP something]
13008:
13009: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
13010: now performed prior to file loading [and @auto executing] thus
13011: making $cookie:value available in @auto and in
13012: @unhandled_exception when IIS is configured to run interpreter
13013: even if no file exist
13014:
13015: 2004-09-20 paf
13016:
13017: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
13018: somewhere where it should have called xmlMalloc and it calls
13019: xmlFree when it should have not called it. inserted two
13020: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
13021: xmlFree just ignored. put away a testcase, maybe someday libxml
13022: author would fix all that. until that day: we have SLOW garbage
13023: collecting when many xml objects are alive hint: do
13024: ^memory:compact[] before xdoc::create
13025:
13026: 2004-09-17 paf
13027:
13028: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
13029: error from 3.0.8 version]
13030:
13031: 2004-09-14 paf
13032:
13033: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
13034: part bugfix: hashfile.foreach iterated only part if hashfile were
13035: modified inside
13036:
13037: 2004-09-13 paf
13038:
13039: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
13040: [were as octal]
13041:
13042: * src/types/pa_vhashfile.C: beauty: not reproduced
13043: $hashfile.key[$novalue] bug [reported by motorin], inserted
13044: safety-check
13045:
13046: * src/types/pa_vhashfile.C: change: empty keys now error in parser
13047: [not something obscure from sdbm lib]
13048:
13049: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
13050: = strerror now returnes something and we can properly report that
13051: to client
13052:
13053: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
13054: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
13055:
13056: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
13057: [tainted as-is] this helps //[space][newline] to remain as-is and
13058: not be unnecessary optimized away [ruining javascript]
13059:
13060: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
13061: [tainted as-is]
13062:
13063: * src/classes/mail.C: bugfix: typo error
13064:
13065: 2004-09-09 paf
13066:
13067: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
13068: separators bugfix: loads header with endings \r\n\r\n and \n\n
13069: (bloody yandex.server)
13070:
13071: 2004-09-06 paf
13072:
13073: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
13074: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
13075: encoded
13076:
13077: 2004-09-01 paf
13078:
13079: * src/types/pa_vmail.C: change: multipart/mixed changed to
13080: multipart/related outlook express have no problems showing
13081: unrelated attachments. todo: someday figure out a way of
13082: multipart/mixed multipart/related text/html
13083: image/xxx application/octet-stream << true attachments
13084:
13085: * src/types/pa_vmail.C: new:
13086: ^mail:send[$.file[$.content-disposition can be overriden new:
13087: empty mail header fields removed from letter
13088:
13089: * src/: classes/mail.C, include/pa_config_fixed.h,
13090: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
13091: ^mail:send[ $.file[ $.any[header]
13092:
13093: 2004-08-30 paf
13094:
13095: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
13096: warnings
13097:
13098: * src/main/pa_common.C: beauty: do not bother with charset
13099: detection when ^file::load[binary
13100:
13101: 2004-08-27 paf
13102:
13103: * src/main/pa_common.C: hack: for yandex.server http server
13104:
13105: 2004-08-18 paf
13106:
13107: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
13108: possibly-chunked response
13109:
13110: 2004-08-17 paf
13111:
13112: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
13113: $f.content-type now = that of http response
13114:
13115: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
13116: $f.content-type now = that of http response
13117:
13118: 2004-07-30 paf
13119:
13120: * src/: include/pa_request.h, main/pa_request.C,
13121: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
13122: win32: system&parser exceptions in release mode reported properly
13123: parser exception in exception handler WERE mistakenly reported as
13124: system exception, without details [in apache & isapi] +some
13125: beauty in exception text
13126:
13127: * src/: include/pa_exception.h, main/pa_request.C,
13128: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
13129: release mode reported properly parser exception in exception
13130: handler WERE mistakenly reported as system exception, without
13131: details
13132:
13133: * src/main/execute.C: beauty: simplified system exception handling
13134:
13135: 2004-07-29 paf
13136:
13137: * src/classes/table.C: bugfix:
13138: ^table.save[export.csv;$.separator[^;]] now works fine [separator
13139: were ignored, and \t used unconditionally]
13140:
13141: * src/types/Makefile.am: added vhash.c
13142:
13143: 2004-07-28 paf
13144:
13145: * src/: classes/date.C, classes/image.C, classes/math.C,
13146: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
13147: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
13148: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
13149: failed on russian letters
13150:
13151: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
13152: bugfix: isspace((unsigned char)c) everywhere. failed on russian
13153: letters
13154:
13155: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
13156: as 'currentDirectory' parameter to CreateProcess
13157:
13158: 2004-07-27 paf
13159:
13160: * src/targets/cgi/parser3.vcproj: beauty: win32:
13161: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
13162: from release somewhere [to help searching for unhandled system
13163: exceptions]
13164:
13165: * src/types/pa_vdate.h: check: for invalid datetime after temporary
13166: TZ shift
13167:
13168: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
13169: but also in ctor
13170:
13171: 2004-07-26 paf
13172:
13173: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
13174: src/main/pa_request.C, src/types/pa_vfile.h,
13175: src/types/pa_vhash.C, src/types/pa_vhash.h,
13176: src/types/types.vcproj: new: $response:body/download[
13177: $.file[name on disk] $.name[of file for user]
13178: $.mdate[date of last-modified. default from directory] ]
13179:
13180: * src/classes/file.C: moving file:send somewhere else..
13181:
13182: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
13183: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
13184: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
13185: $response:download[ $.filename[filename] $.option[] ,, ]
13186:
13187: * src/classes/file.C: beauty: invalid mode thoroughly reported
13188:
13189: 2004-07-21 paf
13190:
13191: * src/types/pa_vmail.C: bugfix: too long header values now splitted
13192: to several lines
13193:
13194: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
13195:
13196: note: ms outlook[!express] shows only first 255 characters of
13197: subject
13198:
13199: 2004-07-15 paf
13200:
13201: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
13202: off]
13203:
13204: 2004-07-14 paf
13205:
13206: * src/classes/table.C: bugfix: $.bind values now got untainted
13207: according to lang [were: as-is]
13208:
13209: 2004-07-07 paf
13210:
13211: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
13212: checked that
13213:
13214: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
13215: now untainted according to their languages. were: as-is.
13216: EVERYWHERE
13217:
13218: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
13219: environment string now untainted according to their languages.
13220: were: as-is. EVERYWHERE
13221:
13222: * src/main/pa_exec.C: bufix: on unix environment string now
13223: untainted according to their languages. were: as-is. on win32:
13224: ok
13225:
13226: * parser3.vssscc: ...would not go unnoticed
13227:
13228: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
13229: fails. in case on input appears nonutf, those bytes will be
13230: printed in %HH form. that can be easily decoded/recovered.
13231:
13232: this form is quite noticable, and hopefully would not go noticed
13233:
13234: 2004-07-06 paf
13235:
13236: * src/main/pa_exec.C: bufix: on unix environment string now
13237: untainted according to their languages. were: as-is. on win32:
13238: ok
13239:
13240: 2004-07-01 paf
13241:
13242: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
13243: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
13244: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
13245: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
13246: main/main.vcproj, targets/cgi/parser3.vcproj,
13247: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
13248: option: global optimization ON
13249:
13250: * src/main/untaint.C: workaround kinda bug in libxml: life requires
13251: to do xdoc::create{invalid chars} standard disables chars less
13252: then \x20, except tab, cr, lf.
13253:
13254: changed tainting so that those become '!'
13255:
13256: 2004-06-25 paf
13257:
13258: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
13259: int on odd address [prev bugfix failed due to superwize
13260: optimizer, which turned memcpy into same 'ld' asm command]
13261:
13262: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
13263: int on odd address
13264:
13265: 2004-06-22 paf
13266:
13267: * src/sql/pa_sql_driver.h: note: about possible optimization
13268:
13269: * operators.txt, src/classes/hash.C, src/classes/memory.C,
13270: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13271: src/include/pa_config_includes.h: new: ^void:sql{call
13272: paf(:a)}[ $.bind[ $.a[2]
13273: ] ] output variables work. todo: check in out
13274: variables
13275:
13276: 2004-06-18 paf
13277:
13278: * src/: classes/file.C, classes/hash.C, classes/string.C,
13279: classes/table.C, classes/void.C, include/pa_globals.h,
13280: include/pa_sql_connection.h, main/compile.tab.C,
13281: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
13282: $.bind[ $.a[2] ]
13283: ] input variables work. todo:output
13284:
13285: * src/targets/cgi/parser3.C: bugfix: iis specific
13286: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
13287: /_bug.html?404;http://hpsv/test/
13288: --------------------------------------------------------------------------------
13289: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
13290: --------------------------------------------------------------------------------
13291: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
13292:
13293: 2004-06-16 paf
13294:
13295: * src/targets/cgi/parser3.C: new: iis specific
13296: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
13297: $request:query
13298: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
13299: $form:fields IIS-STATUS="404"
13300: IIS-DOCUMENT="http://server/_bug.html" f="v"
13301:
13302: todo: isapi too
13303:
13304: 2004-05-26 paf
13305:
13306: * src/include/pa_version.h: 3.1.3
13307:
13308: * operators.txt: beauty: removed outdated level 'table'
13309:
13310: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
13311:
13312: * src/main/pa_string.C: beauty: removed 3 warnings
13313:
13314: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
13315: classes/op.C: beauty: removed outdated level 'table'
13316:
13317: 2004-05-25 paf
13318:
13319: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
13320: implementation. mistery: how anything worked
13321:
13322: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
13323: changed, it is now safe to use url if pointers to it are stored
13324: to gc mem
13325:
13326: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
13327: unknown errors reported and not cause SIGSEGV now
13328:
13329: 2004-05-24 paf
13330:
13331: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13332: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
13333: less memory: CORD_chars_block originally intended to ... it was
13334: good that CORD_chars_block were not used: it consumes more memory
13335: [and, might be slow too] undoing that. [and removed that func so
13336: that it would not confuse parser developer in future]
13337:
13338: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
13339: less memory: CORD_chars_block originally intended to
13340: speedup/reduce mem usage were forgotten, and were used stupid
13341: CORD_chars
13342:
13343: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
13344:
13345: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
13346: BIGENDIAN processors space-conserving mech failed, causing
13347: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
13348: (1|2|3));
13349:
13350: 2004-05-14 paf
13351:
13352: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
13353: bugfix: void now has vfile value, and $response:body[] works OK
13354:
13355: 2004-05-12 paf
13356:
13357: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
13358: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
13359: sources to use is_defined() {return as_bool();} along VBool
13360:
13361: 2004-05-11 paf
13362:
13363: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
13364: referencing to local objects
13365:
13366: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
13367: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
13368: left intact
13369:
13370: 2004-04-15 paf
13371:
13372: * src/classes/date.C: merged: beauty: unused var removed
13373:
13374: * src/classes/date.C: beauty: unused var removed
13375:
13376: * src/include/: pa_exec.h: bugfix: interface without pointer
13377: provoked bug
13378:
13379: 2004-04-09 paf
13380:
13381: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
13382:
13383: * src/types/pa_vform.C: bugfix: form:imap were incorrect
13384:
13385: 2004-04-08 paf
13386:
13387: * src/classes/date.C: new: ^date::create[y-m-d
13388: h-M-s>>.milliseconds<<] now allowed, ignored so far
13389:
13390: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
13391:
13392: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
13393: to consult default catalog [usually, that file belongs to other
13394: user/group]
13395:
13396: 2004-04-06 paf
13397:
13398: * src/main/pa_common.C: beauty: gcc warning removed
13399:
13400: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
13401: accept that trick, trying other
13402:
13403: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
13404: explicit result problem
13405:
13406: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
13407: explicit result problem
13408:
13409: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
13410: explicit result problem
13411:
13412: * operators.txt, src/classes/string.C: new: ^string.append[string]
13413:
13414: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
13415: main/execute.C: attempt_check_call_in_explicit_result_mode:
13416: failed
13417:
13418: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
13419: http://i.p.a.ddress gethostbyaddr added [on some platforms
13420: gethostbyname failed with such 'domains'] now checked properly,
13421: were: needless reverse/forward dns lookup
13422:
13423: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
13424: http://i.p.a.ddress gethostbyaddr added [on some platforms
13425: gethostbyname failed with such 'domains'] now checked properly,
13426: were: needless reverse/forward dns lookup
13427:
13428: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
13429: @method[][result] means "no string output here" moved to lexical
13430: level [on grammar level it were too difficult]
13431:
13432: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
13433: src/main/compile.y, src/main/compile_tools.h,
13434: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
13435: @method[][result] means "no string output here", implemented part
13436: of that idea: compiler throws away string literal generation
13437: code. and barks nonwhitespace chars
13438:
13439: * operators.txt: truth: removed comment about $ORIGIN
13440:
13441: 2004-04-05 paf
13442:
13443: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
13444: src/include/pa_version.h, src/main/pa_common.C,
13445: src/targets/isapi/parser3isapi.C: merged with 3.1.3
13446:
13447: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
13448: Konstantin Tomashevitch [mailto:konst@design.ru]
13449:
13450: * src/doc/html2chm.cmd: beauty: no need in bg here
13451:
13452: * src/doc/sources2html.cmd: beauty: same window, in bg it
13453: interfered with FAR console
13454:
13455: * configure, configure.in: 3.1.3
13456:
13457: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
13458:
13459: * src/main/pa_common.C: removed warning
13460:
13461: * src/include/pa_version.h: 3.1.3
13462:
13463: 2004-04-02 paf
13464:
13465: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
13466:
13467: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
13468: allows to specify where to put parser log file
13469:
13470: 2004-04-01 paf
13471:
13472: * src/classes/table.C: bugfix: bugfix: table::load last line
13473: without tab and enter were ignored
13474:
13475: * src/: include/pa_cache_managers.h, include/pa_globals.h,
13476: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
13477: main/pa_socks.C, targets/cgi/parser3.C,
13478: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
13479: bugfix: sql connections now are disconnected
13480:
13481: 2004-03-30 paf
13482:
13483: * src/classes/table.C: bugfix: table::load last line without tab
13484: and enter were ignored
13485:
13486: * src/classes/table.C: bufix: if last table lines were commented,
13487: gpfed
13488:
13489: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
13490: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
13491: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
13492: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
13493: doc/methoded.dox, doc/object.dox, doc/string.dox,
13494: doc/targets.dox, doc/value.dox, include/pa_version.h,
13495: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
13496: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
13497: bugfixes from 3.1.2, changed version to 3.1.3beta
13498:
13499: 2004-03-29 paf
13500:
13501: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
13502: causes gpf
13503:
13504: * src/doc/: ClassExample1.dox, ClassExample2.dox,
13505: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
13506: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
13507: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
13508: value.dox: translated to english
13509:
13510: 2004-03-25 paf
13511:
13512: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
13513: parser3project dependency removed
13514:
13515: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
13516: bugfix: refused to compile without xml
13517:
13518: * src/types/pa_vform.C: beauty: removed warning
13519:
13520: * src/classes/classes.vcproj: merged bugfix: now all compiles in
13521: any folder [removed last ;) folder dependency]
13522:
13523: * src/classes/classes.vcproj: bugfix: now all compiles in any
13524: folder [removed last ;) folder dependency]
13525:
13526: * src/include/pa_version.h: release
13527:
13528: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
13529:
13530: * src/classes/table.C: beauty: comment& more meaningful error
13531: message
13532:
13533: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
13534: $.hash[$.column_value1(true) ... ] [were producing some strang
13535: thing]
13536:
13537: 2004-03-23 paf
13538:
13539: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
13540: and http status line parsing checked number of columns in table
13541: [user reported an assert]
13542:
13543: * operators.txt: example: on hashfile
13544:
13545: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
13546: bugfix: junction reattach now actually reattaches a junction to
13547: new wcontext [were only assigning it to junction, which caused
13548: junction tracking to loose junction, and it's context were not
13549: killed, and it tried to process in invalid context, gpf]
13550:
13551: * src/targets/cgi/parser3.C: debug helper added
13552:
13553: 2004-03-19 paf
13554:
13555: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
13556: "type(type)" in braces
13557:
13558: 2004-03-10 paf
13559:
13560: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
13561: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
13562: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
13563: solution to search-in-namespaces problem:
13564: $xdoc.search-namespaces.x[http://pif.design.ru/]
13565: $nodes[^xdoc.select[//x:second]]
13566:
13567: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
13568: expression][[NAMESPACES HASH]] allows to search for info in
13569: namespaces
13570:
13571: $nodes[^xdoc.select[//x:second][
13572: $.x[http://pif.design.ru/] ]]
13573:
13574: 2004-03-09 paf
13575:
13576: * operators.txt, src/main/pa_common.C: new:
13577: ^file::load[...][options] $.form[
13578: !$.field1[string]
13579: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
13580: ] !$.body[string]
13581:
13582: GET ?here notGET(POST, HEAD, others) in content-type:
13583: application/x-www-form-urlencoded
13584:
13585: todo: upload files ability
13586:
13587: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
13588: properly, done
13589:
13590: 2004-03-05 paf
13591:
13592: * operators.txt, src/main/pa_common.C: new: file::load[;http://
13593: GET/POST $.form[$.fields started, not tested yet
13594: todo:$.field[table] for multiple values
13595:
13596: * operators.txt: new: http:// options $.user $.password basic
13597: authorization
13598:
13599: * src/main/pa_common.C: beauty: link to rtf added
13600:
13601: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
13602: new: http:// options $.user $.password basic authorization
13603:
13604: * src/main/pa_common.C: beauty: removed needless vars
13605:
13606: * operators.txt: new: pgsql option [like that recently added to
13607: oracle driver] ClientCharset=parser-charset <<
13608: charset in which parser thinks client works
13609:
13610: * operators.txt: new: odbc option [like that recently added to
13611: oracle driver] ClientCharset=parser-charset <<
13612: charset in which parser thinks client works
13613:
13614: * src/sql/pa_sql_driver.h: beauty: important warning added
13615:
13616: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
13617: char!
13618:
13619: * etc/parser3.charsets/windows-1251.cfg: typo
13620:
13621: 2004-03-04 paf
13622:
13623: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
13624: cached, sql transcoding now goes faster
13625:
13626: * operators.txt: new: mysql option [like that recently added to
13627: oracle driver] ClientCharset=parser-charset <<
13628: charset in which parser thinks client works
13629:
13630: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
13631: typo error
13632:
13633: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
13634: chars commented
13635:
13636: 2004-03-03 paf
13637:
13638: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
13639: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
13640:
13641: 2004-03-02 paf
13642:
13643: * operators.txt: new[update typo]: !^void.left(n)
13644: nothing !^void.right(n) nothing !^void.mid(p[;n])
13645: nothing
13646:
13647: * operators.txt, src/classes/void.C: new: !^void.left(n)
13648: nothing !^void.right(n) nothing !^void.pos(p[;n])
13649: nothing
13650:
13651: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
13652: ^file::sql[[name_to_become_$.name]]{} query result must be one
13653: row with columns: first: data second: file name third:
13654: content-type
13655:
13656: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
13657: ^connect gets properly escaped string, which can be passed to
13658: request now this for mysql only. it's up to parser sql driver to
13659: fix zeros properly
13660:
13661: * INSTALL: note: added on building apache with this option:
13662: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
13663:
13664: 2004-03-01 paf
13665:
13666: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
13667: extension memory:compact befor processingrequest
13668:
13669: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
13670: call sole column of result
13671:
13672: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
13673: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
13674: pixel color
13675:
13676: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
13677: beauty: image -- less checks [were ugly impl]
13678:
13679: * src/classes/string.C: bugfix: ^string.left/right/mid with
13680: negative values now considered bad
13681:
13682: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
13683:
13684: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
13685: options now have unified defaults [after transform
13686: indent/omit-xml-declaration/standalone 'default' erroreously
13687: meant 'true']
13688:
13689: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
13690: added [on some platforms gethostbyname failed with such
13691: 'domains']
13692:
13693: * src/include/pa_config_auto.h.in: no select check, no define
13694:
13695: * src/classes/string.C: feature: ^string.trim both parameters may
13696: be empty-strings, meaning kind=both chars=whitespaces
13697:
13698: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
13699: exist
13700:
13701: * src/classes/string.C: check: trim 'chars' must not be empty,
13702: exception if it is
13703:
13704: * src/classes/string.C: changed: ^string.trim [] << both,
13705: whitespaces [start|both|end] << kind, whitespaces
13706: [start|both|end;chars] full
13707:
13708: 2004-02-27 paf
13709:
13710: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
13711: method: ^string.trim[start|both|end[;chars]] default
13712: 'chars' -- whitespace chars finished
13713:
13714: * operators.txt, src/classes/string.C, src/include/pa_string.h,
13715: src/main/pa_string.C: new method:
13716: ^string.trim[start|both|end[;chars]] default 'chars' --
13717: whitespace chars started, only start works
13718:
13719: * src/main/compile.C: bugfix: line numbers after
13720: ^process{}[$.line(-10]] can be negative, allowed to print they as
13721: signed
13722:
13723: * src/main/untaint.C: speed: there's no \n chars in output
13724: [normally], so no need to optimize them they could be retrived
13725: from databases, though. but 1. should be replaced 2. if not
13726: optimized, no harm done
13727:
13728: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
13729: ^file::exec/cgi could return invalid status & zombie child can
13730: remain for short period until process exists [very bad in
13731: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
13732:
13733: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
13734: malicious SMTP server to attack as by returning too long status
13735: responses http://i2/tasks/edit/?id=4629448401140924947
13736:
13737: 2004-02-26 paf
13738:
13739: * operators.txt: feature: ^process...{CODE}[now has options] which
13740: are $.main[to what to rename @main] $.file[file,
13741: from which (user says) goes that CODE] $.lineno(line
13742: number in that file, where CODE starts. may be negative)
13743:
13744: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13745: src/main/compile.C, src/main/compile_tools.h,
13746: src/main/pa_request.C: feature: ^process...{CODE}[now has
13747: options] which are $.main[to what to rename @main]
13748: $.file[file, from which (user says) goes that CODE]
13749: $.lineno(line number in that file, where CODE starts. may be
13750: negative)
13751:
13752: 2004-02-25 paf
13753:
1.116 moko 13754: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
13755: old @charsetsdir@ recently erased from configure.in]
1.95 moko 13756:
13757: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
13758: produces hash of column=>1
13759:
13760: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
13761: with incomplete errno constants set
13762:
13763: 2004-02-24 paf
13764:
13765: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
13766: "man select"
13767:
13768: * src/main/pa_os.C: beauty: <0 better then ==-1
13769:
13770: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
13771:
13772: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
13773:
1.116 moko 13774: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 13775:
13776: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
13777: unix: steps to work on unix [extracted 'to']
13778:
13779: * src/classes/mail.C: smtp on unix: steps to work on unix
13780:
13781: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
13782:
1.116 moko 13783: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
13784: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
13785: unix [testing on solaris]
1.95 moko 13786:
13787: 2004-02-20 paf
13788:
13789: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
13790: pointing that out
13791:
13792: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
13793: fixed again [same solution, mistanenly removed one line]
13794:
13795: 2004-02-19 paf
13796:
13797: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
13798: date::create from bad datetime in spring daylightsaving hole now
13799: OK for all platforms [on some platforms it failed]
13800:
13801: * src/classes/: date.C, image.C: beauty: date::create[bad date time
13802: in daylightsaving hole] now throws error
13803:
13804: * src/classes/date.C: comment: mistake fixed
13805:
13806: 2004-02-18 paf
13807:
13808: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
13809: now renderes in $request:charset, but in header puts
13810: $response:charset todo: make that default only so that coder
13811: could override that
13812:
13813: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
13814: turns off omit-xml-declaration
13815:
13816: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
13817: /.xsl for sample
13818:
13819: 2004-02-17 paf
13820:
13821: * src/classes/xdoc.C: beauty: needless helper class removed
13822:
13823: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
13824: copied extra time
13825:
13826: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
13827: part of libxml
13828:
13829: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
13830: libxml to do the work] <xsl:output method="html"
13831: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
13832: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
13833: />
13834:
13835: * src/classes/xdoc.C: beauty: no <meta ... charset generated
13836:
13837: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
13838: caused assertion
13839:
13840: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
13841: could hang. now such add does nothing, sub clears $hash
13842:
13843: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
13844: not made quoted-printable
13845:
13846: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
13847: string invariant
13848:
13849: 2004-02-16 paf
13850:
13851: * src/main/pa_globals.C: bugfix: xml errors copy from library now
13852: cleared [were not cleared properly]
13853:
13854: 2004-02-13 paf
13855:
1.116 moko 13856: * src/include/pa_version.h: prerelease
1.95 moko 13857:
13858: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
13859: used, introducing dependencies timestamp check
13860:
13861: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13862: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
13863: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
13864: .xsl.stamp now not used, introducing dependencies timestamp check
13865:
1.150 moko 13866: * configure.in: auto.p: @conf made relative
1.95 moko 13867:
13868: 2004-02-12 paf
13869:
13870: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
13871: ruined empty <input type=file> submits. parser thought there were
13872: nameless empty file and $form:field got value of type 'file'
13873:
13874: * INSTALL: --without-threads
13875:
13876: * src/include/pa_sapi.h: 2004
13877:
13878: 2004-02-11 paf
13879:
13880: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13881: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13882: classes/hashfile.C, classes/image.C, classes/int.C,
13883: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13884: classes/response.C, classes/string.C, classes/table.C,
13885: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13886: include/pa_array.h, include/pa_cache_managers.h,
13887: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13888: include/pa_config_fixed.h, include/pa_config_includes.h,
13889: include/pa_dictionary.h, include/pa_dir.h,
13890: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
13891: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
13892: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
13893: include/pa_request_charsets.h, include/pa_request_info.h,
13894: include/pa_socks.h, include/pa_sql_connection.h,
13895: include/pa_sql_driver_manager.h, include/pa_stack.h,
13896: include/pa_string.h, include/pa_stylesheet_connection.h,
13897: include/pa_stylesheet_manager.h, include/pa_table.h,
13898: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13899: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
13900: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
13901: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
13902: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
13903: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
13904: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13905: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
13906: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
13907: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
13908: main/pa_sql_driver_manager.C, main/pa_string.C,
13909: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
13910: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
13911: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13912: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
13913: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
13914: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
13915: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
13916: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
13917: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
13918: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13919: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
13920: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13921: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13922: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13923: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13924: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13925: types/pa_vresponse.h, types/pa_vstateless_class.C,
13926: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13927: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13928: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13929: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13930: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13931: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
13932:
13933: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
13934: debug version of gc.dll
13935:
13936: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13937: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
13938: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
13939: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
13940: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
13941: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
13942: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
13943: processes
13944:
13945: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
13946: main/pa_globals.C, targets/cgi/parser3.vcproj,
13947: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
13948: changes to reflect libxml xsl new folders
13949:
13950: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13951: lib/smtp/smtp.vcproj, main/main.vcproj,
13952: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
13953: to reflect libxml xsl new folders
13954:
13955: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13956: lib/smtp/smtp.vcproj, main/main.vcproj,
13957: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
13958: types/types.vcproj: started changes to reflect libxml xsl new
13959: folders
13960:
13961: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
13962: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
13963: src/main/compile.tab.C, src/main/main.vcproj,
13964: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
13965: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13966: started changes to reflect libxml xsl new folders
13967:
13968: 2004-02-10 paf
13969:
13970: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
13971: compile. recommened latest libxml up to date
13972:
13973: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
13974: pattern compilation errors", on which spent 4 hours worktime. use
13975: versions higher than that. recommended now latest up to date
13976:
13977: 2004-02-06 paf
13978:
13979: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
13980: beauty: unified destructing style
13981:
13982: * src/main/untaint.C: beauty: removed old def/ifdef
13983:
13984: * src/main/untaint.C: beauty: coredump @unknown untaint language
13985: now
13986:
13987: 2004-02-03 paf
13988:
13989: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
13990: targets/isapi/parser3isapi.C, types/pa_value.C,
13991: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
13992: then %ld/%lu
13993:
13994: * src/main/pa_common.C: typo: %l -> %u
13995:
13996: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
13997: in attributes or documents-results of transform now not xx;
13998:
13999: * src/classes/xnode.C: memleaks found: not fixed yet. todo
14000:
14001: * src/main/pa_charset.C: bugfix: forgot to undo some
14002:
14003: * src/main/pa_charset.C: beauty: uncomment
14004: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
14005: libraries
14006:
14007: 2004-02-02 paf
14008:
14009: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
14010: $cookie:example[ $.value[value] $.path[/there/] ]
14011:
14012: $cookie:example[ $.value[] $.expires[session]
14013: $.path[/there/] $.domain[test.com] ]
14014:
14015: * src/types/pa_vform.C: bugfix: empty values with
14016: enctype=multipart/form-data now produce entries in $form:tables
14017: <form method=post enctype=multipart/form-data> <input type=hidden
14018: name=a> <input type=hidden name=b>
14019:
14020: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
14021: <hr> <pre>$request:body
14022:
14023: 2004-01-30 paf
14024:
14025: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
14026: or documents-results of transform now not xx;
14027:
14028: * src/classes/date.C: bugfix: ^date::create[invalid fields now
14029: produce exception.
14030:
14031: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
14032: bugfix: ^date::create[invalid fields now produce exception.
14033:
14034: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
14035: year] now produces exception. todo: check other fields
14036:
14037: 2004-01-29 paf
14038:
14039: * src/include/pa_memory.h: typo error
14040:
14041: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
14042: more byte then specified, then zeroed it << useless and
14043: potentially harmful(could gpf)
14044:
14045: 2004-01-22 paf
14046:
14047: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
14048:
14049: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
14050: optimization
14051:
14052: * src/main/untaint.C: bugfix: whitespace now optimized properly
14053: [were bug: ^taint[1 & 2]="1 &2"
14054:
14055: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
14056: errors
14057:
14058: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
14059: overflow
14060:
14061: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
14062: error-reporting code * in parser-error reporting code [when no
14063: @unhandled_exception defined]
14064:
14065: fixed in one place: my *snprintf override
14066:
14067: 2004-01-13 paf
14068:
14069: * operators.txt: typo erro
14070:
14071: 2003-12-25 paf
14072:
14073: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
14074: garbled [pieces after zero bytes were removed]
14075:
14076: 2003-12-22 paf
14077:
1.116 moko 14078: * src/include/Makefile.am: bugfix: removed from dist:
14079: src/include/pa_config_auto.h which were configured for
1.95 moko 14080: make-dist-platform and badly updated proper config file in target
14081: [when .tar used for updating existing source tree]
14082:
14083: * ChangeLog, operators.txt, src/classes/op.C,
14084: src/include/pa_sql_connection.h,
14085: src/include/pa_sql_driver_manager.h,
14086: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
14087: feature: sql introducing ability to transcode charsets
14088:
14089: 2003-12-19 paf
14090:
14091: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
14092: error message
14093:
14094: * src/main/pa_charset.C: bugfix: memory for charsethandler
14095: structure for libxml now allocated properly
14096:
14097: 2003-12-17 paf
14098:
14099: * src/types/pa_vfile.C: beauty: removed outdated cast
14100:
14101: * src/main/pa_common.C: bugfix: empty http response caused gpf
14102:
14103: * src/include/pa_string.h: bugfix: removed too strong a assert
14104:
14105: * src/main/pa_globals.C: bugfix: removed false warning [warning:
14106: unreported xmlGenericErrors]
14107:
14108: 2003-12-15 paf
14109:
14110: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
14111: works}
14112:
14113: 2003-12-11 paf
14114:
14115: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
14116: id
14117: !$status:tid thread id
14118:
14119: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
14120: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
14121: bugfix(solaris): removed dependency on object initialization
14122: order [one more place]
14123:
14124: * src/: classes/file.C, classes/mail.C, classes/op.C,
14125: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
14126: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
14127: understand that
14128:
14129: * src/: classes/file.C, classes/mail.C, classes/op.C,
14130: classes/xdoc.C, include/pa_cache_managers.h,
14131: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14132: include/pa_stylesheet_manager.h, main/pa_request.C,
14133: main/pa_stylesheet_manager.C, types/pa_vimage.C,
14134: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
14135: ctor call [relying on implicit String::Body(cstr) call]
14136:
14137: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
14138: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
14139: object initialization order [two places]
14140:
14141: 2003-12-10 paf
14142:
14143: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
14144: << time now ok
14145:
14146: * operators.txt, src/main/pa_sql_driver_manager.C,
14147: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
14148: operational
14149:
14150: * ChangeLog, operators.txt, src/classes/xdoc.C,
14151: src/include/pa_charset.h, src/include/pa_sql_connection.h,
14152: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
14153: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
14154: back operational
14155:
14156: 2003-12-02 paf
14157:
14158: * src/types/pa_vmail.C: bugfix:
14159: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
14160: as-is forced]
14161:
14162: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
14163: exceptions out of libxml callbacks: reimplemented error handling
14164: of http://localhost, parser://method and safemode check callbacks
14165:
14166: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
14167: [merged from HEAD]
14168:
14169: * src/classes/image.C: nothing: comment removed
14170:
14171: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
14172: addresses to int
14173:
14174: 2003-12-01 paf
14175:
14176: * src/main/pa_xml_io.C: bugfix: typo
14177:
14178: * src/main/pa_globals.C: bugfix: win32: compile prob
14179:
14180: * src/classes/xdoc.C: bugfix: typo
14181:
14182: * src/main/pa_xml_io.C: todo: safe mode check not to throw
14183: exception
14184:
14185: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
14186:
14187: 2003-11-28 paf
14188:
14189: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
14190: all xml documents read
14191:
14192: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
14193:
14194: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
14195: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
14196: replaced original open mech of xdoc::create & co to use libxml
14197: open, so that this would work for root document todo: safe mode
14198: checks to libxml: ideally to some 1 point
14199:
14200: * src/main/pa_xml_io.C: comment
14201:
14202: * operators.txt, src/main/pa_xml_io.C: leading / in
14203: http://parser[abscent params]
14204:
14205: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
14206: works. todo: maybe replace original open mech of xdoc::create &
14207: co to use libxml open, so that this would work for root document
14208:
14209: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
14210: "parser://method/params/here"> <test> &test^; </test> }]
14211:
14212: ^taint[^xdoc.string[]]
14213:
14214: @method[param] <!ENTITY test
14215: "test-entity-value+$form:user+$param!">
14216:
14217: 2003-11-27 paf
14218:
14219: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
14220:
14221: * src/classes/date.C: bugfix: typo error
14222:
14223: 2003-11-26 paf
14224:
14225: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
14226: src/main/Makefile.am, src/main/main.vcproj,
14227: src/main/pa_globals.C, src/main/pa_request.C,
14228: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
14229: xml errors to hash<thread_id,error> reorganization: xml io moved
14230: to pa_xml_io.C/h
14231:
14232: * src/types/pa_value.h: warnings: --
14233:
14234: 2003-11-25 paf
14235:
14236: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
14237: whatever)
14238:
14239: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
14240: a, (c?x:y, z)
14241:
14242: * src/main/untaint.C: bugfix: consequences of not reading this
14243: comment: CORD_pos_chars_left /* Number of characters in cache.
14244: <= 0 ==> none */
14245:
14246: * src/include/pa_array.h: removed needless checks
14247:
14248: 2003-11-24 paf
14249:
14250: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
14251: removed limit: now $form:xxx can be accessed anytime, even in
14252: @auto/conf [and request/response:charset still can be changed
14253: anytime]
14254:
14255: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
14256: now not transcodes response body
14257:
14258: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
14259: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
14260: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
14261: $xdoc.firstChild.firstChild.nodeValue[different]
14262: ^taint[^xdoc.string[]]
14263:
14264: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
14265: workaround: static Hash::allocates -> static Hash_allocates
14266:
14267: 2003-11-21 paf
14268:
1.116 moko 14269: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
14270: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
14271: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 14272:
14273: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
14274:
14275: * src/classes/mail.C: bugfix: typo
14276:
14277: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 14278: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
14279: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
14280: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
14281: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 14282: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
14283:
14284: * src/main/pa_exec.C: bug in safe mode
14285:
14286: * src/include/Makefile.am: pa_xml_exception.h
14287:
14288: * src/targets/isapi/parser3isapi.C: more warnings --
14289:
14290: 2003-11-20 paf
14291:
14292: * src/: classes/math.C, classes/op.C, classes/string.C,
14293: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
14294: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
14295: --
14296:
14297: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
14298: more warnings --
14299:
14300: * src/classes/xdoc.C: more warnings --
14301:
14302: * src/classes/: date.C, image.C, xdoc.C: more warnings --
14303:
14304: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
14305: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
14306:
14307: * src/: classes/date.C, classes/file.C, classes/hash.C,
14308: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
14309: classes/table.C, include/pa_cache_managers.h,
14310: include/pa_stylesheet_connection.h, main/pa_request.C,
14311: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
14312: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
14313: --
14314:
14315: * src/main/: execute.C, pa_request.C: old forgotten todo: when
14316: can't report problem (undefined @unhandled_exception) problem
14317: source string were not reported
14318:
14319: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14320: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14321: classes/hashfile.C, classes/image.C, classes/int.C,
14322: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
14323: classes/response.C, classes/string.C, classes/table.C,
14324: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14325: include/pa_array.h, include/pa_cache_managers.h,
14326: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
14327: include/pa_config_fixed.h, include/pa_dictionary.h,
14328: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
14329: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
14330: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
14331: include/pa_request.h, include/pa_request_charsets.h,
14332: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
14333: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14334: include/pa_stack.h, include/pa_string.h,
14335: include/pa_stylesheet_connection.h,
14336: include/pa_stylesheet_manager.h, include/pa_table.h,
14337: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
14338: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
14339: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
14340: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14341: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
14342: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
14343: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
14344: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
14345: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
14346: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
14347: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
14348: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
14349: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
14350: targets/isapi/parser3isapi.C, types/pa_junction.h,
14351: types/pa_method.h, types/pa_value.C, types/pa_value.h,
14352: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
14353: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
14354: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
14355: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
14356: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
14357: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
14358: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14359: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
14360: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
14361: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
14362: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
14363: types/pa_vresponse.h, types/pa_vstateless_class.C,
14364: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14365: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
14366: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
14367: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14368: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
14369: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
14370: const IDENT
14371:
14372: * src/: include/pa_array.h, include/pa_pool.h,
14373: include/pa_request.h, include/pa_string.h, include/pa_table.h,
14374: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
14375: types/pa_wcontext.h: more warnings --
14376:
14377: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
14378: classes/file.C, classes/hash.C, classes/hashfile.C,
14379: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14380: classes/memory.C, classes/op.C, classes/string.C,
14381: classes/table.C, classes/xdoc.C, classes/xnode.C,
14382: include/pa_config_includes.h, include/pa_operation.h,
14383: include/pa_sql_connection.h, include/pa_table.h,
14384: include/pa_types.h, lib/ltdl/config_fixed.h,
14385: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
14386: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
14387: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
14388: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
14389: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
14390: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
14391: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
14392: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
14393: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
14394: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
14395: types/pa_vmail.C, types/pa_vobject.C,
14396: types/pa_vstateless_class.h, types/pa_vtable.C,
14397: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
14398: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
14399: on all projects (except libltdl=off & libsdbm=level3) found
14400: several unitialized vars
14401:
14402: 2003-11-19 paf
14403:
14404: * src/classes/op.C: more ansi C++ comp
14405:
14406: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14407: src/main/pa_request.C: ^cache[...]{body}{catch block with
14408: $exception.handled[cache] meaning "get expired cache, if any.
14409: else error"}
14410:
14411: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
14412: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
14413: ^cache[...]{body}{catch code with $exception.cache field}
14414:
14415: 2003-11-12 paf
14416:
14417: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
14418: [copy/paste bug]
14419:
14420: 2003-11-11 paf
14421:
14422: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
14423: failed]
14424:
14425: 2003-11-10 paf
14426:
14427: * src/types/pa_vconsole.h: flush
14428:
14429: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
14430: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
14431: read/write [for nntp]
14432:
14433: * operators.txt: mysql: transaction support: ?autocommit=0
14434:
14435: * operators.txt: comment: updated
14436:
14437: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
14438: serialize version and exipire now removes entries
14439:
14440: * operators.txt: ^hashfile.delete[] removes files altogether [and
14441: dir, if could]
14442:
14443: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
14444: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
14445: removes files altogether [and dir, if could]
14446:
14447: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
14448: nonexistent pair. .c coded that that was error. fixed
14449:
14450: * src/types/pa_vhashfile.C: sdbm: exception type change to
14451: file.access [regretfull can't split it to different exceptions
14452: without modifying sdbm source wich would prefer not to]
14453:
14454: 2003-11-07 paf
14455:
14456: * src/: classes/date.C, classes/file.C, classes/hash.C,
14457: classes/hashfile.C, classes/image.C, classes/table.C,
14458: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
14459: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
14460: main/execute.C, main/main.vcproj, main/pa_pool.C,
14461: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
14462: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
14463: types/pa_vstateless_class.h: resurrected: pool idea. now only for
14464: destructing objects at request processing end
14465:
14466: 2003-11-06 paf
14467:
14468: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
14469: updates
14470:
14471: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
14472: to include sdbm
14473:
1.116 moko 14474: * src/include/: pa_config_includes.h, pa_version.h: our
14475: replacements of max& co only for cpp
1.95 moko 14476:
14477: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
14478: upper dir, .am updated
14479:
14480: * tests/todo.txt: hashfile: done
14481:
14482: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
14483: expiration [time in value. todo: move time to key]
14484:
14485: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
14486:
14487: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
14488: to do that in foreach, no errors, but surely wrong]
14489:
14490: * operators.txt, src/types/pa_vhashfile.C,
14491: src/types/pa_vhashfile.h: hashfile: clear and proper locking
14492:
14493: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
14494: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
14495: foreach
14496:
14497: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
14498: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
14499:
14500: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
14501: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
14502:
14503: * src/: include/pa_memory.h, targets/cgi/parser3.C,
14504: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
14505: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
14506: get/put [raw]
14507:
14508: * src/: classes/op.C, main/pa_os.C: just linked
14509:
14510: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
14511: XmlException changes
14512:
14513: * src/: include/pa_charset.h, include/pa_globals.h,
14514: include/pa_stylesheet_connection.h, main/pa_exception.C:
14515: XmlException changes
14516:
14517: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
14518:
14519: * src/: include/pa_common.h, include/pa_exception.h,
14520: main/main.vcproj, main/pa_common.C, include/pa_os.h,
14521: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
14522: main/pa_xml_exception.C: locking move to pa_os [along with
14523: pa_sleep] apr-impl locking done
14524:
14525: * configure, configure.in, operators.txt, parser3.sln,
14526: src/classes/classes.vcproj, src/classes/hashfile.C,
14527: src/classes/xdoc.C, src/include/pa_config_fixed.h,
14528: src/include/pa_exception.h, src/include/pa_globals.h,
14529: src/include/pa_memory.h, src/include/pa_version.h,
14530: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
14531: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
14532: src/main/compile.tab.C, src/main/main.vcproj,
14533: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
14534: src/types/Makefile.am, src/types/pa_vhash.C,
14535: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
14536: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
14537: again with sdbm from apache
14538:
14539: 2003-11-05 paf
14540:
14541: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
14542: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
14543: \parser3project dir anymore
14544:
14545: * src/main/pa_charset.C: bugfix: had broken binary search [copied
14546: thoughtlessly from xalan]
14547:
14548: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
14549: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
14550: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
14551:
14552: * src/main/helpers/CaseFolding.txt:
14553: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
14554:
14555: 2003-11-04 paf
14556:
14557: * operators.txt: comment: ^mail:send[$.options[
14558:
14559: * src/classes/table.C: compiled on unix
14560:
1.116 moko 14561: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 14562:
14563: * src/classes/mail.C: compiled on unix
14564:
14565: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
14566: src/types/pa_vmail.h: !^mail:send[
14567: $.options[unix: string to append to sendmail command
14568: line]
14569:
14570: * operators.txt, src/classes/table.C, src/main/pa_string.C,
14571: tests/todo.txt: ^table.save[... $.separator[^#09]
14572: $.encloser["] <nothing> by default
14573:
14574: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
14575: !$.separator[^#09] !$.encloser["] <nothing> by
14576: default
14577:
14578: 2003-11-03 paf
14579:
14580: * operators.txt, src/classes/table.C, src/main/pa_common.C:
14581: ^table::load[; options: !$.column-separator[^#09]
14582: !$.column-encloser["]
14583:
14584: * operators.txt, src/include/pa_config_fixed.h,
14585: src/types/pa_vrequest.C: $request:document-root
14586:
14587: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
14588: [already included into uri=xxx]
14589:
14590: * operators.txt, src/classes/image.C, tests/todo.txt:
14591: ^image.gif[filename] for $response:download
14592:
14593: * src/classes/date.C: minor precaution
14594:
14595: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
14596: !^date.unix-timestamp[]
14597:
14598: 2003-10-30 paf
14599:
14600: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
14601: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
14602:
14603: * src/classes/: date.C, image.C: improvement diagnostics:
14604: $now[^date::create[$undefined]] now is error
14605:
14606: * src/main/pa_common.C: read errors would now be reported 'actually
14607: read -1 bytes'
14608:
14609: 2003-10-24 paf
14610:
14611: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
14612: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
14613: src/main/Makefile.am, src/targets/cgi/Makefile.am,
14614: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
14615:
14616: 2003-10-22 paf
14617:
14618: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
14619:
14620: 2003-10-21 paf
14621:
14622: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
14623: fixed: string.match[g] without <'> option produced columns with
14624: NULL's, which gpf'ed at table.save time
14625:
14626: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
14627: recoursion' message with intensive throw-catches fixed: incorrect
14628: name and line (one name upper then needed) in error message about
14629: problems inside try block
14630:
14631: 2003-10-10 paf
14632:
14633: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
14634: check offset argument for validity did that in String::Body::pos
14635: myself http://i2/tasks/edit/?id=4577425257580789777
14636:
14637: 2003-10-07 paf
14638:
14639: * src/main/: compile.tab.C, compile.y: ^if ( better error:
14640: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
14641:
14642: 2003-10-03 paf
14643:
14644: * parser3.sln, src/include/pa_dictionary.h,
14645: src/main/pa_dictionary.C, src/main/pa_string.C,
14646: src/targets/cgi/parser3.vcproj: dictionary optimized by
14647: precalculating cstr&length
14648:
14649: 2003-10-02 paf
14650:
14651: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14652: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
14653: main/pa_stylesheet_manager.C: bugfix: ^throw context were
14654: saved/restored incompletely http://www.parser.ru/forum/?id=21484
14655:
14656: 2003-09-30 paf
14657:
14658: * src/main/pa_string.C: string::replace bug fix [were ignoring
14659: occurrances after lang-mismatched
14660:
14661: 2003-09-29 paf
14662:
14663: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
14664: helper
14665:
14666: * src/main/pa_string.C: string::serialize bug fix with
14667: zero-terminator
14668:
14669: * src/classes/table.C: ^nameless_table.save column row now has no
14670: \t at the end
14671:
14672: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
14673: @postprocess now takes $response:body/download
14674:
14675: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
14676: error message
14677:
14678: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
14679:
14680: * src/classes/table.C: bugfix: flip: must produce nameless
14681: http://i2/tasks/edit/?id=4573405524674081244
14682:
14683: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
14684: main/helpers/simple_folding.pl: utf-8 upper/lower
14685:
14686: * src/main/pa_common.C: bugfix: utf signature were not ignored due
14687: to typo error http://i2/tasks/edit/?id=4573354650786434584
14688:
14689: 2003-09-26 paf
14690:
14691: * src/main/untaint.C: removed needless field
14692:
14693: * src/main/untaint.C: removed needless const
14694:
14695: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
14696: String.for_each bug fixed [omited one-char cases]
14697:
14698: * src/include/pa_stack.h: bugfix: before collecting garbage,
14699: runtime-executor stack were cleared... BADLY
14700:
14701: * src/main/pa_string.C: ^stirng.replace code used old
14702: param-convention on langs.append, fixed that search fo the like,
14703: found none
14704:
14705: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
14706: string::serialize/deserialize implemented Language enum assigned
14707: meaningful letters [more convinient for debugging. read warning
14708: before adding/changing anything]
14709:
14710: 2003-09-25 paf
14711:
14712: * src/: include/pa_string.h, include/pa_version.h,
14713: main/pa_string.C, main/untaint.C: templates and anonymous unions
14714: differences on unix
14715:
14716: * parser3.sln, src/classes/file.C, src/classes/image.C,
14717: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
14718: src/classes/xdoc.C, src/classes/xnode.C,
14719: src/include/pa_cache_managers.h, src/include/pa_charset.h,
14720: src/include/pa_charsets.h, src/include/pa_common.h,
14721: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
14722: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
14723: src/include/pa_table.h, src/lib/cord/cordbscs.c,
14724: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
14725: src/lib/cord/include/cord.h, src/main/compile.tab.C,
14726: src/main/compile_tools.h, src/main/pa_charset.C,
14727: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
14728: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14729: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
14730: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
14731: src/types/pa_vmail.C, src/types/pa_vmath.C,
14732: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
14733: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
14734:
14735: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
14736: functions aligned to that of eeparser3 look
14737:
14738: * src/lib/cord/cordprnt.c: removed warnings
14739:
14740: 2003-09-24 paf
14741:
14742: * src/: classes/file.C, classes/image.C, classes/mail.C,
14743: classes/op.C, classes/xdoc.C, classes/xnode.C,
14744: include/pa_cache_managers.h, include/pa_charset.h,
14745: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
14746: include/pa_sql_driver_manager.h, include/pa_string.h,
14747: include/pa_stylesheet_manager.h, include/pa_table.h,
14748: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
14749: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
14750: main/pa_sql_driver_manager.C, main/pa_string.C,
14751: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
14752: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
14753: types/pa_vstateless_class.h, types/pa_vstatus.C,
14754: types/pa_vxnode.C: v() functions of String::Body,
14755: String::Languages and String itself StringBody->String::Body
14756:
14757: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14758: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
14759: never optimized anything. todo: somehow speed up harder cases:
14760: concatenationA+concatenationB when last block of A and first of B
14761: contain same letters
14762:
14763: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14764: lib/cord/include/cord.h: langs: speed up by joining adjucent
14765: blocks of same char [CORD_append_block]
14766:
14767: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14768: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
14769: save space by extending blocks when appending block with c ==
14770: lastblock.c
14771:
14772: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
14773: working yet :( but more working &understood :)
14774:
14775: * src/: classes/table.C, include/pa_string.h,
14776: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
14777:
14778: 2003-09-23 paf
14779:
14780: * src/main/untaint.C: $a[ok!] $a works!
14781:
14782: * src/main/untaint.C: something even more works :)
14783:
14784: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
14785: something more works :)
14786:
14787: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14788: lib/cord/cordxtra.c: something already works :)
14789:
14790: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
14791: serialize&deserialize
14792:
14793: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
14794: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
14795: main/untaint.C: main idea implemented, details left
14796:
14797: 2003-09-22 paf
14798:
14799: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
14800:
14801: * src/classes/xnode.C: copy/paste comment bugfix
14802:
14803: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
14804: allocator returns 0, just die.
14805: http://i2/tasks/edit/?id=4570798492410259445
14806:
14807: * src/classes/xdoc.C: copy/paste comment bugfix
14808:
14809: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
14810: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
14811: xnode: getAttributeNS setAttributeNS removeAttributeNS
14812: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
14813:
14814: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
14815: chars due to bitwise operation signed-char error]
14816:
14817: 2003-09-19 paf
14818:
14819: * src/types/pa_wcontext.C: output message: more practical
14820: suggestion
14821:
14822: * src/main/pa_common.C, operators.txt: merged
14823: $f[^file::load[binary;http://...]] $f.tables
14824:
14825: 2003-09-02 paf
14826:
14827: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
14828: flush stdout without referencing 'stdout' symbol. to hell with
14829: non-ansi libraries without 'stdout' symbol
14830:
14831: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
14832: unix (users reported problems with some old libc)
14833:
14834: * src/types/pa_vdate.h: forgot initializer
14835:
14836: 2003-09-01 paf
14837:
14838: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
14839: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
14840: zone]
14841:
14842: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
14843:
14844: 2003-08-19 paf
14845:
14846: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
14847: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
14848: simplified a little
14849:
14850: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
14851: [lost fix from 3.0.8]
14852:
14853: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
14854: visible here }
14855:
14856: bug fix
14857:
14858: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
14859:
14860: * src/main/compile.tab.C: initialized couple of variables about
14861: which user reported runtime problems when parser were compiled
14862: with VC7, warning level4. study shows that later in bison
14863: they've fixed that. would migrate to latest bison someday
14864:
14865: * src/types/pa_vmail.C: turned off recoding in gmime (were still
14866: recoding headers)
14867:
14868: * src/types/pa_vmail.C: works as before, same charset problems:
14869: gmime recodes to UTF-8 only headers, not body. so not recoding
14870: anything for now
14871:
14872: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
14873: problems with body
14874:
14875: * src/types/pa_vmail.C: mail_receive just compiled
14876:
14877: 2003-08-18 paf
14878:
14879: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
14880: main/main.vcproj, types/types.vcproj: win32: continued process
14881: detaching from \parser3project directory
14882:
14883: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
14884: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
14885: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
14886: src/lib/pcre/pcre_dftables.dsp,
14887: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
14888: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
14889: src/types/types.dsp: moved to MSVC 7
14890:
14891: * gnu.vcproj.vspscc, parser3.vssscc,
14892: src/classes/classes.vcproj.vspscc,
14893: src/lib/cord/cord.vcproj.vspscc,
14894: src/lib/ltdl/libltdl.vcproj.vspscc,
14895: src/lib/md5/md5.vcproj.vspscc,
14896: src/lib/pcre/pcre_dftables.vcproj.vspscc,
14897: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
14898: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
14899: src/targets/isapi/parser3isapi.vcproj.vspscc,
14900: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
14901: moved to MSVC 7
14902:
14903: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
14904: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
14905: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
14906: src/lib/pcre/pcre_dftables.vcproj,
14907: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
14908: src/targets/cgi/parser3.vcproj,
14909: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
14910: new VS project files
14911:
14912: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
14913: .NET to detect Jalindi Igloo capabilities.
14914:
14915: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 14916: src/classes/classes.awk, src/doc/footer.htm,
14917: src/include/pa_config_fixed.h, src/include/pa_version.h,
14918: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 14919: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
14920: src/types/pa_vmail.C: merged 3.1.0 latest changes
14921:
14922: 2003-08-15 paf
14923:
14924: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14925: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
14926:
14927: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14928: non-ascii <yyy> now encoded correctly
14929:
14930: 2003-07-29 paf
14931:
1.116 moko 14932: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
14933: dist
1.95 moko 14934:
14935: * src/types/pa_vmail.C: just started --with-mail-receive
14936:
14937: 2003-07-28 paf
14938:
1.116 moko 14939: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
14940: dependence in src/classes, src/lib/gc now in dist
1.95 moko 14941:
14942: * src/main/pa_string.C: ^cache bug fix [were not working at all]
14943:
14944: 2003-07-25 paf
14945:
14946: * src/doc/footer.htm: year
14947:
14948: 2003-07-24 paf
14949:
14950: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
14951: fix
14952:
14953: * src/include/pa_version.h: release
14954:
1.116 moko 14955: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 14956:
14957: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
14958: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
14959: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
14960: getting rid of win32xml pseudo project
14961:
14962: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
14963:
1.116 moko 14964: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
14965: configure.in, operators.txt, parser3.dsw,
1.95 moko 14966: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 14967: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 14968: src/classes/classes.C, src/classes/classes.awk,
14969: src/classes/classes.dsp, src/classes/classes.h,
14970: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14971: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14972: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14973: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14974: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14975: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14976: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
14977: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 14978: src/include/pa_array.h, src/include/pa_cache_managers.h,
14979: src/include/pa_charset.h, src/include/pa_charsets.h,
14980: src/include/pa_common.h, src/include/pa_config_auto.h.in,
14981: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
14982: src/include/pa_dictionary.h, src/include/pa_dir.h,
14983: src/include/pa_exception.h, src/include/pa_exec.h,
14984: src/include/pa_globals.h, src/include/pa_hash.h,
14985: src/include/pa_memory.h, src/include/pa_opcode.h,
14986: src/include/pa_operation.h, src/include/pa_pool.h,
14987: src/include/pa_pragma_pack_begin.h,
1.95 moko 14988: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
14989: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
14990: src/include/pa_sapi.h, src/include/pa_socks.h,
14991: src/include/pa_sql_connection.h,
14992: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
14993: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
14994: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14995: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 14996: src/include/pa_uue.h, src/lib/Makefile.am,
14997: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
14998: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
14999: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
15000: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 15001: src/lib/cord/include/ec.h,
15002: src/lib/cord/include/private/Makefile.am,
15003: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 15004: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
15005: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 15006: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 15007: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
15008: src/main/compile_tools.C, src/main/compile_tools.h,
15009: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
15010: src/main/pa_cache_managers.C, src/main/pa_charset.C,
15011: src/main/pa_charsets.C, src/main/pa_common.C,
15012: src/main/pa_dictionary.C, src/main/pa_dir.C,
15013: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 15014: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
15015: src/main/pa_request.C, src/main/pa_socks.C,
15016: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15017: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 15018: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
15019: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
15020: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
15021: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
15022: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
15023: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
15024: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 15025: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
15026: src/targets/isapi/parser3isapi.dsp,
15027: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 15028: src/types/pa_junction.h, src/types/pa_method.h,
15029: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 15030: src/types/pa_vclass.C, src/types/pa_vclass.h,
15031: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15032: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15033: src/types/pa_vdouble.h, src/types/pa_venv.h,
15034: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
15035: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
15036: src/types/pa_vimage.C, src/types/pa_vimage.h,
15037: src/types/pa_vint.h, src/types/pa_vjunction.h,
15038: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
15039: src/types/pa_vmath.h, src/types/pa_vmemory.h,
15040: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15041: src/types/pa_vobject.C, src/types/pa_vobject.h,
15042: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15043: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15044: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15045: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
15046: src/types/pa_vstatus.h, src/types/pa_vstring.C,
15047: src/types/pa_vstring.h, src/types/pa_vtable.C,
15048: src/types/pa_vtable.h, src/types/pa_vvoid.h,
15049: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15050: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
15051: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
15052: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
15053: HEAD
15054:
15055: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
15056: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
15057: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
15058: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
15059: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
15060: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
15061: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
15062: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
15063: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
15064: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
15065: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
15066: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
15067: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
15068: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
15069: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
15070: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
15071: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
15072: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
15073: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
15074: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
15075: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
15076: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
15077: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
15078: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
15079: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
15080: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
15081: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
15082: outputs/create-dir, results/001.processed, results/002.processed,
15083: results/003.processed, results/004.processed,
15084: results/005.processed, results/006.processed,
15085: results/007.processed, results/008.processed,
15086: results/009.processed, results/010.processed,
15087: results/011.processed, results/012.processed,
15088: results/013.processed, results/014.processed,
15089: results/015.processed, results/016.processed,
15090: results/017.processed, results/018.processed,
15091: results/019.processed, results/020.processed,
15092: results/021.processed, results/022.processed,
15093: results/023.processed, results/024.processed,
15094: results/025.processed, results/026.processed,
15095: results/027.processed, results/028.processed,
15096: results/029.processed, results/030.processed,
15097: results/031.processed, results/032.processed,
15098: results/033.processed, results/034.processed,
15099: results/035.processed, results/036.processed,
15100: results/037.processed, results/038.processed,
15101: results/039.processed, results/040.processed,
15102: results/041.processed, results/042.processed,
15103: results/043.processed, results/044.processed,
15104: results/045.processed, results/046.processed,
15105: results/047.processed, results/048.processed,
15106: results/049.processed, results/050.processed,
15107: results/051.processed, results/052.processed,
15108: results/053.processed, results/054.processed,
15109: results/055.processed, results/056.processed,
15110: results/057.processed, results/058.processed,
15111: results/059.processed, results/060.processed,
15112: results/061.processed, results/062.processed,
15113: results/063.processed, results/064.processed,
15114: results/065.processed, results/066.processed,
15115: results/067.processed, results/068.processed,
15116: results/069.processed, results/070.processed,
15117: results/071.processed, results/072.processed,
15118: results/073.processed, results/074.processed,
15119: results/075.processed, results/076.processed,
15120: results/077.processed, results/078.processed,
15121: results/079.processed, results/080.processed,
15122: results/081.processed, results/082.processed,
15123: results/083.processed, results/084.processed,
15124: results/085.processed, results/086.processed,
15125: results/087.processed, results/088.processed,
15126: results/089.processed, results/090.processed,
15127: results/091.processed, results/092.processed,
15128: results/093.processed, results/094.processed,
15129: results/095.processed, results/096.processed,
15130: results/097.processed, results/098.processed,
15131: results/099.processed, results/100.processed,
15132: results/101.processed, results/102.processed,
15133: results/103.processed, results/104.processed,
15134: results/105.processed, results/106.processed,
15135: results/107.processed, results/108.processed,
15136: results/109.processed, results/110.processed,
15137: results/111.processed, results/112.processed,
15138: results/113.processed, results/114.processed,
15139: results/115.processed, results/116.processed,
15140: results/117.processed, results/118.processed,
15141: results/119.processed, results/120.processed,
15142: results/121.processed, results/122.processed,
15143: results/123.processed, results/124.processed,
15144: results/125.processed, results/126.processed,
15145: results/127.processed, results/128.processed,
15146: results/129.processed, results/130.processed,
15147: results/131.processed, results/132.processed,
15148: results/133.processed, results/134.processed,
15149: results/135.processed, results/136.processed,
15150: results/137.processed, results/138.processed,
15151: results/139.processed, results/140.processed,
15152: results/141.processed: merged(copied) to HEAD from template_gc
15153:
15154: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
15155: towards \parser3project not having to be in root
15156:
15157: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
15158: module compiled [were minor unnecessary changes in lib/md5
15159: interface]
15160:
15161: * src/include/pa_version.h: release
15162:
15163: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
15164:
15165: * src/classes/math.C: merged uuid bugfix
15166:
15167: * tests/: 141.html, results/141.processed: fixed bug with
15168: too-small-a-buffer
15169:
15170: * src/classes/math.C: uuid bugfix
15171:
15172: * tests/: 141.html, Makefile, results/005.processed,
15173: results/030.processed, results/075.processed,
15174: results/078.processed: to reflect date format change (were -
15175: become ' ')
15176:
15177: * src/classes/math.C: uuid bugfix
15178:
15179: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
15180: debug/release changes
15181:
15182: * src/lib/md5/pa_md5c.c: PA_ -> pa_
15183:
15184: 2003-07-23 paf
15185:
15186: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
15187: renamed a little [to move to comman naming conv]
15188:
1.116 moko 15189: * src/targets/Makefile.am: apache13 splitted to simplify apache
15190: build
1.95 moko 15191:
15192: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
15193: main/pa_request.C, main/pa_sql_driver_manager.C,
15194: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
15195: stack top_index() fixed
15196:
15197: * src/main/pa_globals.C: minor style changes
15198:
15199: * src/: classes/op.C, include/pa_sql_connection.h: connection
15200: closing/caching fixed [connections were not closed/put to cache]
15201:
15202: 2003-07-22 paf
15203:
15204: * INSTALL: gc part updated stightly
15205:
15206: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
15207: new sapi interface
15208:
15209: * src/classes/file.C: comment on OS
15210:
15211: * src/main/pa_string.C: removed reduntant invariant check [there is
15212: one deeper in cord lib]
15213:
15214: * src/main/pa_exec.C: on win32 bugfix in handling shbang
15215:
15216: * src/main/pa_memory.C: out of memory is no longer coredump
15217:
15218: * INSTALL: disable-threads adviced
15219:
15220: 2003-07-21 paf
15221:
1.116 moko 15222: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 15223:
15224: * src/classes/file.C: file::exec/cgi environment variables now must
15225: be UPPERCASE and A-Z 0-9 _-
15226:
15227: * src/classes/file.C: env passing fixed
15228:
15229: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
15230:
15231: * src/main/pa_common.C: http:// CRLF now
15232:
15233: 2003-07-02 paf
15234:
15235: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
15236: fields to reflect their real meaning
15237:
15238: 2003-06-27 paf
15239:
15240: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
15241: include/pa_hash.h, main/pa_charset.C: merged from HEAD
15242: file::exec/cgi .charset
15243:
15244: 2003-06-26 paf
15245:
15246: * ChangeLog, src/classes/file.C, src/classes/hash.C,
15247: src/classes/image.C, src/classes/op.C, src/classes/string.C,
15248: src/classes/table.C: fixed several uninitialized local
15249: structures. notably ^hash.foreach now inserts delimiters
15250: properly [were inserting it before first body]
15251:
15252: 2003-06-24 paf
15253:
15254: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
15255:
15256: 2003-06-20 paf
15257:
15258: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
15259: src/main/pa_globals.C: introducing
15260: $f[^file::load[binary;http://...]] $f.tables
15261:
15262: 2003-06-06 paf
15263:
15264: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
15265: table. [were method lookup: inconsistent]
15266:
15267: 2003-06-02 paf
15268:
15269: * src/include/pa_memory.h: empty string clone fixed to return
15270: writable memory
15271:
15272: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
15273: were not appended] which violated string invariant
15274:
15275: 2003-05-30 paf
15276:
15277: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
15278: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
15279:
15280: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
15281: GMT ; RFC 822, updated by RFC 1123
15282:
15283: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
15284: targets/isapi/parser3isapi.C: initialized request_info properly
15285:
15286: * src/classes/xnode.C: found minor bug, commended for future
15287:
15288: 2003-05-28 paf
15289:
15290: * src/classes/form.C: request_info.content_length can't be <0,
15291: size_t for some time
15292:
15293: 2003-05-26 paf
15294:
15295: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
15296: forgotten <0 changed to !=STRING_NOT_FOUND
15297:
15298: * src/classes/math.C: merged ffffu from HEAD
15299:
15300: 2003-05-11 paf
15301:
15302: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
15303:
15304: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
15305: premature doc free. transformed document had xmlDoc reference
15306: stored to non-gc-memory (libgdome) added holding-reference
15307:
15308: 2003-04-29 paf
15309:
15310: * src/main/pa_globals.C: started digging on double free. on win32
15311: found that that's perfectly normal.
15312:
15313: 2003-04-25 paf
15314:
15315: * src/classes/table.C: table.join bug fix [bad limit check]
15316:
15317: * src/classes/math.C: merged from HEAD: simpiler hash_string
15318:
15319: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
15320: print anything. changed to quicker and simplier code
15321:
15322: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
15323: strict a check]
15324:
15325: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
15326:
15327: 2003-04-24 paf
15328:
15329: * src/include/pa_table.h: too strict assert loosened
15330:
15331: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
15332: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
15333: report
15334:
15335: 2003-04-21 paf
15336:
1.116 moko 15337: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 15338:
15339: * src/main/pa_globals.C: pcre memory management changed to use GC
15340: memory
15341:
15342: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
15343: xmlMallocAtomic [author agreed to my suggestion], used that
15344:
15345: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
15346:
15347: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
15348: types/pa_vmail.C: attributed_meaning_to_string added
15349: L_UNSPECIFIED piece which was sortof OK, but violated string
15350: invariant [assertion barked on that] changed to L_PASS_APPEND,
15351: made that param obligatory
15352:
15353: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
15354: fixed [assert helped]
15355:
15356: * src/include/pa_string.h: assert added [looking for bug]
15357:
15358: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
15359: names on Win32 considered disk-global
15360:
15361: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
15362: considered disk-global
15363:
15364: 2003-04-18 paf
15365:
15366: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
15367: filenames
15368:
15369: * src/main/untaint.C: enabled '~' letter in filenames
15370:
15371: 2003-04-16 paf
15372:
15373: * src/classes/file.C: small bug introduced in autoptr times fixed
15374:
15375: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
15376: HEAD
15377:
1.116 moko 15378: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 15379:
15380: 2003-04-15 paf
15381:
15382: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
15383: src/lib/md5/pa_md5c.c, tests/141.html,
15384: tests/results/141.processed: merged from head ^math:uuid[]
15385: ^math:uid64[] ^math:md5[string]
15386:
15387: test added: 141.html
15388:
15389: * operators.txt, src/classes/math.C: ^math:uid64[]
15390:
15391: * src/classes/math.C: ^math:uuid[]
15392:
15393: * operators.txt, src/classes/math.C: ^math:uuid[]
15394:
15395: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
15396: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
15397:
15398: * operators.txt, src/classes/file.C, src/include/pa_common.h,
15399: src/include/pa_config_fixed.h, src/main/pa_common.C:
15400: ^file::load[mode;name; $.offset $.limit
15401:
15402: 2003-04-14 paf
15403:
15404: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
15405: started ^math:md5
15406:
15407: * src/classes/table.C, src/include/pa_array.h,
15408: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
15409: tests/results/140.processed: table $.reverse option works in
15410: create&co table $.distinct[tables] bug fix merged
15411:
15412: * src/: classes/table.C, include/pa_table.h: table
15413: $.distinct[tables] bug fixed
15414:
15415: * src/classes/table.C: more warnings
15416:
15417: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
15418: removed checks in table::set_current, moved them back to
15419: table::locate implemented table::create/join ñ $.reverse
15420:
15421: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
15422: removed checks in table::set_current, moved them back to
15423: table::locate
15424:
15425: 2003-04-11 paf
15426:
15427: * operators.txt, src/classes/date.C, src/classes/table.C,
15428: src/include/pa_array.h, src/include/pa_common.h,
15429: src/include/pa_config_includes.h, src/include/pa_string.h,
15430: src/include/pa_table.h, src/main/pa_request.C,
15431: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15432: src/main/pa_table.C: merged from HEAD from
15433: before_append_array_limit_sense_change to
15434: after_append_array_limit_sense_change
15435:
15436: * src/classes/table.C: typo
15437:
15438: * operators.txt, src/classes/date.C, src/classes/table.C,
15439: src/include/pa_array.h, src/include/pa_common.h,
15440: src/include/pa_config_includes.h, src/include/pa_globals.h,
15441: src/include/pa_table.h, src/main/pa_array.C,
15442: src/main/pa_globals.C, src/main/pa_request.C,
15443: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15444: src/main/pa_table.C: append_array_limit_sense_change locate
15445: accepts options same as create new option: $.reverse(1) [do not
15446: work in table::create]
15447:
15448: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
15449: (stat xxx,
15450:
15451: * src/classes/: table.C: typo
15452:
15453: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
15454: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
15455: results/130.processed, results/131.processed,
15456: results/132.processed, results/133.processed,
15457: results/134.processed, results/135.processed,
15458: results/136.processed, results/137.processed,
15459: results/138.processed, results/139.processed: added few mustfail
15460: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
15461: date/time 132.html mustfail: access to junction outside of
15462: context 133.html mustfail: access to junction outside of context,
15463: case version 134.html mustfail: hash: adding a key inside of
15464: foreach 135.html mustfail: modifying system class 136.html
15465: mustfail: $.name outside of $hash[here] 137.html mustfail:
15466: appendChild without import 138.html mustfail: invalid encoding
15467: inside of xml 139.html mustfail: bad XPath
15468:
15469: * operators.txt, src/classes/table.C, tests/084.html,
15470: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
15471: tests/129.html, tests/results/125.processed,
15472: tests/results/126.processed, tests/results/127.processed,
15473: tests/results/128.processed, tests/results/129.processed: merged
15474: from HEAD ^table.hash[key][$.distinct[tables]]
15475:
15476: maked appropriate tests [changed one old nonconforming]
15477:
15478: * operators.txt, src/classes/table.C:
15479: ^table.hash[key][$.distinct[tables]]
15480:
15481: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
15482: merged fix for found very old xml (dom) bug: were passing
15483: domString objects and later ERROREOUSLY freed them
15484:
15485: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
15486: src/main/pa_charset.C: re-added libgdome patch. regretfully
15487: libgdome bug can not be worked around
15488:
15489: 2003-04-10 paf
15490:
15491: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
15492: found very old xml (dom) bug: were passing domString objects and
15493: later ERROREOUSLY freed them
15494:
15495: * src/doc/string.dox, src/include/pa_memory.h,
15496: src/include/pa_string.h, src/lib/cord/cordbscs.c,
15497: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
15498: tests/123.html, tests/124.html, tests/results/001.processed,
15499: tests/results/002.processed, tests/results/003.processed,
15500: tests/results/004.processed, tests/results/005.processed,
15501: tests/results/006.processed, tests/results/008.processed,
15502: tests/results/009.processed, tests/results/010.processed,
15503: tests/results/011.processed, tests/results/012.processed,
15504: tests/results/013.processed, tests/results/014.processed,
15505: tests/results/015.processed, tests/results/016.processed,
15506: tests/results/017.processed, tests/results/018.processed,
15507: tests/results/020.processed, tests/results/021.processed,
15508: tests/results/022.processed, tests/results/023.processed,
15509: tests/results/024.processed, tests/results/025.processed,
15510: tests/results/026.processed, tests/results/027.processed,
15511: tests/results/028.processed, tests/results/029.processed,
15512: tests/results/030.processed, tests/results/031.processed,
15513: tests/results/032.processed, tests/results/033.processed,
15514: tests/results/034.processed, tests/results/035.processed,
15515: tests/results/036.processed, tests/results/037.processed,
15516: tests/results/038.processed, tests/results/039.processed,
15517: tests/results/040.processed, tests/results/041.processed,
15518: tests/results/042.processed, tests/results/043.processed,
15519: tests/results/044.processed, tests/results/045.processed,
15520: tests/results/046.processed, tests/results/047.processed,
15521: tests/results/048.processed, tests/results/049.processed,
15522: tests/results/050.processed, tests/results/051.processed,
15523: tests/results/052.processed, tests/results/053.processed,
15524: tests/results/054.processed, tests/results/055.processed,
15525: tests/results/056.processed, tests/results/057.processed,
15526: tests/results/058.processed, tests/results/059.processed,
15527: tests/results/060.processed, tests/results/061.processed,
15528: tests/results/062.processed, tests/results/063.processed,
15529: tests/results/064.processed, tests/results/065.processed,
15530: tests/results/066.processed, tests/results/067.processed,
15531: tests/results/068.processed, tests/results/069.processed,
15532: tests/results/070.processed, tests/results/071.processed,
15533: tests/results/072.processed, tests/results/073.processed,
15534: tests/results/074.processed, tests/results/075.processed,
15535: tests/results/076.processed, tests/results/077.processed,
15536: tests/results/078.processed, tests/results/079.processed,
15537: tests/results/080.processed, tests/results/081.processed,
15538: tests/results/082.processed, tests/results/083.processed,
15539: tests/results/084.processed, tests/results/085.processed,
15540: tests/results/086.processed, tests/results/087.processed,
15541: tests/results/088.processed, tests/results/089.processed,
15542: tests/results/090.processed, tests/results/091.processed,
15543: tests/results/092.processed, tests/results/093.processed,
15544: tests/results/094.processed, tests/results/095.processed,
15545: tests/results/096.processed, tests/results/097.processed,
15546: tests/results/101.processed, tests/results/102.processed,
15547: tests/results/104.processed, tests/results/105.processed,
15548: tests/results/106.processed, tests/results/107.processed,
15549: tests/results/108.processed, tests/results/109.processed,
15550: tests/results/110.processed, tests/results/111.processed,
15551: tests/results/112.processed, tests/results/113.processed,
15552: tests/results/114.processed, tests/results/115.processed,
15553: tests/results/116.processed, tests/results/117.processed,
15554: tests/results/118.processed, tests/results/119.processed,
15555: tests/results/120.processed, tests/results/121.processed,
15556: tests/results/122.processed, tests/results/123.processed,
15557: tests/results/124.processed: new convention: char* never 0.
15558: assert in cord on that
15559:
15560: * src/main/pa_charset.C: couple more asserts
15561:
15562: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
15563: speedup
15564:
15565: * src/main/pa_charset.C: couple assertions on fantastic situations
15566: added [may be those is the case now?]
15567:
15568: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
15569: that's memory from gc_malloc, not from g_malloc :(, but would
15570: hope]
15571:
15572: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
15573: that's memory from gc_malloc, not from g_malloc :(, but would
15574: hope]
15575:
15576: * src/main/pa_charset.C: checked custom malloc for returning 0
15577:
15578: 2003-04-09 paf
15579:
15580: * src/classes/date.C: merged ^date.roll changes
15581:
15582: * src/classes/date.C: ^date.roll bug fix
15583:
15584: * src/classes/date.C: ^date.roll now throws less errors: month
15585: shifts handles end of month situation by reducing day number
15586: hour-hole shift reduces hour to recover
15587:
15588: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
15589: Sort by function time
15590:
15591: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
15592: http:// $.charset[] param done
15593:
15594: * tests/: 122.html, results/122.processed: 122 date test <= and ==
15595: added [after volatile fix. passes on win&intel-solaris]
15596:
15597: 2003-04-08 paf
15598:
15599: * src/: classes/file.C, classes/op.C, classes/table.C,
15600: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
15601: include/pa_common.h, include/pa_request_charsets.h,
15602: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15603: main/pa_exec.C, main/pa_request.C, main/untaint.C,
15604: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
15605: types/pa_vresponse.C: started http:// $.charset[] param and
15606: http response charset detection just compiled. todo:test
15607:
15608: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
15609:
15610: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
15611: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
15612: types/pa_vmail.C: changed transcode param converntion along with
15613: string creating convention -- all strings are zero-terminated,
15614: this allowed to fix one remaining String("123", 2) case
15615:
15616: * src/: classes/date.C, classes/file.C, classes/hash.C,
15617: classes/op.C, classes/string.C, classes/table.C,
15618: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
15619: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
15620: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15621: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
15622: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
15623: violated String::invariant. started fixing [not compiled now]
15624:
15625: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
15626: main/compile.tab.C, main/compile.y, main/pa_string.C,
15627: main/untaint.C, targets/cgi/parser3.C: number of string style
15628: improvements & optimizations
15629:
15630: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
15631: :(]
15632:
15633: * src/main/untaint.C: removed redundant & in CORD_pos param passing
15634: [for it's a pointer really]
15635:
15636: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
15637: 'n' param. worked that around
15638:
15639: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
15640: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
15641: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
15642: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
15643: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
15644:
15645: Thanks for the bug report and patch.
15646:
15647: I hadn't looked at this code in a while. Reading it now, it
15648: seems to me that the tests should also be ">= MAX_DEPTH" to
15649: comply with the invariant, though that may not matter a lot. I
15650: changed that, too.
15651:
15652: Hans
15653:
15654: 2003-04-07 paf
15655:
15656: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
15657: merged from head:safe mode error message now includes numbers
15658:
15659: * src/main/execute.C: n-th attempt to make a=a work with double.
15660: problem: as_double returns it's result in fp-register compiler
15661: optimizes access to that register after b->as_double, and just
15662: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
15663: from memory. _SAME_ double values do not match here. when
15664: forced to REload fp-register, values do match.
15665:
15666: tried to make them volatile.
15667:
15668: * src/main/execute.C: n-th attempt to make a=a work with double.
15669: problem: as_double returns it's result in fp-register compiler
15670: optimizes access to that register after b->as_double, and just
15671: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
15672: from memory. _SAME_ double values do not match here. when
15673: forced to REload fp-register, values do match.
15674:
15675: tried to make them volatile.
15676:
15677: * src/types/pa_vobject.h: small style change
15678:
15679: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
15680:
15681: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
15682: mode error message now includes numbers
15683:
15684: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
15685: now causes death
15686:
15687: 2003-04-04 paf
15688:
15689: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
15690: incorportated pa_exec patch by From: "Victor Fedoseev"
15691: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
15692: Sent: Thursday, January 23, 2003 9:14 AM
15693:
15694: huge speedup on ^file::cgi with big result
15695:
15696: * src/classes/table.C: sort table with 0 rows bug fixed
15697:
15698: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
15699: fix http://i2/tasks/edit/?id=4493701604654042676
15700:
15701: @main[] $with_default[ $.a[1] $._default[default from
15702: with_default] ] ^show[$with_default]
15703:
15704: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
15705: =$to_add_to.xxx=<br>
15706:
15707: ^show[$to_add_to]
15708:
15709: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
15710: ^show[$cloned]
15711:
15712: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
15713:
15714: } <hr>
15715:
15716: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
15717: http://i2/tasks/edit/?id=4493701604654042676
15718:
15719: @main[] $with_default[ $.a[1] $._default[default from
15720: with_default] ] ^show[$with_default]
15721:
15722: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
15723: =$to_add_to.xxx=<br>
15724:
15725: ^show[$to_add_to]
15726:
15727: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
15728: ^show[$cloned]
15729:
15730: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
15731:
15732: } <hr>
15733:
15734: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
15735: http://i2/tasks/edit/?id=4507350336410850921
15736:
15737: * src/classes/xdoc.C: memory allocation func bugfix
15738: http://i2/tasks/edit/?id=4499303470368629745
15739:
15740: * src/classes/math.C: allowed random 1...
15741:
15742: * src/classes/math.C: allowed random 0..
15743:
15744: * src/main/pa_globals.C: exif mem leak
15745: http://i2/tasks/edit/?id=4480590323629807263
15746:
15747: * src/: classes/classes.dsp, main/main.dsp,
15748: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
15749: fix http://i2/tasks/edit/?id=4493946731322521294
15750: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
15751:
15752: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15753: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
15754: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
15755: links to xml libs made relative, no need to unpack parser3project
15756: to /parser3project.
15757:
15758: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
15759: column more precise - tab handling bug fixed
15760:
15761: * src/main/: compile.tab.C, compile.y: more understandable error
15762: message in case @CLASS with more then one line inside
15763:
15764: * src/targets/cgi/parser3.C: more understandable error message in
15765: case of errors in @unhandled_exception
15766:
15767: 2003-04-03 paf
15768:
15769: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
15770: src/main/compile.tab.C, src/main/compile.y,
15771: src/main/compile_tools.C, src/main/compile_tools.h,
15772: src/main/execute.C, src/main/pa_request.C: debug info format
15773: simplified, now it's: OP_VALUE Operation::Origin << here value*
15774:
15775: higher limits: file number (max: 255) line number (max:
15776: 64535) column number (max: 255)
15777:
15778: * src/classes/math.C: top limit
15779:
15780: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
15781: precise parse error position in case of
15782:
15783: ^bug ]
15784:
15785: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
15786: changed to realities, and passed [bug fixed]
15787:
15788: * src/: classes/op.C, include/pa_request.h, main/compile.C,
15789: main/compile.tab.C, main/compile.y, main/compile_tools.C,
15790: main/compile_tools.h, main/pa_request.C: introducing
15791: ^process...[main-method-alias]
15792:
15793: * src/: classes/date.C, classes/image.C, classes/op.C,
15794: classes/string.C, classes/table.C, classes/xdoc.C,
15795: types/pa_vmethod_frame.h: MethodParams& now [methods without
15796: params receive zero reference, but they are expected not to look
15797: there]
15798:
15799: * operators.txt, src/classes/date.C, src/classes/double.C,
15800: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
15801: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15802: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
15803: src/classes/string.C, src/classes/table.C, src/classes/void.C,
15804: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
15805: src/main/execute.C, src/types/pa_method.h: MethodParams& now
15806: [methods without params receive zero reference, but they are
15807: expected not to look there]
15808:
15809: * operators.txt, src/classes/op.C, src/include/pa_request.h,
15810: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
15811: ^process...[filename] useful for better error reporting
15812: [file/line/col]
15813:
15814: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
15815: types/pa_vstring.h: slightly improved error messages text: 1. is
15816: '%s', it 2. method undefined in case of ^void[]
15817:
15818: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
15819: include/pa_types.h, main/execute.C, main/pa_request.C: exception
15820: handling done. now we have error columns todo: test it
15821:
15822: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
15823: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
15824:
15825: this makes life easier: were: bad stack order -- were in
15826: exception catch unwind order, which didn't match execution order
15827:
15828: @main[] ^try{ ^first[] }{ ^throw[c;3] }
15829:
15830: @first[] ^throw[a;1]
15831:
15832: showed throw a first throw b try
15833:
15834: which is no good
15835:
15836: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
15837: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
15838: trace reset after handled exception [old bug fixed]
15839:
15840: * src/main/: compile.tab.C, compile.y: parse position old bug
15841: fixed. position reporting made precise [both, in parse erros and
15842: runtime errors]
15843:
15844: 2003-04-02 paf
15845:
15846: * src/: include/pa_operation.h, include/pa_request.h,
15847: main/compile.C, main/compile.tab.C, main/compile.y,
15848: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15849: main/pa_exception.C, main/pa_request.C: debug info: started
15850: using. todo:complete
15851:
15852: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
15853: main/compile.C, main/compile.tab.C, main/compile.y,
15854: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15855: main/pa_request.C: prepared debug info todo:use it
15856:
15857: * src/include/pa_operation.h: strange mistake fixed: forgot to
15858: return Operation class->union after switching from autoptrs.
15859:
15860: * tests/: Makefile, results/108.processed, results/117.processed:
15861: meta considered OK [it's up to coder now to remove it not needed]
15862:
15863: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
15864: Dictionary constructor when moved to gc]
15865:
15866: * src/main/pa_common.C: uncommented http:// file loading
15867:
15868: * src/include/pa_array.h, src/main/execute.C,
15869: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
15870: fix [gdGrowingBuf]
15871:
15872: * configure.in, src/lib/Makefile.am: removed patches
15873:
15874: * configure, src/include/pa_config_auto.h.in,
15875: src/main/pa_charset.C: --enable-assertions autoconf-ed
15876:
15877: * src/main/pa_common.C: uncommented http:// file loading
15878:
15879: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
15880: xdoc::create/load
15881:
15882: * src/: classes/form.C, classes/hash.C, classes/image.C,
15883: classes/string.C, classes/table.C, classes/void.C,
15884: include/pa_common.h, main/pa_common.C, main/pa_request.C,
15885: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
15886: String::String(str,helper_length) are checked. found/fixed one
15887: place: $request:body now zero-terminated,
15888:
15889: * src/: classes/op.C, classes/table.C, include/pa_request.h,
15890: main/compile_tools.C, main/execute.C, types/pa_value.h,
15891: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
15892: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
15893: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
15894: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
15895: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
15896: types/pa_vxnode.h: more locally scoped vars in execute (more
15897: easily optimizable)
15898:
15899: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
15900: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
15901:
15902: * src/: include/pa_array.h, include/pa_stack.h,
15903: include/pa_string.h, main/compile_tools.C, main/main.dsp,
15904: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
15905: become assertion iterator in methodframe filler
15906:
15907: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
15908: targets/cgi/parser3.C: array::get/put inlined
15909:
15910: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
15911: gc_substitute_memory_management_functions +installed CORD_oom
15912: function
15913:
15914: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
15915: src/include/pa_config_includes.h, src/include/pa_string.h,
15916: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
15917: src/targets/cgi/parser3.C: converted debug hacks to ANSI
15918: assertions started configure.in --enable-assertions
15919:
15920: 2003-04-01 paf
15921:
15922: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
15923: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
15924: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
15925: gdome uses glib memory, and stores last pointer to xmlDoc there,
15926: gc misses that and collects valid memory fixed by remembering
15927: xmlDoc from dom object in xdoc. todo: do something with
15928: premature free of xdoc with xnodes/node values referring into it
15929:
15930: * src/classes/: mail.C: typo fix
15931:
15932: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
15933: changes
15934:
15935: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
15936: main/pa_memory.C: moved memory debugging to global level: to
15937: pa_gc_malloc
15938:
15939: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
15940: debugging showed no errors. todo: debug parser memory
15941:
15942: * src/targets/cgi/: parser3.C, parser3.dsp: more build
15943: configurations
15944:
15945: * src/: classes/classes.dsp, include/pa_config_fixed.h,
15946: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
15947: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
15948: types/types.dsp: prepared xml-static configuration
15949:
15950: 2003-03-31 paf
15951:
15952: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
15953: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
15954: xml lib memory debugging, simple checks failed: it seems that
15955: library does realloc(bad ptr), and recording those ptrs in heap
15956: [for debugging] was bad: heap situation changes = everything
15957: works fine
15958:
15959: * src/: main/pa_charset.C, include/pa_charset.h: worked around
15960: xmlRegisterCharEncodingHandler limitation [currently imposed
15961: limit of 10 user-defined charsets]
15962:
15963: 2003-03-28 paf
15964:
15965: * src/main/execute.C: execution stack copied to local register
15966: variable, removed lots [~2e7) of memory accesses
15967:
15968: 2003-03-27 paf
15969:
15970: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
15971: works in debug, but fails in release todo: fix that
15972:
15973: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
15974: targets/cgi/parser3.C: forgot to merge XML memory funcs
15975: replacement from gc branch
15976:
15977: * src/main/pa_exec.C: introducing append_help_length [radical
15978: improvement here]
15979:
15980: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
15981: 'not recommened' in gc.h, on win32 noticed no difference]
15982:
15983: * src/include/pa_array.h: returned checked array get [were disabled
15984: for debugging] result:not slower [don't understand that, it were
15985: INLINED] todo: find out a way of inlining it!
15986:
15987: * src/: include/pa_string.h, lib/gc/include/gc.h,
15988: lib/gc/include/gc_fake.h, main/compile.tab.C,
15989: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
15990: convention changed: all resulting strings are zero-terminated
15991:
15992: * src/: classes/date.C, classes/file.C, classes/hash.C,
15993: classes/string.C, classes/table.C, classes/void.C,
15994: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
15995: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
15996: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
15997: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15998: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
15999: types/pa_vfile.C, types/pa_vmail.C: introducing
16000: append_help_length [radical improvement here]
16001:
16002: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
16003: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
16004: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
16005: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
16006: even slower
16007:
16008: * src/: classes/string.C, classes/table.C, include/pa_array.h,
16009: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
16010: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
16011: clients of &get(): most to use non-ref version, some[in tight
16012: places] to get_unchecked_ref
16013:
16014: * src/doc/memory.dox: forgot to add
16015:
16016: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
16017: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
16018: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
16019: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
16020: main/compile.y, main/compile_tools.C, main/compile_tools.h,
16021: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
16022: targets/cgi/parser3.dsp, types/pa_vmail.C,
16023: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
16024: T>>&<< removed after Stack::pop wiping removed [moved to separate
16025: func] other Array & removed
16026:
16027: 2003-03-26 paf
16028:
16029: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
16030: classes/table.C, include/pa_array.h, include/pa_charset.h,
16031: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
16032: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
16033: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
16034: main/main.dsp, main/pa_charset.C, main/pa_common.C,
16035: main/pa_exec.C, main/pa_sql_driver_manager.C,
16036: main/pa_stylesheet_manager.C, main/pa_table.C,
16037: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
16038: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
16039: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
16040: pre-evaluated .count() in some places
16041:
16042: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
16043: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
16044: types/types.dsp: .dsp profiling updated
16045:
16046: * src/: classes/classes.dsp, lib/cord/cord.dsp,
16047: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
16048: targets/cgi/parser3.dsp, types/types.dsp: started profiling
16049:
16050: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
16051: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
16052: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
16053: use lib/gc,lib/cord
16054:
1.116 moko 16055: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
16056: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 16057: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
16058: src/include/pa_config_includes.h, src/include/pa_request.h,
16059: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16060: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 16061: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 16062: src/lib/cord/include/Makefile.am,
1.116 moko 16063: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
16064: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
16065: src/targets/cgi/Makefile.am, src/types/Makefile.am,
16066: src/types/pa_vclass.h, src/types/pa_vcookie.h,
16067: src/types/pa_vform.h, src/types/pa_vhash.h,
16068: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
16069: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
16070: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
16071: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
16072: funcs ported pa_exec
1.95 moko 16073:
16074: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
16075:
16076: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
16077: bundled gc includes
16078:
16079: * src/: classes/op.C, include/pa_array.h,
16080: include/pa_sql_connection.h, include/pa_string.h,
16081: include/pa_version.h, main/compile.tab.C, main/compile.y,
16082: main/execute.C, main/pa_common.C, main/pa_exception.C,
16083: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
16084: targets/cgi/parser3.dsp: a number of bugfixes [while testing
16085: first real site (aval)]
16086:
16087: 2003-03-25 paf
16088:
16089: * operators.txt, src/main/pa_sql_driver_manager.C,
16090: src/types/pa_vstatus.C: $status.memory used free since_compact
16091: process
16092:
16093: * src/: include/pa_sql_connection.h, main/pa_globals.C,
16094: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
16095:
16096: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
16097:
16098: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
16099: src/types/pa_value.h, src/types/pa_vfile.h,
16100: src/types/pa_vobject.C, src/types/pa_vobject.h,
16101: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
16102: tests/results/121.processed: untaint.C L_URI
16103:
16104: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
16105: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
16106: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
16107: src/types/pa_vmemory.h: ^memory:compact[]
16108:
16109: * tests/results/109.processed: it was a bug in parser. updated 109
16110: test result
16111:
16112: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
16113:
16114: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
16115: tests/results/107.processed: fixed dom language [values are now
16116: considered tainted. it was a bug in parser. updated 107 test
16117: result
16118:
16119: * src/classes/xdoc.C: fixed transform params
16120:
16121: * src/: include/pa_stylesheet_manager.h,
16122: main/pa_stylesheet_manager.C: fixed stylesheet caching
16123:
16124: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
16125: overloads for structure handling
16126:
16127: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
16128: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
16129: StringBody(0) ambiguilty, introducting static
16130: StringBody::Format(int)
16131:
16132: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
16133: linked
16134:
16135: * src/types/pa_vxdoc.C: vxdoc compiled
16136:
16137: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
16138: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
16139: finalizers isntalled
16140:
16141: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
16142: doc/exception.dox, doc/index.dox, include/pa_charset.h,
16143: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
16144: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
16145: compiled todo: xnode.C / finalizers
16146:
16147: * src/doc/string.dox: updated: new string internals
16148:
16149: 2003-03-24 paf
16150:
16151: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16152: include/pa_charset.h, include/pa_config_fixed.h,
16153: include/pa_request.h, include/pa_stylesheet_connection.h,
16154: include/pa_stylesheet_manager.h, main/pa_charset.C,
16155: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
16156: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
16157: types/pa_vxnode.h: started XML
16158:
16159: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
16160:
16161: * src/: classes/file.C, classes/image.C, classes/mail.C,
16162: include/pa_string.h, main/pa_common.C,
16163: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
16164:
16165: * src/: classes/file.C, classes/image.C, classes/mail.C,
16166: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
16167: main/pa_request.C, main/pa_sql_driver_manager.C,
16168: types/pa_vimage.h: size_t pos everywhere checks changed to check
16169: for eq STRING_NOT_FOUND
16170:
16171: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
16172: optimize bit implemented
16173:
16174: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
16175: String::ArrayFragment::append_positions fixed
16176:
16177: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
16178: String::this_starts fixed
16179:
16180: * src/main/pa_string.C, tests/Makefile: string::pos fixed
16181:
16182: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
16183: hashcode implemented fully, including per-char callback [it can
16184: be - substr CORD node]
16185:
16186: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
16187: rewritten to rewalloc with 100byte buf ahead
16188:
16189: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
16190: src/include/pa_string.h, src/main/compile.tab.C,
16191: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
16192: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
16193: CORD_ec [bad] would rewrite as realloc now
16194:
16195: * src/: classes/date.C, classes/file.C, classes/form.C,
16196: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
16197: include/pa_cache_managers.h, include/pa_charsets.h,
16198: include/pa_common.h, include/pa_request.h,
16199: include/pa_sql_driver_manager.h, include/pa_table.h,
16200: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
16201: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
16202: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
16203: types/pa_vmail.C, types/pa_vmethod_frame.C,
16204: types/pa_vstateless_class.h: 2*2 worked :)
16205:
16206: * parser3.dsw, src/classes/date.C, src/classes/file.C,
16207: src/include/pa_exec.h, src/include/pa_string.h,
16208: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
16209: passed OK
16210:
16211: * src/: classes/hash.C, classes/string.C, classes/table.C,
16212: types/pa_value.C: all linked todo: debug
16213:
16214: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
16215: types/pa_vstateless_class.C: all compiled. todo:link
16216:
16217: * src/types/pa_wcontext.C: pa_wcontext.C compiled
16218:
16219: * src/types/pa_vtable.C: pa_vtable.C compiled
16220:
16221: * src/types/pa_vstring.C: pa_vstring.C compiled
16222:
16223: * src/types/pa_vstatus.C: pa_vstatus.C compiled
16224:
16225: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
16226: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
16227: pa_vstateless_class.C, pa_vstateless_class.h:
16228: pa_vstateless_class.C compiled
16229:
16230: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
16231: types/pa_vmath.C: pa_vmail.C compiled
16232:
16233: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
16234:
16235: * src/types/pa_vform.C: pa_vform.C compiled
16236:
16237: * src/types/pa_vfile.C: pa_vfile.C compiled
16238:
16239: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
16240: pa_vstateless_class.C: pa_vcookie.C compiled
16241:
16242: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
16243: types/pa_vhash.h: pa_value.C compiled
16244:
16245: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
16246: classes.lib main.lib compiled
16247:
16248: * src/classes/void.C: void.C compiled
16249:
16250: * src/: classes/string.C, classes/table.C, include/pa_string.h,
16251: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
16252: compiled
16253:
16254: * src/: classes/string.C, include/pa_request.h,
16255: include/pa_string.h, main/pa_string.C: string.C compiled
16256:
16257: * src/: classes/op.C, classes/string.C, classes/table.C,
16258: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
16259: main/pa_request.C, main/pa_string.C: op.C compiled
16260:
16261: * src/classes/: math.C, op.C: math.C compiled
16262:
16263: * src/: classes/mail.C, classes/string.C, classes/table.C,
16264: types/pa_vmail.h: mail.C compiled
16265:
16266: * src/classes/: int.C, table.C: int.C compiled
16267:
16268: * src/: classes/hash.C, classes/image.C, classes/string.C,
16269: classes/table.C, include/pa_memory.h, include/pa_string.h,
16270: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
16271: compiled
16272:
16273: * src/: classes/hash.C, classes/string.C, classes/table.C,
16274: classes/void.C, classes/xdoc.C, include/pa_request.h,
16275: include/pa_sql_connection.h: hash.C compiled
16276:
16277: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
16278: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
16279: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16280: classes/math.C, classes/op.C, classes/response.C,
16281: classes/string.C, classes/table.C, classes/void.C,
16282: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
16283: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
16284: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
16285: file.C table.C compiled
16286:
16287: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
16288: main/untaint.C: main.lib compiled
16289:
16290: 2003-03-21 paf
16291:
16292: * src/: classes/op.C, include/pa_cache_managers.h,
16293: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16294: include/pa_stylesheet_manager.h, main/pa_exception.C,
16295: main/pa_globals.C, main/pa_sql_driver_manager.C,
16296: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
16297: compiled
16298:
16299: * src/: classes/hash.C, classes/image.C, classes/op.C,
16300: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
16301: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16302: main/compile.C, main/pa_common.C, main/pa_request.C,
16303: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
16304: pa_request.C compiled
16305:
16306: * src/: classes/hash.C, classes/mail.C, classes/op.C,
16307: include/pa_request.h, main/execute.C, main/pa_request.C,
16308: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
16309: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
16310: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16311: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
16312: compiled
16313:
16314: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
16315: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
16316: on unix
16317:
16318: * src/: include/pa_charset.h, include/pa_charsets.h,
16319: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
16320: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
16321: pa_charsets.C compiled
16322:
16323: * src/: classes/image.C, classes/mail.C, classes/op.C,
16324: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
16325: main/compile.y, main/execute.C, main/pa_common.C,
16326: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
16327: types/pa_vcode_frame.h, types/pa_vimage.h,
16328: types/pa_vmethod_frame.h: execute.C compiled
16329:
16330: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16331: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16332: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16333: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
16334: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16335: include/pa_cache_managers.h, include/pa_charsets.h,
16336: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
16337: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
16338: include/pa_sql_driver_manager.h, include/pa_string.h,
16339: include/pa_stylesheet_connection.h,
16340: include/pa_stylesheet_manager.h, include/pa_table.h,
16341: main/compile.C, main/compile.tab.C, main/compile.y,
16342: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16343: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16344: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
16345: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
16346: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16347: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
16348: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
16349: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16350: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16351: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16352: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16353: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16354: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16355: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16356: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16357: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16358: types/pa_vresponse.h, types/pa_vstateless_class.C,
16359: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16360: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16361: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16362: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16363: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16364: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
16365: [C++ CORD wrapper]
16366:
16367: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
16368:
16369: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
16370: $file::exec/cgi[script; $.charset[this is script's charset]
16371:
16372: command line, env values, input got transcoded before call
16373: stdout, stderr got transcoded after call
16374:
16375: * src/classes/file.C: ^file::exec/cgi now does not pass post data
16376: by default. use: ^file::exec[...;$.stdin[$request.body]
16377:
16378: * src/main/pa_common.C: } typo bug fix
16379:
16380: * src/main/pa_common.C: } typo bug fix
16381:
16382: 2003-03-20 paf
16383:
16384: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
16385: main/untaint.C: cord bug fix, but still errors todo: clear out
16386:
16387: * src/include/pa_string.h: more tests
16388:
16389: * src/main/pa_string.C: string.pos fixed
16390:
1.116 moko 16391: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
16392: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
16393: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
16394: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
16395: replaces
1.95 moko 16396:
16397: * src/: classes/image.C, include/pa_dictionary.h,
16398: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16399: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
16400: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
16401: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
16402:
16403: * src/include/pa_string.h: warning
16404:
16405: * src/include/pa_string.h: this_starts fixed
16406:
16407: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
16408: new String ctor & append params convention
16409:
16410: * src/: classes/file.C, classes/hash.C, classes/image.C,
16411: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
16412: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
16413: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
16414: main/pa_exception.C, main/pa_exec.C,
16415: main/pa_sql_driver_manager.C, main/pa_string.C,
16416: main/pa_stylesheet_manager.C, main/untaint.C,
16417: targets/isapi/parser3isapi.C, types/pa_vimage.C,
16418: types/pa_vmail.C: more tests OK
16419:
16420: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
16421: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
16422: gc/exit runned OK
16423:
16424: * src/types/pa_vmail.C: another naming problem: should not name
16425: vars like that: unpredictable close caused problems with later
16426: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
16427: descriptors missing on startup: stdin; Bad file number
16428:
16429: todo: find out why so many filters(stream) here. probably wrong?
16430:
16431: * src/: include/pa_dictionary.h, include/pa_string.h,
16432: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
16433: main/untaint.C: test compiled
16434:
16435: * src/: classes/image.C, classes/mail.C, classes/math.C,
16436: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
16437: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
16438: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
16439: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
16440: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16441: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
16442: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
16443: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
16444: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
16445:
16446: * parser3.dsw, src/classes/file.C, src/classes/image.C,
16447: src/classes/op.C, src/classes/string.C, src/classes/table.C,
16448: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
16449: src/include/pa_memory.h, src/include/pa_request.h,
16450: src/include/pa_request_charsets.h,
16451: src/include/pa_sql_connection.h, src/include/pa_string.h,
16452: src/main/compile.tab.C, src/main/execute.C,
16453: src/main/pa_charset.C, src/main/pa_common.C,
16454: src/main/pa_exception.C, src/main/pa_exec.C,
16455: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16456: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
16457: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
16458: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
16459: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
16460: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
16461: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16462: src/types/pa_vobject.C, src/types/pa_vresponse.C,
16463: src/types/pa_vstatus.C, src/types/pa_vstring.C,
16464: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16465: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
16466: pa_common.C [done, without http for now]
16467:
16468: 2003-03-19 paf
16469:
16470: * src/: classes/date.C, classes/form.C, classes/hash.C,
16471: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
16472: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
16473: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
16474: include/pa_string.h, include/pa_table.h, main/compile.C,
16475: main/compile_tools.C, main/execute.C, main/pa_charset.C,
16476: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
16477: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
16478: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
16479: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
16480: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
16481: types/pa_vstateless_class.h, types/pa_vtable.C,
16482: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
16483: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16484: types/pa_wwrapper.h: started test
16485:
1.116 moko 16486: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
16487: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 16488:
16489: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
16490: include/pa_string.h, main/pa_string.C: string compiled todo: test
16491: it
16492:
16493: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
16494: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
16495: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
16496: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
16497: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
16498: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
16499: types/pa_vmethod_frame.h, types/types.dsp: string
16500: reimplementation with cord+array<fragment>: 70%
16501:
16502: 2003-03-18 paf
16503:
16504: * src/: classes/date.C, classes/file.C, classes/form.C,
16505: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
16506: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
16507: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
16508: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
16509: can ignore lang in cmp and pos really, but would
16510: split properly!
16511:
16512: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
16513: cord part made parser/src/lib: it's not compiled into libgc by
16514: default
16515:
16516: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
16517: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16518: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16519: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16520: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16521: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16522: src/classes/xnode.C, src/classes/xnode.h,
16523: src/include/Makefile.am, src/include/pa_cache_managers.h,
16524: src/include/pa_charset.h, src/include/pa_charsets.h,
16525: src/include/pa_common.h, src/include/pa_dictionary.h,
16526: src/include/pa_exception.h, src/include/pa_exec.h,
16527: src/include/pa_globals.h, src/include/pa_hash.h,
16528: src/include/pa_memory.h, src/include/pa_pool.h,
16529: src/include/pa_request.h, src/include/pa_request_charsets.h,
16530: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
16531: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16532: src/include/pa_stylesheet_connection.h,
16533: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
16534: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
16535: src/main/compile.C, src/main/compile.tab.C,
16536: src/main/compile_tools.C, src/main/compile_tools.h,
16537: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
16538: src/main/pa_charsets.C, src/main/pa_common.C,
16539: src/main/pa_dictionary.C, src/main/pa_exception.C,
16540: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
16541: src/main/pa_pool.C, src/main/pa_request.C,
16542: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
16543: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
16544: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
16545: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
16546: src/types/pa_junction.h, src/types/pa_method.h,
16547: src/types/pa_value.C, src/types/pa_value.h,
16548: src/types/pa_vclass.C, src/types/pa_vclass.h,
16549: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
16550: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16551: src/types/pa_vdouble.h, src/types/pa_venv.h,
16552: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
16553: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
16554: src/types/pa_vimage.C, src/types/pa_vimage.h,
16555: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
16556: src/types/pa_vmath.C, src/types/pa_vmath.h,
16557: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16558: src/types/pa_vobject.C, src/types/pa_vobject.h,
16559: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16560: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16561: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16562: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
16563: src/types/pa_vstatus.h, src/types/pa_vstring.C,
16564: src/types/pa_vstring.h, src/types/pa_vtable.C,
16565: src/types/pa_vtable.h, src/types/pa_vvoid.h,
16566: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16567: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
16568: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
16569: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
16570: gc: PA_Object done lots of replacements also
16571:
16572: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
16573: gc logging
16574:
16575: 2003-03-17 paf
16576:
16577: * src/: classes/date.C, classes/file.C, classes/form.C,
16578: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
16579: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
16580: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16581: include/pa_string.h, include/pa_types.h, main/compile.C,
16582: main/compile.tab.C, main/execute.C, main/pa_charset.C,
16583: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
16584: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16585: main/pa_sql_driver_manager.C, main/pa_string.C,
16586: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
16587: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
16588: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
16589: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
16590: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
16591: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16592: types/pa_vxnode.h: libgc attempt
16593:
16594: 2003-03-13 paf
16595:
16596: * src/: include/pa_sql_driver_manager.h,
16597: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
16598: called
16599:
16600: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
16601: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
16602: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
16603: types/pa_value.h, types/pa_vobject.h,
16604: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
16605: set_base, set_derived simplified [counter leaks fixed]
16606:
16607: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
16608: src/types/types.dsp: incorporated status class patch From:
16609: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
16610: 2003 8:14 AM
16611:
16612: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
16613: Win32 specific: QuotaPeakNonPagedPoolUsage
16614: QuotaPeakPagedPoolUsage PeakPagefileUsage]
16615:
16616: 2003-03-12 paf
16617:
1.116 moko 16618: * configure, configure.in, src/lib/ltdl/configure,
16619: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 16620: lib/ltdl/Makefile now created by /configure.in only [were by
16621: lib/ltdl/configure.in OVERWRITE]
16622:
1.116 moko 16623: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
16624: linkage fixed for g++ 3.2.2
1.95 moko 16625:
16626: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
16627: on using privately declared class [fixed]
16628:
16629: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
16630: 3.2 rightliy complained on using privately declared class [fixed]
16631:
16632: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
16633: sigpipe before request constructor now causes death
16634:
16635: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
16636: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
16637: not cause exception in exception handler
16638:
1.116 moko 16639: * configure, configure.in, src/targets/cgi/Makefile.am: configure
16640: now default links libstdc++ statically. that can be overriden by
16641: --with-dynamic-stdcpp
1.95 moko 16642:
16643: 2003-03-11 paf
16644:
16645: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
16646: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
16647: necessity of libstdc++
16648:
16649: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
16650:
16651: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
16652:
16653: 2003-03-08 paf
16654:
16655: * tests/Makefile: make install & co
16656:
16657: * src/: include/pa_request.h, classes/op.C: removing
16658: vclass,object.h -> pa_request.h dependency
16659:
16660: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
16661: main/pa_request.C: removing vform,response,cookie.h ->
16662: pa_request.h dependency
16663:
16664: * src/include/pa_request.h: removing vmail.h -> pa_request.h
16665: dependency [testing...]
16666:
16667: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
16668: return 0; fixed
16669:
16670: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
16671: types/pa_vmail.h: vmail.C received just compiled [not tested]
16672:
16673: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
16674:
16675: * src/main/pa_request.C: forgotten: ifdef XML
16676:
16677: * src/main/pa_request.C: forgotten: ifdef XML
16678:
16679: * src/targets/cgi/parser3.C: todo: move to latest xml version on
16680: win32 and run memleak tests again
16681:
16682: * src/targets/cgi/parser3.C: charsets: see some strange things with
16683: old xml lib-- it's internal memory handling has faults
16684:
16685: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
16686: problems when transcode from charset A to A.
16687:
16688: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
16689: todo: still problems when transcode from charset A to A.
16690:
16691: * src/: classes/hash.C, classes/mail.C, classes/string.C,
16692: classes/table.C, include/pa_array.h,
16693: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
16694: started full-scale-site-test [~ http://parser.ru sources]
16695:
16696: some fixes
16697:
16698: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
16699: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
16700: 117.html, 118.html, 119.html, 120.html, results/109.processed,
16701: results/110.processed, results/111.processed,
16702: results/112.processed, results/113.processed,
16703: results/114.processed, results/115.processed,
16704: results/116.processed, results/117.processed,
16705: results/118.processed, results/119.processed,
16706: results/120.processed: xml: tests 109 dom create/show 110 xpath
16707: selectSingle 111 xdoc.create from tainted & 112
16708: xdoc.create/output with russian attr value 113 xpath
16709: selectString/Number 114 dom attributes.count 115 xpath selectBool
16710: 116 output media-type change 117 transform by dom stylesheet 118
16711: empty transform result 119 dom setAttribute 120 nbsp letter
16712: output
16713:
16714: =END OF PREPARED XML TESTS=
16715:
16716: 2003-03-07 paf
16717:
16718: * src/classes/xdoc.C, src/include/pa_charset.h,
16719: src/include/pa_stylesheet_connection.h, tests/108.html,
16720: tests/108.xsl, tests/results/108.processed: xml: test 108
16721: transform with params [bugs fixed]
16722:
16723: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
16724: from copy/paste bug
16725:
16726: * src/classes/xdoc.C, src/include/pa_charset.h,
16727: src/include/pa_request.h, src/main/execute.C,
16728: src/main/pa_charset.C, src/main/pa_exception.C,
16729: src/main/pa_globals.C, src/main/pa_request.C,
16730: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16731: src/types/pa_vxnode.C, tests/107.html,
16732: tests/results/107.processed: xml: test: 107 bug fixes
16733:
16734: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16735: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16736: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
16737:
16738: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
16739: string
16740:
16741: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
16742: mem alloc functions used for different cases [libxml, libxsl]
16743:
16744: * src/classes/classes.C: fixed: prevent system classes from
16745: modification to lock ALL the classes, not only directly used
16746:
16747: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
16748: linked
16749:
16750: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
16751:
16752: 2003-03-06 paf
16753:
16754: * src/classes/xdoc.C: xdoc.C 50%
16755:
16756: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
16757: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
16758: main/pa_globals.C, main/pa_request.C,
16759: main/pa_stylesheet_manager.C: xnode.C compiled
16760:
16761: * src/: include/pa_stylesheet_connection.h,
16762: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
16763: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
16764:
16765: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
16766: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
16767: xml: stylesheet&manager STARTED
16768:
16769: * src/: include/pa_globals.h, main/pa_charset.C,
16770: main/pa_exception.C, main/pa_globals.C: xml: exceptions
16771:
16772: * src/: include/pa_charset.h, include/pa_config_fixed.h,
16773: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
16774: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
16775: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
16776: charsets
16777:
16778: * tests/023.html: in some cases it rounded up badly. postponing
16779: solution of that problem, making more simple test
16780:
16781: * tests/: 058_paf2000.png, results/058.processed: .png added with
16782: -kb now
16783:
16784: * src/: include/pa_charset.h, include/pa_charsets.h,
16785: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
16786: moved to charsets.C
16787:
16788: 2003-03-05 paf
16789:
16790: * src/classes/string.C, src/include/pa_string.h,
16791: src/main/pa_string.C, tests/105.html,
16792: tests/results/105.processed: String::match bug fixed
16793:
16794: * src/classes/op.C, src/main/main.dsp, tests/104.html,
16795: tests/results/104.processed: ^bpt operator added [does int3 in
16796: debug build on win32]
16797:
16798: * tests/: 057.html, results/057.processed: test bug fixed
16799:
1.116 moko 16800: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 16801:
16802: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
16803: missing
16804:
1.116 moko 16805: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
16806: forgotten files added to Makes
1.95 moko 16807:
16808: * ltmain.sh: ltmain.sh added
16809:
16810: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
16811: change undone ;(
16812:
16813: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
16814: made static
16815:
16816: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 16817: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
16818: todo:make linker happy
1.95 moko 16819:
16820: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
16821: env param made optional
16822:
16823: 2003-03-04 paf
16824:
16825: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
16826: types/pa_vimage.h: number of gcc compiler bugs fixed
16827:
16828: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
16829: results/103.processed: tests: 103 image.copy transparence test
16830:
16831: * src/main/execute.C, tests/101.html, tests/102.html,
16832: tests/results/101.processed, tests/results/102.processed: tests:
16833: 101 method/variable name conflict test 102 form fields change
16834: should not not change anything [bug fix]
16835:
16836: * tests/: 057.html, 099.html, 100.html, results/057.processed,
16837: results/099.processed, results/100.processed: tests: 57 date
16838: create 2002: added 99,100 response:body/download
16839:
16840: * src/classes/image.C, tests/098.html, tests/098font.gif,
16841: tests/results/098.processed: test: 98 image font text [bug fixed]
16842:
16843: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
16844: tests/results/097.processed: test: 97 file::load http:// [bugs
16845: fixed]
16846:
16847: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
16848: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
16849: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
16850: image EXIF [bug fixed]
16851:
16852: * src/classes/table.C, src/main/execute.C, tests/061.dat,
16853: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
16854: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
16855: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
16856: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
16857: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
16858: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
16859: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
16860: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
16861: tests/094.html, tests/095.html, tests/results/061.processed,
16862: tests/results/062.processed, tests/results/063.processed,
16863: tests/results/064.processed, tests/results/065.processed,
16864: tests/results/066.processed, tests/results/067.processed,
16865: tests/results/068.processed, tests/results/069.processed,
16866: tests/results/070.processed, tests/results/071.processed,
16867: tests/results/072.processed, tests/results/073.processed,
16868: tests/results/074.processed, tests/results/075.processed,
16869: tests/results/076.processed, tests/results/077.processed,
16870: tests/results/078.processed, tests/results/080.processed,
16871: tests/results/081.processed, tests/results/082.processed,
16872: tests/results/083.processed, tests/results/084.processed,
16873: tests/results/085.processed, tests/results/086.processed,
16874: tests/results/087.processed, tests/results/088.processed,
16875: tests/results/089.processed, tests/results/090.processed,
16876: tests/results/091.processed, tests/results/092.processed,
16877: tests/results/093.processed, tests/results/094.processed,
16878: tests/results/095.processed, tests/079.html,
16879: tests/results/079.processed: tests: 61 file::stat size 62
16880: string->int autoconvert 63 double .int,dec,div,mul 64 date
16881: compare 65 file: basename,justname,justext 66 math:crypt 67
16882: string.match simple on long 68 string.match normalized simple on
16883: long 69 string.int 70 file::stat content-type 71 table.join 72
16884: hash parameter conditional pass 73 date daylightsaving,yearday 74
16885: date arithmetics 75 response date values/attributes 76 string.pos
16886: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
16887: with local 80 scientific numeric literal in string autoconvert 81
16888: xor: logical and numerical 82 for delims 83 menu delims 84
16889: table.hash distinct 85 long string replace 86 throw+catch
16890: current language preserve 87 bit shifts 88 junction tests +
16891: $caller test 89 hash.foreach selfmodification 90 int/void to int
16892: 91 $caller test 92 junction is + def junction tests 93 $caller
16893: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
16894:
16895: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
16896: fixed] 60 string eq string [bug fixed]
16897:
16898: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
16899: 058.html, 058_paf2000.png, 059.html, 060.html,
16900: results/053.processed, results/054.processed,
16901: results/055.processed, results/056.processed,
16902: results/057.processed, results/058.processed,
16903: results/059.processed, results/060.processed: test: 53
16904: string.replace 54 junctions 55 table.hash 56 call indirect 57
16905: date.create[string] 58 image.measure[png]
16906:
16907: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
16908: outputs/051.processed, results/052.processed: test: 52
16909: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
16910: task: fix that
16911:
16912: 2003-03-03 paf
16913:
16914: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
16915: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
16916: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
16917: outputs/049.processed, outputs/050.processed,
16918: outputs/051.processed, results/001.processed,
16919: results/002.processed, results/003.processed,
16920: results/005.processed, results/006.processed,
16921: results/008.processed, results/009.processed,
16922: results/011.processed, results/012.processed,
16923: results/013.processed, results/014.processed,
16924: results/015.processed, results/016.processed,
16925: results/017.processed, results/020.processed,
16926: results/021.processed, results/022.processed,
16927: results/024.processed, results/025.processed,
16928: results/026.processed, results/027.processed,
16929: results/028.processed, results/029.processed,
16930: results/030.processed, results/031.processed,
16931: results/049.processed, results/050.processed,
16932: results/051.processed, results/043.processed,
16933: results/044.processed, results/045.processed,
16934: results/046.processed, results/047.processed,
16935: results/048.processed: tests: 43,44,45 date rolls 46
16936: autoevaluating junction 47 table.select 48 name with subvar 49
16937: hash-creating switch 50 process 51 started parent/child, works as
16938: it were but it were NOT GOOD, created separate task to fix that
16939:
16940: * tests/: 042.html, results/042.processed: test: 42
16941: exception.handled
16942:
16943: * tests/: 041.html, results/041.processed: test: 41 table.locate by
16944: expression
16945:
16946: * tests/: 040.html, results/040.processed: test: 39 method result
16947: of type table 40 method param junction auto evaluate
16948:
16949: * tests/: 039.html, results/039.processed: test: 37 method result
16950: of type table
16951:
16952: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
16953: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
16954: tests/038.html, tests/results/033.processed,
16955: tests/results/034.processed, tests/results/035.processed,
16956: tests/results/036.processed, tests/results/037.processed,
16957: tests/results/038.processed: tests: 33 string.replace 34
16958: string.upper 35 table created 36 local/global vars with juntions
16959: 37 table clone 38 math PI & number formatting
16960:
16961: math class registring typo fixed
16962:
16963: * src/classes/op.C, src/include/pa_request.h,
16964: src/include/pa_string.h, src/main/execute.C,
16965: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
16966: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
16967: tests/032.html, tests/results/032.processed: uchar changed to
16968: String_UL in all places [was not everywhere] untaint test: 032
16969:
16970: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
16971: tests/results/004.processed, tests/parser-cygwin.sh,
16972: tests/parser-unix.sh: removed -H command line key, now testing
16973: using .sh file with SERVER_SOFTWARE=xxx
16974:
16975: 2003-02-26 paf
16976:
16977: * src/main/execute.C, src/types/pa_vstateless_class.h,
16978: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
16979: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
16980: tests/results/024.processed, tests/results/025.processed,
16981: tests/results/026.processed, tests/results/027.processed,
16982: tests/results/028.processed, tests/results/029.processed,
16983: tests/results/030.processed, tests/results/031.processed: fixed
16984: bug with name_cstr mutable CharPtr more tests
16985:
16986: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
16987: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
16988: << abort. die now just exits
16989:
16990: * src/classes/classes.awk, src/classes/classes.h,
16991: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16992: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16993: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16994: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16995: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16996: src/classes/xnode.C, src/include/pa_memory.h,
16997: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
16998: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
16999: src/types/pa_vform.C, tests/015.html, tests/016.html,
17000: tests/017.html, tests/018.html, tests/019.html,
17001: tests/019paf2001.gif, tests/020.html, tests/021.html,
17002: tests/022.html, tests/023.html, tests/022_dir/a.html,
17003: tests/022_dir/b.txt, tests/022_dir/c.htm,
17004: tests/results/015.processed, tests/results/016.processed,
17005: tests/results/017.processed, tests/results/018.processed,
17006: tests/results/019.processed, tests/results/020.processed,
17007: tests/results/021.processed, tests/results/022.processed,
17008: tests/results/023.processed: methoded_array now contains all Mxxx
17009: classes SAPI::get_env now returns info on pool more tests
17010:
17011: * src/include/pa_array.h, src/include/pa_hash.h,
17012: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
17013: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
17014: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
17015: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
17016: tests/014.html, tests/Makefile, tests/outputs/create-dir,
17017: tests/results/001.processed, tests/results/002.processed,
17018: tests/results/003.processed, tests/results/004.processed,
17019: tests/results/005.processed, tests/results/006.processed,
17020: tests/results/007.processed, tests/results/008.processed,
17021: tests/results/009.processed, tests/results/010.processed,
17022: tests/results/011.processed, tests/results/012.processed,
17023: tests/results/013.processed, tests/results/014.processed: hash
17024: cloning fixed
17025:
17026: 2003-02-25 paf
17027:
17028: * src/main/pa_common.C: typo fixed
17029:
17030: 2003-02-24 paf
17031:
17032: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
17033: [one remained]
17034:
17035: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
17036: [should have been get_string(&pool)] todo: check other such calls
17037:
17038: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
17039: test10, bad lookups
17040:
17041: xxx* xxx=smartptr.get(); << is bad style, after ";" original
17042: object got destructed, and xxx points to sky
17043:
17044: * ChangeLog, src/classes/string.C: match bug fixed
17045:
17046: * src/types/pa_vmail.C: body [text/html] transcoded to
17047: $.charset[specified] now
17048:
17049: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
17050: which failed to handle sigsetjmp+throw: crashed inside of
17051: pre-throw code. rewritten simplier [though duplicating
17052: closesocket code]
17053:
17054: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
17055: which failed to handle sigsetjmp+throw: crashed inside of
17056: pre-throw code. rewritten simplier [though duplicating
17057: closesocket code]
17058:
17059: 2003-02-21 paf
17060:
17061: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
17062: $cookie:name[$.expires[date << can be now]]
17063:
17064: written makefile with regression tests [raw]
17065:
17066: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
17067: tests' only [it's not forcing CGI mode now] now use -H to output
17068: CGI header when parser used in command line [useful for tests
17069: also]
17070:
17071: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
17072: switches on CGI mode, and is used in regression tests
17073:
17074: * src/: include/pa_request.h, main/pa_request.C,
17075: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
17076: fixed
17077:
17078: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
17079: handling pa_*
17080:
17081: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
17082: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
17083: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
17084: memory handling files
17085:
17086: * src/main/pa_array.C: pool::format_integer terminator fixed
17087:
17088: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
17089: compiles OK test to show benefits of free
17090:
17091: * src/: classes/file.C, classes/image.C, classes/mail.C,
17092: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
17093: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
17094: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
17095: use pool [as the one in ^process]
17096:
17097: * src/classes/op.C: fixed process. sould now check for all cstr's
17098: -- some must use pool [as the one in ^process]
17099:
17100: 2003-02-20 paf
17101:
17102: * src/: classes/date.C, classes/double.C, classes/file.C,
17103: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17104: classes/math.C, classes/op.C, classes/response.C,
17105: classes/string.C, classes/table.C, classes/void.C,
17106: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
17107: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
17108: string cmp fixed
17109:
17110: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
17111: values passed OK now
17112:
17113: 2003-02-19 paf
17114:
17115: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
17116: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
17117: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
17118: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
17119: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
17120: all remaning leaks resulted from pooled::malloc calls [excluding
17121: in gd -- planning complete rewrite extremely ugly code]
17122:
17123: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
17124: files
17125:
17126: 2003-02-17 paf
17127:
17128: * src/: classes/date.C, classes/double.C, classes/file.C,
17129: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17130: classes/response.C, classes/string.C, classes/table.C,
17131: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
17132: include/pa_stylesheet_connection.h,
17133: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
17134: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
17135: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
17136: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
17137: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
17138: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
17139: of unitialized simple-typed field
17140:
17141: * src/: classes/classes.C, classes/classes.h, main/execute.C,
17142: main/pa_charset.C, main/pa_request.C: another bug of unitialized
17143: simple-typed field fixed. todo: find&kill all like that one
17144:
17145: * src/: main/execute.C, targets/cgi/pa_pool.C,
17146: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
17147: debug output fixed
17148:
17149: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
17150: main/pa_request.C: stack-stored items need extra .ref to prevent
17151: object_ptr from delete[them]
17152:
17153: * src/: classes/date.C, classes/op.C, classes/table.C,
17154: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
17155: include/pa_charset.h, main/Makefile.am, main/main.dsp,
17156: main/pa_charset.C, main/pa_common.C,
17157: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
17158: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
17159: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
17160: calls
17161:
17162: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
17163: couple mem leaks rusulted from old pooled::malloc usage.
17164: todo:find more like those
17165:
17166: * src/main/: compile.C, compile_tools.C: 2*2!
17167:
17168: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
17169: stackItem fixed [there were no string on stack before]
17170:
17171: * src/: main/execute.C, main/pa_request.C,
17172: types/pa_vmethod_frame.C: first letters out OK
17173:
17174: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
17175: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
17176: main/pa_string.C, main/untaint.C, types/pa_value.h,
17177: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
17178: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
17179: type not initialized with zeros :( while class fields of class
17180: types initialized with default constructors. learn C++
17181:
17182: * src/: classes/classes.awk, classes/double.C, classes/file.C,
17183: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
17184: classes/math.C, classes/xdoc.C, classes/xnode.C,
17185: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
17186: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
17187:
17188: 2003-02-14 paf
17189:
17190: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
17191: 13 link errors
17192:
17193: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
17194: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
17195: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
17196: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
17197: errors :)
17198:
17199: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
17200: classes/hash.C, classes/mail.C, classes/op.C,
17201: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
17202: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
17203: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
17204: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
17205:
17206: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
17207: classes/table.C, include/pa_common.h, include/pa_globals.h,
17208: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
17209: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
17210: types/pa_vint.h, types/types.dsp: op compiled
17211:
17212: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
17213: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
17214: main/untaint.C, types/pa_vtable.h: string, response compiled
17215:
17216: 2003-02-07 paf
17217:
17218: * src/: classes/table.C, types/pa_vtable.h: table compiled
17219:
17220: 2003-02-06 paf
17221:
17222: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
17223: mail compiled
17224:
17225: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
17226: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
17227: types/pa_vfile.h, types/pa_vimage.h: image compiled
17228:
17229: * src/classes/: file.C, form.C: form compiled
17230:
17231: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
17232: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
17233: types/pa_vfile.C, types/pa_vfile.h: file compiled
17234:
17235: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
17236: types/pa_vmath.h: math compiled [win32]
17237:
17238: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
17239: types/pa_vstring.h: hash compiled
17240:
17241: 2003-02-04 paf
17242:
17243: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
17244: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
17245: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
17246: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
17247: types/pa_vhash.h: hash 50% compiled
17248:
17249: * src/: classes/date.C, classes/file.C, classes/hash.C,
17250: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
17251: classes/string.C, classes/table.C, classes/xdoc.C,
17252: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
17253: main/pa_string.C: date compiled
17254:
17255: * src/classes/: classes.dsp, double.C: double compiled
17256:
17257: * src/: classes/date.C, classes/double.C, classes/file.C,
17258: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
17259: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
17260: classes/string.C, classes/table.C, classes/void.C,
17261: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
17262: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
17263: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
17264: compiled
17265:
17266: * src/: classes/date.C, classes/double.C, classes/file.C,
17267: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17268: classes/math.C, classes/op.C, classes/response.C,
17269: classes/string.C, classes/table.C, classes/void.C,
17270: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17271: types/pa_vvoid.h: void compiled :)
17272:
17273: * src/: include/pa_globals.h, main/pa_cache_managers.C,
17274: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
17275: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17276: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
17277: main/pa_string.C, main/pa_uue.C, main/untaint.C,
17278: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
17279: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
17280: types/pa_vresponse.C, types/pa_vstateless_class.C,
17281: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
17282: types/pa_wcontext.C, types/types.dsp: removed stupid
17283: value_includes.h
17284:
17285: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
17286: trying to remove stupid value_includes.h
17287:
17288: * src/main/pa_exec.C: pa_exec compiled on win32
17289:
17290: * src/main/pa_exec.C: libmain.a compiled on six [unix]
17291:
17292: * src/: include/pa_globals.h, include/pa_request.h,
17293: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
17294: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
17295: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
17296: types/pa_vrequest.C, types/pa_vstateless_class.C,
17297: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
17298:
17299: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
17300: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
17301: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
17302:
17303: * src/: include/pa_array.h, include/pa_config_includes.h,
17304: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
17305: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
17306: compiled
17307:
17308: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
17309: name conflicts)
17310:
17311: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
17312: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
17313: yelds "virtual memory exhausted" while trying to compile
17314: execute.C [eating up to 127MB]
17315:
17316: 2003-02-03 paf
17317:
17318: * src/: include/pa_config_includes.h, include/pa_hash.h,
17319: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
17320: main/pa_common.C, types/pa_value.C, types/pa_value.h,
17321: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
17322: types/pa_vint.h, types/pa_vjunction.h,
17323: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
17324: started gcc compiling pa_common compiled
17325:
17326: * src/: include/pa_exception.h, include/pa_pool.h,
17327: main/pa_exception.C: exception gcc change #1
17328:
1.116 moko 17329: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
17330: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 17331:
17332: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
17333:
17334: * src/types/pa_vtable.C: vtable compiled
17335:
17336: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
17337:
17338: * src/: include/pa_cache_managers.h, main/pa_request.C,
17339: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
17340:
17341: * src/types/pa_vstateless_class.C: vstateless_class compiled
17342:
17343: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
17344:
17345: * src/types/pa_vrequest.C: vrequest compiled
17346:
17347: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
17348: pa_vobject.C, pa_vobject.h: vobject compiled
17349:
17350: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
17351: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
17352: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
17353: compiled
17354:
17355: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
17356:
17357: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
17358: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
17359: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
17360: compiled
17361:
17362: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17363: main.lib - 0 error(s), 0 warning(s)
17364:
17365: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17366: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
17367:
17368: 2003-01-31 paf
17369:
17370: * src/: include/pa_array.h, include/pa_operation.h,
17371: include/pa_request.h, main/execute.C, main/main.dsp,
17372: types/pa_vjunction.h: started last file from main library:
17373: execute
17374:
17375: * src/: include/pa_request.h, include/pa_sapi.h,
17376: main/compile.tab.C, main/compile.y, main/compile_tools.h,
17377: main/pa_request.C, targets/cgi/parser3.C,
17378: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
17379: types/pa_vhash.h: pa_request compiled
17380:
17381: * src/: classes/op.C, classes/string.C, include/pa_common.h,
17382: include/pa_globals.h, include/pa_request.h,
17383: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
17384: main/execute.C, main/main.dsp, main/pa_common.C,
17385: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
17386: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
17387: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
17388: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
17389: types/types.dsp: most pa_request compiled
17390:
17391: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17392: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17393: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17394: classes/op.C, classes/response.C, classes/string.C,
17395: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17396: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
17397: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17398: include/pa_config_fixed.h, include/pa_config_includes.h,
17399: include/pa_dictionary.h, include/pa_dir.h,
17400: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17401: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
17402: include/pa_pool.h, include/pa_request.h,
17403: include/pa_request_charsets.h, include/pa_request_info.h,
17404: include/pa_sapi.h, include/pa_socks.h,
17405: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17406: include/pa_stack.h, include/pa_string.h,
17407: include/pa_stylesheet_connection.h,
17408: include/pa_stylesheet_manager.h, include/pa_table.h,
17409: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17410: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
17411: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
17412: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
17413: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
17414: main/compile.C, main/compile.tab.C, main/compile.y,
17415: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17416: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
17417: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17418: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17419: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
17420: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
17421: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
17422: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
17423: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
17424: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17425: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
17426: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
17427: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
17428: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
17429: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17430: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
17431: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
17432: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17433: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
17434: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
17435: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
17436: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
17437: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
17438: types/pa_vresponse.h, types/pa_vstateless_class.C,
17439: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17440: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
17441: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
17442: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
17443: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
17444: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
17445:
17446: * ChangeLog, src/classes/classes.h, src/classes/op.C,
17447: src/include/pa_cache_managers.h, src/include/pa_charset.h,
17448: src/include/pa_charsets.h, src/include/pa_common.h,
17449: src/include/pa_dictionary.h, src/include/pa_exception.h,
17450: src/include/pa_exec.h, src/include/pa_pool.h,
17451: src/include/pa_request.h, src/include/pa_sapi.h,
17452: src/include/pa_sql_connection.h,
17453: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
17454: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
17455: src/main/compile.tab.C, src/main/compile_tools.C,
17456: src/main/compile_tools.h, src/main/main.dsp,
17457: src/main/pa_charset.C, src/main/pa_charsets.C,
17458: src/main/pa_common.C, src/main/pa_dictionary.C,
17459: src/main/pa_exception.C, src/main/pa_exec.C,
17460: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
17461: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
17462: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
17463: src/types/pa_vclass.h, src/types/pa_vcookie.C,
17464: src/types/pa_vcookie.h, src/types/pa_vdate.h,
17465: src/types/pa_vdouble.h, src/types/pa_venv.h,
17466: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
17467: src/types/pa_vhash.h, src/types/pa_vimage.C,
17468: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
17469: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
17470: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
17471: src/types/pa_vobject.C, src/types/pa_vobject.h,
17472: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
17473: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
17474: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
17475: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
17476: src/types/pa_vstring.h, src/types/pa_vtable.h,
17477: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
17478: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
17479: died, long live StringPtr
17480:
17481: 2003-01-30 paf
17482:
17483: * src/: include/pa_charset.h, include/pa_request.h,
17484: include/pa_sql_driver_manager.h, main/compile.tab.C,
17485: main/compile.y, main/compile_tools.h, main/pa_request.C,
17486: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
17487:
17488: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
17489: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
17490: types/pa_vhash.h, types/pa_vmethod_frame.h,
17491: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17492: types/types.dsp: vstateless_class compiled
17493:
17494: * src/main/compile.C: compile compiled
17495:
17496: * src/: include/pa_array.h, include/pa_operation.h,
17497: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
17498: main/pa_table.C: compile_tools compiled
17499:
17500: * src/: include/pa_operation.h, main/compile.y,
17501: main/compile_tools.C, main/compile_tools.h: started
17502: compile_tools. vagues ideas of how to free compiled code
17503:
17504: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
17505: main/main.dsp, types/pa_value.C, types/pa_value.h,
17506: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
17507: compiled
17508:
17509: 2003-01-29 paf
17510:
17511: * src/: include/pa_globals.h, include/pa_request.h,
17512: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
17513: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
17514: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
17515: compiled
17516:
17517: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
17518: now
17519:
17520: * src/: include/pa_array.h, include/pa_exception.h,
17521: include/pa_pool.h, main/pa_exception.C: gd compiled
17522:
17523: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
17524: compiled
17525:
17526: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
17527: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
17528: types/pa_vfile.h: vfile compiled
17529:
17530: * src/: include/pa_common.h, include/pa_globals.h,
17531: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
17532: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
17533: types/pa_vform.C, types/pa_vform.h: vcookie compiled
17534:
17535: * src/: include/pa_exception.h, main/pa_cache_managers.C,
17536: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
17537: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
17538: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
17539: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
17540:
17541: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
17542: main/main.dsp, main/untaint.C: more compiled
17543:
17544: * src/: include/pa_charsets.h, include/pa_request.h,
17545: include/pa_request_info.h, include/pa_string.h,
17546: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
17547: types/pa_vresponse.h: vrequest compiled
17548:
17549: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
17550: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
17551: pa_vresponse.h, pa_wcontext.h: vrequest compiled
17552:
17553: * src/: classes/classes.h, include/pa_charset.h,
17554: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
17555: include/pa_request.h, include/pa_string.h, main/main.dsp,
17556: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
17557: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
17558: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
17559: types/pa_vrequest.C, types/pa_vrequest.h,
17560: types/pa_vstateless_class.h, types/pa_vstring.h,
17561: types/pa_vvoid.h: vrequest,vdouble,vint compiled
17562:
17563: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
17564: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
17565: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
17566: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
17567: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17568: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
17569: types/pa_vobject.h, types/pa_vstateless_class.h,
17570: types/pa_vstateless_object.h, types/pa_vstatus.h,
17571: types/pa_vstring.h, types/types.dsp: vmath compiled
17572:
17573: 2003-01-28 paf
17574:
17575: * src/: classes/classes.h, classes/date.C, classes/file.C,
17576: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
17577: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
17578: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
17579: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
17580: compile_tools
17581:
17582: * src/: include/pa_charset.h, include/pa_exception.h,
17583: include/pa_request.h, include/pa_string.h, main/untaint.C:
17584: untaint compiled
17585:
17586: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
17587: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
17588: more compiled. struck with string::store_to needing to know
17589: source/client charsets
17590:
17591: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
17592: types/pa_vfile.h: uue compiled
17593:
17594: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
17595: table compiled
17596:
17597: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
17598: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
17599:
17600: * src/: include/pa_charset.h, main/pa_charset.C,
17601: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
17602: introduced]
17603:
17604: * src/: classes/date.C, include/pa_charset.h,
17605: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
17606: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
17607: pa_charsets compiled
17608:
17609: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
17610: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
17611:
17612: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
17613: common compiled
17614:
17615: * src/: include/pa_charsets.h, main/pa_charsets.C,
17616: main/pa_sql_driver_manager.C: pa_charsets compiled
17617:
17618: * src/: include/pa_array.h, include/pa_charset.h,
17619: include/pa_charsets.h, include/pa_pool.h,
17620: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17621: include/pa_stack.h, include/pa_string.h,
17622: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
17623: sql_driver_manager compiled
17624:
17625: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
17626: letter i with two dots added to koi, all ukranian letters added
17627: to win1251.
17628:
17629: typographic simbol 0xb9 deleted from win1251 [strange one & were
17630: abscent from koi]
17631:
17632: 2003-01-27 paf
17633:
17634: * src/: include/pa_exception.h, include/pa_sql_connection.h,
17635: include/pa_sql_driver_manager.h, include/pa_string.h,
17636: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
17637: sql/pa_sql_driver.h: paused on sql_manager
17638:
17639: * src/: include/pa_cache_managers.h, include/pa_pool.h,
17640: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17641: include/pa_stack.h, main/pa_sql_driver_manager.C,
17642: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
17643:
17644: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
17645: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17646: include/pa_table.h, main/pa_sql_driver_manager.C,
17647: main/pa_table.C: table compiled
17648:
17649: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
17650: cache_managers compiled
17651:
17652: * src/: include/pa_array.h, include/pa_charset.h,
17653: include/pa_pool.h, main/pa_charset.C: charset compiled
17654:
17655: * src/: include/pa_pool.h, main/pa_common.C: common compiled
17656:
17657: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
17658: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
17659: main/pa_string.C, types/pa_value.C, types/pa_value.h,
17660: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
17661: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
17662:
17663: 2003-01-24 paf
17664:
17665: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
17666: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
17667: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
17668: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
17669: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
17670: types/pa_vint.h, types/pa_vjunction.h,
17671: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17672: types/pa_vstatus.h, types/pa_vstring.h: more patched
17673:
17674: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
17675: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
17676: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
17677: main/pa_string.C, main/pa_table.C: string compiled
17678:
17679: * src/: include/pa_array.h, include/pa_common.h,
17680: include/pa_dictionary.h, include/pa_exception.h,
17681: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
17682: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
17683: main/pa_string.C: dictionary compiled
17684:
17685: 2003-01-23 paf
17686:
17687: * src/: include/pa_array.h, include/pa_common.h,
17688: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
17689: include/pa_request.h, include/pa_string.h, main/pa_common.C,
17690: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
17691: types/pa_value.h: resurrected pool in new sense: now it's
17692: factory, producing&accounting memory chunks for read[autofree]
17693: buffers
17694:
17695: * src/: include/pa_array.h, include/pa_exception.h,
17696: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
17697: main/pa_exception.C, main/pa_table.C: table compiled
17698:
17699: * src/: classes/image.C, classes/op.C, include/pa_array.h,
17700: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
17701: include/pa_pool.h, include/pa_pragma_pack_begin.h,
17702: include/pa_pragma_pack_end.h, include/pa_sapi.h,
17703: include/pa_string.h, include/pa_table.h, include/pa_types.h,
17704: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
17705: main/pa_table.C: aint that easy
17706:
17707: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
17708: main/main.dsp: continued with Hash
17709:
17710: * src/main/pa_common.C: connect_string allocated on heap[wes on
17711: stack] now. and exception can be reported OK now [can be reported
17712: outside of pro c with that stack]
17713:
17714: 2003-01-22 paf
17715:
17716: * src/: include/pa_array.h, include/pa_charset.h,
17717: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
17718: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
17719: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
17720: base: contains references_count. auto_ptr template calls
17721: add_ref/release
17722:
17723: 2003-01-21 paf
17724:
17725: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17726: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17727: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17728: classes/op.C, classes/response.C, classes/string.C,
17729: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17730: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
17731: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17732: include/pa_config_fixed.h, include/pa_config_includes.h,
17733: include/pa_dictionary.h, include/pa_dir.h,
17734: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17735: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17736: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17737: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17738: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17739: include/pa_stack.h, include/pa_string.h,
17740: include/pa_stylesheet_connection.h,
17741: include/pa_stylesheet_manager.h, include/pa_table.h,
17742: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17743: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
17744: lib/pcre/pcre_parser_ctype.c, main/compile.C,
17745: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17746: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
17747: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17748: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17749: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
17750: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
17751: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17752: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
17753: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
17754: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
17755: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17756: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17757: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
17758: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
17759: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
17760: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
17761: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17762: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
17763: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
17764: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17765: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17766: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17767: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17768: types/pa_vstateless_object.h, types/pa_vstatus.C,
17769: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
17770: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17771: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17772: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
17773: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
17774: 2002->2003
17775:
17776: 2003-01-16 paf
17777:
17778: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
17779: src/main/pa_globals.C: http:// introducing $.any-status(1)
17780:
17781: * operators.txt, src/include/pa_config_fixed.h,
17782: src/main/pa_common.C: http request now return status. and not
17783: fail on status!=200
17784:
17785: 2003-01-15 paf
17786:
17787: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
17788:
17789: 2003-01-14 paf
17790:
17791: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
17792: mkinstalldirs: removed some ancient files [they in / really]
17793:
17794: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
17795: regretfully needed patch in two places. in config_fixed.h made
17796: stubs for lib to compile in MSVC
17797:
17798: 2003-01-13 paf
17799:
17800: * config.guess, config.sub, ltmain.sh: removed last piece of
17801: configure.in(libtool) hacks
17802:
1.116 moko 17803: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 17804: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
17805: ltdl.h: moved to latest libtool (1.4.3)
17806:
17807: 2003-01-10 paf
17808:
17809: * src/lib/ltdl/: configure, configure.in: PROG_NM
17810:
17811: * src/main/pa_globals.C: moved to latest xml lib versions, changed
17812: patches. libxml2 >= 2.5.1
17813: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
17814: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
17815: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
17816:
17817: * INSTALL: moved to latest versions of xml libs libxml2 >=
17818: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
17819: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
17820: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
17821:
17822: 2003-01-09 paf
17823:
17824: * INSTALL: xml,xslt,gdome lib urls updated
17825:
17826: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 17827: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 17828: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 17829: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
17830: 1.7.2
1.95 moko 17831:
17832: * depcomp: moving to automake 1.7.2
17833:
17834: 2002-12-27 paf
17835:
17836: * src/include/pa_version.h: 0007
17837:
17838: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
17839: outdated parts, made links to language docs
17840:
17841: * src/include/pa_config_auto.h.in: comment
17842:
17843: 2002-12-26 paf
17844:
17845: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
17846: not contain trailing / fixed.
17847:
17848: * INSTALL: changing SAFE_MODE politics
17849:
17850: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
17851:
17852: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
17853:
17854: 2002-12-25 paf
17855:
17856: * src/main/pa_globals.C: optimized-xml
17857:
17858: * src/main/pa_globals.C: optimized-as-is
17859:
17860: 2002-12-24 paf
17861:
17862: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
17863: fixed [were really called with zero size when .html?a=&b=]
17864:
17865: * src/classes/mail.C: $MAIL in @conf now invalid when configured
17866: with --with-sendmail
17867:
17868: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
17869: fixed]
17870:
17871: 2002-12-23 paf
17872:
17873: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
17874: ignoring parameters & were storing only string with default
17875: expires
17876:
17877: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
17878: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
17879: December 23, 2002 4:22 AM Subject: bug â
17880: Charset::transcode_buf2xchar
17881:
17882: 2002-12-20 paf
17883:
17884: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
17885: non-cgi [script] runs
17886:
17887: 2002-12-19 paf
17888:
17889: * INSTALL: --without-iconv recommended [it crashes on some systems
17890: [tested on elik]] moreover, it's not needed there [parser
17891: registers charsets itself]
17892:
17893: * INSTALL: --without-iconv recommended [it crashes on some systems
17894: [tested on elik]]
17895:
17896: * operators.txt, src/include/pa_globals.h,
17897: src/include/pa_request.h, src/main/pa_globals.C,
17898: src/main/pa_request.C: $response:download
17899:
17900: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
17901: compiler [win32]].
17902:
17903: 2002-12-18 paf
17904:
17905: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
17906:
17907: 2002-12-17 paf
17908:
17909: * src/targets/cgi/parser3.C: merged die&iis changes
17910:
17911: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
17912: to exit(1) 2. more flexible iilegal call check
17913:
17914: 2002-12-16 paf
17915:
17916: * ltmain.sh: some automakes silly insist on having this handy
17917:
17918: * src/main/untaint.C: filespec russian small 'r' changed to latin
17919: 'p' bug fix
17920:
17921: 2002-12-15 paf
17922:
17923: * src/main/untaint.C: filespec russian small 'r' changed to latin
17924: 'p'
17925:
17926: * configure.in, src/include/pa_config_auto.h.in,
17927: src/main/compile.C, src/main/pa_common.C: merged small changes
17928: from branch 6 to HEAD
17929:
17930: * src/main/compile.C: removed warning
17931:
17932: * src/main/pa_common.C: ftruncate having checked
17933:
17934: * configure.in, src/include/pa_version.h: new version
17935:
17936: 2002-12-14 paf
17937:
17938: * src/classes/table.C: removed unnecessary code
17939:
17940: * src/sql/pa_sql_driver.h: exception type fixed
17941:
17942: 2002-12-09 paf
17943:
17944: * src/types/pa_vvoid.h: $void.store[now] error
17945:
17946: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17947:
17948: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
17949: tries to write core dump
17950:
17951: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17952:
17953: * src/: classes/hash.C, classes/string.C, classes/table.C,
17954: classes/void.C, main/pa_sql_driver_manager.C,
17955: sql/pa_sql_driver.h: changed exception handling mech in sql
17956: handlers #2
17957:
17958: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
17959: exception handling mech in sql handlers
17960:
17961: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
17962: handlers
17963:
17964: * src/: classes/hash.C, classes/string.C, classes/table.C,
17965: classes/void.C, main/pa_sql_driver_manager.C,
17966: sql/pa_sql_driver.h: changed exception handling mech in sql
17967: handlers
17968:
1.116 moko 17969: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
17970: to write makefile which used libtool to install things, which is
17971: not needed
1.95 moko 17972:
17973: 2002-12-06 paf
17974:
17975: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
17976: $hash.fields -- pseudo field to make 'hash' more like 'table'
17977:
17978: 2002-12-05 paf
17979:
17980: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
17981: cc/bcc OK now
17982:
17983: * src/main/untaint.C: mail header closed properly
17984:
17985: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
17986: header ',' allowed. still bugs in smtp [only one receiptient
17987: works, cc, bcc ignored now, and MAILED ;)]
17988:
17989: [strncpy killed, memnchr used]
17990:
17991: * src/main/pa_table.C: table-copy now current=0
17992:
17993: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
17994: lowlevel proc
17995:
17996: * src/targets/cgi/parser3.C: more checks on
17997: http://domain/parser.cgi start [maybe some getenv returns "",
17998: checked that now
17999:
18000: * src/targets/cgi/parser3.C: more checks on
18001: http://domain/parser.cgi start [maybe some getenv returns "",
18002: checked that now
18003:
18004: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
18005: out-of-mem errors reached log]
18006:
18007: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
18008: mail:send MIME-Version default
18009:
18010: * src/main/main.dsp: pa_version included into main.dsp
18011:
18012: 2002-12-04 paf
18013:
18014: * src/types/pa_vform.C: $form:field string value cut by premature 0
18015:
18016: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
18017: lib/libltdl -> lib/ltdl Win32 changes. s
18018:
18019: * src/classes/classes.awk: more strict *.C$
18020:
18021: * gnu.dsp: restored
18022:
1.116 moko 18023: * configure.in, gnu.dsp, src/lib/Makefile.am,
18024: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
18025: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
18026: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
18027: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
18028: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
18029: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
18030: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
18031: now created with /configure, not ltdl/configure, so it does have
18032: no problems with automake. ltdl/configure
18033: AC_OUTPUT(Makefile<<removed)
1.95 moko 18034:
18035: 2002-12-02 paf
18036:
18037: * operators.txt: removed outdated status:db
18038:
18039: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
18040: src/main/pa_common.C, src/main/pa_request.C,
18041: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
18042: tainted parts becomes http-header
18043:
18044: 2002-11-29 paf
18045:
18046: * src/classes/date.C, src/classes/image.C, operators.txt: exif
18047: dates now objects of type date
18048:
18049: * src/classes/image.C: file.seek removed [it were used in image.C
18050: only, and for parser user this means that jpeg image has bad
18051: size in fragment's header] now used image.format
18052:
18053: * src/: include/pa_common.h, main/pa_common.C,
18054: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
18055: now handled exactly like $response:header values. e.g. can be
18056: hash [can have subattributes] & contain date values.
18057:
18058: * src/main/pa_common.C: http:// param values lang forced URI
18059:
18060: * src/main/pa_common.C: http:// tainted partes now %xx
18061:
18062: 2002-11-28 paf
18063:
18064: * operators.txt: http.timeout
18065:
18066: * src/classes/image.C: ^image.length now counts interchar space.
18067: plus space after last char
18068:
18069: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
18070:
18071: * src/classes/image.C: ^image.font width measurer now scans full
18072: height [were -1]
18073:
18074: * configure.in: stopped double libltdl/Makefile generation
18075:
18076: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
18077: chars [one top horizontal line of 1pixel height were missing]
18078:
18079: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
18080: 'false' to go into (Hash *) parameter
18081:
18082: 2002-11-27 paf
18083:
18084: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
18085: types/pa_vmail.C: response:body[file] if file nows it's name now
18086: returns content-disposition: >>attachment<<
18087:
18088: * src/classes/image.C: ^image.font << bad font file-size now
18089: properly reported
18090:
18091: 2002-11-26 paf
18092:
18093: * src/main/pa_request.C: fixed lang in reponse header
18094:
18095: * src/main/pa_common.C: utf8 prefix ignored @read text
18096:
18097: * operators.txt, src/main/pa_common.C: http:// response status!=200
18098: made exception: http.status with source=bad status#
18099:
18100: 2002-11-25 paf
18101:
18102: * configure.in, src/classes/image.C,
18103: src/include/pa_config_auto.h.in,
18104: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 18105: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
18106: const void related probs fixed
1.95 moko 18107:
18108: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
18109:
18110: $file[^file::load[http://there]] $file.SERVER
18111:
18112: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
18113: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
18114: http options [invalid onces now reported] made default
18115: user-agent: paf
18116:
18117: * operators.txt, src/classes/file.C, src/classes/table.C,
18118: src/classes/xdoc.C, src/include/pa_common.h,
18119: src/include/pa_globals.h, src/main/pa_common.C,
18120: src/main/pa_globals.C, src/main/pa_request.C,
18121: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
18122: now understand http:// prefix and additional params, sample:
18123: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
18124: $.USER-AGENT[parser3] ]]
18125:
18126: 2002-11-22 paf
18127:
18128: * src/classes/image.C, src/include/pa_globals.h,
18129: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
18130: src/types/pa_vimage.h, operators.txt: $image.exif support
18131: $image.exif.DateTime & co
18132:
18133: 2002-11-21 paf
18134:
18135: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
18136: _PASS_APPENDED)
18137:
18138: * src/classes/image.C: jpeg size measure fixed: were badly skipping
18139: EXIF information [were big block and it's size were considered
18140: negative :(]
18141:
18142: * operators.txt, src/classes/image.C, src/include/pa_common.h,
18143: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
18144: internals rewritten. no there's reader.seek, and all's ready for
18145: EXIF extraction [now we fail to measure files with EXIF info]
18146:
18147: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
18148: O_TRUNC truncates even exclusevely write-locked file [thanks to
18149: Igor Milyakov <virtan@rotabanner.com> for discovering]
18150:
18151: 2002-11-20 paf
18152:
18153: * src/targets/cgi/parser3.C: logging @signal += query_string
18154:
18155: * configure.in, src/include/pa_config_auto.h.in,
18156: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
18157: comment
18158:
18159: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
18160:
18161: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
18162: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
18163: currently processed document SIGPIPE >> interrupts request
18164: processing [exception = DB rollback]
18165:
18166: * src/main/pa_exec.C: comment
18167:
18168: * src/main/pa_exec.C: pa_exec: data written only if size>0
18169:
18170: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
18171: << disable HTTP-POST repassing
18172:
18173: * src/: include/pa_config_fixed.h, main/pa_common.C,
18174: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
18175: pipe read errors now checked
18176:
18177: 2002-11-19 paf
18178:
18179: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
18180: CGI: Illegal call
18181:
18182: 2002-11-01 paf
18183:
18184: * src/main/execute.C: comment
18185:
18186: 2002-10-31 paf
18187:
18188: * src/main/execute.C: found out why, checked that for now. todo:
18189: find out a way for that user could do that
18190:
18191: * src/types/pa_vstateless_object.h: object put replaces static
18192: parent if any
18193:
18194: * src/types/pa_vobject.C: object put replaces static parent if any
18195:
18196: * src/: classes/form.C, classes/mail.C, classes/op.C,
18197: classes/xnode.h, main/compile.tab.C, main/execute.C,
18198: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
18199: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18200: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
18201: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18202: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
18203: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18204: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
18205: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18206: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18207: types/pa_vstateless_object.h, types/pa_vstatus.C,
18208: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
18209: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
18210: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
18211: types/pa_wwrapper.h: static fix merged
18212:
18213: * src/: main/compile.tab.C, types/pa_vobject.C: killed
18214: $virtual_fields in dynamic, but one can reach derived
18215: static[class] variable from base
18216:
18217: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
18218: types/pa_vobject.C, types/pa_vobject.h,
18219: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
18220: statics, left $virtual_fields in dynamic
18221:
18222: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
18223: one can't remember derivates in base class: there's so many of
18224: them. also there can be no virtual method calls in static
18225: classes
18226:
18227: * src/: classes/form.C, classes/mail.C, classes/op.C,
18228: classes/xnode.h, main/execute.C, main/pa_request.C,
18229: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
18230: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18231: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18232: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18233: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
18234: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
18235: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18236: types/pa_vresponse.C, types/pa_vresponse.h,
18237: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18238: types/pa_vstateless_object.h, types/pa_vstatus.C,
18239: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
18240: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
18241: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
18242: types/pa_wwrapper.h: static call $self fixed
18243:
18244: * src/main/execute.C: comment
18245:
18246: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
18247: ^process[$caller.self]{...} now compiles to last derived object
18248: part of that 'self'
18249:
18250: 2002-10-29 paf
18251:
18252: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
18253: re-passing [iis to blame]
18254:
18255: * src/classes/string.C: changed string.save to pass current sql
18256: connection to cstr thus one can ^connect[some server]{
18257: $s[insert into table x (x) values (^taint[sql]{value})]
18258: ^s.save[some.sql] } and he'd get in some.sql file code with
18259: properly escaped. [tried in mssql->mysql export->import of
18260: binary data]
18261:
18262: 2002-10-25 paf
18263:
18264: * src/types/pa_vresponse.C: case insensitive response user fields
18265: get/put
18266:
18267: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
18268: types/pa_vresponse.C: saving for maybe-future
18269:
18270: 2002-10-23 paf
18271:
18272: * operators.txt, src/classes/table.C: ^table.hash{code}...
18273: ^table.hash(expr)...
18274:
18275: * src/types/pa_vmail.C: email whitespace trimBoth-ed
18276:
18277: 2002-10-22 paf
18278:
18279: * src/types/: pa_vform.C, pa_vform.h: removed needless
18280: VForm::Append...(...Value)
18281:
18282: * src/main/execute.C: $.name outside of $name[...] checked
18283:
18284: * src/main/: compile.tab.C, compile.y: lexer changed to fix
18285: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
18286:
18287: 2002-10-21 paf
18288:
18289: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
18290: $form:qtail $form:imap.x/y
18291:
18292: * operators.txt, src/types/pa_vform.C: $form:nameless =
18293: "?value&...", "...&value&...", "...&value"
18294:
18295: * operators.txt, src/types/pa_vform.C: $form:image-map
18296:
18297: * operators.txt, src/classes/file.C: /some/page.html:
18298: ^file:fullpath[a.gif] => /some/a.gif
18299:
18300: 2002-10-17 paf
18301:
18302: * src/main/: compile.tab.C, compile.y: operators precedence changed
18303: a little: logical not and bitwise negation precedence made
18304: highest, << and >> bitshits precedence made equal [were << higher
18305: than >>]
18306:
18307: * src/classes/op.C: exception handling fixed [were bad with
18308: contexts]
18309:
18310: 2002-10-16 paf
18311:
18312: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18313: main/pa_request.C: Request::self considered equal to
18314: VMethodFrame::self, and removed, Request::get_self() mapped to
18315: VMethodFrame.self()
18316:
18317: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
18318: $hash in open field now gives old good error meesage
18319:
18320: 2002-10-15 paf
18321:
18322: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
18323: use ^if($junction is junction){was and now true}
18324:
18325: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18326: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
18327: types/pa_vxnode.C: xml->parser strings now have origin, which
18328: points to place where value left xml library and came to parser:
18329: place of dom field extraction/call
18330:
18331: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
18332: main/compile.tab.C, main/compile.y, main/execute.C,
18333: types/pa_vmethod_frame.h: removed last pieces of old code
18334: allowing $junction.xxx at compile time
18335:
18336: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
18337: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
18338: objects also considered [were only classes]
18339:
18340: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
18341: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
18342: with CLASS self. [ (request&method_frame).self temporarily
18343: changed ]
18344:
18345: * src/classes/: hash.C, op.C: method_frame now always changed, with
18346: no exception to native calls. for&foreach changed to use
18347: method_frame.caller for their var's name context
18348:
18349: * src/: main/execute.C, targets/cgi/parser3.C,
18350: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
18351: compiling to system classes disabled
18352:
18353: * operators.txt, src/classes/op.C:
18354: ^process[$caller.CLASS]{code-string} added
18355:
18356: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
18357: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
18358: src/types/Makefile.am, src/types/pa_vjunction.C,
18359: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
18360: src/types/types.dsp: removed $junction.get $junction.set[]
18361: introducing $caller
18362:
18363: * src/types/pa_value.h: removed outdated comments. doxygen would
18364: find them lower by inheritance tree
18365:
18366: * src/types/pa_vjunction.C: ident
18367:
18368: 2002-10-14 paf
18369:
18370: * src/classes/op.C: process compiles to code's class class
18371:
18372: * src/: classes/form.C, classes/mail.C, classes/op.C,
18373: include/pa_request.h, main/compile.C, main/compile.tab.C,
18374: main/compile.y, main/execute.C, main/pa_request.C,
18375: types/pa_vstateless_class.h: operators now main-class-methods
18376:
18377: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
18378: better stack trace [has "call" & co there]
18379:
18380: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
18381: operators @auto now executed in MAIN context
18382:
18383: * src/main/execute.C: operator execution context now = MAIN, not
18384: closest stack frame
18385:
18386: @touchit[] $i[after]
18387:
18388: ----t.html $i[before] << local ^touchit[] $i << now 'before',
18389: were 'after'
18390:
18391: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
18392: 'after'
18393:
18394: * src/main/execute.C: comment
18395:
18396: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
18397: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
18398: action]
18399:
18400: * src/types/pa_vxnode.C: misreplace fixed
18401:
18402: * configure, configure.in, src/include/pa_config_auto.h.in,
18403: src/types/pa_vstatus.C, operators.txt:
18404: $status:rusage.tv_secs/usecs introduced
18405:
18406: 2002-10-09 paf
18407:
18408: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
18409: on empty string [or uses (default)]
18410:
18411: 2002-10-08 paf
18412:
18413: * src/main/untaint.C: mail header quoted printable changed after
18414: RFC reread
18415:
18416: * operators.txt: plan on ^if(method
18417:
18418: * src/types/pa_vxnode.C: misreplace
18419:
18420: 2002-09-24 paf
18421:
1.116 moko 18422: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 18423:
18424: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
18425: mailreceive would compile on freebsd now
18426:
18427: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
18428: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 18429: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
18430: mailreceive would compile on freebsd now
1.95 moko 18431:
18432: * src/: classes/file.C, main/untaint.C: 1. file spec language
18433: changed: now there are only few chars are untainted: * ? ' " < >
18434: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
18435: one should use ^untaint[uri]{...} now]
18436:
18437: 2. $list[^file:list[dir]] now returns simply tainted names in
18438: $list.name, not tainted as filespec
18439:
18440: @russianindex[] #dir with files with russian-lang names
18441: $where[dir]
18442:
18443: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
18444: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
18445:
18446: 2002-09-23 paf
18447:
18448: * src/types/pa_vdouble.h: double->int round added
18449:
18450: * src/classes/date.C: date bug fix, now
18451: round(floatDays*secondsPerDay)
18452:
18453: * src/classes/date.C: date bug fix, now
18454: round(floatDays*secondsPerDay)
18455:
18456: 2002-09-20 paf
18457:
18458: * src/main/execute.C: code junction calls disabled [before: code
18459: was compiled in such a way, that there were no code-junctions in
18460: OP_CALL]
18461:
18462: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
18463:
18464: @badjunctioncallinside[code] ^code[]
18465:
18466: * src/main/: compile.tab.C, compile.y: changed grammer on junction
18467: expanding to include ^junction.method
18468:
18469: * src/main/pa_common.C: -d "DIR/" now true
18470:
18471: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
18472: as internal xdoc encoding, and after decoding attributes set by
18473: dom functions now encoded OK, not as digital entities
18474:
18475: * src/classes/xdoc.C: empty transform result, being taken as file
18476: now returns empty file, not raises stupid error about "stat-ed
18477: file"
18478:
18479: * src/types/pa_vhash.h: hash.foreach modification of existing keys
18480: allowed
18481:
18482: * src/types/types.dsp: introducing $junction.get/put(1) one can
18483: write iterators now:
18484:
18485: ^user-foreach[key;value]{$key=$value<br>}
18486:
18487: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
18488: $code.value($i*2) $code }
18489:
18490: * src/main/compile_tools.h: mistype
18491:
1.116 moko 18492: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
18493: thus taking linking options configure changes into account [were:
18494: ignoring]
1.95 moko 18495:
18496: * src/types/: pa_vjunction.C, Makefile.am: introducing
18497: $junction.get/put(1) one can write iterators now:
18498:
18499: ^user-foreach[key;value]{$key=$value<br>}
18500:
18501: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
18502: $code.value($i*2) $code }
18503:
18504: * src/: include/pa_opcode.h, include/pa_request.h,
18505: main/compile.tab.C, main/compile.y, main/execute.C,
18506: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
18507: introducing $junction.get/put(1) one can write iterators now:
18508:
18509: ^user-foreach[key;value]{$key=$value<br>}
18510:
18511: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
18512: $code.value($i*2) $code }
18513:
18514: 2002-09-19 paf
18515:
1.116 moko 18516: * Makefile.am: new: make commit
1.95 moko 18517:
18518: * aclocal.m4: forced to be older
18519:
18520: 2002-09-18 paf
18521:
18522: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
18523: src/main/compile.y, src/main/execute.C: << >> int shifts
18524:
18525: * src/: include/pa_common.h, include/pa_request.h,
18526: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
18527: - now this - fatal error
18528:
18529: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
18530: that one can pass binary data there
18531:
18532: * src/: classes/date.C, classes/double.C, classes/file.C,
18533: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18534: classes/op.C, classes/response.C, classes/string.C,
18535: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18536: include/pa_request.h: pa_request contexts made privated, plus
18537: get_{self/method_frame} to read. Request_context_saver used in
18538: ^try to save flang too. [were not saved]
18539:
18540: * src/types/pa_vresponse.C: header value chains joined before
18541: output, this should help $.subject[$var $var] from being
18542: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
18543:
18544: 2002-09-17 paf
18545:
18546: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
18547: removed changes, operators executed with calling self. lots of
18548: code with ^include code relies on defined/defining self variables
18549:
18550: $a[1] ^include[print_a.p] print_a.p: $a
18551:
18552: ^include[set_a.p] a=$a set_a.p: $a[1]
18553:
18554: * src/: classes/op.C, main/execute.C, main/pa_request.C,
18555: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
18556: types/pa_vstateless_class.h: operators now executed with MAIN
18557: self. it's for ^include sake, too strong a change
18558:
18559: * src/classes/op.C: made place for ^process to compile it's code to
18560: in case of no self
18561:
18562: * src/main/execute.C: found ancient param to Junction, removed.
18563: allowed passing self to native_code_operators [for ^process to
18564: work, she needs self]
18565:
18566: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
18567: types/pa_vstateless_class.h: found ancient param to Junction,
18568: removed. allowed passing self to native_code_operators [for
18569: ^process to work, she needs self]
18570:
18571: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
18572: types/pa_value.h, types/pa_vmethod_frame.h,
18573: types/pa_vstateless_class.h: allowed Request.self to be 0,
18574: checked that in VMethodFrame get/put and $self.
18575:
18576: * src/classes/: table.C, xdoc.C: table::sql options table::create
18577: copy options options checked, wrong option now fatal error
18578:
18579: * src/main/pa_string.C: string.replace fixed [were missing words on
18580: pieces boundaries]
18581:
1.150 moko 18582: * configure, configure.in: .so now detected [can be .sl on hpux,
18583: .dll on cygwin, .so in other cases)
1.95 moko 18584:
18585: * configure, configure.in: .so now detected [can be .sl on hpux,
18586: .dll on cygwin, .so in other cases)
18587:
18588: * operators.txt, src/classes/hash.C, src/classes/table.C,
18589: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
18590: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
18591: record taken [were last]
18592:
18593: * src/: classes/hash.C, classes/table.C,
18594: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
18595: now errors
18596:
18597: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
18598:
18599: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
18600: ,2,3]
18601:
18602: 2002-09-16 paf
18603:
18604: * src/classes/file.C: file::cgi line ends can be both unix & dos.
18605: and they can be unix [\n\n] on win when 'use CGI' used, it causes
18606: stdout to be binary. now detected closest header break.
18607:
18608: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
18609: closed right
18610:
18611: 2002-09-13 paf
18612:
18613: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
18614: src/main/compile_tools.h: (expression #comment)
18615:
18616: (multiline expression #comment line2 #comment )
18617:
18618: (expression #comment with (brackets) comment) << OK
18619:
18620: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
18621: bitwise !|| numerical xor now [preparing for expression
18622: #comments]
18623:
18624: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
18625: error
18626:
18627: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
18628: cheched in pa_socks.C
18629:
1.116 moko 18630: * configure, configure.in, src/include/pa_config_auto.h.in:
18631: HAVE_WINSOCK_H created in configure.in
1.95 moko 18632:
18633: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
18634: cookie date now clean [were mistakenly tainted & that worked bad
18635: with opera -- 'happily' that worked OK with msie]
18636:
18637: 2002-09-12 paf
18638:
18639: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
18640: VClass get_element now first looks to fields, next to methods &
18641: co todo: the rest reason: more speed
18642:
18643: * src/main/untaint.C: quoted printable encoding stops before
18644: \s*<...>$
18645:
18646: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
18647: stops before <...>$
18648:
18649: 2002-09-11 paf
18650:
18651: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
18652: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
18653: forgot to check users of those funcs. not all were using that
18654: return value convention
18655:
18656: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
18657: windows-1254 added
18658:
18659: 2002-09-10 paf
18660:
18661: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
18662: VCodeFrame parent param were specified badly
18663:
18664: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
18665: WWrapper which used in constructing objects(second param to sql
18666: method) ^...sql{}[$.default{code}] now has parent, wich helps
18667: code in hash to survivi
18668:
18669: * src/: include/pa_request.h, main/execute.C: removed redundant
18670: param to execute [stack said 'thanks']
18671:
18672: * src/: classes/op.C, main/execute.C, types/pa_value.C,
18673: types/pa_value.h, types/pa_vcode_frame.h,
18674: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18675: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
18676: responsibility to wcontext
18677:
18678: * src/classes/file.C: decided not to log exec's with stderr, that
18679: could be warnings, and it's up to scritper to log/show them
18680:
18681: * src/: classes/double.C, main/execute.C: double:sql badly called
18682: write_assign_lang, not write_no_lang, thus doing unnecessary
18683: double/string converstion, which were loosing time&precesion
18684:
18685: * src/: main/pa_charset.C, types/pa_vmail.C:
18686: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
18687: case of unfinished in buffer processing, causing accidental
18688: transcode stop [in case that source enc != utf-8 & there is
18689: incomplete utf-8 sequence at the end of 16000block iside of
18690: libxml lib] tfm readed & code updated
18691:
18692: 2002-09-04 paf
18693:
18694: * configure: makes with sjlj
18695:
18696: * INSTALL, src/include/pa_config_fixed.h,
18697: src/include/pa_sql_connection.h,
18698: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
18699: checked. on win32 it made default
18700:
18701: * src/include/pa_config_auto.h.in: sjlj define
18702:
18703: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
18704: can not work with longjump/throw pair, and one must switch that
18705: on there. todo: detect that automatically]
18706:
18707: * src/types/pa_vxnode.C: removed too strong checks of
18708: xnode.elements. now, for instance, if element does not have any
18709: attributes, $xnode.attributes is void, not error
18710:
18711: 2002-09-02 paf
18712:
18713: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
18714: removed double_result, didn't help
18715:
18716: * src/main/execute.C: double_result made to move that var away from
18717: hungry g++ optimizer (-O2), before: it were optimized and
18718: comparison operators worked badly
18719:
18720: * src/types/pa_vdate.h: removed debug
18721:
1.116 moko 18722: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 18723:
18724: * src/main/execute.C: fixed numeric < & co so that thay now use
18725: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
18726: unknown reason.
18727:
18728: 2002-08-29 paf
18729:
18730: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
18731: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
18732: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
18733: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
18734: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
18735: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
18736: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
18737: [called less frequent, allowed to remove ugly
18738: Junction.change_context-s from many places, switch,
18739: mail:send..html{}, ..] request.root renamed to method_frame [more
18740: easyreading] ancient {...PUSH/POPs...} changed to stack vars
18741: [speed up]
18742:
18743: 2002-08-28 paf
18744:
18745: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
18746: tainted
18747:
18748: * src/types/pa_vcookie.C: fixed cookie delete when
18749: $cookie:name[$.value[]]
18750:
18751: * operators.txt, src/classes/string.C:
18752: ^string.split[delim[;options]]
18753:
18754: 2002-08-27 paf
18755:
1.116 moko 18756: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 18757:
18758: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
18759: delimiter
18760:
18761: * INSTALL: recommended latest gmime 1.0.5
18762:
18763: 2002-08-26 paf
18764:
18765: * configure, configure.in: apache13/hook added to make dist.
18766:
18767: 2002-08-23 paf
18768:
18769: * src/: include/pa_common.h, main/pa_common.C,
18770: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
18771: beside binary [cgi, isapi] not accessible [due to bad rights or
18772: whatever] it's error now
18773:
18774: 2002-08-21 paf
18775:
1.116 moko 18776: * Makefile.am: can use: make happy equals to make update install
1.95 moko 18777:
18778: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18779: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
18780: class". compiled as if here they named base class
18781:
18782: * src/main/pa_string.C: fixed bad language bug, [were wrong string
18783: cloning constructor]
18784:
18785: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
18786:
1.150 moko 18787: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 18788: $mail.received.file.value.content-type fixed
18789:
18790: 2002-08-20 paf
18791:
18792: * src/classes/file.C: fixed language of file:file result
18793:
18794: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
18795: from 3.0.0005
18796:
18797: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
18798:
18799: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
18800: 3.0.0005
18801:
18802: * src/classes/void.C, operators.txt: ^void.length[] = 0
18803:
18804: 2002-08-19 paf
18805:
18806: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
18807: work now
18808:
18809: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
18810: error in xnode, which were not catched in xdoc]
18811:
18812: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
18813: prepared: // validate each document after load/create (?)
18814: //xmlDoValidityCheckingDefaultValue = 1;
18815:
18816: 2002-08-15 paf
18817:
18818: * src/classes/classes.h: write to static var caused useless
18819: Exception, introduced Methoded::put_element wich consumes those
18820:
18821: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
18822: src/types/pa_vcookie.C, src/types/pa_vdate.h,
18823: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
18824: $response:field[date] $response:field[$.xxx[date]]
18825:
18826: * src/: classes/hash.C, classes/string.C, classes/table.C,
18827: classes/void.C, include/pa_sql_connection.h: fixed source of
18828: ^hash::sql{bad}
18829:
18830: * operators.txt: $request:body unprecessed POST request body
18831:
18832: * src/types/pa_vrequest.C: $request:body unprecessed POST request
18833:
18834: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
18835: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
18836:
18837: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
18838: src/include/pa_request.h, src/main/pa_pool.C,
18839: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
18840: $request:body r.post_data now const
18841:
18842: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
18843: classes/xnode.C, main/execute.C, types/pa_value.h,
18844: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
18845: types/pa_vtable.h: instead of type() checking everywhere used
18846: Value.as now user descendants can be used in params.
18847:
18848: VObject::as_*, is_defined now taken from bases. xtable(table)
18849: ^if($xtable) now OK
18850:
18851: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
18852: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
18853: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
18854:
18855: 2002-08-14 paf
18856:
18857: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
18858: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
18859: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18860: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18861: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18862: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
18863: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
18864: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18865: types/pa_vresponse.C, types/pa_vresponse.h,
18866: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18867: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18868: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18869: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18870: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
18871: & VClass
18872:
18873: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
18874:
18875: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
18876: removed fixopt stupidity. on stupid linux use cd /document/root
18877: ../cgi/parser3 script
18878:
18879: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
18880: params, splitting them by space, excluding argv[0], argv[argc-1]
18881:
18882: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
18883: fixopt.h: fixopt now preprocesses command line params, splitting
18884: them by space, excluding argv[0], argv[argc-1]
18885:
18886: * src/targets/cgi/parser3.C: -f config file
18887:
18888: * src/targets/cgi/parser3.C: fixed .log file dir
18889:
18890: 2002-08-13 paf
18891:
18892: * src/types/pa_vobject.C: allow override parent variables, useful
18893: for form descendants [in vobject too, were in vclass]
18894:
18895: * src/types/pa_vclass.C: allow override parent variables, useful
18896: for form descendants
18897:
18898: * src/types/pa_vclass.C: checked: form[vclass]fields can be
18899: overwritten in derived(table)
18900:
18901: * src/: classes/form.C, classes/mail.C, classes/op.C,
18902: classes/xnode.h, include/pa_request.h, main/execute.C,
18903: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
18904: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18905: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
18906: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18907: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
18908: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18909: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
18910: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18911: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18912: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18913: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18914: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18915: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
18916: Value::get_element(..., bool looking_down) [needed to exclude
18917: endless recoursion]
18918:
18919: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
18920: fix bug with put endless recoursion todo: check 'as'
18921:
18922: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
18923: reorganized modules todo: fix bug with put endless recoursion
18924: todo: check 'as'
18925:
18926: * src/types/pa_vobject.h: checked: table fields can be overwritten
18927: in derived(table)
18928:
18929: * src/types/pa_vobject.h: derived classes can have fields of their
18930: own now
18931:
18932: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
18933: fixed error message on using non-created table
18934:
18935: * src/: classes/form.C, classes/hash.C, classes/mail.C,
18936: classes/op.C, classes/xnode.h, include/pa_request.h,
18937: main/compile.C, main/compile.tab.C, main/execute.C,
18938: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18939: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18940: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18941: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18942: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
18943: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18944: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18945: types/pa_vresponse.C, types/pa_vresponse.h,
18946: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18947: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18948: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18949: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18950: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
18951: looking down/up tree todo: fix error message on non-constructed
18952: parents
18953:
18954: 2002-08-12 paf
18955:
18956: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
18957: derived OK
18958:
18959: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
18960: thorough testing
18961:
18962: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
18963: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18964: types/pa_vobject.h, types/pa_vstateless_class.h,
18965: types/pa_vstateless_object.h, types/pa_wcontext.h,
18966: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
18967: ^base:create[] dynamic call rewritten todo: thorough testing
18968:
18969: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
18970: now instantates base class, remembers it and saves child in
18971: parent VObject.get_class now returns last child = downward
18972: virtual calls OK
18973:
18974: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18975: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
18976: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
18977: types/pa_vobject.h, types/pa_vresponse.h,
18978: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18979: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
18980: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
18981: VAliased [redundant], moved $CLASS to VObject only [parser class
18982: instance]
18983:
18984: * src/main/pa_request.C: $response:body[file] content-type check
18985: fixed [were bad when content-type is hash]
18986:
18987: 2002-08-09 paf
18988:
18989: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18990: types/pa_vobject.h, types/pa_vxdoc.h: started as()
18991:
18992: 2002-08-08 paf
18993:
18994: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
18995: src/main/pa_globals.C: year column in month calendar [week year]
18996:
18997: * src/main/execute.C: error reporting on object writes to MAIN
18998: improved [were ruind with fixing $obj[^if(1){$obj}] ]
18999:
19000: * operators.txt, src/types/pa_vdate.h: $date.yearday
19001: $date.daylightsaving
19002:
19003: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
19004: use tainted data now. only she must specify the language.
19005:
19006: ^mail:send[ $.from[paf@mail.design.ru]
19007: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
19008: $.text[^taint[uri][ìîñêâà]=] ]
19009:
19010: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
19011: now prints more precise origin
19012:
19013: * src/include/pa_string.h: String::first_char now not fails on
19014: empty strings ^if(-f '') now ok and in 3 other places.
19015:
19016: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
19017: String::first_char now not fails on empty strings ^if(-f '') now
19018: ok and in 3 other places.
19019:
19020: 2002-08-07 paf
19021:
19022: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
19023: fixed
19024:
19025: * src/main/pa_string.C: ^string.mid(0;bad) fixed
19026:
19027: * src/: main/execute.C, types/pa_vcode_frame.h,
19028: types/pa_vmethod_frame.h, types/pa_wcontext.C,
19029: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
19030: mistakenly not completely transparent to object writes.
19031: $hash[^if(1){$hash}] now works
19032:
19033: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
19034: now erasing cache file [there were bad check on that]
19035:
19036: * src/: classes/classes.dsp, classes/table.C,
19037: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
19038: all Debug dirs in .dsp now named 'Debug'
19039:
1.116 moko 19040: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 19041:
19042: * operators.txt, src/classes/mail.C: exception_type email.send
19043:
19044: * operators.txt, src/types/pa_vmail.C: exception_type email.format
19045:
19046: * src/types/pa_vmail.C: mail:send empty email checked
19047:
19048: 2002-08-06 paf
19049:
19050: * operators.txt, src/classes/table.C, src/include/pa_array.h,
19051: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
19052: ^table::create[$source;$.options] ^table::join[$source;$.options]
19053:
19054: * operators.txt, src/classes/hash.C, src/classes/string.C,
19055: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
19056: # $.default() }
19057:
19058: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
19059:
19060: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
19061: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
19062: $file.content-type [instead of .mime-type] now works for
19063: file::stat also
19064:
19065: * src/main/pa_request.C: case insensitive mime_type_of
19066:
19067: 2002-08-05 paf
19068:
19069: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
19070:
19071: * src/types/pa_vmail.C: file buffer relocated to parser heap
19072:
19073: * operators.txt: comment on date:calendar week column
19074:
19075: * src/main/pa_common.C: write checked
19076:
19077: * src/main/: pa_common.C: write checked
19078:
19079: * src/classes/date.C: +1 buf size for stupid snprintfs
19080:
19081: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
19082: month calendar week column [ISO 8601 Week Numbers]
19083:
19084: 2002-08-02 paf
19085:
19086: * src/: include/pa_config_fixed.h, main/pa_string.C,
19087: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
19088: DEBUG*
19089:
19090: * configure, configure.in, src/include/pa_version.h: release
19091: 3_0_0005
19092:
19093: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
19094: multipart post fixed
19095:
19096: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
19097: response transcoded source->client only when text/* or simple
19098: onoverridden $response:body
19099:
19100: 2002-08-01 paf
19101:
19102: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19103: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19104: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
19105: classes/op.C, classes/response.C, classes/string.C,
19106: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
19107: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
19108: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19109: include/pa_config_fixed.h, include/pa_dictionary.h,
19110: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
19111: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
19112: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
19113: include/pa_socks.h, include/pa_sql_connection.h,
19114: include/pa_sql_driver_manager.h, include/pa_stack.h,
19115: include/pa_string.h, include/pa_stylesheet_connection.h,
19116: include/pa_stylesheet_manager.h, include/pa_table.h,
19117: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
19118: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
19119: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
19120: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19121: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
19122: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
19123: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
19124: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
19125: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
19126: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
19127: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
19128: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
19129: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
19130: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19131: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
19132: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
19133: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
19134: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
19135: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
19136: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
19137: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
19138: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19139: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
19140: types/pa_vmethod_frame.h, types/pa_vobject.h,
19141: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
19142: types/pa_vresponse.h, types/pa_vstateless_class.C,
19143: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19144: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
19145: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19146: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
19147: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 19148: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 19149:
19150: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
19151: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
19152: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
19153: classes/math.C, classes/op.C, classes/response.C,
19154: classes/string.C, classes/table.C, classes/void.C,
19155: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19156: include/pa_array.h, include/pa_cache_managers.h,
19157: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19158: include/pa_config_fixed.h, include/pa_config_includes.h,
19159: include/pa_dictionary.h, include/pa_dir.h,
19160: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19161: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19162: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19163: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19164: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19165: include/pa_stack.h, include/pa_string.h,
19166: include/pa_stylesheet_connection.h,
19167: include/pa_stylesheet_manager.h, include/pa_table.h,
19168: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
19169: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
19170: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19171: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
19172: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
19173: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
19174: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
19175: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19176: main/pa_sql_driver_manager.C, main/pa_string.C,
19177: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
19178: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19179: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19180: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
19181: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19182: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
19183: targets/isapi/pool_storage.h, types/pa_valiased.C,
19184: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
19185: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19186: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
19187: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
19188: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
19189: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
19190: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
19191: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
19192: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
19193: types/pa_vresponse.C, types/pa_vresponse.h,
19194: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19195: types/pa_vstateless_object.h, types/pa_vstatus.C,
19196: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
19197: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
19198: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19199: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
19200: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
19201: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
19202: types/Makefile.am: ident.C* removed
19203:
19204: * operators.txt, src/classes/file.C, src/main/pa_request.C:
19205: file:find[/can/do/this/now.txt]
19206:
19207: * src/targets/cgi/parser3.C: usage to stdout now
19208:
19209: 2002-07-31 paf
19210:
19211: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
19212:
19213: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
19214: default "postmaster"
19215:
19216: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
19217: -f postmaster now default sendmail key word "postmaster"
19218: replaced to $.from
19219:
19220: 2002-07-30 paf
19221:
1.116 moko 19222: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
19223: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 19224:
19225: * src/main/pa_charset.C: comment
19226:
19227: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
19228: table, &#decimal;
19229:
19230: * src/main/pa_request.C: comment
19231:
19232: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
19233: paragraf]
19234:
19235: 2002-07-11 paf
19236:
19237: * src/main/pa_exec.C: build command line badly added params twice
19238: [and first time without ' ']. double wrong. fixed.
19239:
19240: * src/main/pa_exec.C: invalid .exe caused error message with params
19241: wich parser did not provide = reported badly. fixed that.
19242:
19243: * src/classes/mail.C: $MAIL[ # xxx ]
19244:
19245: now ok
19246:
19247: * operators.txt: plan: sql detailed exception
19248:
19249: 2002-07-01 paf
19250:
19251: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
19252: [MForm.configure_admin were called when request.main_class ==0
19253:
19254: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
19255:
19256: * src/classes/form.C: content_length type fix
19257:
19258: 2002-06-30 paf
19259:
19260: * src/classes/mail.C: merged from 4
19261:
19262: * src/classes/mail.C: restored $MAIL
19263:
19264: 2002-06-28 paf
19265:
19266: * configure, configure.in: removed paths.h
19267:
1.116 moko 19268: * configure, src/include/pa_version.h,
1.95 moko 19269: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
19270: merged, makes updated
19271:
19272: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
19273: src/include/pa_charset.h, src/include/pa_config_fixed.h,
19274: src/include/pa_pool.h, src/include/pa_version.h,
19275: src/main/pa_charset.C, src/main/pa_pool.C,
19276: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
19277: src/types/pa_vmail.C: merged latest updates to head
19278:
19279: 2002-06-27 paf
19280:
19281: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
19282: not error now
19283:
19284: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
19285: src/include/pa_config_fixed.h, src/include/pa_pool.h,
19286: src/main/pa_charset.C, src/main/pa_pool.C:
19287: ^xdoc::create[[uri]]... base uri for document being created,
19288: imports and other relative file names would be relative to this
19289: uri default uri=path_translated
19290:
19291: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
19292:
19293: 2002-06-26 paf
19294:
19295: * configure, configure.in, src/include/pa_version.h:
19296: release_3_0_0004
19297:
19298: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
19299: 0 now
19300:
19301: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
19302:
19303: 2002-06-25 paf
19304:
19305: * src/main/pa_string.C: emtpy string, or string of whitespaces
19306: considered bad number now
19307:
19308: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
19309: now
19310:
19311: * operators.txt, src/classes/string.C: ^string.normalize [old
19312: name: optimize
19313:
19314: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
19315: library configured
19316:
19317: * src/main/pa_request.C: configure_admin forced if no @conf
19318:
1.150 moko 19319: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
19320: ^math:crypt updated to generate random salt when needed and to
19321: call system crypt() if not $apr1$ prefix
1.95 moko 19322:
19323: 2002-06-24 paf
19324:
19325: * INSTALL: --with-static/shared-mailreceive described
19326:
19327: * src/include/pa_config_fixed.h: ssize_t fixed
19328:
1.116 moko 19329: * configure, configure.in, src/include/pa_config_auto.h.in,
19330: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 19331: src/types/pa_vmail.C: $mail:received makes update
19332:
19333: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
19334: WITH_MAILRECEIVE
19335:
19336: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
19337:
19338: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
19339: option, for $mail:receive
19340:
19341: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
19342: introducting $message:received ^mail:send rewritten with backward
19343: comp
19344:
19345: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19346: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19347: types/types.dsp: win32xml win32mailreceive pseudomodules paths
19348: now
19349:
19350: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
19351: src/include/pa_charset.h, src/include/pa_config_fixed.h,
19352: src/include/pa_request.h, src/include/pa_string.h,
19353: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
19354: src/main/pa_globals.C, src/main/pa_request.C,
19355: src/main/pa_string.C, src/main/pa_uue.C,
19356: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
19357: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
19358: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
19359: uue to separate file introducting $message:received ^mail:send
19360: rewritten with backward comp
19361:
19362: 2002-06-21 paf
19363:
1.116 moko 19364: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
19365: co changes
1.95 moko 19366:
1.116 moko 19367: * configure, configure.in, src/lib/md5/Makefile.am,
19368: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
19369: restructure .in and .am files appropriate changes
1.95 moko 19370:
19371: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
19372: pcre to libs/ added libs/md5 which is linked to non-apache
19373: targets ^math:crypt[password;$apr1$salt]
19374:
19375: * INSTALL, configure.in, operators.txt, parser3.dsw,
19376: src/Makefile.am, src/classes/Makefile.am,
19377: src/classes/classes.dsp, src/classes/math.C,
19378: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 19379: src/lib/pcre/Makefile.am, src/lib/pcre/README,
19380: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
19381: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
19382: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
19383: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
19384: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
19385: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
19386: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 19387: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
19388: src/lib/pcre/pcre_parser_ctype.dsp,
19389: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
19390: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
19391: src/main/compile.tab.C, src/main/main.dsp,
19392: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
19393: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
19394: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
19395: to libs/ added libs/md5 which is linked to non-apache targets
19396: ^math:crypt[password;$apr1$salt]
19397:
19398: 2002-06-20 paf
19399:
1.150 moko 19400: * INSTALL, configure, configure.in, operators.txt,
19401: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
19402: src/include/pa_globals.h, src/include/pa_request.h,
19403: src/main/execute.C, src/main/pa_request.C,
19404: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19405: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
19406: file:justname&co & @auto/conf[filespec
1.95 moko 19407:
19408: * operators.txt, src/classes/file.C:
19409: !^file:dirname[/a/some.tar.gz]=/a
19410: !^file:dirname[/a/b/]=/a
19411: !^file:basename[/a/some.tar.gz]=some.tar.gz
19412: !^file:justname[/a/some.tar.gz]=some.tar
19413: !^file:justext[/a/some.tar.gz]=gz
19414:
19415: * src/: classes/op.C, include/pa_request.h, main/execute.C,
19416: main/pa_request.C, types/pa_vmethod_frame.h: introducing
19417: @conf/auto[filespec]
19418:
1.116 moko 19419: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 19420:
1.150 moko 19421: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 19422: src/include/pa_globals.h, src/targets/cgi/parser3.C,
19423: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
19424:
19425: 2002-06-18 paf
19426:
19427: * configure, configure.in, src/include/pa_version.h: version to
19428: configure.in
19429:
19430: * INSTALL: reflected .conf.dist dir change
19431:
1.150 moko 19432: * Makefile.am, configure, configure.in,
1.116 moko 19433: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 19434: .in & *.am updated
19435:
19436: * src/classes/file.C: strncasecmp
19437:
19438: * src/classes/file.C: strcasecmp
19439:
1.150 moko 19440: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 19441:
19442: * src/classes/file.C: ^file::exec[script;$.bad error case
19443: insensitive check now
19444:
19445: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
19446:
19447: * configure, configure.in, src/include/pa_pool.h,
19448: src/include/pa_types.h: pack configure.in detection simplified.
19449: figured out that gcc on sparc not that stupid as thought
19450: previously: on sparc: when it sees packed class it modifies it's
19451: field-access-code to byte operations [stb, ldub] instead of 4byte
19452: operations [st, lduh] so packed must be all parts of packed
19453: class, i.e. it's parents&fields(classes). for now it's only
19454: String that packed and what was wrong is that it's parent -
19455: Pooled, were not packed. fixed that.
19456:
19457: 2002-06-14 paf
19458:
19459: * operators.txt: more precise xml-to-text options
19460:
19461: * operators.txt, src/types/pa_vxnode.C: xnode
19462: attribute_node.name/value xnode pi.node.data
19463:
19464: 2002-06-12 paf
19465:
1.116 moko 19466: * configure, configure.in, src/targets/cgi/Makefile.am,
19467: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 19468:
19469: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
19470: src/include/pa_globals.h, src/include/pa_request.h,
19471: src/main/compile.tab.C, src/main/pa_globals.C,
19472: src/main/pa_request.C, src/targets/cgi/parser3.C,
19473: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
19474:
19475: * src/classes/mail.C: sendmail -ti [default now]
19476:
19477: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
19478: to be strings. for convinient #ing
19479:
19480: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
19481: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
19482:
19483: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
19484: main/pa_globals.C, main/pa_request.C: @conf
19485:
19486: 2002-06-11 paf
19487:
19488: * src/classes/file.C: check simplified
19489:
19490: * src/: classes/file.C, targets/cgi/parser3.dsp,
19491: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
19492: valid prefix
19493:
19494: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
19495: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
19496: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
19497:
19498: 2002-06-10 paf
19499:
19500: * operators.txt, src/classes/op.C, src/include/pa_common.h,
19501: src/main/pa_common.C: lock failures reported now
19502:
19503: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
19504: string->double @ compile time were not-enough-checking...
19505:
19506: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
19507: autoconvert now ignored
19508:
19509: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
19510: check
19511:
19512: * src/classes/mail.C: mail netscape attachment name fixed. todo:
19513: $response:body content-type:name
19514:
19515: * configure, configure.in: hpux check, nsl link, no socket
19516:
19517: * operators.txt: old merge conflict removed
19518:
19519: * configure, configure.in: pack even address access on sparc&co
19520: arch checked in configure
19521:
19522: * configure, src/include/pa_version.h: makes
19523:
19524: * configure, configure.in, src/include/pa_version.h: makes
19525:
19526: * src/main/untaint.C: (bug#2) mail subject got always prepended
19527: with charset even when all letters were 7bit one
19528:
19529: * src/main/pa_common.C: merged fixed -d (bug)
19530:
19531: * src/main/pa_common.C: fixed -d (bug)
19532:
19533: 2002-06-03 paf
19534:
19535: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
19536: src/classes/classes.dsp, src/main/compile.tab.C,
19537: src/main/main.dsp, src/main/pa_globals.C,
19538: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
19539: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
19540: .dsp-s along with reorganized cvs modules dirs structure
19541:
19542: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19543: main/pa_globals.C, targets/cgi/parser3.dsp,
19544: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
19545: modules
19546:
19547: 2002-05-28 paf
19548:
19549: * src/targets/cgi/parser3.C: info.uri now ""
19550:
19551: 2002-05-17 paf
19552:
19553: * src/classes/: table.C: ^table.save << checked empty
19554: pre/match/post columns
19555:
19556: 2002-05-16 paf
19557:
19558: * src/classes/image.C: image::measure can png now
19559:
19560: 2002-05-15 paf
19561:
19562: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
19563: added
19564:
19565: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
19566:
19567: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
19568: %H[:%M[:%S]]]]]] [-%m now
19569:
19570: 2002-05-14 paf
19571:
19572: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
19573:
19574: 2002-05-07 paf
19575:
19576: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
19577: src/include/pa_globals.h, src/include/pa_request.h,
19578: src/include/pa_table.h, src/main/compile.tab.C,
19579: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
19580: src/main/pa_request.C, src/main/pa_table.C,
19581: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
19582: src/targets/isapi/parser3isapi.dsp,
19583: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
19584: name2number field now &. main_method_name now on Request pool
19585: rather on global_pool [Junction+VJunction created on same pool as
19586: name = were created on global pool, causing mem leaks]
19587:
19588: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
19589: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
19590: main/compile.y, main/main.dsp, main/pa_globals.C,
19591: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
19592: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
19593: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
19594: field now &. main_method_name now on Request pool rather on
19595: global_pool [Junction+VJunction created on same pool as name =
19596: were created on global pool, causing mem leaks]
19597:
19598: 2002-05-06 paf
19599:
19600: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19601: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
19602: 100*40 bytes per request memory leak [nonpool malloc in globals]
19603:
19604: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19605: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
19606: 100*40 bytes per request memory leak [nonpool malloc in globals]
19607:
19608: 2002-04-30 paf
19609:
19610: * configure, src/include/pa_version.h: version now not b
19611:
19612: * src/targets/cgi/parser3.C: request.uri now never 0
19613:
19614: 2002-04-29 paf
19615:
19616: * configure.in: removed b
19617:
19618: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
19619: Exception::comment/type checked in (), no there's no empty
19620: type/comment by default
19621:
19622: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
19623: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
19624: src/doc/value.dox, src/include/pa_exception.h,
19625: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
19626: 0001
19627:
19628: 2002-04-26 paf
19629:
19630: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
19631: size reduced
19632:
19633: 2002-04-25 paf
19634:
19635: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
19636: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
19637: now that took into account
19638:
19639: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
19640: 01:03:04]
19641:
19642: * ChangeLog, operators.txt, src/classes/date.C:
19643: ^date::create[2002-12-33 01:03:04]
19644:
19645: * ChangeLog: updated changelog
19646:
19647: * src/classes/table.C: removed restriction on column count to
19648: ^table.hash to work, now must be >0 [were >1]
19649:
19650: 2002-04-24 paf
19651:
19652: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19653: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19654: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
19655: targets
19656:
19657: 2002-04-23 paf
19658:
19659: * operators.txt, src/classes/string.C:
19660: int/double/string:sql{}[$.default{code}] fixed [were barking:
19661: "junction used outside of context"]
19662:
19663: 2002-04-22 paf
19664:
19665: * types.txt, src/classes/string.C, src/include/pa_string.h,
19666: src/main/pa_string.C, src/types/pa_vstring.C,
19667: src/types/pa_vstring.h: ^string.optimize[]
19668:
19669: * src/: include/pa_globals.h, include/pa_table.h,
19670: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
19671: table template
19672:
19673: * src/classes/: string.C: optimize removed from string
19674: .left/right/pos
19675:
19676: * src/main/execute.C: rolled back to
19677: before_killing_userjunction_contexts
19678:
19679: * src/main/execute.C: user junctions context killed
19680:
19681: * src/main/execute.C: junctions to local contexts got
19682: cleanized&checked later
19683:
19684: 2002-04-19 paf
19685:
19686: * src/: classes/string.C, include/pa_request.h,
19687: include/pa_string.h, main/pa_request.C, main/pa_string.C,
19688: types/pa_vstring.C, types/pa_vstring.h: string now optimized
19689: prior to .left .right .mid .pos .match when that is profitable,
19690: and always before .replace when $ORIGINS(1) optimization disabled
19691: economy from not wasting mem on lots of strings which occur by
19692: lots of String:mid calls to get parts of source string between
19693: found_occurances
19694:
19695: * src/classes/file.C: ovector now local economy: 16 bytes per
19696: ^file:list
19697:
19698: * src/: include/pa_globals.h, include/pa_table.h,
19699: main/pa_globals.C, main/pa_string.C: String::match table columns
19700: globalized, not created @ each ^match anymore economy:
19701: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
19702:
19703: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
19704: removed from each String::match replace iteration, and made
19705: stacked sizeof(VTable)=12bytes economy on each replace code
19706:
19707: * src/doc/footer.htm: 2001,
19708:
19709: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19710: string.match[]['] option enables generation of $match.prematch
19711: .match .postmatch columns
19712:
19713: * src/main/pa_string.C: String::match options analized without
19714: cstr-ing them now
19715:
19716: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
19717: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
19718: config updated to doxygen 1.2.15, created helper which fixes
19719: minor bugs in chm project files & htm tree. changed extension to
19720: .htm
19721:
19722: 2002-04-18 paf
19723:
19724: * src/doc/doxygen.cfg: .chi generation disabled
19725:
19726: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
19727: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
19728: fields&methods
19729:
19730: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
19731: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
19732: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
19733: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
19734: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
19735: types/pa_vresponse.h, types/pa_vstateless_class.h,
19736: types/pa_vstateless_object.h, types/pa_vstatus.h,
19737: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
19738: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
19739: VStateless_class to VObject
19740:
19741: * src/: main/pa_request.C, types/pa_valiased.h,
19742: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19743: types/pa_vstring.h: VStateless_string_object speicalized light
19744: version of VStateless_object
19745:
19746: * src/classes/op.C: ^throw comment param made optional
19747:
19748: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
19749: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
19750: and implemented down in VClass, fclass_alias removed,
19751:
19752: * src/types/pa_value.C: forced to cut that from .h because of
19753: VStateless_class usage [undefined in .h]
19754:
19755: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19756: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19757: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
19758: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
19759: on each CALL]
19760:
19761: * src/: classes/classes.h, classes/date.C, classes/double.C,
19762: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
19763: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
19764: classes/response.C, classes/string.C, classes/table.C,
19765: classes/void.C, classes/xnode.C, include/pa_globals.h,
19766: include/pa_request.h, main/execute.C, main/pa_globals.C,
19767: main/pa_request.C, types/Makefile.am, types/pa_value.h,
19768: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
19769: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
19770: types/pa_vstateless_class.h, types/pa_wcontext.C,
19771: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
19772: removed Value::fname
19773:
19774: 2002-04-17 paf
19775:
19776: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
19777: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
19778: doc/pooled.dox, doc/string.dox, doc/targets.dox,
19779: include/pa_pool.h, include/pa_types.h: dox updated to current
19780: state, PTHROW freshen to throw & co
19781:
19782: * src/types/pa_vhash.h: vstring wrong parent fixed
19783:
19784: * src/classes/op.C: taint local result var bug fixed
19785:
19786: 2002-04-16 paf
19787:
19788: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
19789: Attic asm.txt as most interesting
19790:
19791: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
19792: check, preventing content-length: 0 from appearing
19793:
19794: * src/main/execute.C: $result in @main now taken into account as in
19795: usual functions
19796:
19797: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
19798: & @unhandled_exception now taken into account as in usual
19799: functions
19800:
19801: * src/doc/postbuild.txt: instructions on post .html build
19802:
19803: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
19804:
19805: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
19806: tainted
19807:
19808: * src/main/pa_request.C: uri in error log
19809:
19810: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
19811: cheched date:create(days) param for validity [later were assumed
19812: valid and crashed on invalid onces]
19813:
19814: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19815: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
19816: and used that for removing VString wrapper
19817:
19818: * src/classes/op.C: exception2vhash file now tainted
19819:
19820: * src/classes/op.C: _process pseudo origin copied from local var to
19821: heap
19822:
19823: * src/classes/op.C: extra check on empty file in origin in _execute
19824:
19825: 2002-04-15 paf
19826:
19827: * src/: main/execute.C, types/pa_value.h: fixed name update
19828:
19829: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
19830: functions
19831:
19832: * src/: classes/file.C, classes/hash.C, classes/op.C,
19833: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
19834: started dual write_xxx_lang functions, if checked & works
19835:
19836: * src/: classes/date.C, classes/file.C, classes/mail.C,
19837: classes/string.C, classes/xnode.C, include/pa_request.h,
19838: types/pa_value.h, types/pa_wcontext.h: removed absolutely
19839: unnecessary VString shells
19840:
19841: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
19842: prev changes]
19843:
19844: * src/: classes/image.C, classes/op.C, classes/string.C,
19845: classes/table.C, include/pa_request.h, main/execute.C,
19846: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
19847: StringOrValue wcontext result, now ready for dual writes
19848:
19849: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
19850: checked that
19851:
19852: * src/main/: compile.tab.C, compile.y, compile_tools.C,
19853: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
19854: changed to OP_WRITE_VALUE in var get cases
19855:
19856: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
19857: include/pa_request.h, main/compile.tab.C, main/compile.y,
19858: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19859: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
19860: switch in hash constructor fixed [were problems with using of
19861: stacked wwrapper after it's death]
19862:
19863: 2002-04-12 paf
19864:
19865: * operators.txt, src/classes/table.C: table.select(expression) 0
19866:
19867: 2002-04-11 paf
19868:
19869: * src/: classes/string.C, include/pa_request.h, main/execute.C:
19870: Request::process_internal codeFrame & wwrapper stacked [not
19871: wasting heap anymore]
19872:
19873: 2002-04-10 paf
19874:
19875: * src/: classes/double.C, classes/file.C, classes/hash.C,
19876: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
19877: classes/string.C, classes/table.C, classes/void.C,
19878: classes/xdoc.C, include/pa_request.h, main/execute.C,
19879: main/pa_string.C: killed Request::process() wrapping
19880: VString(String) in case we need only String
19881:
19882: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19883: killed 8 bytes from String.head
19884:
19885: 2002-04-09 paf
19886:
19887: * src/: main/compile.tab.C, targets/cgi/parser3.C,
19888: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
19889: local*/char b[...]; a=b; situations
19890:
19891: * operators.txt, src/classes/xdoc.C: xslt params made literal
19892:
19893: * src/classes/xdoc.C: xslt params fixed
19894:
19895: * src/: main/pa_common.C, targets/cgi/parser3.C,
19896: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
19897: not pool.malloc(MAX_NUMBER) but really neaded
19898:
19899: * operators.txt, src/classes/double.C, src/classes/int.C:
19900: int/double.int/double(default)
19901:
19902: 2002-04-04 paf
19903:
19904: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
19905: [when reconstructing pieces were split by
19906: max_integral(piece.size), thus some strings to replace happen to
19907: be split into two = not replaced)
19908:
19909: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
19910: standalone version = current dir
19911:
19912: * src/targets/cgi/parser3.C: document root in standalone version =
19913: current dir
19914:
19915: 2002-04-03 paf
19916:
19917: * configure, configure.in: more checks on nonexistent charset
19918:
1.116 moko 19919: * INSTALL, configure, configure.in: root config configure options
1.95 moko 19920:
19921: 2002-04-02 paf
19922:
19923: * src/main/compile.C: parser.compile [exception name more like in
19924: doc]
19925:
19926: 2002-04-01 paf
19927:
19928: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
19929: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
19930: .content-type.charset, not .charset
19931:
19932: 2002-03-29 paf
19933:
19934: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
19935:
19936: * operators.txt, src/classes/date.C: ^date::create now may not
19937: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
19938: days' year. | 31.05->31.04 roll
19939:
19940: 2002-03-28 paf
19941:
19942: * operators.txt, src/classes/date.C, src/classes/op.C,
19943: src/include/pa_globals.h, src/include/pa_hash.h,
19944: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
19945: ^cache(seconds) ^cache[date] }
19946:
19947: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
19948: param
19949:
19950: 2002-03-27 paf
19951:
19952: * operators.txt, src/classes/date.C, src/classes/double.C,
19953: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
19954: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
19955: src/classes/math.C, src/classes/op.C, src/classes/string.C,
19956: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
19957: src/classes/xnode.C, src/include/pa_exception.h,
19958: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
19959: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
19960: src/main/pa_array.C, src/main/pa_charset.C,
19961: src/main/pa_charsets.C, src/main/pa_common.C,
19962: src/main/pa_dictionary.C, src/main/pa_exception.C,
19963: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
19964: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
19965: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
19966: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19967: src/types/pa_value.h, src/types/pa_vcookie.C,
19968: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
19969: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
19970: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
19971: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
19972: src/types/pa_wwrapper.h: assigned exception types
19973:
19974: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
19975: src/include/pa_request.h, src/main/execute.C,
19976: src/main/pa_request.C: decided agains resetting exception_trace,
19977: just changed name
19978:
19979: 2002-03-26 paf
19980:
19981: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
19982: fixed
19983:
19984: * src/classes/op.C: forced language of $source field of exception
19985: to 'tainted', so that sql-langed-frags could be outputed outside
19986: of connect
19987:
19988: * operators.txt: removed date.roll limit of +-1 offset
19989:
19990: * src/classes/date.C: removed date.roll limit of +-1 offset
19991:
19992: * operators.txt, src/classes/date.C: fixed date roll on
19993: daylightsaving days mktime took into account tm_isdst flag, which
19994: remained from BEFORE roll, but should have been reset
19995:
19996: 2002-03-25 paf
19997:
19998: * operators.txt, src/targets/cgi/parser3.C:
19999: http_site_config_filespec
20000:
20001: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
20002: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
20003: with any/both --disable-foreign-group-files --disable-execs
20004:
20005: * INSTALL: "--with=sendmail=COMMAND" comment
20006:
20007: * INSTALL, configure, configure.in, src/classes/mail.C,
20008: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 20009: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
20010: disables execs also. introducing --sendmail
1.95 moko 20011:
20012: * operators.txt: pgsql options comment
20013:
20014: * INSTALL: comment on --disable-link-stdcpp
20015:
1.116 moko 20016: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
20017: libstdc++ link skipping configure option
1.95 moko 20018:
20019: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
20020: with error were put to cache with 'marked_to_rollback' flag, all
20021: consequent even OK requests rolled back
20022:
20023: 2002-03-22 paf
20024:
20025: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
20026: false return
20027:
20028: * operators.txt: few comments on sets
20029:
20030: 2002-03-18 paf
20031:
20032: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
20033: src/include/pa_globals.h, src/include/pa_request.h,
20034: src/include/pa_stack.h, src/main/pa_globals.C,
20035: src/main/pa_request.C: introducing ^try
20036:
20037: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
20038: types/pa_vdouble.h: removed some tested @tests
20039:
20040: 2002-03-15 paf
20041:
20042: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
20043:
20044: 2002-03-13 paf
20045:
20046: * src/main/pa_exception.C: checked not-pooled malloc
20047:
20048: 2002-03-11 paf
20049:
20050: * INSTALL, configure, configure.in,
20051: src/include/pa_config_auto.h.in: --disable-foreign-group-files
20052:
20053: * src/main/pa_common.C: --disable-foreign-group-files
20054:
20055: * INSTALL: --disable-execs
20056:
20057: * src/main/pa_exec.C: --disable-execs
20058:
20059: * configure, configure.in, src/include/pa_config_auto.h.in:
20060: --disable-execs
20061:
20062: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
20063:
20064: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
20065: file::exec/cgi linebreaks "0D0A" changed to 0A onces
20066:
20067: 2002-03-05 paf
20068:
20069: * operators.txt, src/classes/date.C: date week calendar columns
20070: named
20071:
20072: * operators.txt, src/classes/date.C: date week calendar columns
20073: named
20074:
20075: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
20076: requires headers to be terminated with \r\n manually [refuses to
20077: separate header/body itself]
20078:
20079: * src/: main/pa_globals.C, targets/cgi/parser3.C,
20080: targets/isapi/parser3isapi.C: isapi site config beside .dll
20081:
20082: 2002-03-04 paf
20083:
20084: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
20085: in PASS language
20086:
20087: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
20088: deserialize checks on broken file
20089:
20090: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
20091: parser3isapi.dsp: isapi updated
20092:
20093: 2002-03-01 paf
20094:
20095: * src/main/pa_exec.C: execle -> execve, now argc OK
20096:
20097: 2002-02-28 paf
20098:
20099: * src/main/untaint.C: removed some debug comments
20100:
20101: * src/main/pa_charsets.C: when placing charset to cache using
20102: global name now [were request]
20103:
20104: * configure, configure.in: apache module updated
20105:
20106: * src/main/pa_string.C: origin by first piece preferred before last
20107: piece
20108:
20109: 2002-02-27 paf
20110:
20111: * src/main/pa_charset.C: size_t
20112:
20113: * INSTALL: shared/static-xml with-pathlink
20114:
20115: * operators.txt: SMTP comment
20116:
20117: 2002-02-26 paf
20118:
20119: * src/main/pa_exec.C: more precise names for vars, cosmetic
20120:
20121: * src/classes/xnode.C: in some situation, xpath query returned
20122: result with type NODESET, but empty nodeset member field, checked
20123: that
20124:
20125: 2002-02-22 paf
20126:
20127: * INSTALL: without-zlib comment
20128:
20129: * etc/parser3.charsets/windows-1251.cfg: °
20130:
20131: * configure, configure.in: glib###.a detection fixed
20132:
20133: * INSTALL: hashfile removed from INSTALL
20134:
1.116 moko 20135: * Makefile.am: make update
1.95 moko 20136:
20137: * src/main/pa_string.C: string iterators fixed again, so were
20138: String::join_chain
20139:
20140: * src/main/pa_string.C: string iterators fixed again, so were
20141: String::join_chain
20142:
20143: * src/: include/pa_string.h, main/pa_string.C: string iterators
20144: fixed again, so were String::join_chain
20145:
20146: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
20147:
20148: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
20149: "session"
20150:
1.116 moko 20151: * configure, configure.in, src/include/pa_config_auto.h.in:
20152: --with-shared-xml --with-static-xml
1.95 moko 20153:
20154: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
20155: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20156: types/types.dsp: *.dsp: removed refereces to win32db & ancient
20157: xalan&xml
20158:
20159: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
20160:
20161: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
20162: src/types/types.dsp: removed hashfile support from sources for
20163: now
20164:
1.116 moko 20165: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 20166: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 20167: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
20168: src/include/pa_db_manager.h, src/include/pa_db_table.h,
20169: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 20170: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 20171: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
20172: src/types/Makefile.am, src/types/pa_vhashfile.C,
20173: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 20174:
20175: 2002-02-21 paf
20176:
20177: * src/main/untaint.C: removed debug code, activated commented-for
20178: debug parts
20179:
1.116 moko 20180: * Makefile.am: make cvsupdate
1.95 moko 20181:
20182: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
20183: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
20184: append_row, not at link zero now string to string appending works
20185:
20186: 2002-02-20 paf
20187:
20188: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
20189: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
20190: DEBUG_STRING_APPENDS_VS_EXPANDS
20191:
20192: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
20193: economy: 22%
20194:
20195: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
20196: space uptimized: string::link_row removed
20197:
20198: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
20199: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
20200: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
20201: types/pa_vstring.h: speed uptimized: string::is_empty
20202:
20203: * operators.txt, src/include/pa_common.h,
20204: src/include/pa_config_fixed.h, src/include/pa_string.h,
20205: src/include/pa_types.h, src/main/compile.tab.C,
20206: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
20207: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
20208: string append optimiziation idea and estimates
20209:
20210: 2002-02-19 paf
20211:
20212: * src/classes/math.C: not used directly [but erroreously reported
20213: that 'is', thus registering twice&other probs]
20214:
20215: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
20216: to node [element]
20217:
20218: * src/main/compile.C: without string_origins parse error
20219: file+line+col possible
20220:
20221: * src/main/: compile.C: without string_origins not worked
20222:
20223: 2002-02-18 paf
20224:
20225: * src/types/pa_vdouble.h: since we have in_expression removed that
20226: trick i've installed into double::as_string
20227:
20228: * src/main/pa_globals.C: extern "C" was removed too fast
20229:
20230: * src/: include/pa_opcode.h, include/pa_request.h,
20231: main/compile.tab.C, main/compile.y, main/execute.C,
20232: types/pa_wcontext.h: in_expression aimed to solve old problem
20233: with string/nonstring values, now in expressions double/int
20234: values are passed as-is, without stupid tostring/fromstring
20235: conversions
20236:
20237: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
20238: __cplusplus } #endif
20239:
20240: * src/main/compile.tab.C: bison env set so one could compile
20241: without cygwin installed
20242:
20243: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
20244: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
20245: gnome xml libs parser .dsp-s changed accordingly
20246:
20247: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
20248:
20249: * operators.txt, src/classes/date.C: date::create [were date::set,
20250: with backward comp
20251:
20252: * src/classes/math.C: math:random range check fixed
20253:
20254: * src/main/: compile.tab.C, compile.y: integer division stops name
20255:
20256: * INSTALL: local install comment
20257:
1.116 moko 20258: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 20259:
1.116 moko 20260: * acinclude.m4, aclocal.m4, configure, configure.in,
20261: src/include/pa_config_auto.h.in,
20262: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
20263: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 20264:
20265: * operators.txt: \ comment
20266:
20267: 2002-02-13 paf
20268:
20269: * src/include/pa_config_includes.h: sys/time time both included
20270: now. vaguely remember confilicts on this on some system [not on
20271: six|ablv] so when would see them again would think up proper
20272: check
20273:
1.116 moko 20274: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
20275: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 20276:
20277: * src/main/pa_common.C: truncation never occured when writing files
20278: on unix [since i've changed cache mech] fix
20279:
20280: * src/main/pa_common.C: strnchr: sanity check added
20281:
20282: * etc/parser3.charsets/windows-1257.cfg: id added
20283:
20284: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
20285: baltic charset file generated, in generation script ispunct check
20286: added
20287:
20288: 2002-02-08 paf
20289:
1.116 moko 20290: * src/: include/Makefile.am, sql/Makefile.am,
20291: targets/isapi/Makefile.am: forgotten makes
1.95 moko 20292:
20293: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
20294: forgotten
20295:
20296: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
20297:
20298: * INSTALL, README: install&others updated
20299:
20300: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
20301:
1.116 moko 20302: * Makefile.am, configure, configure.in,
20303: etc/parser3.charsets/Makefile.am, src/Makefile.am,
20304: src/classes/Makefile.am, src/main/Makefile.am,
20305: src/main/pa_status_provider.C, src/targets/Makefile.am,
20306: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
20307: works
1.95 moko 20308:
20309: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20310: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20311: classes/hashfile.C, classes/int.C, classes/mail.C,
20312: classes/math.C, classes/op.C, classes/response.C,
20313: classes/string.C, classes/table.C, classes/void.C,
20314: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20315: include/pa_array.h, include/pa_cache_managers.h,
20316: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
20317: include/pa_config_fixed.h, include/pa_config_includes.h,
20318: include/pa_db_connection.h, include/pa_db_manager.h,
20319: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20320: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20321: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20322: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20323: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20324: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20325: include/pa_stack.h, include/pa_string.h,
20326: include/pa_stylesheet_connection.h,
20327: include/pa_stylesheet_manager.h, include/pa_table.h,
20328: include/pa_threads.h, include/pa_types.h, main/compile.C,
20329: main/compile_tools.C, main/compile_tools.h, main/execute.C,
20330: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
20331: main/pa_db_connection.C, main/pa_db_manager.C,
20332: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20333: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
20334: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
20335: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20336: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
20337: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20338: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
20339: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
20340: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
20341: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
20342: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
20343: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20344: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
20345: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
20346: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
20347: types/pa_vmethod_frame.h, types/pa_vobject.h,
20348: types/pa_vrequest.h, types/pa_vresponse.h,
20349: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20350: types/pa_vstateless_object.h, types/pa_vstatus.C,
20351: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
20352: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
20353: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
20354: classes/image.C, main/pa_common.C, main/pa_exec.C,
20355: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
20356: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
20357: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
20358: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
20359: types/pa_vxnode.C, main/pa_charset.C: name spelling
20360:
20361: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20362: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20363: classes/hashfile.C, classes/image.C, classes/int.C,
20364: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20365: classes/string.C, classes/table.C, classes/void.C,
20366: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20367: include/pa_array.h, include/pa_cache_managers.h,
20368: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
20369: include/pa_config_fixed.h, include/pa_config_includes.h,
20370: include/pa_db_connection.h, include/pa_db_manager.h,
20371: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20372: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20373: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20374: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20375: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20376: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20377: include/pa_stack.h, include/pa_string.h,
20378: include/pa_stylesheet_connection.h,
20379: include/pa_stylesheet_manager.h, include/pa_table.h,
20380: include/pa_threads.h, include/pa_types.h, main/compile.C,
20381: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20382: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
20383: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
20384: main/pa_db_connection.C, main/pa_db_manager.C,
20385: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20386: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20387: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20388: main/pa_socks.C, main/pa_sql_driver_manager.C,
20389: main/pa_status_provider.C, main/pa_string.C,
20390: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20391: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20392: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20393: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20394: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20395: targets/isapi/pool_storage.h, types/pa_valiased.C,
20396: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20397: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20398: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20399: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20400: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20401: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20402: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20403: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20404: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
20405: types/pa_vresponse.h, types/pa_vstateless_class.C,
20406: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
20407: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
20408: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
20409: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
20410: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
20411: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
20412:
20413: 2002-02-07 paf
20414:
20415: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
20416:
1.116 moko 20417: * configure, configure.in, src/include/pa_config_auto.h.in,
20418: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
20419: added yet another locking function: fcntl
1.95 moko 20420:
20421: * config.sub: on cygwin configure passes it with strange i1586
20422: const, hacked it to mean i586
20423:
20424: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
20425: disabled $if reference due to conflicts with local variables
20426:
20427: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
20428: xdoc::set obsolete now, now xdoc::create, with both sences
20429:
20430: * operators.txt, src/classes/table.C, src/include/pa_array.h,
20431: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
20432: table::create now // 'set' name obsolete now table clone.
20433:
20434: * operators.txt, src/classes/string.C,
20435: src/include/pa_config_fixed.h, src/main/compile.tab.C:
20436: ^int/double/string.format now can be called with normal []
20437: brackets, not stupid {} as it were implemented for some strange
20438: reason. retaining backward compatibility due to some
20439: already-implemented servers
20440:
20441: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
20442: main/compile.y, main/compile_tools.C, main/compile_tools.h:
20443: operators now detected by check at name_without_curly_rdive_read
20444: rule whether diving code constists only of
20445: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
20446: with OP_GET_ELEMENT_OR_OPERATOR to form
20447: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
20448:
20449: 2002-02-06 paf
20450:
20451: * configure, configure.in: prefix expanded, grr
20452:
20453: * operators.txt, src/classes/mail.C: mail:send config changed
20454:
20455: 2002-02-05 paf
20456:
20457: * operators.txt: regex options commented
20458:
20459: * src/main/: pa_exec.C: argv0 now correct
20460:
20461: * src/types/pa_vstatus.C: status:rusage 3
20462:
20463: * src/types/pa_vstatus.C: status:rusage 2
20464:
20465: * operators.txt: status:rusage described int operators
20466:
20467: * src/types/pa_vstatus.C: status:rusage 1
20468:
20469: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
20470: src/types/types.dsp: status:rusage
20471:
20472: * configure.in, operators.txt, src/classes/file.C,
20473: src/classes/op.C, src/include/pa_common.h,
20474: src/include/pa_config_includes.h, src/main/compile.tab.C,
20475: src/main/pa_common.C: rewritten ^cache to use
20476: non-blocking-exclusive-caches
20477:
20478: * src/main/pa_common.C: text file read mode on win32 adjusted
20479: [speed impact. was off for debugging purpose, but forgotten
20480: afterwards]
20481:
20482: 2002-02-01 paf
20483:
20484: * src/classes/op.C: file_write does EX lock after create, while
20485: file_read does SH after open, so there's a moment after create
20486: but before EX lock when read can sneak into, and read
20487: just-created-for-writing-and-not-yet-locked file, added a check
20488: for that in ^cache...read
20489:
20490: 2002-01-31 paf
20491:
20492: * src/main/: compile.y, compile.tab.C: disabled operator call after
20493: ^xxx:
20494:
20495: * src/main/: compile.tab.C, execute.C: made operators lookup first
20496: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
20497:
20498: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
20499: main/compile.tab.C, main/compile.y, main/compile_tools.C,
20500: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
20501: operators check 6.1 rewritten. now check is done at compile time
20502:
20503: * src/main/execute.C: operators check 5 floated up old error of
20504: staying in 'entered class/object' state after $a($a..) it
20505: prevented operators from being called thereafter
20506:
20507: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20508: main/execute.C: operators check 4 floated up old error of staying
20509: in 'entered object' state after ^a.a(a) it prevented operators
20510: from being called thereafter
20511:
20512: * src/main/execute.C: operators check 3 floated up old error of
20513: staying in 'entered class' state after $a:a(a) it prevented
20514: operators from being called thereafter
20515:
20516: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
20517: floated up old error of staying in 'entered class' state after
20518: $a:a[a] it prevented operators from being called thereafter
20519:
20520: * src/main/execute.C: operators check, thay mistakenly seen in
20521: $class:operator $object.operators contexts
20522:
20523: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
20524: win32
20525:
1.116 moko 20526: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
20527: src/classes/Makefile.am, src/main/Makefile.am,
20528: src/targets/cgi/Makefile.am,
1.95 moko 20529: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 20530: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 20531:
1.116 moko 20532: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
20533: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
20534: configure, configure.in, form.txt, ident.awk, install-sh,
20535: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
20536: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 20537: etc/parser3.charsets/Makefile.am,
20538: etc/parser3.charsets/koi8-r.cfg,
20539: etc/parser3.charsets/windows-1250.cfg,
20540: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 20541: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
20542: src/main/Makefile.am, src/targets/cgi/Makefile.am,
20543: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
20544: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 20545: straightened installation scripts procedure made
20546: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
20547: change
20548:
20549: 2002-01-30 paf
20550:
20551: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
20552: removed] those comments were a mistake, and prevented libltdl
20553: from function properly
20554:
20555: 2002-01-29 paf
20556:
1.116 moko 20557: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
20558: creation [modified acinclude.m4 which were creating int into just
20559: assignment LIBTOOL=../libtool] added default system
20560: config&charsetts prepared 'make install', now it installs
20561: targets/cgi/parser3 into bin directory etc/parser3.conf &
20562: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 20563: $sysconfdir/parser3.charsets respectively
20564:
20565: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
20566: main/pa_globals.C: few forgotten ifdef XML added
20567:
20568: 2002-01-28 paf
20569:
1.116 moko 20570: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 20571: removed
20572:
20573: * src/main/pa_exception.C: dom|generic error output fix
20574:
20575: * src/classes/xnode.C: xdoc.importNode 3 [check err]
20576:
20577: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
20578:
20579: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
20580: [fixed as_node helper func to accept docs]
20581:
20582: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
20583: xdoc.importNode 0
20584:
20585: * src/classes/xdoc.C: xdoc::set now untaints OK
20586:
20587: 2002-01-25 paf
20588:
20589: * src/main/: compile.tab.C, compile.y: #comment before @ after
20590: @SPECIAL now works OK
20591:
20592: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
20593:
20594: * src/main/pa_exec.C: max arg count now 10, and proper message on
20595: violation that added
20596:
20597: * src/classes/hash.C: unified hash::sql, now
20598: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
20599:
20600: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
20601: ^file:lock[filename]{code}
20602:
20603: * src/: classes/file.C, classes/op.C, classes/string.C,
20604: classes/table.C, classes/xdoc.C, include/pa_common.h,
20605: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
20606: to some pa_common funcs
20607:
20608: * src/: include/pa_charset.h, main/pa_globals.C:
20609: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
20610:
20611: * src/: include/pa_charset.h, main/pa_charset.C,
20612: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
20613: not stupid illegal define
20614:
20615: 2002-01-24 paf
20616:
20617: * src/include/pa_version.h: changed version number
20618:
20619: * src/: classes/hashfile.C, include/pa_db_table.h,
20620: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20621: main/compile_tools.C, main/compile_tools.h, main/execute.C,
20622: main/pa_db_connection.C, main/pa_db_table.C,
20623: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
20624: hashfile without logfiles
20625:
20626: * src/: classes/hashfile.C, include/pa_db_table.h,
20627: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
20628: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
20629: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
20630: DB_INIT_TXN init bits, thus got rid of huge log files, which
20631: cluttered disk without huge need]
20632:
20633: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
20634: handy macro, which is strangly abscent in dome lib
20635:
20636: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
20637:
20638: * src/classes/xdoc.C: checked empty response
20639:
20640: * src/classes/xnode.C: xdoc.select fixed context node [were always
20641: /, not self node]
20642:
20643: * src/classes/xnode.C: xnode.select returns array always now, in
20644: case 'nothing found' returns empty array
20645:
20646: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
20647: be more tender with ctrl/c/v
20648:
20649: 2002-01-23 paf
20650:
20651: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
20652: substituted. // 2. when dom tree with entites goes under
20653: transform text nodes // got [erroreosly] cut on first
20654: entity occurance
20655:
20656: * src/types/pa_vdouble.h: double prec. todo: get rid of
20657: twice-converting
20658:
20659: * src/types/pa_vdouble.h: %.20E now float format when %g produced
20660: 'e' in output this is for regretful twice-converting here:
20661: $a(double value) when they write double falue they convert it to
20662: string first, thus %g were losing precesion.
20663:
20664: todo: think up some way to remove double->string string->double
20665: twice-converting
20666:
20667: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
20668: %.20E now default float format this is for regretful
20669: twice-converting here: $a(double value) when they write double
20670: falue they convert it to string first, thus %g were losing
20671: precesion.
20672:
20673: todo: think up some way to remove double->string string->double
20674: twice-converting
20675:
20676: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
20677: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
20678: reasons in comment inside
20679:
20680: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
20681: statically linked]
20682:
20683: * src/: include/pa_exception.h, main/compile.tab.C,
20684: main/pa_exception.C: removed exception va_list constructor. 1.
20685: not needed anymore 2. there were a conflict[causing errors]
20686: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
20687: never detected an ambiguilty here, compiling ctor(, "hello") into
20688: ctor(, va_list) which, of course, caused gpf
20689:
20690: * src/main/pa_globals.C: removed debug xslt messages
20691:
20692: 2002-01-22 paf
20693:
20694: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
20695: main/pa_globals.C: xsl stylesheet load: parsed entities, this
20696: helps compiling stylesheet properly. example: this refused to
20697: work, <b>«<xsl:value-of select="@title"
20698: />»</b> stranly worked only this way:
20699: <b>«<xsl:value-of select="@title" />»</b>
20700:
20701: docs says "set it to 1", never going into details, so I decided
20702: to try NOT to do that
20703:
20704: * src/classes/table.C: join behaived badly in case named tables
20705: structure mismatched: 0 strings sneaked into dest failing
20706: afterwards. replaced them with empty strings
20707:
20708: 2002-01-21 paf
20709:
20710: * src/main/pa_charset.C: checked empty transcoders in
20711: transcode_cstr|buf
20712:
20713: * src/classes/xdoc.C: xdoc::load error source = filespec
20714:
20715: * src/classes/xdoc.C: transform error source now
20716: stylesheet_filespec
20717:
1.116 moko 20718: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 20719: include/pa_stylesheet_connection.h, main/pa_charset.C,
20720: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 20721: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
20722: gnome
1.95 moko 20723:
20724: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
20725: include/pa_globals.h, include/pa_stylesheet_connection.h,
20726: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
20727: xslt generic error 1
20728:
20729: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
20730: xml generic message 1
20731:
20732: * src/classes/table.C: ^table::load empty lines or #comments before
20733: headline
20734:
20735: * src/: include/pa_array.h, include/pa_globals.h,
20736: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
20737: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
20738: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
20739: errors 0
20740:
20741: 2002-01-16 paf
20742:
20743: * src/: classes/hash.C, classes/op.C, classes/string.C,
20744: classes/table.C, classes/void.C, classes/xdoc.C,
20745: include/pa_db_connection.h, include/pa_request.h,
20746: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20747: include/pa_stylesheet_connection.h,
20748: include/pa_stylesheet_manager.h, main/pa_request.C,
20749: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20750: targets/cgi/pool_storage.h: auto closers to sql_connection,
20751: stylesheet_connection auto destroyers to remaining gnome objects
20752:
20753: * src/classes/xdoc.C: few comments
20754:
20755: 2002-01-15 paf
20756:
20757: * src/classes/xdoc.C: xdoc file save string
20758:
20759: ready. todo: error handling
20760:
20761: * src/classes/xdoc.C: xdoc save rewritten using
20762: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
20763: result
20764:
20765: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
20766: started output options parsing
20767:
20768: 2002-01-14 paf
20769:
20770: * src/classes/xdoc.C: method
20771:
20772: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
20773: include/pa_pool.h, include/pa_stylesheet_connection.h,
20774: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
20775: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
20776: xslt transform0. TODO: use output options handle errors
20777:
20778: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
20779:
20780: 2002-01-11 paf
20781:
20782: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20783: main/compile_tools.C, main/compile_tools.h, main/execute.C:
20784: partial logical && || evaluation
20785:
20786: * src/classes/xnode.C: xpath selectNodes
20787:
20788: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
20789: string/number/bool
20790:
20791: * src/classes/xnode.C: xpath selectNode 2
20792:
20793: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
20794: xpath selectNode 1
20795:
20796: 2002-01-10 paf
20797:
20798: * src/classes/xnode.C: xpath selectNode -100 [just written]
20799:
20800: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
20801: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
20802: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
20803: refcounter]
20804:
20805: 2001-12-29 paf
20806:
20807: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
20808: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
20809: glib works 0
20810:
20811: 2001-12-28 paf
20812:
20813: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
20814: main/pa_exception.C: started glib transcoders
20815:
20816: * src/main/pa_globals.C: renamed gdome to libgdome.dll
20817:
20818: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
20819: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
20820: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
20821: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
20822: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
20823: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
20824: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
20825: libs just compiled in. no refcounting no xpath no xslt yet
20826:
20827: 2001-12-27 paf
20828:
20829: * src/: include/pa_charset.h, include/pa_common.h,
20830: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
20831: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
20832: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
20833: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
20834: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
20835: from xalan&xerces, started the process. globals [initialization
20836: pool [charset update charset [transcodings vxnode vxdoc [DOM
20837: calls
20838:
20839: * src/classes/Makefile.am: going away from xalan&xerces, not needed
20840: anymore
20841:
20842: 2001-12-26 paf
20843:
20844: * src/: include/pa_charset.h, include/pa_charsets.h,
20845: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
20846: key globalized [bug]
20847:
20848: 2001-12-25 paf
20849:
20850: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
20851: main/pa_string.C: table set & append changed splitting languages,
20852: separators now can be clean AND as-is same to mail command line
20853: $MAIN:MAIL.progX arguments
20854:
20855: 2001-12-24 paf
20856:
20857: * src/classes/mail.C: one parted text messages - no multipart
20858: mime-type anymore. for convinient if $.attach-ments
20859:
20860: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
20861: main/pa_string.C: read from cache size check updated
20862:
20863: * src/main/: pa_string.C: String::join_chain another ugly bug :(
20864:
20865: 2001-12-21 paf
20866:
20867: * src/classes/date.C: date:sql-string now returns localtime
20868:
20869: * src/main/pa_request.C: $result in @main actually not working, to
20870: hell with it for now
20871:
20872: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
20873: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
20874: @postprocess @exception
20875:
20876: * src/main/execute.C: junction evaluation canceled - endless
20877: recursion detected
20878:
20879: 2001-12-19 paf
20880:
20881: * src/main/pa_charset.C: charset->charset transcoding via unicode
20882: intermediate
20883:
20884: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
20885:
20886: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
20887:
20888: * src/classes/op.C: ^cache keypath now relative
20889:
20890: * src/classes/mail.C: changed weighting prior to sort
20891:
20892: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
20893: were missing
20894:
20895: 2001-12-17 paf
20896:
20897: * src/main/pa_charset.C: ifndef XML were bad type
20898:
20899: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
20900: outdated unset services_pool
20901:
20902: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
20903: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
20904: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
20905:
20906: * src/main/untaint.C: allowed space in filespec
20907:
20908: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
20909:
20910: * src/classes/image.C: no govno
20911:
20912: * src/classes/image.C: govno
20913:
20914: 2001-12-16 paf
20915:
20916: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
20917:
20918: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
20919: charset_connection&manager replaced by charset&charsets
20920:
20921: * src/main/pa_charset.C: name_cstr 0
20922:
20923: * src/main/untaint.C: uri lang now knows about client/source
20924: charsets
20925:
20926: * src/: classes/file.C, classes/math.C, classes/op.C,
20927: classes/string.C, classes/table.C, classes/xdoc.C,
20928: include/pa_array.h, include/pa_cache_managers.h,
20929: include/pa_charset_connection.h, include/pa_charset_manager.h,
20930: include/pa_common.h, include/pa_db_connection.h,
20931: include/pa_db_manager.h, include/pa_db_table.h,
20932: include/pa_dictionary.h, include/pa_exception.h,
20933: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
20934: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
20935: include/pa_sapi.h, include/pa_socks.h,
20936: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20937: include/pa_string.h, include/pa_stylesheet_connection.h,
20938: include/pa_stylesheet_manager.h, include/pa_table.h,
20939: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
20940: main/pa_charset.C, main/pa_charset_connection.C,
20941: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
20942: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20943: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
20944: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
20945: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
20946: types/types.dsp: introducing Charset
20947:
20948: 2001-12-14 paf
20949:
20950: * src/: include/pa_request.h, include/pa_transcoder.h,
20951: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
20952: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
20953: uri lang
20954:
20955: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
20956:
20957: * src/targets/cgi/Makefile.am: -I../../pcre to .am
20958:
20959: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
20960: defalts_name global
20961:
20962: * src/: include/pa_charset_connection.h, include/pa_pool.h,
20963: include/pa_request.h, main/main.dsp,
20964: main/pa_charset_connection.C, main/pa_charset_manager.C,
20965: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
20966: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
20967: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
20968: changed charset model. now important: $request:charset
20969: $response:charset while $response:content-type.charset become
20970: unimportant [informational]
20971:
20972: 2001-12-13 paf
20973:
20974: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
20975:
20976: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
20977: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
20978: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
20979: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
20980: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
20981: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
20982:
20983: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
20984: auto_ptr part other way, because of stupid gcc 2.96
20985: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
20986: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
20987: FormatterListener] /usr/include/g++-3/memory:48:
20988: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
20989: _Tp1 = FormatterListener, _Tp = FormatterListener]
20990:
20991: * src/classes/xdoc.C: removed extra inc
20992:
20993: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
20994:
20995: * src/include/pa_types.h: msvc head debugging flag
20996:
20997: * src/classes/xdoc.C: freed up listener
20998:
20999: * src/classes/string.C: change msg '... code is not code'
21000:
21001: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
21002: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
21003: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
21004: [past/future prob]
21005:
21006: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
21007: include/pa_config_fixed.h, include/pa_db_manager.h,
21008: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
21009: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
21010:
21011: * src/: include/pa_config_fixed.h, main/pa_common.C,
21012: main/pa_string.C: removed signed mismatch warnings
21013:
21014: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
21015: 'expires' from header outputs
21016:
21017: * src/main/pa_string.C: string::recustruct erroreusly used outdated
21018: row ptr
21019:
21020: * src/classes/file.C: file::cgi bug, request_method were passed to
21021: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
21022:
21023: * src/classes/xdoc.C: lang list updated
21024:
21025: 2001-12-10 paf
21026:
21027: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
21028:
21029: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
21030: erase files like that, knowing their full name introducing //
21031: theoretical problem with, for instance, "_2B" and "." fragments,
21032: // they would yield the same // because
21033: need_file_encode('_')=false // but we need to delete such files
21034: somehow, getting names from ^index
21035:
21036: * src/main/pa_string.C: ^string.replace bug fixed [bad
21037: string::join_chank break]
21038:
21039: 2001-12-07 paf
21040:
21041: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
21042: include/pa_common.h, include/pa_config_auto.h.in,
21043: include/pa_config_fixed.h, include/pa_config_includes.h,
21044: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
21045: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
21046: types/pa_vhashfile.C: merged from r14_simple_cache
21047:
21048: * src/main/pa_string.C: stupid sparc architecture failed to access
21049: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
21050: lduh [ %i2 + 1 ], %l0
21051:
21052: bus error, fixed that
21053:
21054: * src/main/pa_string.C: strange string deserialize bug on
21055: client[pmts], a bit shortened,
21056:
21057: * src/include/pa_config_auto.h.in: makes
21058:
21059: * src/: include/pa_common.h, include/pa_config_fixed.h,
21060: include/pa_config_includes.h, main/pa_common.C: exclusive lock
21061: file write shared lock file read
21062:
21063: * src/: classes/op.C, include/pa_common.h,
21064: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
21065:
21066: 2001-12-06 paf
21067:
21068: * src/: classes/op.C, classes/table.C, include/pa_request.h,
21069: main/pa_request.C: #ifdef RESOURCES_DEBUG
21070:
21071: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
21072: info
21073:
21074: * src/classes/hashfile.C: removed transaction from ^cache
21075:
21076: 2001-12-05 paf
21077:
21078: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
21079: IIS5 there were a prob with illegal call check
21080:
21081: 2001-12-04 paf
21082:
21083: * src/: classes/op.C, classes/table.C, include/pa_request.h,
21084: main/pa_request.C: measures to log
21085:
21086: 2001-11-23 paf
21087:
21088: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
21089: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
21090: types/pa_vhashfile.C: merged from _0014, 1
21091:
21092: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
21093: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
21094: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
21095: ^cache(33) would change
21096:
21097: 0660 bits in file_write & hashfile create
21098:
21099: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
21100: after pa_string optimization]
21101:
21102: 2001-11-22 paf
21103:
21104: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
21105: table.offset[whence]
21106:
21107: * src/classes/op.C: process cstr(,connection)
21108:
21109: * src/classes/op.C: process now gets its body on current language,
21110: not as-is
21111:
21112: * src/main/untaint.C: ORIGINS mode removed UHTML
21113:
21114: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
21115: bit
21116:
1.116 moko 21117: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 21118:
21119: 2001-11-21 paf
21120:
21121: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
21122: <xsl:output output options made identical to xsl:output
21123: attributes exclusion: cdata-section-elements what xalan can do
21124: but that not used now: it can escape and remove CDATA sections
21125:
21126: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
21127: produced by xslt
21128:
21129: * src/targets/cgi/parser3.C: removed debug cgi||1
21130:
21131: * src/main/: pa_string.C, untaint.C: cached some string::size() es
21132:
21133: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
21134: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
21135: default language for {code}, it happen to change it's language
21136: from CLEAN, so later refused to split by CLEAN \t
21137:
21138: 2001-11-20 paf
21139:
1.116 moko 21140: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
21141: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 21142: bottom of dependeces, so that errors would popup quicklier, fixed
21143: line numbering in table::sql
21144:
21145: 2001-11-19 paf
21146:
21147: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
21148: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
21149: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
21150: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
21151: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
21152: at wcontext.write
21153:
1.116 moko 21154: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 21155: _set_new_handler
21156:
1.116 moko 21157: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
21158: set_new_handler in apache&isapi
1.95 moko 21159:
21160: 2001-11-16 paf
21161:
21162: * src/targets/cgi/parser3.C: pool debug @ die
21163:
21164: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
21165: removed 8 bytes from String, 2 bytes from
21166: string::chunk::row::item
21167:
21168: * src/main/pa_string.C: removed 1+4 bytes from String
21169:
21170: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
21171: types/pa_vstring.C: removed 1+4 bytes from String
21172:
21173: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
21174: 0
21175:
21176: * src/: include/pa_globals.h, include/pa_string.h,
21177: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
21178: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
21179: targets/cgi/parser3.C: introducing estimating
21180: String::cstr_bufsize, 0
21181:
21182: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
21183:
21184: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
21185:
21186: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
21187: include/pa_pool.h: die in pool::fail
21188:
21189: 2001-11-15 paf
21190:
21191: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
21192: main/pa_exception.C, targets/cgi/parser3.C: exception with
21193: dynamic buffer re-back now with counter
21194:
21195: * src/: include/pa_exception.h, main/pa_exception.C: exception with
21196: static buffer back
21197:
21198: * src/targets/cgi/parser3.C: std::
21199:
21200: * src/: classes/classes.awk, include/pa_config_auto.h.in,
21201: include/pa_config_includes.h: setnewhandler check
21202:
1.116 moko 21203: * src/include/pa_config_auto.h.in: makes
1.95 moko 21204:
21205: * src/targets/cgi/parser3.C: set_new_handler started
21206:
21207: 2001-11-14 paf
21208:
21209: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
21210: was wrong
21211:
21212: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
21213: was wrong
21214:
21215: * src/main/pa_request.C: z
21216:
21217: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
21218: full returns win32 -1 solaris >buffer_size
21219:
21220: checked all that
21221:
21222: * src/classes/op.C: ^untaint{body} as-is default now
21223:
21224: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
21225: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
21226: with no_bad_constructors_try
21227:
21228: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
21229: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
21230: this: $bred[^string::length[]] $bred[^response::clear[]]
21231: $bred[^int::int[]]
21232:
21233: now VObject creation moved into overriden
21234: VClass::create_new_value, thus 0 from create_new_value means that
21235: class has no ctors
21236:
21237: 2001-11-13 paf
21238:
21239: * src/classes/classes.C: returned accedently removed if in foreach
21240: callbacks [when hash no-0-restructure]
21241:
21242: 2001-11-12 paf
21243:
21244: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
21245: passed as-is to method, xalan makes & into & itself
21246:
21247: * src/classes/date.C: date.roll parser2 alg used
21248:
21249: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
21250: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
21251: main/pa_dictionary.C, main/pa_hash.C,
21252: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
21253: now does not containt 0 values. put 0 actullay removes. no check
21254: on 0 value in foreach now required
21255:
21256: 2001-11-11 paf
21257:
21258: * src/sql/pa_sql_driver.h: removed extra constructor, doc
21259:
21260: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
21261:
21262: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
21263: driver initialize not const
21264:
21265: 2001-11-10 paf
21266:
21267: * src/main/pa_exec.C: doc
21268:
21269: 2001-11-09 paf
21270:
21271: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
21272: param properly
21273:
21274: * src/classes/string.C: string.save now does untainting before
21275: saving
21276:
21277: * src/main/pa_common.C: line endings fixing fixed last piece[was
21278: still cstr oriented]
21279:
21280: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
21281: line endings fixing got rid of cstr, now must work ok with post
21282: multipart
21283:
21284: * src/types/pa_vform.C: line endings fixed at post / multipart /
21285: not file also now
21286:
21287: 2001-11-08 paf
21288:
21289: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
21290: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
21291: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
21292: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
21293: main/pa_stylesheet_manager.C: restructured Cache manager to be
21294: simple parent, not second parent [gcc 2.96 strangly refused to
21295: call virtual from second parent]
21296:
1.116 moko 21297: * src/: include/pa_common.h, main/Makefile.am,
21298: targets/cgi/pa_pool.C: makes
1.95 moko 21299:
21300: * src/: include/pa_request.h, main/pa_request.C,
21301: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
21302: 'status' class enabler
21303:
21304: <Location /parser-status.html> ParserStatusAllowed </Location>
21305:
21306: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
21307: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
21308: include/pa_stylesheet_manager.h, main/main.dsp,
21309: main/pa_cache_managers.C, main/pa_charset_manager.C,
21310: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
21311: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
21312: types/pa_vstatus.h: cache_managers, maybe-expiring every request
21313: todo: apache 'status' class enabler
21314:
21315: 2001-11-05 paf
21316:
21317: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
21318: debug to normal
21319:
21320: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
21321: hence i removed skipping 0 values in hash::for_each-es we need to
21322: check cleaned cache items manually. few more checks.
21323:
21324: expiring to 0 time was wrong, changed to 'now' time
21325:
21326: * src/targets/cgi/parser3.C: read can return 0, that means sort of
21327: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
21328: on apache already done :)
21329:
21330: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
21331: skipping 0 values in hash::for_each-es we need to check cleaned
21332: cache items manually
21333:
21334: * src/main/: pa_db_connection.C, pa_db_table.C:
21335: parser_multithreaded check was wrong
21336:
21337: * src/: classes/classes.C, classes/classes.h, classes/date.C,
21338: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21339: classes/hashfile.C, classes/image.C, classes/int.C,
21340: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
21341: classes/string.C, classes/table.C, classes/void.C,
21342: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21343: include/pa_array.h, include/pa_charset_connection.h,
21344: include/pa_charset_manager.h, include/pa_common.h,
21345: include/pa_config_fixed.h, include/pa_config_includes.h,
21346: include/pa_db_connection.h, include/pa_db_manager.h,
21347: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
21348: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
21349: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
21350: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
21351: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
21352: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21353: include/pa_stack.h, include/pa_string.h,
21354: include/pa_stylesheet_connection.h,
21355: include/pa_stylesheet_manager.h, include/pa_table.h,
21356: include/pa_threads.h, include/pa_types.h, main/compile.C,
21357: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
21358: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
21359: main/pa_charset_manager.C, main/pa_common.C,
21360: main/pa_db_connection.C, main/pa_db_manager.C,
21361: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
21362: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
21363: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
21364: main/pa_socks.C, main/pa_sql_driver_manager.C,
21365: main/pa_status_provider.C, main/pa_string.C,
21366: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
21367: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21368: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21369: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
21370: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21371: targets/isapi/pool_storage.h, types/pa_valiased.C,
21372: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
21373: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
21374: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
21375: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
21376: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
21377: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
21378: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21379: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
21380: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21381: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21382: types/pa_vstateless_object.h, types/pa_vstatus.h,
21383: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
21384: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
21385: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21386: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
21387: $status:db fixed used not initialized in db_connection & db_table
21388:
21389: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
21390: $status:charset
21391:
21392: * src/: classes/xdoc.C, include/pa_db_connection.h,
21393: include/pa_stylesheet_connection.h,
21394: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
21395: types/pa_vstatus.h: $status:stylesheet
21396:
21397: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
21398: include/pa_request.h, include/pa_sql_connection.h,
21399: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
21400: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
21401: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
21402: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
21403: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
21404: types/pa_vxnode.C, types/types.dsp: started status parser class
21405:
21406: 2001-11-01 paf
21407:
21408: * src/include/pa_config_auto.h.in: makes
21409:
21410: * src/main/pa_hash.C: removed old extra include
21411:
21412: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
21413: checks [for hp, there are such in math.h]
21414:
21415: * src/classes/op.C: ^for endless loop check strightened
21416:
21417: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
21418: behavior in native calls. it left unchanged, so ^for ^foreach &
21419: co can use r.root to write their i & key,value there
21420:
21421: * src/classes/op.C: detected for var storage bug, fixed.
21422: todo:foreach
21423:
21424: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
21425: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
21426: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
21427: changing of hash inside of foreach
21428:
21429: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
21430: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
21431: were hash.foreach
21432:
21433: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
21434: types/pa_vstring.C, types/pa_vstring.h:
21435: ^foreach[key|value]{body}[[separator]|{separator}]
21436:
21437: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
21438: types/pa_vcookie.C: ^hash.delete[key]
21439:
21440: 2001-10-31 paf
21441:
21442: * src/main/: compile.C, pa_common.C: completely empty file now
21443: considered "read", not ignored [not perfect trick used]
21444:
21445: * src/main/pa_common.C: simplier common ifdefs
21446:
21447: * src/main/pa_common.C: typing bug in common - bad ifdeff
21448:
21449: * src/main/pa_db_connection.C: z
21450:
21451: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
21452: lockdetector flags
21453: dbenv.lk_detect=DB_LOCK_RANDOM;
21454:
21455: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
21456: from accidental show [imagine user forgot @exception]
21457:
21458: * src/classes/table.C: ^table.save[[nameless|+append;]path]
21459:
21460: * src/: classes/file.C, classes/image.C, classes/mail.C,
21461: classes/string.C, classes/xnode.C, include/pa_common.h,
21462: main/pa_common.C: ^string.save[[append;]path]
21463:
21464: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
21465: main/execute.C: \ in expression: int divide 10/3=3
21466:
21467: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
21468: inside of ^cache
21469:
21470: * src/: include/pa_threads.h, main/pa_db_connection.C,
21471: main/pa_db_table.C, targets/cgi/pa_threads.C,
21472: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
21473: needed
21474:
21475: 2001-10-30 paf
21476:
21477: * src/: classes/classes.dsp, main/main.dsp,
21478: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21479: types/types.dsp: enabled debug incremental compile
21480:
21481: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
21482: form post data line endings not reformatted now.
21483:
21484: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
21485: now required [had bug when file= has no value]
21486:
21487: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
21488: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
21489: cstr(asis) default param removed
21490:
21491: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
21492:
21493: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
21494:
21495: * src/include/pa_dir.h: LOAD_DIR fixed
21496:
21497: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
21498: was broken} fix_line_breaks
21499:
21500: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
21501: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
21502: packed with #pragma pack
21503:
1.116 moko 21504: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 21505:
21506: 2001-10-29 paf
21507:
21508: * src/types/pa_wcontext.h: bitfield syntax stricter
21509:
21510: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
21511: string hash.puts
21512:
21513: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
21514:
21515: * src/include/pa_sql_connection.h: there were one wrong
21516: SQL_CONNECTION_FUNC_GUARDED [failed]
21517:
21518: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
21519: param.someday either ifdef or remove it
21520:
21521: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
21522:
21523: * src/main/untaint.C: optimizing returned after debugging
21524:
21525: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
21526: main/untaint.C: memory hunging #pragma pack(1)
21527:
21528: 16 419 844 13 169 394
21529:
21530: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
21531: targets/cgi/pa_pool.C: String size_t replace to uint in proper
21532: places [todo:Array]
21533:
21534: * src/: main/execute.C, targets/cgi/pa_pool.C,
21535: targets/cgi/parser3.dsp, types/pa_wcontext.h,
21536: types/pa_wwrapper.h: debugging memory WContext flags to bits
21537:
21538: total 5 652 652/158731 total 5 469 332/158731
21539:
21540: * src/: include/pa_array.h, main/pa_array.C: debugging memory
21541: Array:: without cache in get/put now
21542:
21543: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
21544: 18:25:27 2001] total 5 652 652/158731
21545:
21546: * src/: include/pa_string.h, main/pa_string.C,
21547: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
21548: now
21549:
21550: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
21551: 18:11:53 2001] total 5796092/158731
21552:
21553: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
21554: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
21555: key ref now
21556:
21557: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
21558: 17:11:17 2001] total 16867948/202658
21559:
21560: * src/: classes/file.C, classes/image.C, classes/string.C,
21561: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
21562: main/execute.C, main/pa_array.C, main/pa_common.C,
21563: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
21564: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
21565: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
21566: string::as_int/double now usually uses stack, not heap [200K out
21567: of 17M :)] VString(String&) not copies reference [29M -> 17M]
21568:
21569: * src/main/pa_sql_driver_manager.C: ping to have services [old
21570: hiding bug]
21571:
21572: * src/Makefile.am: .am order
21573:
21574: * src/: include/pa_array.h, include/pa_charset_manager.h,
21575: include/pa_db_connection.h, include/pa_db_manager.h,
21576: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
21577: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
21578: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
21579: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
21580: required "friend class"
21581:
21582: ../include/pa_request.h:51: friend declaration requires
21583: class-key, i.e. `friend class Temp_lang'
21584:
21585: * src/: include/pa_exception.h, include/pa_sql_connection.h,
21586: main/pa_exception.C, main/pa_sql_driver_manager.C,
21587: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
21588:
21589: the idea is to #1 jump to C++ some function to main body, where
21590: every function stack frame has exception unwind information and
21591: from there... #2 propagate_exception()
21592:
21593: 2001-10-28 paf
21594:
21595: * src/main/pa_db_connection.C: removed old consts
21596:
21597: * src/main/pa_db_connection.C: expire table [was accidently pasted
21598: with wrong type/cast]
21599:
21600: * src/main/: pa_db_connection.C, pa_db_table.C: exception
21601: translation
21602:
1.116 moko 21603: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 21604: remember to build DB2 with -fexceptions!!!
21605:
21606: * src/main/pa_db_table.C: DB_RMW defed
21607:
21608: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
21609: include/pa_db_connection.h, include/pa_db_manager.h,
21610: include/pa_db_table.h, main/pa_db_connection.C,
21611: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
21612:
21613: 2001-10-27 paf
21614:
21615: * src/: classes/hashfile.C, include/pa_db_connection.h,
21616: include/pa_db_table.h, main/pa_db_connection.C,
21617: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
21618: types/pa_vhashfile.C: DB2 ifdefs
21619:
1.116 moko 21620: * src/: classes/Makefile.am, include/pa_config_fixed.h,
21621: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 21622: makes with DB2
21623:
1.116 moko 21624: * src/: include/pa_config_auto.h.in, main/Makefile.am,
21625: types/Makefile.am: makes db
1.95 moko 21626:
21627: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
21628: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
21629: globals.C
21630:
21631: * src/: classes/hashfile.C, include/pa_db_connection.h,
21632: include/pa_db_table.h, main/pa_db_connection.C,
21633: main/pa_db_table.C: ^hashfile.clear[]
21634:
21635: * src/classes/classes.awk: no $ in var names
21636:
21637: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
21638: connection&table [forgotten calls]
21639:
21640: 2001-10-26 paf
21641:
21642: * src/main/pa_db_connection.C: db checkpoints
21643:
21644: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
21645: checkpoints
21646:
21647: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
21648: default. but entities still reparsed. todo: tothink
21649:
21650: * src/main/pa_db_connection.C: db recover mech 2
21651:
21652: * src/: classes/hashfile.C, include/pa_db_connection.h,
21653: include/pa_db_manager.h, include/pa_db_table.h,
21654: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
21655: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
21656: types/pa_vhashfile.h: db connections & tables now cached at
21657: create time & multithreaded
21658:
21659: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
21660: parsed_source
21661:
21662: * src/main/pa_db_connection.C: about to remove connection from
21663: vhashfile
21664:
21665: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
21666: transaction commit/rollback responsibility left to parent [as it
21667: sould - else there were a bug with double free]
21668:
21669: * src/include/pa_db_table.h: db: child transaction commit/rollback
21670: responsibility left to parent [as it sould - else there were a
21671: bug with double free]
21672:
21673: 2001-10-25 paf
21674:
21675: * src/: classes/hashfile.C, include/pa_common.h,
21676: include/pa_db_connection.h, include/pa_db_manager.h,
21677: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
21678: types/pa_vhashfile.C, types/pa_vhashfile.h,
21679: include/pa_db_table.h, main/pa_db_table.C: started db_home
21680: [multiple, cached] todo: autorecover [tried, but not succeded,
21681: yet]
21682:
21683: * src/include/pa_dir.h: ancient gpf on dir not found fixed
21684:
21685: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
21686: transaction parent passed
21687:
21688: 2001-10-24 parser
21689:
1.116 moko 21690: * src/classes/Makefile.am: makes
1.95 moko 21691:
21692: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
21693: isapi/pool_storage.h: pool_storage fixed
21694:
21695: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
21696: types/pa_vform.h: form fix_line_breaks
21697:
1.116 moko 21698: * src/targets/cgi/pool_storage.h: makes
1.95 moko 21699:
21700: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
21701: targets/cgi/pool_storage.h: makes
21702:
21703: * src/sql/pa_sql_driver.h: version
21704:
21705: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
21706: types/pa_vform.C, types/pa_vform.h: .am
21707:
21708: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
21709: this: DB_RMW Acquire write locks instead of read locks when doing
21710: the retrieval. Setting this flag may decrease the likelihood of
21711: deadlock during a read-modify-write cycle by immediately
21712: acquiring the write lock during the read part of the cycle so
21713: that another thread of control acquiring a read lock for the same
21714: item, in its own read-modify-write cycle, will not result in
21715: deadlock
21716:
21717: * src/targets/isapi/parser3isapi.dsp: doc
21718:
21719: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
21720:
21721: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
21722:
21723: * src/: classes/hashfile.C, include/pa_db_connection.h,
21724: main/pa_db_connection.C: hashfile expired deleted from db when
21725: get & iterate
21726:
21727: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
21728: expiring 1
21729:
21730: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
21731:
21732: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
21733: db_connection not bothers with key when not returning expired
21734: data
21735:
21736: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
21737: types/pa_vhashfile.C: db_cursor constructor public now
21738:
21739: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
21740: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
21741: stamped, todo: put_element analize
21742:
21743: * src/: include/pa_db_connection.h, include/pa_string.h,
21744: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
21745: serialize. todo stamp
21746:
21747: 2001-10-23 parser
21748:
21749: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
21750: classes/image.C, classes/mail.C, classes/response.C,
21751: classes/string.C, classes/table.C, classes/xdoc.C,
21752: include/pa_config_fixed.h, include/pa_db_connection.h,
21753: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
21754: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
21755: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
21756: types/pa_vtable.C: ^hashfile.hash[]
21757:
21758: * src/: classes/hashfile.C, classes/xdoc.C,
21759: include/pa_config_fixed.h, main/pa_db_manager.C,
21760: main/pa_globals.C: ifdefs so it compiled without db
21761:
21762: * src/: classes/hashfile.C, include/pa_db_connection.h,
21763: include/pa_db_manager.h, main/pa_db_connection.C,
21764: main/pa_db_manager.C, types/pa_vhashfile.h:
21765: ^hashfile.transaction{code} ^hashfile:clear[filename]
21766: ^hashfile.delete[key]
21767:
21768: 2001-10-22 parser
21769:
21770: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
21771: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
21772:
21773: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
21774: classes/xnode.C, include/pa_charset_connection.h,
21775: include/pa_db_connection.h, include/pa_db_manager.h,
21776: include/pa_exception.h, include/pa_sapi.h,
21777: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21778: include/pa_stylesheet_connection.h,
21779: include/pa_stylesheet_manager.h,
21780: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21781: main/pa_db_connection.C, main/pa_db_manager.C,
21782: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
21783: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
21784: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
21785: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
21786: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
21787: types/types.dsp: hashfile 0
21788:
21789: * src/types/pa_vhashfile.C: z
21790:
21791: * src/: classes/classes.dsp, classes/hashfile.C,
21792: include/pa_config_fixed.h, main/execute.C,
21793: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
21794: types/pa_vhashfile.h, types/types.dsp: hashfile -100
21795:
21796: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
21797:
21798: * src/: include/pa_exception.h, include/pa_request.h,
21799: main/execute.C, main/pa_exception.C, main/pa_request.C,
21800: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21801: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
21802:
21803: 2001-10-19 parser
21804:
21805: * src/include/pa_pool.h: header
21806:
21807: * src/main/pa_pool.C: auto compiled on gcc
21808:
21809: * src/classes/image.C: comment
21810:
1.116 moko 21811: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 21812:
21813: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21814: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21815: types/pa_vxnode.h: xnode clone got freed
21816:
21817: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
21818: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
21819: can free up xalandomstring resulting from pool::transcode
21820:
21821: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
21822: include/pa_config_fixed.h, include/pa_exception.h,
21823: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
21824: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
21825: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
21826: to c++ exceptions 1xml configure fixed to exclude xalan-patch
21827: from non-xml compile
21828:
21829: * src/main/pa_request.C: pool:: context - get_context
21830:
21831: * src/: classes/classes.h, classes/date.C, classes/double.C,
21832: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
21833: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
21834: classes/string.C, classes/table.C, classes/void.C,
21835: include/pa_config_fixed.h, include/pa_exception.h,
21836: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
21837: main/compile.C, main/compile_tools.C, main/execute.C,
21838: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
21839: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
21840: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
21841: main/pa_string.C, main/pa_table.C, main/untaint.C,
21842: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21843: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
21844: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
21845: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
21846: types/pa_vstateless_class.h, types/pa_vtable.C,
21847: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
21848: exceptions 0
21849:
21850: * src/classes/classes.awk: $ removed
21851:
21852: 2001-10-18 parser
21853:
21854: * src/types/pa_vcookie.C: cookie:CLASS
21855:
21856: * src/main/main.dsp: project
21857:
21858: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
21859: set_document & ctor question "who owns document" solved
21860:
21861: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
21862:
21863: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
21864: main/pa_pool.C: encoding in dom creating funcs
21865:
21866: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
21867: be transformed now
21868:
21869: * src/classes/xdoc.C: dom created by create can be transformed now
21870:
21871: * src/classes/xdoc.C: z
21872:
21873: * src/classes/xdoc.C: comment
21874:
21875: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
21876: create now uses XercesDocumentBridge, appendChild&co now works
21877:
21878: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
21879: @ recompile
21880:
21881: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
21882: $origin @exception[
21883:
21884: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
21885: tag names forced to XML lang
21886:
21887: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
21888: leechy-found bugs in code&doc fixed
21889:
21890: 2001-10-17 parser
21891:
21892: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
21893: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
21894: n functionality preserved
21895:
21896: * src/types/pa_vimage.h: removed unused vimage::save
21897:
21898: 2001-10-16 parser
21899:
21900: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
21901:
21902: * src/classes/: xnode.C: removed few dom returns & changed op.txt
21903:
21904: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
21905:
21906: * src/classes/image.C: image.copy tolerance
21907:
21908: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
21909: ineffective, but works for small paleted image
21910:
21911: * src/types/pa_vimage.C: comment
21912:
21913: * src/classes/image.C: gd size/resize bugfix
21914:
21915: * src/: classes/classes.dsp, main/main.dsp,
21916: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21917: types/types.dsp: ident >nul 2>&1
21918:
21919: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
21920: systems
21921:
21922: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
21923: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
21924:
21925: 2001-10-15 parser
21926:
21927: * src/main/execute.C: z
21928:
21929: * src/classes/: xdoc.C: !::create{qualifiedName}
21930:
21931: * src/types/pa_vxnode.C: document_type_node.
21932: !readonly attribute DOMString name
21933: !notation_node.
21934: !readonly attribute DOMString publicId
21935: !readonly attribute DOMString systemId
21936:
1.116 moko 21937: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
21938: ::write badly passed string too transparently [failed to
21939: intercept it]
1.95 moko 21940:
21941: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
21942: include/pa_request.h, main/pa_sql_driver_manager.C,
21943: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21944: types/pa_vxnode.h: DOM1 major addtion, only few
21945: attributes/methods left
21946:
21947: 2001-10-13 parser
21948:
21949: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21950: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
21951: in main handler
21952:
21953: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
21954: cleanups & frees order
21955:
21956: * src/types/pa_vcode_frame.h: couple comments
21957:
21958: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
21959: transparent enough to handle hash if creation&passing
21960:
21961: * src/: include/pa_config_fixed.h, main/execute.C,
21962: main/pa_exception.C: noticed that vcodeframe not transparent
21963: enough, would change now
21964:
21965: 2001-10-12 parser
21966:
21967: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
21968: fixed. initialization&free on each thread!
21969:
21970: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
21971: handling changed: now type of default param analized always, not
21972: only at problem time, thus helping early problem spotting
21973:
21974: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
21975: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
21976: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21977: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
21978: multithread bug fixed. initialization&free on each thread!
21979:
21980: 2001-10-11 parser
21981:
21982: * src/classes/xnode.C: xnode.selectSingle now
21983:
21984: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
21985: include/pa_pool.h, include/pa_stylesheet_connection.h,
21986: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
21987: convertors out of Pool into Exception
21988:
21989: * src/main/pa_string.C: const
21990:
21991: * src/: include/pa_string.h, main/pa_string.C: restructured string:
21992: linked pieces of same language together prior to String::replace
21993:
21994: * src/classes/hash.C: !^hash.add[addme]
21995: !^hash.sub[subme]
21996: !^a.union[b] = new
21997: !^a.intersection[b] = new
21998: !^a.intersects[b] = bool
21999:
22000: * src/classes/hash.C: !^hash::append[append_from]
22001:
22002: * src/: classes/hash.C, types/pa_vhash.h:
22003: !^hash::create[[copy_from]]
22004:
22005: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
22006: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
22007: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
22008: fixed. got rid of empty_string, which caused errors - it hasnt
22009: exception but somebody[value.bark] tried to throw it on it's pool
22010:
1.116 moko 22011: * src/include/pa_config_auto.h.in: makes
1.95 moko 22012:
22013: 2001-10-10 parser
22014:
22015: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
22016:
22017: * src/main/: compile.tab.C, compile.y: ^a[
22018:
22019: @next_method << now unclosed ] would be reported here
22020:
22021: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
22022: compile error
22023:
22024: 2001-10-09 parser
22025:
1.116 moko 22026: * src/: classes/Makefile.am, main/Makefile.am,
22027: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 22028:
22029: * src/classes/Makefile.am: makes
22030:
22031: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
22032: win32 errors intercepted [xalan transformer patched and
22033: incorporated]
22034:
22035: * src/: classes/classes.dsp, classes/xdoc.C,
22036: include/pa_stylesheet_connection.h, main/main.dsp,
22037: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22038: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
22039: patches starting
22040:
22041: * src/classes/: string.C, table.C: ^string.save[file]
22042:
22043: * src/classes/: date.C, table.C: calendar moved to date
22044:
22045: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
22046: string/table] now
22047:
22048: * src/classes/: op.C, table.C: z
22049:
22050: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
22051: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
22052: types/pa_vxnode.h: table:menu & op for delims made allowed not to
22053: be code [be string..]
22054:
22055: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
22056: table.C: lots of
22057: params->as_int/double/as_string/as_junction/as_no_junction
22058: messages added
22059:
22060: 2001-10-08 parser
22061:
22062: * src/: classes/date.C, classes/image.C, classes/string.C,
22063: classes/table.C, classes/void.C, include/pa_request.h:
22064: params->as_int/double message added
22065:
22066: * src/classes/image.C: image:circle [and round arc] uses Bresenham
22067:
22068: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
22069: image:sector removed image:html internal "line-*" attribs
22070:
22071: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
22072: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
22073:
22074: * src/types/pa_vcookie.C: removing cookie made more netscape-like
22075: way
22076:
22077: * src/: classes/file.C, classes/form.C, main/pa_common.C,
22078: main/untaint.C: header untainting to UL_HTTP_HEADER,
22079: UL_MAIL_HEADER made nonforced [only tainted pieces]
22080:
22081: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
22082: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
22083: @ SAPI::log
22084:
22085: * src/main/untaint.C: \r to ' ' in origins mode
22086:
22087: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
22088: set]
22089:
22090: * src/: classes/xdoc.C, include/pa_config_fixed.h,
22091: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
22092: nonstandard liaison freed up
22093:
22094: 2001-10-07 parser
22095:
22096: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
22097: project
22098:
22099: 2001-10-05 parser
22100:
22101: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
22102: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
22103: from outputing to cerr. lots of "todos"
22104:
22105: * src/main/untaint.C: http_header tainting more gentle with
22106: enquoting now
22107:
22108: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
22109: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
22110: xml errorhandler. fixed string.replace a little, read @test
22111:
22112: * src/main/pa_string.C: found replace bug - first_that_starts(char
22113: *) does not have limit, and looks further eos, fixing....
22114:
22115: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
22116:
22117: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
22118:
22119: * src/main/: pa_charset_connection.C: ctype another mem clear
22120: bugfix
22121:
1.116 moko 22122: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
22123: $result[^[$p^]z] now works fine
1.95 moko 22124:
22125: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
22126: wrong. fixed it
22127:
22128: * src/main/pa_charset_connection.C: unicode zero pair at the beging
22129: of totable appered to be vital
22130:
22131: 2001-10-04 parser
22132:
22133: * src/classes/image.C: ^image.length[text]
22134:
22135: 2001-10-03 parser
22136:
22137: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
22138:
22139: * src/main/pa_request.C: restored pcre defaulting in request
22140: [mindlessly "optimized" yesterday] comment left
22141:
22142: 2001-10-02 parser
22143:
22144: * src/: main/pa_charset_manager.C,
22145: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
22146: needed
22147:
22148: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
22149: forgot non-xml pool.*charset needed
22150:
22151: * src/classes/table.C: # config comments fixed
22152:
22153: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
22154: charset_connection #comment now
22155:
22156: * src/: classes/classes.dsp, types/types.dsp: release projects
22157: options fixed to use release msvcrt lib
22158:
22159: * src/main/pa_charset_connection.C: pcre tables now const inside
22160: removed default - pcre handles that internally fixed bug on
22161: not-cleaning tables [previously was calloced, now member]
22162:
22163: * src/: include/pa_request.h, main/pa_charset_connection.C,
22164: main/pa_request.C, types/pa_vstring.h: pcre tables now const
22165: inside removed default - pcre handles that internally fixed bug
22166: on not-cleaning tables [previously was calloced, now member]
22167:
22168: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
22169: tested charset reload on file change @ apache version = OK tested
22170: freeing up prev encoding on adding new = OK
22171:
22172: 2001-10-01 parser
22173:
22174: * src/main/pa_charset_connection.C: removed entitify external hack
22175: [internal installed]
22176:
1.116 moko 22177: * src/main/Makefile.am: makes+removed dtd
1.95 moko 22178:
22179: * src/: include/pa_charset_connection.h,
22180: include/pa_charset_manager.h,
22181: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
22182: main/pa_charset_connection.C, main/pa_charset_manager.C,
22183: main/pa_request.C: charset loading & caching mech 0
22184:
22185: * src/: include/pa_stylesheet_connection.h,
22186: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
22187: main/pa_globals.C, main/pa_request.C: would make charset loading
22188: & caching mech now
22189:
22190: 2001-09-30 parser
22191:
22192: * src/main/pa_request.C: forgot to fill toTable
22193:
22194: * src/: include/pa_config_fixed.h, main/pa_request.C: started
22195: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
22196: failed on win32 for now..
22197:
22198: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
22199: now charsets table configuration variable is: CHARSETS
22200:
22201: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
22202: ctype with unicode 1. todo: no П entities on output somehow
22203:
22204: * src/: classes/file.C, classes/op.C, classes/string.C,
22205: include/pa_request.h, main/pa_request.C: started ctype with
22206: unicode values
22207:
22208: 2001-09-28 parser
22209:
22210: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
22211: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
22212: string passed AS-IS now
22213:
22214: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
22215: way of user-configuring... todo: implement
22216:
22217: 2001-09-27 parser
22218:
22219: * src/classes/table.C: table.sort changed to sort table itself
22220:
22221: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
22222: X^.getElementsByTagName[tagname] = array of xnode
22223: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
22224: nodes removed - regretfully not supported @ xalan. maybe someday
22225: would reimplement, if needed.
22226:
22227: win32build system: solved long waiting anti-non-started-apache
22228: problem
22229:
22230: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
22231: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
22232: types/types.dsp: win32 ident make system so not to rebuild
22233: library [ident.C.new]
22234:
22235: 2001-09-26 parser
22236:
22237: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
22238: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
22239: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22240: types/pa_vxnode.C, types/types.dsp: z
22241:
22242: * src/classes/classes.C: forgot one non-xml check
22243:
1.116 moko 22244: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
22245: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 22246:
22247: * src/targets/cgi/parser3.C: z
22248:
22249: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
22250: targets/isapi/parser3isapi.C: #ifdef SMTP
22251:
22252: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
22253: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
22254: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
22255: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
22256: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
22257: types/types.dsp: xdoc&xnode now
22258:
22259: * src/: classes/classes.C, classes/classes.awk,
22260: classes/classes.dsp, classes/classes.h, classes/date.C,
22261: classes/dnode.C, classes/dnode.h, classes/dom.C,
22262: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
22263: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
22264: classes/op.C, classes/response.C, classes/string.C,
22265: classes/table.C, classes/void.C, include/pa_array.h,
22266: include/pa_common.h, include/pa_config_fixed.h,
22267: include/pa_config_includes.h, include/pa_dictionary.h,
22268: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
22269: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
22270: include/pa_socks.h, include/pa_sql_connection.h,
22271: include/pa_sql_driver_manager.h, include/pa_stack.h,
22272: include/pa_string.h, include/pa_stylesheet_connection.h,
22273: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
22274: include/pa_xslt_stylesheet_manager.h, main/compile.C,
22275: main/compile.y, main/compile_tools.C, main/compile_tools.h,
22276: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
22277: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
22278: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
22279: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
22280: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
22281: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
22282: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
22283: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
22284: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
22285: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
22286: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
22287: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
22288: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22289: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
22290: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
22291: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
22292: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
22293: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
22294: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
22295: types/pa_vmethod_frame.h, types/pa_vobject.h,
22296: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
22297: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
22298: types/pa_vstateless_object.h, types/pa_vstring.C,
22299: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
22300: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
22301: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
22302: main.dsp splitted to main+classes+types along to .am
22303:
22304: * src/classes/Makefile.am: removed useless var
22305:
22306: * src/: classes/classes.cmd, main/main.dsp,
22307: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
22308: main.dsp
22309:
22310: 2001-09-25 parser
22311:
22312: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
22313: 1251 though, todo ICU
22314:
1.116 moko 22315: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 22316: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 22317: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
22318: types/pa_vdom.h: xml configure makes
1.95 moko 22319:
22320: 2001-09-24 parser
22321:
1.116 moko 22322: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
22323: types/Makefile.am: makes
1.95 moko 22324:
1.116 moko 22325: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 22326:
22327: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
22328: started unix makes update
22329:
22330: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
22331: started unix makes update
22332:
22333: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
22334:
22335: * src/types/pa_value.h: z
22336:
22337: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
22338: bugs with usinge hash/table in expressions
22339:
22340: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
22341: resolved conflicts fixed [const]
22342:
22343: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
22344: classes/table.C, include/pa_request.h, include/pa_sapi.h,
22345: main/compile.C, main/compile.tab.C, main/compile.y,
22346: main/compile_tools.h, main/main.dsp, main/pa_common.C,
22347: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
22348: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
22349: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
22350: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
22351: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
22352: with before_xml [merge2 actually didn't happen - i've created
22353: tags on wrong branch. so this merge is in fact re-merge]
22354:
22355: 2001-09-21 parser
22356:
22357: * src/: main/main.dsp, targets/cgi/parser3.dsp,
22358: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
22359: produced "" in make file and sadly wrong interpreted on load]
22360:
1.116 moko 22361: * src/: classes/classes.h, classes/hash.C, classes/op.C,
22362: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
22363: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
22364: include/pa_sql_driver_manager.h, include/pa_string.h,
22365: main/compile.tab.C, main/main.dsp, main/pa_common.C,
22366: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
22367: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 22368:
22369: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
22370: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
22371: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
22372: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
22373: main/pa_pool.C, main/pa_request.C,
22374: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
22375: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22376: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
22377: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
22378: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
22379: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
22380: types/pa_vrequest.C, types/pa_vresponse.h,
22381: types/pa_vstateless_class.C, types/pa_vstring.C,
22382: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
22383: created new projects for sql drivers [planning to remove sql
22384: drivers from main cvs project] first, will join latest changes
22385:
22386: * src/classes/: dom.C: defaulted dom writing methods encoding to
22387: pool.get_charset
22388:
22389: * src/classes/dom.C: defaulted dom writing methods encoding to
22390: pool.get_charset
22391:
22392: * src/include/pa_pool.h: defaulted dom writing methods encoding to
22393: pool.get_charset
22394:
22395: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
22396: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
22397: methods encoding to pool.get_charset
22398:
22399: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
22400: transcoder were created right "unsupported encoding" message.
22401: not @ set time, but @ use time, so until xml output functions
22402: .string, .file, .save used - no encoding name check occur
22403:
22404: reduced transcode buffer size to 60 fixed pool cleanup - no
22405: registration needed, pools are officially destructured
22406:
22407: 2001-09-20 parser
22408:
22409: * src/classes/image.C: 20K preload on jpg measure [image::measure]
22410:
22411: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
22412: $MAIN:DEFAULTS.content-type[$.charset[here]]
22413:
22414: * src/: classes/dnode.C, classes/dom.C,
22415: include/pa_config_includes.h, include/pa_globals.h,
22416: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
22417: main/pa_pool.C, targets/cgi/parser3.dsp,
22418: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22419: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
22420: Pool::transcode 0
22421:
22422: * src/classes/dom.C: dom. string save file moved output xml options
22423: to last param and made it optional
22424:
22425: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
22426: dnodes
22427: !$attributenode.specified = boolean
22428: true if the attribute received its value explicitly
22429: in the XML document,
22430: or if a value was assigned programatically with the
22431: setValue function.
22432: false if the attribute value came from the default value
22433: declared in the document's DTD.
22434: !$pinode.target = target of this processing instruction
22435: XML defines this as being the first token following the
22436: markup
22437: that begins the processing instruction.
22438: XPath:
22439: !^node.select[xpath/query/expression] = hash of 0->node0
22440: 1->node1
22441: !^node.select-single[xpath/query/expression] = first node if
22442: any
22443:
22444: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
22445: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
22446: some 'const's added
22447:
22448: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
22449: expression context now, there value = size and boolean value
22450: size!=0
22451:
22452: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
22453: can be used in expression context now, there value = size and
22454: boolean value size!=0
22455:
22456: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
22457: types/pa_vstring.h: dnode .file .string .save moved back to dom
22458: due to strange xalan bug
22459:
22460: 2001-09-18 parser
22461:
22462: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
22463: classes/image.C, classes/op.C, classes/table.C,
22464: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
22465: include/pa_sql_driver_manager.h, main/compile.C,
22466: main/compile.tab.C, main/compile.y, main/compile_tools.h,
22467: main/execute.C, main/pa_common.C, main/pa_request.C,
22468: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
22469: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22470: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
22471: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
22472: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
22473: before_xml branch ^if(def $hash) now true only when
22474: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
22475:
22476: * src/: classes/op.C, main/execute.C: operators self changed to
22477: root ^for variable context changed to self
22478:
22479: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
22480: dnode 1
22481:
22482: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
22483: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
22484:
22485: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
22486: poly* fixed
22487:
22488: 2001-09-17 parser
22489:
22490: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
22491: types/pa_vdom.h: started dnode+dom
22492:
22493: dnode DOM methods: $node.name $node.value
22494: ...others...
22495:
22496: ^node.xpath[/rates/USD] = hash
22497: $hash[
22498: $.0[node0]
22499: $.1[node1]
22500: ]
22501:
22502: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
22503: applies to all linear primitives
22504:
22505: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
22506: include/pa_stylesheet_connection.h, main/main.dsp,
22507: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
22508: types/pa_vimage.h: started dnode DOM: $node.name
22509: $node.value ...others... ^node.xpath[/rates/USD] = hash
22510: dom(dnode)
22511:
22512: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
22513: main/compile.y, main/compile_tools.h, main/execute.C,
22514: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
22515: in expression compound($aa.zz.xx) names now can have minus '-' in
22516: name after '.'
22517:
22518: 2001-09-15 parser
22519:
22520: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
22521: image: $line-width ^line(...)[**** style]
22522:
22523: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
22524: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
22525: pool_storage - cleanups first, allocations second. apache wisely
22526: does just like that
22527:
22528: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
22529: rewritten using template, no bugs now
22530:
22531: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
22532: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
22533: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
22534: poorly started isapi pool_storage, would rewrite using template
22535: now
22536:
22537: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
22538: include/pa_stylesheet_connection.h, main/main.dsp,
22539: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
22540: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
22541: xalan objects freed up [introducing Pool::register_cleanup]
22542:
22543: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
22544: comments
22545:
22546: 2001-09-14 parser
22547:
22548: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
22549: z
22550:
22551: * src/: classes/dom.C, classes/file.C, classes/image.C,
22552: classes/mail.C, include/pa_common.h,
22553: include/pa_sql_driver_manager.h, include/pa_string.h,
22554: include/pa_stylesheet_connection.h,
22555: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
22556: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
22557: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
22558: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
22559: compiled&cached
22560:
22561: 2001-09-13 parser
22562:
22563: * src/: classes/dom.C, classes/file.C, classes/image.C,
22564: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
22565:
22566: * src/classes/dom.C: dom:file content-type(.method)
22567:
22568: * src/: include/pa_common.h, include/pa_globals.h,
22569: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
22570: string now more informative error messages
22571:
22572: * src/: include/pa_globals.h, include/pa_request.h,
22573: main/pa_request.C, targets/cgi/parser3.C,
22574: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
22575: ParserSiteConfig .../parser3.conf
22576:
22577: cgi&isapi looks for {configure|c:\windows}/parser3.conf
22578:
22579: 2001-09-12 parser
22580:
22581: * src/: classes/op.C, include/pa_sql_driver_manager.h,
22582: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
22583: precise error reporting: "connection string must start with
22584: protocol://" now
22585:
22586: * src/main/compile.tab.C: fixed - subname code parts actually []
22587: braced
22588:
22589: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
22590: lexer on LS_USER level did [] matching without setting nestage,
22591: introduced special LS_NAME_SQUARE_PART state
22592:
22593: 2001-09-11 parser
22594:
22595: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
22596: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
22597: languages+=xml
22598:
22599: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
22600:
22601: * src/classes/dom.C: ^dom:save/string/file[output options] output
22602: options: $.method[xml|html|text] detection fixed
22603:
22604: * src/types/pa_vdom.h: messages
22605:
22606: * src/classes/dom.C: ^dom:save/string/file[output options] output
22607: options: $.method[xml|html|text] detection fixed
22608:
22609: 2001-09-10 parser
22610:
22611: * src/classes/dom.C: ^dom:save/string/file[output options] output
22612: options: $.method[xml|html|text] $.encoding[windows-1251|...]
22613:
22614: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
22615: added]
22616:
22617: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
22618: ^dom.xslt[stylesheet filename] 0
22619:
22620: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
22621: ^dom.xslt[stylesheet filename] -1 doc is lying
22622:
22623: * src/classes/dom.C: ^dom.file[encoding] = file
22624:
22625: * src/classes/: dom.C: ^dom.string[encoding] 1
22626: ^dom.save[encoding;filename]
22627:
22628: * src/classes/dom.C: ^dom.string[] 0
22629:
22630: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
22631:
22632: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
22633: types/pa_vform.h: ^dom.save[b.xml] 0
22634:
22635: 2001-09-08 parser
22636:
22637: * src/types/pa_vform.C: $form:tables.name.field
22638:
22639: 2001-09-07 parser
22640:
22641: * src/classes/table.C: table:empty removed, superceded by ^if(def
22642: $table)...
22643:
22644: * src/targets/cgi/parser3.C: z
22645:
22646: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
22647: from '' to int/double is 0]
22648:
22649: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
22650: $table) is false when table is empty
22651:
22652: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
22653: !$form:tables $atable[$form:tables.a]
22654: ^atable.menu{a=$atable.element}[,]
22655:
22656: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
22657: types/pa_vform.h, types/pa_vhash.h: !$form:fields
22658:
1.116 moko 22659: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 22660: types/pa_vdom.h, types/pa_vform.C: merged with successful start
22661: of dom
22662:
22663: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
22664: types/pa_vform.C, types/pa_vform.h: z
22665:
22666: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
22667: element [not last]
22668:
1.116 moko 22669: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 22670: types/pa_vdom.h: introducing dom. dom:load[a.xml]
22671:
22672: 2001-09-06 parser
22673:
22674: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
22675: table with one column 'element' and two rows: 1 and 2
22676:
22677: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
22678: table with one column 'element' and two rows: 1 and 2
22679:
22680: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
22681: bad int/double conversions, and now $form:nonexistent.int(88)
22682: would return 88
22683:
22684: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
22685: types/pa_vhash.h: now there's special hash key '_default'
22686: [instead of ^_default method] $hash[ $.a[1] $.b[2]
22687: $._default[xx] ] $hash.c
22688:
22689: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
22690: fixed [thanks, fif], ^; were treated there non-literally
22691:
22692: * src/doc/doxygen.cfg: merged new default options from 1.2.10
22693: doxygen
22694:
22695: * src/: classes/image.C, classes/op.C, classes/string.C,
22696: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
22697: types/pa_vtable.C: few #ifndef DOXYGEN
22698:
22699: 2001-09-05 parser
22700:
22701: * src/classes/: string.C, table.C: sql options can be void [same as
22702: image:html the other day]
22703:
22704: * src/targets/cgi/Makefile.am: .am undo
22705:
22706: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22707: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
22708: macro expantion on param, simply qoutes whatever passed, undone
22709:
22710: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22711: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
22712: STRINGIZE(name) #name invented
22713:
22714: * src/: classes/op.C, include/pa_sql_driver_manager.h,
22715: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
22716: MAIN_SQL_DRIVERS_NAME "drivers"
22717:
22718: moved to be availible to all users
22719:
22720: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
22721: SQL_DRIVER_CREATE_FUNC_NAME
22722:
22723: * src/classes/mail.C: MAIN:MAIL check fixed
22724:
22725: 2001-09-04 parser
22726:
22727: * src/classes/image.C: image.html now can accept void params
22728:
22729: * src/targets/isapi/parser3isapi.C: z
22730:
22731: * src/targets/cgi/parser3.C: full_file_spec bug
22732:
22733: * src/targets/cgi/parser3.C: getenvcheck
22734:
22735: * src/targets/cgi/parser3.C: zz
22736:
22737: * src/targets/cgi/parser3.C: zzz
22738:
22739: * src/classes/date.C: date
22740:
22741: * src/classes/date.C: date:sql-string is now without ''
22742:
1.116 moko 22743: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 22744: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
22745: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
22746:
1.116 moko 22747: * src/include/pa_config_auto.h.in: makes
1.95 moko 22748:
22749: 2001-09-03 parser
22750:
22751: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
22752:
22753: 2001-09-01 parser
22754:
22755: * src/classes/image.C: letter_spacing
22756:
22757: * src/classes/image.C: image: font params changed
22758:
22759: * src/classes/image.C: image: as_int as_string used
22760:
22761: * src/types/pa_vmethod_frame.h: $result[] now gets properly
22762: analized
22763:
22764: 2001-08-31 parser
22765:
22766: * src/targets/cgi/parser3.C: z
22767:
1.116 moko 22768: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
22769: cygwin
1.95 moko 22770:
22771: * src/classes/void.C: void:int/double += (default)
22772:
22773: * src/classes/image.C: image:font added space param image:font
22774: changed charwidth alg, added kerning const[for now]
22775:
22776: * src/classes/: string.C, table.C: string:int/double (defaults)
22777:
22778: 2001-08-29 parser
22779:
22780: * src/main/pa_exception.C: exception redundant debug info
22781:
22782: 2001-08-28 parser
22783:
22784: * src/classes/image.C: image error msgs
22785:
22786: * src/classes/image.C: image: gifsize little endian
22787:
22788: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
22789: doxygeneration
22790:
22791: * src/: classes/Makefile.am, main/Makefile.am,
22792: targets/cgi/Makefile.am, types/Makefile.am: .am-s
22793:
22794: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
22795: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
22796:
22797: * src/main/compile.C: NO_STRING_ORIGIN check2
22798:
22799: * src/classes/table.C: NO_STRING_ORIGIN check
22800:
22801: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
22802: storage class specifiers invalid in friend function declarations
22803:
22804: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
22805: main/untaint.C, targets/cgi/parser3.C,
22806: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
22807: case of limit
22808:
22809: * src/: classes/file.C, main/pa_common.C: file:move
22810: autocreate/remove dest/src dir
22811:
22812: * src/: classes/string.C, include/pa_dictionary.h,
22813: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
22814: main/untaint.C: pa_directory speeded up. moved zero 'from' check
22815: to directory constructor. string:replace
22816:
22817: 2001-08-27 parser
22818:
22819: * src/classes/image.C: fixed jpgsize alg
22820:
22821: * src/classes/image.C: fixed jpgsize alg
22822:
22823: * src/main/pa_exception.C: z
22824:
22825: * src/main/pa_common.C: removed debug info from pa_common
22826:
22827: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
22828: [auto.p from current dir loading]
22829:
1.116 moko 22830: * src/: main/pa_common.C, main/pa_exception.C,
22831: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
22832: for solaris -lsocket
1.95 moko 22833:
22834: 2001-08-24 parser
22835:
22836: * src/targets/cgi/parser3.C: not cgi extra \n 3
22837:
22838: * src/targets/cgi/parser3.C: not cgi extra \n 2
22839:
22840: * src/targets/cgi/parser3.C: not cgi extra \n
22841:
22842: * src/main/pa_sql_driver_manager.C: z
22843:
22844: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
22845: sql* removed services from disconnect - cross-request ideological
22846: probs.
22847:
22848: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
22849: cross-request ideological probs. oracle - fixed bug: cs
22850: allocated on request.pool and got freed before disconnect
22851:
22852: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
22853: mallocs fixed
22854:
22855: 2001-08-23 parser
22856:
22857: * src/classes/file.C: minor bug in file:save fixed
22858:
22859: * src/main/pa_sql_driver_manager.C: oracle: dlink
22860:
22861: 2001-08-22 parser
22862:
22863: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
22864: types/pa_vfile.h: file:load|save[text|binary;
22865:
22866: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
22867:
22868: 2001-08-21 parser
22869:
22870: * src/classes/: file.C, table.C: ^file:list
22871:
22872: 2001-08-20 parser
22873:
22874: * src/: main/compile.tab.C, main/compile.y,
22875: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
22876: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
22877: recousively caused problems: inc incremeted 123 literal!! fixed
22878:
22879: 2001-08-10 parser
22880:
22881: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
22882:
22883: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22884: added
22885:
22886: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22887: added
22888:
22889: * src/classes/table.C: table:sort restored [it was bad test :(]
22890:
22891: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
22892: ''
22893:
22894: * src/main/: pa_request.C: wanted to make const int
22895: MAX_EXECUTE_SECONDS=1;
22896:
22897: but couldnt, set_callback_and_alarm appeared to be not exported
22898: :(
22899:
22900: * src/main/pa_string.C: string.match hanged on. there were a hang
22901: check but it weren't wise enough
22902:
22903: @parse[dateString][tmp]
22904: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
22905: #end
22906:
22907: @main[] ^parse[2001-02-03]
22908:
22909: * src/classes/: table.C: table:sort now default desc
22910:
22911: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
22912: table.sort now creates new sorted table
22913:
22914: 2001-08-09 parser
22915:
22916: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
22917:
22918: * src/classes/hash.C: hash:_default now [was hash:default]
22919:
22920: * src/classes/op.C: case without switch check added
22921:
22922: * src/types/pa_vcookie.C: cookie name&value origins added, more
22923: precise $ORIGINS(1)
22924:
22925: * src/main/Makefile.am: .am
22926:
22927: * src/classes/void.C: void: int double copy/paste from int: bug
22928: fixed
22929:
22930: * src/classes/void.C: void: int double copy/paste from int: bug
22931: fixed
22932:
22933: 2001-08-07 parser
22934:
22935: * src/: classes/double.C, classes/int.C, classes/string.C,
22936: classes/table.C, include/pa_globals.h, main/pa_globals.C:
22937: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
22938: string, table
22939:
22940: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
22941: srand made working
22942:
22943: 2001-08-06 parser
22944:
22945: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
22946: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22947: main/compile.tab.C, main/compile.y, main/pa_array.C,
22948: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
22949: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
22950:
22951: * src/main/pa_exec.C: exec win32 real filename
22952:
22953: * src/classes/file.C: exec stderr out
22954:
22955: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
22956:
22957: 2001-08-03 parser
22958:
22959: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
22960:
22961: 2001-08-02 parser
22962:
22963: * src/: classes/string.C, classes/table.C, include/pa_array.h,
22964: main/execute.C, main/pa_exec.C: introducing Array_iter
22965:
22966: * src/main/execute.C: detected quick_get recursion bug. changed to
22967: get@execute, but needs array iterator, separate from array to
22968: avoid it & use caching
22969:
22970: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
22971: bug fixed
22972:
22973: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
22974: main/execute.C, main/pa_globals.C: found another multithread bug
22975: in op.C (last, last global var killed) :)
22976:
22977: 2001-08-01 parser
22978:
22979: * src/: include/pa_dictionary.h, include/pa_globals.h,
22980: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
22981: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22982: main/untaint.C: speeded up typo-html replacements. introducing
22983: Dictionary with first-char caching
22984:
22985: 2001-07-31 parser
22986:
22987: * src/types/Makefile.am: pa_vtable.C added to .am
22988:
22989: * src/main/compile.tab.C: added, so that could be compiled even on
22990: non-bison-enabled platforms
22991:
22992: 2001-07-28 parser
22993:
22994: * src/classes/table.C: table:hash always produces hash, when can't
22995: - empty
22996:
22997: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
22998: skipped \n
22999:
23000: 2001-07-27 parser
23001:
23002: * src/classes/: double.C, int.C, string.C: provided meaningful msg
23003: on int/double/string :sql without result and default
23004:
23005: 2001-07-26 parser
23006:
23007: * src/classes/op.C: fixed bad multithread bug with strangly global
23008: OP
23009:
23010: * src/main/compile.y: $man[$.age[zzz]] 0
23011:
23012: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
23013: creation syntax problem persists. restored $: for a while.
23014: thinking of $man[$.age[zzz]] syntax now
23015:
23016: * src/: classes/double.C, classes/int.C, classes/string.C,
23017: include/pa_opcode.h, main/compile.C, main/compile.y,
23018: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
23019: types/pa_vmethod_frame.h, types/pa_wcontext.h,
23020: types/pa_wwrapper.h: fixing :: realization #1
23021:
23022: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
23023: main/compile_tools.h, main/execute.C, main/pa_request.C,
23024: types/pa_vmethod_frame.h: introducing :: this is constructor call
23025: prefix. ordinary : remains for static accesses
23026:
23027: 2001-07-25 parser
23028:
23029: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
23030: fields 2. methods 3. columns
23031:
23032: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
23033: quote. optimized double&int tostring-s
23034:
23035: * src/main/: compile.C, compile.y, compile_tools.h: allowed
23036: whitespace before first method decl
23037:
23038: * src/classes/table.C: allowed nontable result in table:sql,
23039: results in empty table
23040:
23041: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
23042: lines before first method decl
23043:
23044: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
23045: types/pa_vtable.h: ^table.record[] now $table.fields
23046:
23047: * src/main/compile.y: $var[] is now empty string, not void
23048:
23049: * src/main/: compile.y, execute.C: $var[] is now empty string, not
23050: void
23051:
23052: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
23053: main/pa_globals.C: match replace code context moved to implicit
23054: $match context
23055:
23056: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
23057: main/compile_tools.h, main/execute.C: with killed, code storage
23058: introduced with former 'with' syntax
23059:
23060: 2001-07-24 parser
23061:
23062: * src/: main/compile.C, main/execute.C, main/pa_string.C,
23063: types/pa_value.h: first get_element, next get operator
23064:
23065: * src/main/compile.y: removed @end handling
23066:
23067: * src/main/: compile.C, compile.y: @end handling method2
23068:
23069: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
23070: file:move
23071:
23072: * src/main/pa_common.C: file_read close @ eof when imgsize bug
23073: fixed
23074:
23075: 2001-07-23 parser
23076:
23077: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
23078: driver
23079:
23080: * src/classes/hash.C: changed sql driver query interface
23081:
23082: * src/: classes/hash.C, classes/string.C, classes/table.C,
23083: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
23084: changed sql driver query interface
23085:
23086: 2001-07-20 parser
23087:
23088: * src/types/pa_vrequest.C: X!$browser:type
23089:
23090: * src/: classes/file.C, classes/string.C, include/pa_string.h,
23091: main/execute.C, main/pa_string.C, types/pa_valiased.C,
23092: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
23093: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
23094: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
23095: types/pa_vobject.h, types/pa_vrequest.C,
23096: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
23097: ^class:method dynamic calls allowed. ^BASE.method call disabled.
23098: BASE element globally removed
23099:
23100: 2001-07-18 parser
23101:
23102: * src/classes/file.C: file:exec/cgi msg
23103:
23104: * src/classes/file.C: $file:exit-code renamed to 'status'
23105:
23106: * src/: classes/file.C, main/pa_exec.C: file:exec
23107:
1.116 moko 23108: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
23109: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
23110: removed $id from *.in *.am
1.95 moko 23111:
23112: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
23113: abbrevations
23114:
23115: * src/: classes/date.C, classes/mail.C, classes/math.C,
23116: classes/string.C, classes/table.C, include/pa_globals.h,
23117: include/pa_string.h, main/execute.C, main/pa_globals.C,
23118: main/pa_request.C, main/pa_string.C, main/untaint.C,
23119: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
23120: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
23121: $ORIGINS(1) output tracing mode
23122:
23123: 2001-07-13 parser
23124:
23125: * src/: classes/double.C, classes/int.C, classes/string.C,
23126: include/pa_request.h, main/execute.C, main/pa_request.C:
23127: auto.p[@auto], /news/auto.p[no @auto], so that initializing
23128: second would not call first @auto
23129:
23130: * src/main/: execute.C, pa_request.C: order of MAIN parents was
23131: wrong, fixed
23132:
23133: 2001-07-12 parser
23134:
23135: * src/types/pa_value.h: pa_value.putelement modification of system
23136: classes prevented
23137:
23138: 2001-07-11 parser
23139:
23140: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
23141: table $piece
23142:
23143: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
23144: types/pa_vstateless_class.h: $file created by file:state +=
23145: .atime .mtime .ctime +found&fixed bug with exceptions on
23146: get_junction-created objects [they were on wrong pool]
23147:
23148: 2001-07-09 parser
23149:
23150: * src/main/untaint.C: qp wrong name
23151:
23152: * src/: classes/date.C, classes/string.C, classes/table.C,
23153: main/compile.y: date format 0
23154:
23155: 2001-07-07 parser
23156:
23157: * src/: classes/date.C, classes/table.C, include/pa_common.h,
23158: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
23159: roll table calendar
23160:
23161: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
23162: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
23163: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
23164: include/pa_request.h, main/main.dsp, types/pa_value.h,
23165: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
23166: string. todo: sql, calendar
23167:
23168: 2001-07-06 parser
23169:
23170: * src/: classes/math.C, include/pa_request.h, main/execute.C,
23171: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
23172:
23173: 2001-07-03 parser
23174:
23175: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
23176: classes/random.C, main/main.dsp: class random renamed to math,
23177: operators became methods
23178:
23179: * src/classes/op.C: pow sqrt
23180:
23181: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
23182:
23183: 2001-07-02 parser
23184:
23185: * src/classes/table.C: ^table.columns column renamed from 'name' to
23186: 'column'
23187:
23188: * src/classes/hash.C: ^hash.keys[]
23189:
23190: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
23191:
23192: * src/main/: compile.y, compile_tools.h: in expressions now allowed
23193: 'strings'
23194:
23195: 2001-06-29 parser
23196:
23197: * src/main/: execute.C: /0 %0 checkes ver 2
23198:
23199: * src/main/execute.C: /0 %0 checke
23200:
23201: * src/classes/Makefile.am: nothing - void
23202:
23203: * src/classes/table.C: empty strings @ sql
23204:
23205: 2001-06-28 parser
23206:
23207: * src/: classes/double.C, classes/file.C, classes/form.C,
23208: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
23209: classes/op.C, classes/random.C, classes/response.C,
23210: classes/string.C, classes/table.C, classes/void.C,
23211: main/compile.C, main/compile_tools.C, main/execute.C,
23212: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
23213: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
23214: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
23215: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
23216: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
23217: targets/isapi/parser3isapi.C, main/compile.y: */ static const
23218: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
23219: $";
23220:
23221: * src/: classes/double.C, classes/file.C, classes/form.C,
23222: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
23223: classes/op.C, classes/random.C, classes/response.C,
23224: classes/string.C, classes/table.C, classes/void.C,
23225: main/compile.C, main/compile.y, main/compile_tools.C,
23226: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
23227: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
23228: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
23229: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
23230: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 23231: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 23232:
23233: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
23234: $class:name: == ${class:name}:
23235:
23236: * src/classes/string.C: exactly one
23237:
23238: 2001-06-27 parser
23239:
23240: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
23241: types/pa_vvoid.h: nothing renamed to void
23242:
23243: * src/classes/op.C: ^switch ^case
23244:
23245: * src/main/compile.y: nothing renamed to void
23246:
23247: * src/: classes/hash.C, classes/table.C, main/compile.y,
23248: main/execute.C, main/main.dsp, main/pa_request.C,
23249: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
23250: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
23251: void
23252:
23253: * src/main/compile.y: lexer: $zzzz^zzzz were name part
23254:
23255: 2001-05-28 parser
23256:
23257: * src/doc/html2chm.cmd: removed >a
23258:
23259: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
23260: project options [some bugs]
23261:
23262: * src/doc/sources2html.cmd: z
23263:
23264: * src/: classes/classes.C, main/compile.C, main/compile.y,
23265: main/execute.C: operators are not in root class again
23266:
23267: 2001-05-24 parser
23268:
23269: * src/targets/cgi/parser3.dsp: project file
23270:
23271: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
23272: ^log ^exp
23273:
23274: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
23275: conversions in @exception[params]
23276:
23277: * src/main/pa_request.C: // no _ conversions in @exception[params]
23278:
23279: 2001-05-23 parser
23280:
23281: * src/main/pa_string.C: string cmp bug
23282:
23283: * src/classes/: mail.C, op.C: rem max 1000
23284:
23285: * src/: classes/op.C, main/compile.y: allow one empty line before
23286: LS_DEF_NAME
23287:
23288: 2001-05-22 parser
23289:
23290: * src/classes/op.C: if params code-required
23291:
23292: 2001-05-21 parser
23293:
23294: * src/types/pa_vstring.C: eoleof
23295:
23296: * src/classes/Makefile.am: .AM
23297:
23298: * src/classes/nothing.C: resultless ^sql moved to nothing:
23299:
23300: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
23301:
23302: * src/: classes/double.C, classes/nothing.C, classes/string.C,
23303: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
23304: types/pa_vunknown.h, classes/hash.C, main/compile.y,
23305: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
23306: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
23307: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
23308: 'nothing'
23309:
23310: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
23311: vstring::set_string
23312:
23313: * src/classes/: double.C, int.C, string.C: int,double;sql
23314:
23315: * src/: classes/hash.C, classes/int.C, classes/string.C,
23316: classes/table.C, include/pa_string.h, main/pa_string.C,
23317: types/pa_vstring.C, types/pa_vstring.h: started int:sql
23318:
23319: * src/: classes/classes.C, classes/hash.C, classes/op.C,
23320: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
23321: hash:sql moved to main trunc. operators.txt updated
23322:
23323: * src/classes/: hash.C, op.C, table.C: hash:sql
23324:
23325: * src/classes/op.C: z
23326:
23327: * src/: main/compile.C, classes/classes.C: 1
23328:
23329: * src/: classes/classes.C, main/compile.C, main/compile.y,
23330: main/execute.C: 0
23331:
23332: * src/main/execute.C: z
23333:
23334: * src/targets/cgi/parser3.C: z
23335:
23336: * src/targets/cgi/parser3.C: argv can be just "parser3". made
23337: site_auto_path "." in that case
23338:
23339: * src/targets/cgi/: parser3.C: z
23340:
23341: * src/main/pa_request.C: .am
23342:
23343: * src/: main/pa_request.C, targets/cgi/parser3.C:
23344: pcre_tables=pcre_default_tables;
23345:
23346: 2001-05-19 parser
23347:
23348: * src/main/pa_string.C: z
23349:
23350: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
23351: introducing String::cstr_bufsize, returns just size+1 for as_is
23352: target.
23353:
23354: * src/: main/untaint.C, targets/cgi/pa_pool.C,
23355: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
23356: used, 4* mem wasted
23357:
23358: * src/classes/string.C: root context in match replace body now
23359: unchanged
23360:
23361: * src/types/pa_value.h: parameter # 1 based
23362:
23363: * src/main/pa_common.C: common: actual filename '%s'
23364:
23365: * src/classes/string.C: z
23366:
23367: * src/classes/Makefile.am: classes/.am
23368:
23369: * src/classes/: Makefile.am: classes/.am
23370:
23371: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
23372: targets/cgi/pa_pool.C: classes/.am
23373:
23374: 2001-05-18 parser
23375:
1.116 moko 23376: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
23377: pa_threads.C ins
1.95 moko 23378:
23379: * src/targets/cgi/Makefile.am: .am pa_threads.C added
23380:
23381: 2001-05-17 parser
23382:
23383: * src/: classes/string.C, include/pa_config_fixed.h,
23384: include/pa_config_includes.h, main/compile.y,
23385: main/compile_tools.h, main/execute.C, main/pa_array.C,
23386: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
23387: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
23388: types/pa_vform.C: #include "pa_config_includes.h" removed from
23389: most .C
23390:
23391: * src/doc/html2chm.cmd: z
23392:
23393: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
23394: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
23395:
23396: * src/main/pa_sql_driver_manager.C: moved expiration to
23397: get_connection_from_cache
23398:
23399: * src/main/pa_sql_driver_manager.C: cache expiration bf
23400:
23401: * src/: classes/classes.h, include/pa_sql_connection.h,
23402: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
23403: cache expiration[use SQL_Driver::disconnect]
23404:
23405: * src/main/pa_table.C: table.locate current restored on "not found"
23406:
23407: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
23408: line no
23409:
23410: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
23411: ANTI_ENDLESS_EXECUTE_RECOURSION
23412:
23413: * src/: classes/op.C, include/pa_sql_connection.h,
23414: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
23415: sql/pa_sql_driver.h: fixed problem at last: 2connections own
23416: 1driver and set_services fight for driver::fservices. before fix
23417:
23418: * src/: classes/op.C, include/pa_config_fixed.h,
23419: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
23420: main/pa_sql_driver_manager.C: found problem at last: 2connections
23421: own 1driver and set_services fight for driver::fservices. before
23422: fix
23423:
23424: * src/: include/pa_config_fixed.h, include/pa_threads.h,
23425: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
23426: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
23427: pa_threads.C
23428:
23429: * src/include/pa_threads.h: removed targets/parser
23430:
23431: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
23432: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
23433: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
23434: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
23435: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
23436: headers
23437:
23438: * src/: classes/image.C, include/pa_sql_driver_manager.h,
23439: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
23440: order prevented sqlmanager to see MULTYTHREAD define
23441:
23442: * src/: include/pa_config_fixed.h, include/pa_threads.h,
23443: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
23444: put/gets
23445:
23446: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
23447: from hash.h
23448:
23449: * src/: classes/op.C, include/pa_sql_connection.h,
23450: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
23451: from cache ->set_services(&services);
23452:
23453: 2001-05-16 parser
23454:
23455: * src/targets/cgi/parser3.C: z
23456:
23457: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
23458: debug, #ifdefed some. would debug later, on more precise sample
23459: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
23460: $name.$tail[$tail!] $name.$tail } ok3
23461:
23462: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
23463: removed array debug. before vstring rebasing
23464:
23465: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
23466: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
23467: array debugged; adjusted
23468:
23469: * src/main/: pa_sql_driver_manager.C, pa_string.C:
23470: SQL_Driver_manager line no for connect/charset errors
23471:
23472: 2001-05-15 parser
23473:
23474: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
23475: main/pa_string.C: string+array made linear grows
23476:
23477: * src/: include/pa_string.h, main/pa_string.C,
23478: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
23479: grow lineary, not exponentialy
23480:
23481: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
23482: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
23483: with fullchunk cmps
23484:
23485: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
23486: 70041= 81
23487:
23488: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
23489: targets/cgi/parser3.C: detected huge mem allocation: size/times
23490: malloc 27809390/368771, calloc 3232/83. would test now
23491:
23492: * src/: classes/random.C, main/compile.y, main/execute.C,
23493: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
23494: numbered params had wrong name - for instance: bad error message
23495: in ^for[] bad body type. fixed
23496:
23497: 2001-05-14 parser
23498:
23499: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
23500: main/untaint.C: ^string.upper|lower[]
23501:
23502: 2001-05-11 parser
23503:
23504: * src/: classes/double.C, classes/image.C, classes/op.C,
23505: classes/string.C, classes/table.C, classes/unknown.C,
23506: main/execute.C, types/pa_value.h, types/pa_vbool.h,
23507: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
23508: types/pa_vunknown.h: op: MAX_LOOPS as_int
23509:
23510: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
23511: .dsp for win32tools
23512:
23513: 2001-05-11 paf
23514:
23515: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
23516: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
23517: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
23518: targets/isapi/kill.pl: moved win32 helpers to /win32tools
23519:
23520: 2001-05-10 paf
23521:
23522: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
23523: for C++, that's all
23524:
1.116 moko 23525: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
23526: pa_config_includes.h: inline wonders
1.95 moko 23527:
23528: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
23529: doc/doxygen.cmd: hash.C added
23530:
23531: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
23532:
23533: * src/main/compile.y: @end grammar: allowed zero strings in control
23534: menthod
23535:
23536: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
23537: pa_vstateless_object.h: changed priority: field before method
23538: lookup in vclass & vobject
23539:
23540: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
23541: grammar: priorities changes [lowerd && prior] vobject: now first
23542: fields, next methods
23543:
23544: 2001-05-08 paf
23545:
23546: * src/main/pa_table.C: table columnname2item on nameless ignored
23547: bark=false. fixed
23548:
23549: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
23550: types/pa_vmethod_frame.h: hash:default works at last!
23551:
23552: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
23553: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
23554: hash:default
23555:
23556: * src/classes/table.C: z
23557:
23558: * src/classes/table.C: table:hash always hash of hash now
23559:
23560: * src/classes/table.C: table:empty return bool now
23561:
23562: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
23563: include/pa_table.h, main/pa_table.C, types/pa_value.h,
23564: types/pa_vtable.h: table:hash
23565:
23566: * src/classes/table.C: table:record have name
23567:
23568: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
23569: returns vunknown
23570:
23571: * src/classes/: double.C, int.C, op.C, string.C:
23572: int,double,string:int[] double[] string:length[] results now have
23573: hames
23574:
23575: * src/: classes/op.C, classes/table.C, main/main.dsp,
23576: types/pa_vtable.h: removed table:find. table:locate and op:eval
23577: now return bool
23578:
23579: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
23580: in method checkparams again. fixed
23581:
23582: 2001-05-07 paf
23583:
23584: * src/doc/chm.cmd: cmd
23585:
23586: * src/: classes/image.C, classes/mail.C, classes/string.C,
23587: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
23588: types/pa_value.h: method reported errors on wrong pool
23589:
23590: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
23591: now
23592:
23593: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
23594: include/code.h, include/pa_opcode.h, main/compile.C,
23595: main/compile_tools.h, main/execute.C, types/pa_value.h,
23596: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23597: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
23598: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
23599: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
23600: types/pa_vmethod_frame.h, types/pa_vobject.h,
23601: types/pa_vrequest.h, types/pa_vresponse.h,
23602: types/pa_vstateless_class.h, types/pa_vstring.h,
23603: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
23604: types/pa_wwrapper.h: pa_code.h
23605:
23606: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
23607:
23608: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
23609: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
23610: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
23611: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
23612: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
23613: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
23614: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
23615: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
23616: types/pa_vtable.h: dox, split by not clean parts also
23617:
23618: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
23619: types/pa_vtable.h: table: fields, then methods. so to enable
23620: 'dir' fields & co. more
23621:
23622: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
23623: so to enable 'dir' fields & co.
23624:
23625: * src/main/compile.y: grammar: @end
23626:
23627: 2001-05-04 paf
23628:
23629: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
23630: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
23631:
23632: * src/: classes/classes.h, classes/double.C, classes/file.C,
23633: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
23634: classes/op.C, classes/random.C, classes/response.C,
23635: classes/string.C, classes/table.C, classes/unknown.C,
23636: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
23637: method dox
23638:
23639: 2001-05-03 paf
23640:
23641: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
23642: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
23643: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
23644: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
23645: doc/string.dox, doc/targets.dox, doc/value.dox,
23646: main/pa_request.C: dox splitted .dox files and added some
23647:
23648: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
23649:
23650: 2001-05-02 paf
23651:
23652: * src/classes/: image.C, table.C: table:dir result are not tainted
23653: by file_name language now
23654:
23655: 2001-04-28 paf
23656:
23657: * src/classes/classes.inc: removed classes.inc
23658:
23659: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
23660: from .am
23661:
23662: * src/classes/classes.awk: skipped classes in .awk
23663:
23664: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
23665: classes/classes.inc, classes/double.C, classes/file.C,
23666: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
23667: classes/string.C, classes/table.C, classes/unknown.C,
23668: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
23669: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
23670: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
23671: pa_methoded back to classes/classes.h
23672:
23673: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
23674:
23675: * src/: classes/Makefile.am, classes/classes.awk,
23676: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
23677: classes/ls.exe, main/bison.exe: classes.inc autogenerator
23678:
23679: * src/: classes/classes.C, classes/classes.h, classes/double.C,
23680: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
23681: classes/response.C, classes/string.C, classes/table.C,
23682: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
23683: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
23684: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
23685: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
23686: include|main/pa_methoded
23687:
23688: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
23689: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
23690:
23691: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
23692: moved some configured data to request::classes_conf moved some
23693: string crations from globals to M... [works]
23694:
23695: * src/: classes/form.C, classes/mail.C, classes/op.C,
23696: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
23697: main/pa_request.C: moved some configured data to
23698: request::classes_conf moved some string crations from globals to
23699: M...
23700:
23701: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
23702: about to move configured data to special request hash
23703:
23704: * src/: classes/classes.C, classes/classes.h, classes/file.C,
23705: classes/form.C, classes/mail.C, include/pa_request.h,
23706: main/pa_request.C: configure started
23707:
23708: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
23709: 2. todo: methoded-configure
23710:
23711: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23712: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23713: classes/_random.h, classes/_response.h, classes/_string.h,
23714: classes/_table.h, classes/_unknown.h, classes/classes.inc,
23715: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
23716: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23717: classes/random.C, classes/response.C, classes/string.C,
23718: classes/table.C, classes/unknown.C, include/pa_globals.h,
23719: include/pa_request.h, main/compile.y, main/execute.C,
23720: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23721: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23722: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
23723: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
23724: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
23725: types/pa_vrequest.h, types/pa_vresponse.h,
23726: types/pa_vstateless_class.h, types/pa_vstring.h,
23727: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
23728: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
23729: methoded-configure
23730:
23731: * src/: classes/file.C, classes/table.C, main/compile.y,
23732: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
23733: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
23734: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
23735:
23736: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
23737: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
23738: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23739: classes/random.C, classes/response.C, classes/string.C,
23740: classes/table.C, classes/unknown.C, include/pa_request.h,
23741: main/compile.y, main/execute.C, main/pa_globals.C,
23742: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
23743: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
23744: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
23745: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
23746: beautifying just compiled. todo: debug, configure
23747:
23748: 2001-04-27 paf
23749:
23750: * src/: classes/file.C, classes/image.C, classes/table.C,
23751: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
23752: beautifying -99
23753:
23754: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
23755: classes/_response.h, classes/_unknown.h, classes/classes.C,
23756: classes/classes.h, classes/double.C, classes/file.C,
23757: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
23758: classes/op.C, classes/random.C, classes/response.C,
23759: classes/string.C, include/pa_globals.h, main/main.dsp,
23760: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
23761: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
23762: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
23763: types/pa_vunknown.h: beautifying -100
23764:
23765: * src/main/compile.y: serge@ found @CLASS bug. fixed
23766:
23767: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
23768: classes/_op.h, classes/_random.h, classes/_table.h,
23769: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
23770: classes/op.C, classes/random.C, classes/response.C,
23771: classes/string.C, classes/table.C, classes/unknown.C,
23772: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23773: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23774: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
23775: beautifying
23776:
23777: 2001-04-26 paf
23778:
23779: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
23780:
23781: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
23782: documentation ++
23783:
23784: * src/: classes/_exec.h, doc/doxygen.cfg,
23785: include/pa_config_fixed.h, include/pa_config_includes.h,
23786: targets/cgi/pa_pool.C: code documentation ++
23787:
23788: * src/: classes/_image.h, classes/op.C, classes/random.C,
23789: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23790: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
23791: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
23792: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
23793: types/pa_vmethod_frame.h, types/pa_vobject.h,
23794: types/pa_vrequest.C, types/pa_vrequest.h,
23795: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
23796: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
23797: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
23798: code documentation ++
23799:
23800: * src/: classes/image.C, classes/mail.C, classes/string.C,
23801: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
23802: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
23803: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
23804: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23805: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
23806: types/pa_vobject.h, types/pa_vstateless_class.h,
23807: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
23808:
23809: * src/main/: pa_request.C, pa_string.C: z
23810:
23811: * src/: include/pa_common.h, include/pa_types.h,
23812: main/pa_sql_driver_manager.C: module [and, guess, isapi]
23813: connection caching fixed. request-pooled-url were stored into
23814: global connectioncache
23815:
23816: 2001-04-25 paf
23817:
23818: * src/: doc/doxygen.cfg, doc/doxygen.txt,
23819: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
23820:
23821: * src/: include/code.h, include/pa_common.h, main/compile.y,
23822: main/execute.C, main/pa_common.C: -d
23823:
23824: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
23825: illegal call check a bit improved, but still under iis no mapping
23826: of dir with parser allowed!
23827:
23828: 2001-04-24 paf
23829:
23830: * src/targets/Makefile.am: apache module lib .am
23831:
23832: * src/main/pa_exec.C: windows32 buildCommand
23833:
23834: 2001-04-23 paf
23835:
23836: * src/targets/cgi/Makefile.am: win32 conditional
23837:
23838: * src/targets/cgi/Makefile.am: win32 conditional
23839:
23840: * src/targets/cgi/Makefile.am: liblink
23841:
23842: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
23843: vfile fields return type
23844:
23845: * src/types/pa_vfile.h: vfile fields return type
23846:
23847: * src/include/pa_config_auto.h.in: .h.in
23848:
23849: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
23850: types/Makefile: makefiles removed
23851:
23852: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
23853: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
23854:
23855: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
23856: [tested: i & g ]
23857:
23858: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
23859: @test noticed series in isapi, check how initialize_random_class
23860: is called! [must be called only once]
23861:
23862: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
23863: would not be 'unknown column'
23864:
23865: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
23866: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
23867:
23868: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
23869: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
23870: [now doesnt]
23871:
23872: * src/targets/cgi/parser3.C: cgi cmdline ver
23873:
23874: * src/targets/cgi/parser3.C: cgi /// @test disable
23875: /cgi-bin/parser3/auto.p
23876:
23877: * src/main/untaint.C: untaint without charset
23878:
23879: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23880: main/pa_common.C: common: file_write /// @test mkdirs
23881: file_delete rmdirs
23882:
23883: * src/main/untaint.C: mail header only once to =?
23884:
23885: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
23886: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
23887: main/untaint.C: untaint - @test optimize whitespaces for
23888: all but 'html'
23889:
23890: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
23891: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23892: main/untaint.C: untaint - @test mail-header
23893:
23894: 2001-04-20 paf
23895:
23896: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
23897: include/pa_request.h, include/pa_string.h, main/compile.y,
23898: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23899: targets/cgi/parser3.C: $MAIN:LOCALE
23900:
23901: * src/main/untaint.C: z
23902:
23903: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
23904:
23905: 2001-04-19 paf
23906:
23907: * src/main/compile_tools.h: $a$b bugfix
23908:
23909: * src/targets/cgi/parser3.C: z
23910:
23911: * src/classes/file.C: z
23912:
23913: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
23914: done: header to $fields. waits for header '\' tricks
23915:
23916: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23917: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
23918: changed urlencode here and in untaint.C to HTTP standard's " and
23919: \" mech
23920:
23921: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
23922: http://alx/~paf/ doesnt load /auto.p
23923:
23924: 2001-04-18 paf
23925:
23926: * src/main/pa_request.C: 1
23927:
23928: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
23929: linux @alx
23930:
23931: 2001-04-17 paf
23932:
23933: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
23934: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
23935: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
23936: enabled
23937:
23938: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23939: classes/_exec.h, classes/_file.h, classes/_form.h,
23940: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23941: classes/_random.h, classes/_response.h, classes/_string.h,
23942: classes/_table.h, classes/_unknown.h, classes/file.C,
23943: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
23944: include/pa_config_fixed.h, include/pa_config_includes.h,
23945: include/pa_hash.h, include/pa_sql_driver_manager.h,
23946: include/pa_version.h, main/Makefile.am, main/compile.y,
23947: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
23948: main/pa_sql_driver_manager.C, sql/Makefile.am,
23949: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
23950: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
23951: types/pa_vform.C, types/pa_vimage.h: exec @jav
23952:
23953: * src/: include/pa_sql_driver_manager.h,
23954: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
23955: types/pa_vimage.h: sql driver interface now has initialize(client
23956: .so)
23957:
23958: 2001-04-16 paf
23959:
23960: * src/Makefile.am: compile2 cygwin
23961:
23962: * src/: include/pa_config_includes.h, main/pa_exec.C,
23963: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
23964:
23965: * src/targets/cgi/Makefile.am: compile0 jav
23966:
23967: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23968: classes/_exec.h, classes/_file.h, classes/_form.h,
23969: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23970: classes/_random.h, classes/_response.h, classes/_string.h,
23971: classes/_table.h, classes/_unknown.h, classes/image.C,
23972: classes/mail.C, classes/op.C, classes/random.C,
23973: include/pa_config_fixed.h, include/pa_config_includes.h,
23974: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
23975: main/compile.y, main/pa_common.C, main/pa_exec.C,
23976: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
23977: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
23978: compile-1
23979:
23980: 2001-04-15 paf
23981:
23982: * src/classes/op.C: z
23983:
23984: * src/classes/table.C: table:empty +=process
23985:
23986: * src/types/pa_value.h: MethodParams !junction
23987:
23988: * src/: classes/_string.h, classes/double.C, classes/file.C,
23989: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23990: classes/random.C, classes/response.C, classes/string.C,
23991: classes/table.C, classes/unknown.C, main/pa_request.C:
23992: MethodParams everywhere
23993:
23994: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
23995: types/pa_vmethod_frame.h: MethodParams in op.C
23996:
23997: 2001-04-12 paf
23998:
23999: * src/: classes/image.C, types/pa_vimage.h: image:font :text
24000:
24001: * src/: classes/_unknown.h, classes/unknown.C,
24002: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
24003: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
24004:
24005: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
24006:
24007: * src/classes/image.C: image:gif now does not have params
24008:
24009: * src/classes/image.C:
24010: image:line/fill/rectangle/bar/replace/polygon/polybar
24011:
24012: * src/: classes/image.C, classes/op.C, main/execute.C,
24013: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
24014: for var now written not to r.wcontext, but to r.root cleared
24015: "entered_object" state
24016:
24017: 2001-04-11 paf
24018:
24019: * src/classes/image.C: image:create image:load
24020:
24021: * src/: classes/image.C, main/main.dsp: gd with mem write + image
24022: just compiled
24023:
24024: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
24025: todo: gif without file
24026:
24027: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
24028: started porting to Pooled descendant
24029:
24030: * src/: classes/image.C, main/execute.C, main/main.dsp,
24031: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
24032: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
24033: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
24034:
24035: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
24036: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
24037: end. switching to python imaging lib
24038:
24039: * src/main/main.dsp: gd+smtp made separate libs
24040:
24041: * src/: include/pa_globals.h, include/pa_string.h,
24042: main/pa_common.C, main/pa_request.C, main/untaint.C,
24043: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
24044: length
24045:
24046: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
24047: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
24048: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
24049: UL_FILE_NAME of posted file name
24050:
24051: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
24052: post [broke when moved post read to core]
24053:
24054: 2001-04-10 paf
24055:
24056: * src/classes/image.C: image:html done
24057:
24058: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
24059:
24060: * src/classes/image.C: z
24061:
24062: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
24063: forgotten!
24064:
24065: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
24066: main/pa_request.C, main/pa_string.C, main/untaint.C,
24067: types/pa_vimage.h: image:measure -90
24068:
24069: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
24070: classes/_int.h, classes/_mail.h, classes/_op.h,
24071: classes/_random.h, classes/_response.h, classes/_string.h,
24072: classes/_table.h, classes/file.C, classes/mail.C,
24073: include/pa_common.h, include/pa_globals.h, main/execute.C,
24074: main/main.dsp, main/pa_common.C, main/pa_globals.C,
24075: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
24076: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
24077: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
24078: compiled
24079:
24080: * src/classes/mail.C: minor bug with unclear from/to
24081:
24082: * src/classes/mail.C: sendmail unix skipping defaults
24083:
24084: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
24085: sendmail unix added defaults
24086:
24087: * src/classes/mail.C: unix sendmail compiled. todo:testing
24088:
24089: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
24090:
24091: 2001-04-09 paf
24092:
24093: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
24094: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
24095: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
24096: targets/isapi/parser3isapi.dsp: all targets exec
24097:
24098: * src/: include/pa_sapi.h, include/pa_string.h,
24099: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
24100: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
24101: args in apache:util.script
24102:
24103: * src/include/pa_string.h: written but not tested exec with env for
24104: unix
24105:
24106: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
24107: targets/cgi/parser3.C: exec win32 env
24108:
24109: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
24110: 0
24111:
24112: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
24113: main/execute.C, main/main.dsp, main/pa_globals.C,
24114: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
24115: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
24116:
24117: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
24118: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
24119:
24120: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
24121: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
24122:
24123: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
24124: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
24125: main/pa_common.C, main/pa_request.C, main/pa_string.C,
24126: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24127: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
24128: exec class just compiled. moved post read to request core
24129:
24130: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
24131: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
24132: main/pa_globals.C, targets/cgi/parser3.C,
24133: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
24134: are already read by vform
24135:
24136: 2001-04-08 paf
24137:
24138: * src/: classes/file.C, classes/mail.C, classes/string.C,
24139: include/pa_request.h, include/pa_string.h, main/pa_request.C:
24140: uuencode. string<<
24141:
24142: 2001-04-07 paf
24143:
24144: * src/classes/mail.C: z
24145:
24146: * src/classes/mail.C: z
24147:
24148: * src/classes/mail.C: ^mail[$attach
24149:
24150: * src/classes/mail.C: ^attach dead end
24151:
24152: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
24153: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24154: targets/isapi/parser3isapi.C: mail:send 1
24155:
24156: * src/: classes/mail.C, main/pa_request.C: z
24157:
24158: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
24159: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
24160: compiled
24161:
24162: * src/classes/mail.C: +=
24163:
24164: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
24165: prepared
24166:
24167: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
24168: include/pa_globals.h, include/pa_string.h, main/main.dsp,
24169: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24170: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
24171:
24172: 2001-04-06 paf
24173:
24174: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
24175: main/pa_string.C: table:dir 1
24176:
24177: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
24178: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
24179:
24180: * src/: classes/_op.h, classes/_root.h, classes/op.C,
24181: classes/root.C, include/pa_globals.h, include/pa_request.h,
24182: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
24183: main/pa_request.C: renamed 'root' to 'op'
24184:
24185: * src/classes/: _op.h, op.C: renamed from 'root'
24186:
24187: * src/types/pa_valiased.C: another root inherititance skipped
24188:
24189: * src/main/: compile.C, compile.y, execute.C: operators are now not
24190: root methods of parent class. just 'ROOT' class
24191:
24192: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
24193: @office
24194:
24195: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
24196:
24197: 2001-04-05 paf
24198:
24199: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
24200: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
24201: constructor flag dropped at get_method_frame and remembered into
24202: method_frame
24203:
24204: * src/: classes/file.C, classes/root.C, classes/string.C,
24205: classes/table.C, main/pa_request.C: junction to code&expression
24206: in errors
24207:
24208: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24209: main/pa_string.C, targets/isapi/parser3isapi.dsp:
24210: $LOCALE:ctype[Russian_Russia.1251]
24211:
24212: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
24213: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
24214: main/pa_table.C: hash now not thread-safe.
24215:
24216: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
24217: main/untaint.C: z
24218:
24219: * src/: classes/random.C, classes/root.C, classes/table.C,
24220: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
24221: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
24222: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
24223: types/pa_wcontext.h: sql quote. string untaint UL_SQL
24224:
24225: * src/: classes/table.C, include/pa_sql_connection.h,
24226: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
24227:
24228: * src/classes/table.C: select * from hren error contains statement
24229:
24230: * src/: classes/table.C, include/pa_sql_connection.h,
24231: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
24232: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
24233:
24234: * src/: classes/root.C, include/pa_sql_connection.h,
24235: include/pa_sql_driver.h, main/main.dsp,
24236: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
24237: services for conv memory & error reporting
24238:
24239: 2001-04-04 paf
24240:
24241: * src/doc/doxygen.cfg: z
24242:
24243: * src/include/pa_sql_driver.h: mysql connect
24244:
24245: * src/include/pa_sql_driver.h: mysql info
24246:
24247: * src/: classes/root.C, include/pa_sql_driver.h,
24248: include/pa_sql_driver_manager.h, main/main.dsp,
24249: main/pa_sql_driver_manager.C: more manager&connection&driver
24250:
24251: * src/sql/Makefile.am: forgot to add mysql client
24252:
24253: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
24254: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
24255: [forgot to add libltdl, added]
24256:
24257: * src/: Makefile.am, classes/root.C, classes/string.C,
24258: classes/table.C, include/pa_globals.h, include/pa_hash.h,
24259: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
24260: include/pa_string.h, include/pa_table.h, main/main.dsp,
24261: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24262: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
24263: -1000 just compiled
24264:
24265: * src/: classes/random.C, classes/root.C, classes/table.C,
24266: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
24267: main/pa_request.C, types/pa_vclass.h: sql frame -10
24268:
24269: 2001-04-03 paf
24270:
24271: * src/types/pa_vform.C: z
24272:
24273: * src/: classes/string.C, types/pa_vform.C: string:match replace
24274: assigned lang
24275:
24276: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
24277: {}[]< empty []
24278:
24279: * src/: classes/file.C, classes/string.C, classes/table.C,
24280: include/pa_string.h, main/pa_common.C, main/pa_string.C,
24281: main/untaint.C: string:match replace 2. string.cstr(forced lang)
24282:
24283: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24284: string:match replace strange matches
24285:
24286: * src/classes/string.C: string:match replace 0
24287:
24288: * src/: classes/string.C, main/pa_string.C: string:match replace
24289: prepared 2
24290:
24291: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24292: string:match replace prepared
24293:
24294: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24295: string:match replace -11
24296:
24297: * src/: classes/string.C, include/pa_globals.h,
24298: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
24299: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
24300:
24301: * src/: classes/string.C, include/pa_globals.h,
24302: include/pa_string.h, main/main.dsp, main/pa_globals.C,
24303: main/pa_string.C: string:match [search] -1 just compiled
24304:
24305: * src/types/pa_vstring.C: z
24306:
24307: * src/: classes/double.C, classes/file.C, classes/form.C,
24308: classes/int.C, classes/response.C, classes/root.C,
24309: classes/string.C, classes/table.C, include/pa_string.h,
24310: main/pa_string.C: string:match -10 [frame]
24311:
24312: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
24313: main/pa_request.C: z
24314:
24315: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
24316: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
24317: todo/tests
24318:
24319: * src/include/pa_common.h: z
24320:
24321: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
24322: main/pa_request.C, targets/cgi/parser3.C,
24323: targets/isapi/parser3isapi.C, types/pa_vfile.C:
24324: content-disposition
24325:
24326: * src/: include/pa_common.h, include/pa_globals.h,
24327: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24328: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
24329:
24330: * src/: include/pa_common.h, include/pa_request.h,
24331: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
24332: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
24333: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
24334: response:body
24335:
24336: * src/classes/table.C: table:append now uses string::split
24337:
24338: * src/classes/table.C: z
24339:
24340: * src/: classes/file.C, classes/root.C, classes/string.C,
24341: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
24342: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
24343: include/pa_string.h, main/execute.C, main/pa_string.C,
24344: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
24345: string::pos & cmp & piece bugs fixed. string::split new
24346: table:load separated from set table:set implemented with clean \n
24347: \t searches
24348:
24349: 2001-04-02 paf
24350:
24351: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
24352: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
24353: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
24354: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
24355: it in table:set/load
24356:
24357: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
24358: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
24359:
24360: * src/classes/random.C: random:generate 1
24361:
24362: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
24363: main/main.dsp, main/pa_globals.C, main/pa_request.C,
24364: types/pa_value.h: random:generate
24365:
24366: 2001-03-30 paf
24367:
24368: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
24369: todo: table flip and append. string::pos
24370:
24371: * src/: classes/double.C, classes/file.C, classes/int.C,
24372: classes/response.C, classes/root.C, classes/string.C,
24373: classes/table.C, main/compile.y, main/execute.C,
24374: types/pa_value.h, types/pa_vstateless_class.C,
24375: types/pa_vstateless_class.h: static|dynamic|any method
24376: registration
24377:
24378: * src/: classes/file.C, classes/table.C, include/pa_table.h,
24379: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
24380: table:flip
24381:
24382: 2001-03-29 paf
24383:
24384: * src/classes/string.C: string:xsplit forgot that they must result
24385: in 1 row N column [not vice versa]
24386:
24387: * src/classes/string.C: z
24388:
24389: * src/classes/string.C: string: rsplit
24390:
24391: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24392: string: lsplit
24393:
24394: * src/: classes/string.C, include/pa_string.h, main/execute.C,
24395: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
24396: lsplit -1
24397:
24398: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
24399: string: pos
24400:
24401: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24402: string: pos -1
24403:
24404: * src/: classes/string.C, classes/table.C, include/pa_string.h,
24405: main/compile.y, main/pa_request.C, main/pa_string.C,
24406: main/untaint.C: string: left right mid
24407:
24408: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
24409: main/compile_tools.h, main/main.dsp, types/pa_value.h,
24410: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
24411: and [;] are different now.
24412:
24413: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
24414: main/untaint.C: pool.request undone
24415:
24416: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
24417: main/untaint.C: pool.request
24418:
24419: 2001-03-28 paf
24420:
24421: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
24422: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
24423: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
24424: $request:browser [.type .version]; unknown.get_double now = 0.
24425:
24426: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
24427: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
24428: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
24429: types/pa_vform.C: file:load autodetection of mime-type by
24430: user-file-name
24431:
24432: * src/: classes/file.C, main/execute.C, main/pa_common.C,
24433: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
24434: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
24435:
24436: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
24437: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
24438: write. must be self.set
24439:
24440: * src/: classes/file.C, classes/root.C, classes/table.C,
24441: include/pa_table.h, main/pa_table.C: table:locate1, file:test
24442:
24443: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
24444: include/pa_table.h, main/pa_array.C, main/pa_table.C,
24445: types/pa_vtable.h: table:locate just compiled
24446:
24447: 2001-03-27 paf
24448:
24449: * src/main/: execute.C, pa_common.C: fixed r/w context of
24450: code-params2, fixed ntfs hardlink slow dir update
24451:
24452: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
24453: types/pa_wcontext.h: fixed r/w context of code-params
24454:
24455: * src/: classes/table.C, main/execute.C: about to change junction
24456: rcontext!!
24457:
24458: * src/: classes/double.C, classes/int.C, classes/root.C,
24459: classes/string.C, classes/table.C, main/compile_tools.C,
24460: main/execute.C, main/pa_request.C, main/untaint.C,
24461: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
24462: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
24463: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
24464: types/pa_vunknown.h: sort 0
24465:
24466: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
24467: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
24468: renamed to are_static_calls_disabled
24469:
24470: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
24471: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
24472: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
24473: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
24474:
24475: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
24476:
24477: * src/: classes/table.C, include/pa_common.h, main/compile.y:
24478: started table:sort fixed minor bug in #...^{
24479:
24480: * src/: classes/table.C, include/pa_common.h, main/compile.y,
24481: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
24482: decided to have as it were. stepped back. grammar: added 'in'
24483: 'is' 'lt'&co follow-space check
24484:
24485: 2001-03-26 paf
24486:
24487: * src/: classes/file.C, classes/root.C, classes/table.C,
24488: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
24489: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24490: main/pa_table.C: moved ::save to pa_table. disabled @auto
24491: invocation in ^process
24492:
24493: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
24494:
24495: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
24496: main/pa_array.C: table:record
24497:
24498: * src/: main/untaint.C, targets/cgi/parser3.C,
24499: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24500: targets/isapi/pool_storage.h, types/pa_valiased.h,
24501: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
24502: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
24503: types/pa_vtable.h: z
24504:
24505: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
24506: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
24507: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
24508: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
24509: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
24510: method realisations on 'self' validity - they now can simply
24511: assume that 'self' is V{Proper} .
24512:
24513: 2001-03-25 paf
24514:
24515: * src/main/untaint.C: z
24516:
24517: * src/main/: pa_request.C, untaint.C: moved default typo-table to
24518: lowlevel - it initialization could be skipped if failed in @auto.
24519: so that exception report would use some table
24520:
24521: * src/main/pa_request.C: table empty lines ignored. system-default
24522: content type assigned in output:result [can fail in main:auto and
24523: skipped normal defaults extraction]
24524:
24525: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
24526: bug
24527:
24528: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
24529: processing to table [except preliminary \r\n \r \n replacements
24530: to "\n"]
24531:
24532: * src/: classes/table.C, main/untaint.C: html-typo - decided to
24533: move all the processing to table
24534:
24535: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
24536: main/pa_table.C, main/untaint.C: returned table originating.
24537: useful for reporting typo table problems origin. think would be
24538: useful somewhere else
24539:
24540: * src/main/untaint.C: typo \r \r\n \n properly handled
24541:
24542: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
24543: include/pa_table.h, main/compile.y, main/compile_tools.C,
24544: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
24545: main/pa_string.C, main/pa_table.C, main/untaint.C,
24546: types/pa_vcookie.h: typo & typo-default
24547:
24548: 2001-03-24 paf
24549:
24550: * src/main/pa_common.C: z
24551:
24552: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
24553: targets/cgi/parser3.C: html-typo 2
24554:
24555: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
24556: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
24557: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
24558: main/execute.C, main/pa_array.C, main/pa_globals.C,
24559: main/pa_request.C, main/pa_string.C, main/untaint.C,
24560: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
24561: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
24562: noticed double default content-type prob. run cgi.cmd tomorrow
24563: first html-typo sample. detected << problem: they become ltlt too
24564: fast
24565:
24566: * src/main/compile.y: z
24567:
24568: * src/main/: compile.y, compile_tools.h: #comment
24569:
24570: * src/: classes/file.C, classes/root.C, classes/table.C,
24571: include/pa_common.h, include/pa_request.h, main/compile.y,
24572: main/pa_common.C, main/pa_request.C, main/pa_string.C,
24573: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
24574: stringified
24575:
24576: * src/types/pa_valiased.C: decided to String-ify file_read
24577:
24578: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
24579: isapi/parser3isapi.dsp: cgi: sapi::log
24580:
24581: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
24582: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
24583: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
24584: error log experiments failed - cgi under iis got no access to
24585: log. registereventsource simply failed with 5(illegal call) code,
24586: while worked OK as standalone executable. isapi: used
24587: HSE_APPEND_LOG_PARAMETER feature
24588:
24589: * src/: include/pa_common.h, include/pa_globals.h,
24590: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24591: targets/isapi/parser3isapi.C: fixed default content-type
24592: allocation storage
24593:
24594: * src/: include/pa_globals.h, include/pa_request.h,
24595: main/pa_globals.C, main/pa_request.C: z
24596:
24597: * src/: include/pa_array.h, include/pa_hash.h,
24598: include/pa_request.h, main/compile.y, main/pa_array.C,
24599: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
24600: types/pa_vcookie.C: cyclic uses ignored. defaulted default
24601: content-type
24602:
24603: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
24604: sanity
24605:
24606: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
24607: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
24608: away freeze mech. no danger now for you can't do
24609: ^request:process[@new-method[] body] trick anymore. still
24610: remains $some_instance.process[@new-method[] possibility] but
24611: would leave it as a feature. see index for sample
24612:
24613: * src/: include/pa_common.h, main/pa_common.C,
24614: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
24615: monkey every target
24616:
24617: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
24618: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
24619: types/pa_vform.C, types/pa_vform.h: auto.p monkey
24620:
24621: 2001-03-23 paf
24622:
24623: * src/: include/pa_pool.h, main/pa_request.C,
24624: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
24625: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24626: targets/isapi/pool_storage.h: isapi: dumb pool storage
24627:
24628: * src/targets/isapi/pa_pool.C: decided to continue with extension
24629:
24630: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
24631: it would be better to rewrite as filter then to deal with pool
24632:
24633: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
24634: now like in cgi, not from APPL_PHYSICAL_PATH
24635:
24636: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24637: include/pa_config_fixed.h, include/pa_config_includes.h,
24638: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
24639: include/pa_version.h, main/compile.y, main/execute.C,
24640: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24641: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24642: main/untaint.C, targets/cgi/parser3.C,
24643: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
24644: cgi: reinvent document_root and request_uri under iis. autoconf
24645: updated. introducing ap_config_includes
24646:
24647: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
24648:
24649: * src/targets/cgi/parser3.C: cgi: only one pool now
24650:
24651: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
24652: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24653: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
24654: types/pa_venv.h, types/pa_vform.C: sapi made object
24655:
24656: * src/: include/pa_globals.h, main/pa_request.C,
24657: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24658: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
24659: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
24660:
24661: * src/: main/pa_request.C, targets/cgi/parser3.C,
24662: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
24663: isapi minor env beauty
24664:
24665: * src/: main/pa_request.C, targets/cgi/parser3.C,
24666: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
24667: isapi document_root 0
24668:
24669: 2001-03-22 paf
24670:
24671: * src/targets/isapi/parser3isapi.C: isapi keep-alive
24672:
24673: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
24674: isapi/parser3isapi.C: z
24675:
24676: * src/: include/pa_pool.h, main/pa_request.C,
24677: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
24678:
24679: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
24680: kill.pl: isapi added utils
24681:
24682: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
24683: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24684: types/pa_vform.C: isapi 0
24685:
24686: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
24687: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24688: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
24689: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
24690: started isapi
24691:
24692: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
24693: some comments
24694:
24695: * src/: include/pa_globals.h, include/pa_request.h,
24696: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
24697: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
24698: parser_root_auto_path parser_site_auto_path
24699:
24700: * src/types/pa_vcookie.C: cookie attr decoded
24701:
24702: 2001-03-21 paf
24703:
24704: * src/targets/cgi/parser3.C: z
24705:
24706: * src/include/pa_globals.h: post. todo: config of auto.p path
24707:
24708: * src/: include/pa_globals.h, targets/cgi/parser3.C,
24709: types/pa_venv.h: in cookie & env. todo:post
24710:
24711: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
24712: classes/root.C, classes/table.C, include/pa_array.h,
24713: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
24714: include/pa_request.h, include/pa_string.h, main/Makefile.am,
24715: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
24716: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24717: main/pa_table.C, main/untaint.C, targets/Makefile.am,
24718: targets/cgi/Makefile.am, targets/cgi/parser3.C,
24719: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
24720: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
24721: shifted apache branch on main trunc
24722:
24723: * src/: include/pa_common.h, include/pa_globals.h,
24724: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24725: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
24726: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
24727: starting mod_parser3
24728:
24729: * src/targets/cgi/parser3.C: starting mod_parser3
24730:
24731: 2001-03-20 paf
24732:
24733: * src/: main/pa_common.C, targets/cgi/Makefile.am,
24734: targets/cgi/parser3.C: automake compiled and works. todo:make
24735: win32 ifdefs work and add ifdef unistd
24736:
24737: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
24738: main/Makefile.am, main/pa_common.C, main/pa_request.C,
24739: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
24740: z
24741:
24742: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
24743: main/execute.C, main/pa_common.C, types/Makefile.am: removing
24744: locking
24745:
24746: * src/: classes/Makefile.am, types/Makefile.am: z
24747:
24748: * src/: Makefile.am, classes/file.C, classes/root.C,
24749: classes/table.C, include/pa_array.h, include/pa_request.h,
24750: include/pa_string.h, main/Makefile.am, main/execute.C,
24751: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24752: main/pa_string.C, main/untaint.C, targets/Makefile.am,
24753: targets/cgi/Makefile.am, targets/cgi/parser3.C,
24754: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
24755:
24756: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
24757: main/pa_request.C, types/pa_vfile.h: ^table:save
24758:
24759: * src/: classes/file.C, classes/table.C, include/pa_array.h,
24760: include/pa_common.h, include/pa_request.h, include/pa_string.h,
24761: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
24762: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
24763: types/pa_vform.h: z
24764:
24765: * src/include/pa_string.h: z
24766:
24767: * src/: classes/_request.h, classes/request.C, main/main.dsp,
24768: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
24769: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
24770: :Value
24771:
24772: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
24773: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
24774: :VStateless_object
24775:
24776: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
24777: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
24778: :VStateless_object
24779:
24780: * src/: main/main.dsp, targets/cgi/parser3.dsp,
24781: types/pa_valiased.C, types/pa_vform.h: commented VForm
24782:
24783: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
24784: types/pa_valiased.h, types/pa_value.h,
24785: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
24786: types/pa_vstateless_object.h: moved common get_element part from
24787: stateless object&class into VAliased
24788:
24789: * src/: classes/_env.h, classes/_table.h, classes/env.C,
24790: classes/table.C, main/execute.C, main/main.dsp,
24791: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
24792: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
24793: now :Value
24794:
24795: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
24796: main/execute.C, main/main.dsp, main/pa_globals.C,
24797: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
24798:
24799: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
24800: doxx
24801:
24802: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
24803: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24804: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
24805: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
24806: and ^file:save
24807:
24808: 2001-03-19 paf
24809:
24810: * src/types/pa_vfile.C: z
24811:
24812: * src/: classes/file.C, classes/request.C, classes/table.C,
24813: include/pa_string.h, main/main.dsp, main/pa_pool.C,
24814: main/pa_request.C, main/untaint.C, types/pa_value.h,
24815: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
24816:
24817: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
24818: include/pa_string.h, include/pa_table.h, main/main.dsp,
24819: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
24820: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
24821: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
24822: classes/_file.h, classes/file.C, types/pa_vfile.C,
24823: types/pa_vfile.h: file class just compiled
24824:
24825: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
24826: include/pa_table.h, include/pa_types.h, main/execute.C,
24827: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
24828: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
24829: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
24830:
24831: * src/include/pa_pool.h: z
24832:
24833: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
24834: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
24835: Hash::Value to Val so to doxygen would finlly stop confusing
24836: those Value-s
24837:
24838: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
24839: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
24840: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24841: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24842: include/pa_types.h, main/compile.C, main/compile.y,
24843: main/compile_tools.C, main/compile_tools.h, main/execute.C,
24844: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
24845: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
24846: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24847: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
24848:
24849: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
24850: derivates somehow unlinked. don't know why yet
24851:
24852: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
24853: include/pa_string.h, include/pa_threads.h, main/compile.C,
24854: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24855: main/execute.C, main/pa_array.C, main/pa_common.C,
24856: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
24857: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24858: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
24859:
24860: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
24861: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
24862: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
24863: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
24864: types/pa_vrequest.h: doc: detected Value derivates prob
24865:
24866: * src/include/pa_globals.h: z
24867:
24868: * src/: classes/_request.h, classes/request.C, include/code.h,
24869: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
24870: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
24871: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
24872: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
24873: main/execute.C, main/pa_pool.C, main/pa_request.C,
24874: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24875: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
24876:
24877: 2001-03-18 paf
24878:
24879: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
24880: cookie: allowed access to hash-assigned
24881:
24882: * src/targets/cgi/parser3.C: z
24883:
24884: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
24885: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
24886: include/pa_types.h, main/main.dsp, main/pa_common.C,
24887: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24888: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24889: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
24890: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
24891: types/pa_vunknown.h: cookie class
24892:
24893: * src/main/pa_request.C: zero length output allowed
24894:
24895: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
24896: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
24897:
24898: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
24899: lang switch
24900:
24901: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
24902: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24903: types/pa_value.h, types/pa_vhash.h:
24904: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
24905:
24906: * src/main/execute.C: z
24907:
24908: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
24909: targets/cgi/parser3.C: taint[uri
24910:
24911: * src/: classes/request.C, classes/response.C, classes/root.C,
24912: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
24913: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
24914: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
24915:
24916: * src/: classes/root.C, classes/string.C, include/pa_string.h,
24917: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24918: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
24919: types/pa_vstateless_class.C: convinient string(pool, char *src,
24920: bool tainted) ctor
24921:
24922: * src/: include/pa_hash.h, include/pa_request.h,
24923: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
24924: main/pa_request.C, main/pa_string.C, main/untaint.C,
24925: targets/cgi/parser3.C: proper @exceptions params tainting
24926:
24927: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
24928: response fields to header
24929:
24930: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
24931: z
24932:
24933: * src/: classes/_response.h, classes/response.C,
24934: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
24935: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
24936: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24937: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
24938: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
24939: $response: 0 request::core exception rethrow
24940:
24941: 2001-03-16 paf
24942:
24943: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
24944: types/pa_vrequest.h: native method' class call with less params
24945: then needed error reporting
24946:
24947: * src/: classes/_request.h, classes/request.C,
24948: include/pa_globals.h, include/pa_request.h, main/execute.C,
24949: main/main.dsp, main/pa_globals.C, main/pa_request.C,
24950: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
24951: types/pa_vrequest.h: $request : query :uri
24952:
24953: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
24954: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
24955: types/pa_wcontext.h: $result
24956:
24957: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
24958:
24959: * src/: classes/double.C, include/code.h, main/compile.y,
24960: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
24961: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
24962:
24963: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
24964: main/compile.y, main/execute.C, types/pa_value.h,
24965: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
24966: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
24967: wcontext conflict
24968:
24969: * src/: main/execute.C, types/pa_value.h,
24970: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
24971: $string.field
24972:
24973: 2001-03-15 paf
24974:
24975: * src/main/pa_request.C: news sample
24976:
24977: * src/: main/compile.y, main/execute.C, main/pa_request.C,
24978: targets/cgi/parser3.C, types/pa_vstring.h: @exception
24979:
24980: * src/main/: compile.y, execute.C: z
24981:
24982: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
24983: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
24984: pre pre works
24985:
24986: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24987: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
24988: fillfields just compiled
24989:
24990: 2001-03-14 paf
24991:
24992: * src/: include/pa_request.h, main/pa_request.C,
24993: targets/cgi/parser3.C: z
24994:
24995: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24996: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
24997: types/pa_vstring.h: limits -1
24998:
24999: * src/: include/pa_globals.h, include/pa_request.h,
25000: include/pa_types.h, main/main.dsp, main/pa_globals.C,
25001: main/pa_request.C, targets/cgi/parser3.C,
25002: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
25003: request_info -1
25004:
25005: * src/: include/pa_globals.h, main/pa_globals.C,
25006: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
25007: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
25008: vform_fields_fill
25009:
25010: * src/targets/cgi/parser3.C: # if MSVC
25011:
25012: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
25013: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
25014:
25015: * src/targets/cgi/parser3.C: z
25016:
25017: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
25018: include/pa_string.h, include/pa_types.h, main/compile.y,
25019: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
25020: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
25021: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
25022: types/pa_vunknown.h: global handler, exceptions in parser3
25023:
25024: 2001-03-13 paf
25025:
25026: * src/: classes/form.C, main/compile.y, main/core.C,
25027: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
25028: types/pa_vform.h, types/pa_vstateless_class.C,
25029: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
25030: instead
25031:
25032: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
25033: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
25034: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
25035: started cgi target
25036:
25037: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
25038: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
25039: before error show with parser
25040:
25041: * src/: classes/_form.h, classes/form.C, include/core.h,
25042: include/pa_request.h, main/core.C, main/pa_request.C,
25043: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
25044:
25045: * src/targets/cgi/: parser.dsp, parser3.dsp: z
25046:
25047: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
25048: parser3.C: renamed targets/ parser to cgi
25049:
25050: * src/: classes/double.C, classes/env.C, classes/int.C,
25051: classes/root.C, classes/string.C, classes/table.C,
25052: include/pa_request.h, types/pa_vhash.h: z
25053:
25054: * src/: classes/_env.h, classes/env.C, classes/root.C,
25055: include/core.h, include/pa_pool.h, include/pa_request.h,
25056: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
25057: main/pa_common.C, main/pa_request.C, types/pa_value.h,
25058: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
25059: [historical moment :)]
25060:
25061: * src/: include/code.h, include/pa_string.h, main/compile.y,
25062: main/execute.C, main/pa_string.C: 'value is type' expr operator
25063:
25064: * src/types/pa_venv.h: $ENV 1
25065:
25066: * src/main/execute.C: z
25067:
25068: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
25069: future methods of ENV constructor if
25070:
25071: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
25072: class
25073:
25074: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
25075: classes/_root.h, classes/_string.h, classes/_table.h,
25076: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
25077: classes/string.C, classes/table.C, include/pa_request.h,
25078: main/compile.C, main/compile_tools.h, main/core.C,
25079: main/execute.C, main/main.dsp, main/pa_request.C,
25080: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
25081: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
25082: types/pa_vobject.h, types/pa_vstateless_class.C,
25083: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
25084: types/pa_wcontext.h: $ENV: re 0, stateless classes
25085:
25086: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
25087: classes/_root.h, classes/_string.h, classes/_table.h,
25088: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
25089: classes/string.C, classes/table.C, include/pa_request.h,
25090: main/compile.C, main/compile_tools.h, main/core.C,
25091: main/execute.C, main/main.dsp, main/pa_request.C,
25092: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
25093: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
25094: types/pa_vobject.h, types/pa_vstateless_class.C,
25095: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
25096: types/pa_wcontext.h: $ENV: re 0, stateless classes
25097:
25098: * src/: include/pa_request.h, main/compile.C, main/execute.C,
25099: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
25100: yesterdays bad decision on execute_static_method
25101:
25102: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
25103:
25104: * src/: classes/double.C, classes/int.C, classes/root.C,
25105: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
25106:
25107: * src/main/pa_request.C: z
25108:
25109: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
25110: include/pa_pool.h: skipped_restructure_exceptions_dead_end
25111:
25112: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
25113: include/pa_pool.h, main/pa_request.C:
25114: restructure_exceptions_dead_end
25115:
25116: * src/: classes/root.C, main/compile.y: ^if required junctions.
25117: allowed ; inside {} to break params
25118:
25119: * src/classes/root.C: ^eval
25120:
25121: * src/: classes/_string.h, classes/double.C, classes/int.C,
25122: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
25123: string ^format
25124:
25125: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
25126: 'bad' but not 'enough'
25127:
25128: * src/: classes/double.C, classes/root.C, classes/table.C,
25129: include/pa_common.h, include/pa_types.h, main/compile.y,
25130: main/pa_common.C, main/pa_request.C, main/untaint.C,
25131: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
25132: types/pa_wwrapper.h: think constructing flag as is is bad
25133:
25134: * src/: classes/double.C, classes/int.C, classes/root.C,
25135: classes/string.C, classes/table.C, main/core.C, main/execute.C,
25136: types/pa_vint.h: ^for
25137:
25138: 2001-03-12 paf
25139:
25140: * src/classes/table.C: table ^empty
25141:
25142: * src/: classes/table.C, include/pa_table.h: table ^menu
25143:
25144: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
25145: ^offset ^line ^count
25146:
25147: * src/classes/root.C: ^round() ^floor() ^ceiling()
25148: ^abs() ^sign()
25149:
25150: * src/classes/: root.C, table.C: ^use
25151:
25152: * src/: classes/root.C, classes/table.C, include/pa_request.h,
25153: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
25154: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
25155: ^while. switched off wcontext.constructing after write(value) or
25156: auto-vhash-constructing
25157:
25158: * src/: classes/root.C, classes/table.C, include/pa_request.h,
25159: main/pa_request.C: fail_if_junction_ helper func
25160:
25161: * src/: classes/root.C, classes/table.C, include/pa_common.h,
25162: include/pa_request.h, main/execute.C, main/main.dsp,
25163: main/pa_common.C, main/pa_request.C: ^process error point by
25164: actual method_name, not source. ^load
25165:
25166: * src/types/pa_vtable.h: table: no, better with string in cells...
25167:
25168: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
25169: classes/_table.h, classes/table.C, main/untaint.C: z
25170:
25171: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
25172: include/pa_table.h, main/core.C, main/execute.C,
25173: main/pa_common.C, main/pa_request.C, main/pa_table.C,
25174: types/pa_value.h: table:set 0
25175:
25176: * src/: classes/root.C, include/core.h, include/pa_array.h,
25177: include/pa_request.h, include/pa_table.h, main/core.C,
25178: main/main.dsp, main/pa_request.C, main/pa_table.C,
25179: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
25180: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
25181: types/pa_vstring.h: freeze, ^table:create[] -1
25182:
25183: * src/: classes/root.C, types/pa_value.h: z
25184:
25185: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
25186: get_method in couple places optimizing them
25187:
25188: * src/classes/root.C: z
25189:
25190: * src/: classes/root.C, types/pa_vclass.h: process temp main
25191: zeroing
25192:
25193: * src/: classes/double.C, classes/int.C, classes/root.C,
25194: classes/string.C, include/pa_common.h, include/pa_request.h,
25195: include/pa_string.h, include/pa_types.h, main/compile.C,
25196: main/compile.y, main/compile_tools.h, main/execute.C,
25197: main/pa_common.C, main/pa_request.C, types/pa_value.h,
25198: types/pa_vmframe.h: ^process. actual names to store param and
25199: check_actual_numbered_params for better place diagnostics
25200:
25201: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
25202: method-junctions bug fixed
25203:
25204: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
25205: pa_vstateless_object.h, pa_vstring.h: stateless_object
25206:
25207: 2001-03-11 paf
25208:
25209: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
25210: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
25211: VDouble VInt base now VObject_base - without fields
25212:
25213: * src/: classes/root.C, include/core.h, main/core.C: z
25214:
25215: * src/: classes/double.C, classes/int.C, classes/root.C,
25216: classes/string.C, include/core.h, include/pa_hash.h,
25217: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
25218: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
25219:
25220: * src/: classes/double.C, classes/int.C, classes/root.C,
25221: include/pa_request.h, main/execute.C: intercept_string
25222:
25223: * src/: classes/double.C, classes/int.C, classes/root.C,
25224: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
25225:
25226: * src/: classes/double.C, classes/int.C, include/pa_request.h:
25227: ^inc-s(expr)
25228:
25229: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
25230: classes/_root.h, classes/_string.h, classes/double.C,
25231: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
25232: include/code.h, include/core.h, include/pa_array.h,
25233: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
25234: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
25235: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
25236: include/pa_types.h, main/compile.C, main/compile.y,
25237: main/compile_tools.C, main/compile_tools.h, main/core.C,
25238: main/execute.C, main/pa_array.C, main/pa_common.C,
25239: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
25240: main/pa_request.C, main/pa_string.C, main/pa_table.C,
25241: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
25242: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
25243: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
25244: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
25245: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
25246: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
25247:
25248: * src/: main/pa_request.C, types/pa_vhash.h: z
25249:
25250: * src/: include/core.h, include/pa_request.h, main/core.C,
25251: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
25252:
25253: * src/: include/pa_valiased.h, include/pa_value.h,
25254: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
25255: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
25256: include/pa_vjunction.h, include/pa_vmframe.h,
25257: include/pa_vobject.h, include/pa_vstring.h,
25258: include/pa_vunknown.h, include/pa_wcontext.h,
25259: include/pa_wwrapper.h, main/compile.y, main/core.C,
25260: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
25261: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
25262: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
25263: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
25264: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
25265: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
25266: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
25267: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
25268: include/
25269:
25270: 2001-03-10 paf
25271:
25272: * src/: include/core.h, include/pa_request.h, main/core.C,
25273: main/pa_request.C: run+auto=run
25274:
25275: * src/: classes/root.C, include/pa_request.h: minor if junction bug
25276:
25277: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
25278: classes/_root.h, classes/_string.h, classes/double.C,
25279: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
25280: include/code.h, include/core.h, include/pa_array.h,
25281: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
25282: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
25283: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
25284: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
25285: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
25286: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
25287: include/pa_vjunction.h, include/pa_vmframe.h,
25288: include/pa_vobject.h, include/pa_vstring.h,
25289: include/pa_vunknown.h, include/pa_wcontext.h,
25290: include/pa_wwrapper.h, main/compile.C, main/compile.y,
25291: main/compile_tools.C, main/compile_tools.h, main/core.C,
25292: main/execute.C, main/pa_array.C, main/pa_cframe.C,
25293: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
25294: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
25295: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
25296: main/pa_wcontext.C: sources header
25297:
25298: * src/main/pa_request.C: auto..
25299:
25300: * src/: include/pa_request.h, main/compile.C, main/compile.y,
25301: main/pa_request.C: auto tree0
25302:
25303: * src/: include/core.h, include/pa_request.h, main/compile.y,
25304: main/core.C, main/pa_request.C: names to core.C
25305:
25306: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
25307: include/pa_request.h, main/core.C, main/execute.C,
25308: main/pa_common.C, main/pa_request.C: root auto.p loaded
25309:
25310: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
25311: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
25312: main/compile_tools.C, main/compile_tools.h, main/execute.C:
25313: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
25314:
25315: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
25316: @auto[] realised. auto.p scan togo
25317:
25318: * src/: include/pa_request.h, main/execute.C: autocalc
25319: code-junctions result now have names
25320:
25321: * src/: classes/double.C, classes/int.C, classes/root.C,
25322: classes/string.C, include/pa_request.h, include/pa_string.h,
25323: include/pa_wcontext.h, main/compile.y, main/execute.C,
25324: main/pa_string.C, main/pa_wcontext.C: tainting 0
25325:
25326: * src/classes/env.C: env:file/line
25327:
25328: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
25329: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
25330: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
25331: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
25332: main/compile_tools.C, main/compile_tools.h, main/core.C,
25333: main/execute.C, main/main.dsp, main/pa_cframe.C,
25334: main/pa_request.C, main/pa_wcontext.C: const fight finished
25335:
25336: * src/include/pa_vclass.h: const fight to go
25337:
25338: * src/: classes/_env.h, classes/env.C, classes/root.C,
25339: include/pa_request.h, include/pa_vclass.h, main/core.C,
25340: main/main.dsp: env0
25341:
25342: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
25343: classes/_string.h, classes/double.C, classes/int.C,
25344: classes/root.C, classes/string.C, include/pa_request.h,
25345: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
25346: include/pa_wcontext.h, main/core.C, main/main.dsp,
25347: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
25348: main/pa_wcontext.C: ^lang prepare0
25349:
25350: 2001-03-09 paf
25351:
25352: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
25353: construct proper naming
25354:
25355: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
25356: classes/double.C, classes/int.C, classes/root.C,
25357: classes/string.C, include/code.h, include/pa_value.h,
25358: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
25359: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
25360: main/compile.y, main/compile_tools.C, main/core.C,
25361: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
25362: and ^double[]. fixed expr type
25363:
25364: * src/: classes/root.C, include/pa_request.h, main/execute.C:
25365: ^string.length[]
25366:
25367: 2001-03-08 paf
25368:
25369: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
25370:
25371: * src/: include/pa_vclass.h, include/pa_vstring.h,
25372: include/pa_wcontext.h, main/compile.y, main/core.C,
25373: main/execute.C, main/main.dsp: dead end: vstring can't be
25374: derivated from vobject
25375:
25376: * src/: include/pa_vclass.h, include/pa_vhash.h,
25377: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
25378:
25379: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
25380: remained clone conseqs
25381:
25382: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
25383:
25384: * src/main/pa_vclass.C: wow! vclass were out of vcs
25385:
25386: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
25387: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
25388: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
25389: include/pa_vobject.h, include/pa_vstring.h,
25390: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
25391: main/execute.C: withoud cloning. didn't need it actually, params
25392: got passed from out unnamed ewpool
25393:
25394: * src/: include/pa_vdouble.h, include/pa_vhash.h,
25395: include/pa_vjunction.h, include/pa_vobject.h,
25396: include/pa_vunknown.h, main/compile.y: cloning dead end
25397:
25398: * src/: include/pa_bool.h, include/pa_double.h,
25399: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
25400: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
25401: include/pa_vjunction.h, include/pa_vmframe.h,
25402: include/pa_vobject.h, include/pa_vstring.h,
25403: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
25404: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
25405: to give params proper names
25406:
25407: * src/main/pa_wcontext.C: z
25408:
25409: * src/: include/pa_vmframe.h, main/execute.C: added names to
25410: unknown values in get_element and unfilled params. removed wrong
25411: name change in get_element
25412:
25413: * src/main/execute.C: z
25414:
25415: * src/main/execute.C: fixed problems calling operators in
25416: constructors
25417:
25418: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
25419: detected problems calling operators in constructors
25420:
25421: * src/: classes/root.C, include/pa_request.h, main/execute.C:
25422: autocalc def to string
25423:
25424: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
25425: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
25426:
25427: * src/classes/root.C: added root.c
25428:
25429: * src/: include/pa_request.h, include/pa_value.h,
25430: include/pa_vcframe.h, include/pa_vmframe.h,
25431: include/pa_wcontext.h, main/compile.C, main/compile.y,
25432: main/core.C, main/execute.C, main/pa_cframe.C,
25433: main/pa_wcontext.C: 'if' just compiled
25434:
25435: * src/: include/pa_vbool.h, include/pa_vdouble.h,
25436: include/pa_vjunction.h, include/pa_vmframe.h,
25437: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
25438: main/pa_wcontext.C: z
25439:
25440: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
25441: main/core.C, main/execute.C, main/main.dsp: z. detected probs
25442: with parameter names in operator methods
25443:
25444: * src/main/compile.y: minor renamings in .y
25445:
25446: * src/: include/pa_request.h, main/compile.C, main/compile.y,
25447: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
25448: @BASE. changed 'RUN' assignment mech
25449:
25450: * src/main/execute.C: z
25451:
25452: * src/: include/code.h, main/compile.y, main/compile_tools.C,
25453: main/compile_tools.h, main/execute.C: made class: dynamic, not
25454: static. so to enable runtime ^use
25455:
25456: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
25457:
25458: * src/: include/code.h, main/compile.y, main/compile_tools.C,
25459: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
25460:
25461: * src/main/execute.C: root root in code-junction
25462:
25463: 2001-03-07 paf
25464:
25465: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
25466: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
25467:
25468: * src/: include/pa_stack.h, include/pa_value.h,
25469: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
25470: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
25471: fixed rwcontext of {} params up
25472:
25473: * src/main/: compile.y, compile_tools.h: ^func(params)
25474:
25475: * src/main/compile.y: .y priorities syntax shaped up a bit
25476:
25477: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
25478: include/pa_vunknown.h, main/compile.y, main/execute.C,
25479: main/pa_hash.C: expr def in -f
25480:
25481: * src/main/: compile.y, execute.C: expr calls
25482:
25483: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
25484: fixed
25485:
25486: * src/main/compile.y: expr quoted code
25487:
25488: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
25489: support0
25490:
25491: * src/main/compile.y: expr string comparisons 0
25492:
25493: * src/: include/pa_string.h, main/compile.y, main/execute.C,
25494: main/pa_string.C: just compiled lt&co
25495:
25496: * src/main/execute.C: ^var.menu{$field} problem detected. that
25497: $field not a $var.field
25498:
25499: 2001-03-06 paf
25500:
25501: * src/main/compile.y: .y expr visible-shorter
25502:
25503: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
25504: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
25505: logical
25506:
25507: * src/: include/pa_vstring.h, main/compile.y: problems with
25508: skipping whitespace in yylex
25509:
25510: * src/include/pa_vbool.h: forgot this
25511:
25512: * src/: include/code.h, main/compile.y, main/execute.C: without
25513: string ops in expressions 0
25514:
25515: * src/: include/pa_value.h, include/pa_vdouble.h,
25516: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
25517: main/execute.C, main/main.dsp: !~
25518:
25519: * src/: include/pa_vcframe.h, include/pa_vclass.h,
25520: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
25521: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
25522: include/pa_vunknown.h, include/pa_wcontext.h,
25523: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
25524: main/compile_tools.h, main/execute.C: +-*/
25525:
25526: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
25527: main/compile_tools.h: grammar-1.1 $a(z) $a=0
25528:
25529: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
25530: main/execute.C: expr grammar-1 2*2=4.000000 :)
25531:
25532: * src/main/compile.y: expr grammar-1
25533:
25534: * src/main/compile.y: expr lexx1
25535:
25536: * src/main/: compile.y, execute.C, main.dsp: z
25537:
25538: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
25539: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
25540: main/execute.C: expr lex0 exec-1
25541:
25542: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
25543:
25544: 2001-02-26 paf
25545:
25546: * src/main/compile.y: max_string in yyerror bug fix
25547:
25548: 2001-02-25 paf
25549:
25550: * src/: include/pa_value.h, include/pa_vmframe.h,
25551: include/pa_wcontext.h, main/execute.C: VAliased3
25552:
25553: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
25554:
25555: * src/main/execute.C: VAliased1
25556:
25557: * src/: include/pa_request.h, include/pa_value.h,
25558: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
25559: VAliased0
25560:
25561: * src/: include/pa_pool.h, include/pa_request.h,
25562: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
25563: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
25564: VAliased just compiled
25565:
25566: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
25567: include/pa_vobject.h, main/execute.C: alias dead end
25568:
25569: * src/: include/pa_value.h, include/pa_vclass.h,
25570: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
25571: main/main.dsp: no not get fields into interm VFielded class.
25572: fields & staticfields 1
25573:
25574: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
25575: include/pa_vobject.h, include/pa_wcontext.h,
25576: include/pa_wwrapper.h, main/core.C, main/execute.C,
25577: main/main.dsp: would now get fields into interm VFielded class
25578:
25579: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
25580: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
25581: include/pa_wcontext.h, main/compile.y, main/core.C,
25582: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
25583: main/pa_wcontext.C: virtuals2
25584:
25585: * src/main/compile.y: : 1
25586:
25587: * src/main/compile.y: rethought to $class:static.field.subfield
25588:
25589: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
25590: $class:element
25591:
25592: * src/: include/pa_value.h, include/pa_vmframe.h,
25593: include/pa_wwrapper.h, main/compile.y, main/execute.C,
25594: main/pa_wcontext.C: before execute class calls rewrite
25595:
25596: * src/: include/pa_request.h, main/compile.C, main/core.C: default
25597: name RUN, also alias
25598:
25599: * src/main/compile.y: escaping bug
25600:
25601: * src/: include/pa_request.h, include/pa_value.h,
25602: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
25603: main/core.C, main/execute.C, main/pa_common.C: vobject1
25604:
25605: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
25606: include/pa_vmframe.h, include/pa_vobject.h,
25607: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
25608: main/compile_tools.h, main/execute.C: ^class:method() just
25609: compiled
25610:
25611: 2001-02-24 paf
25612:
25613: * src/main/main.dsp: no bison -d
25614:
25615: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
25616: class' err msg wrong
25617:
25618: * src/main/compile.y: z
25619:
25620: * src/main/: compile.y, core.C: yylex need some @special lines adj
25621:
25622: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
25623: main/compile.y, main/compile_tools.h, main/core.C: modules0
25624:
25625: * src/: include/pa_vclass.h, main/core.C: z
25626:
25627: * src/: include/pa_value.h, include/pa_vclass.h,
25628: include/pa_vobject.h, main/main.dsp: vobject00
25629:
25630: * src/main/pa_array.C: minor bug in expanding very small arrays.
25631: 60% from 1 were 0
25632:
25633: * src/: include/pa_value.h, include/pa_wcontext.h,
25634: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
25635: as bad as you've named it: wcontext.value() was not a perfect
25636: idea
25637:
25638: * src/main/execute.C: codeframe1
25639:
25640: * src/: include/pa_value.h, include/pa_vcframe.h,
25641: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
25642: include/pa_vjunction.h, include/pa_vmframe.h,
25643: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
25644: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
25645: just compiled
25646:
25647: * src/: include/pa_vframe.h, main/compile.y: found junction
25648: ideology @: ^x{$a()) must construct current wcontext element, so
25649: smart wcontext handling needed
25650:
25651: * src/main/compile.y: fixed grammar bugs in constructor/params
25652: klinch
25653:
25654: * src/main/: compile.y, execute.C: fixed empty constructor
25655: optimized empty case. failed on calls - produced empty string
25656: param
25657:
25658: * src/main/compile.y: fixed last \n macrotemplate strip bug
25659:
25660: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
25661: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
25662: main/compile_tools.C, main/compile_tools.h, main/core.C,
25663: main/execute.C: code junctions0. something wrong with last \n
25664: macrotemplate strip
25665:
25666: * src/: include/pa_value.h, main/compile.C, main/core.C,
25667: main/pa_value.C: minor error reporting format beautifyings
25668:
25669: * src/: include/pa_value.h, include/pa_vclass.h,
25670: include/pa_vframe.h, main/core.C, main/execute.C,
25671: main/pa_value.C: get_method RIP. junctions everywhere. call with
25672: junctions0
25673:
25674: 2001-02-23 paf
25675:
25676: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
25677: pa_wwrapper.h: lara came, can't work, sorry :(
25678:
25679: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
25680: junction
25681:
25682: * src/: include/pa_vframe.h, include/pa_vunknown.h,
25683: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
25684: main/execute.C, main/main.dsp, main/pa_value.C: call0
25685:
25686: * src/: include/pa_hash.h, include/pa_value.h,
25687: include/pa_wcontext.h, main/core.C, main/execute.C,
25688: main/main.dsp, main/pa_hash.C: started call. store param, vframe
25689: done
25690:
25691: * src/include/pa_wcontext.h: z
25692:
25693: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
25694: wrong grammar in complex constructor case
25695:
25696: * src/main/: compile.y, execute.C: empty constructor bug fixed
25697:
25698: * src/main/execute.C: with result rwpool
25699:
25700: * src/: include/pa_value.h, main/core.C, main/execute.C,
25701: main/main.dsp: value named
25702:
25703: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
25704: strign 2 value in 2 places in execute
25705:
25706: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
25707: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
25708: wcontext.put_element when wcontext fvalue==0
25709:
25710: 2001-02-22 paf
25711:
25712: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
25713: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
25714: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
25715:
25716: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
25717: erroreos checkout
25718:
25719: * src/: include/pa_request.h, main/compile.y: $self.put(val)
25720:
25721: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
25722: main/compile_tools.h, main/pa_array.C: $self.get
25723:
25724: * src/main/: compile.C, compile.y, compile_tools.C: z
25725:
25726: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
25727: bit. finished now.
25728:
25729: * src/main/compile.y: $: finished
25730:
25731: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
25732:
25733: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
25734: main/execute.C: OP_STRING better then some xxx _VALUE
25735:
25736: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
25737: main/compile_tools.C, main/compile_tools.h, main/execute.C:
25738: string to vstring it .y all
25739:
25740: * src/: include/pa_request.h, include/pa_stack.h,
25741: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
25742: all
25743:
25744: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
25745: precise parse error line:col
25746:
25747: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
25748: main/pa_hash.C, main/pa_pool.C: TRY...
25749:
25750: * src/: include/pa_exception.h, include/pa_pool.h,
25751: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
25752: main/compile.C, main/compile.y, main/compile_tools.C,
25753: main/core.C, main/pa_array.C, main/pa_exception.C,
25754: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
25755: main/pa_table.C: removed exception from request
25756:
25757: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
25758: some forgotten
25759:
25760: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
25761: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
25762: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
25763: get/put simple vars to VClass works0
25764:
25765: * src/: include/pa_array.h, include/pa_wcontext.h,
25766: main/pa_string.C: in process, but found that exceptions are too
25767: global
25768:
25769: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
25770: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
25771: main/execute.C, main/pa_string.C: write_value write_string 0 it
25772: seems wcontext must write strings regardles of fvalue!=0
25773:
25774: 2001-02-21 paf
25775:
25776: * src/main/execute.C: tired :)
25777:
25778: * src/main/: compile.C, compile.y, execute.C: store0
25779:
25780: * src/: include/compile.h, include/execute.h, include/pa_array.h,
25781: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
25782: include/pa_wcontext.h, main/compile.C, main/compile.y,
25783: main/execute.C, main/main.dsp, main/pa_array.C,
25784: main/pa_request.C: get put -1 [just compiled]
25785:
25786: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
25787: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
25788: main/main.dsp, main/pa_request.C: request core methods0
25789:
25790: * src/: include/compile.h, include/pa_array.h, main/compile.C,
25791: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
25792: execute
25793:
25794: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
25795: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
25796: methods and one_big_piece. now compile returns array<method*>
25797:
25798: * src/main/compile.y: more straightforward yylex[end]
25799:
25800: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
25801: string.operator==(char*)
25802:
25803: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
25804: main/execute.C, main/pa_array.C: after array.const get wonders
25805:
25806: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
25807: pa_string.h, pa_value.h: struck with const array.gets
25808:
25809: * src/main/: execute.C: z
25810:
25811: * src/main/: compile.y, execute.C: z
25812:
25813: * src/main/: compile.C, compile.y, compile_tools.h: error
25814: processing in eval & yyerror so it wouldn't cause memleaks.
25815:
25816: * src/main/: compile.C, compile.y: failed to add absolute precies
25817: parse error positions. leaving RIGHTMOST position as
25818: @file[line:col]
25819:
25820: * src/: include/compile.h, main/compile.C, main/compile.y,
25821: main/compile_tools.h: line numbers needed. would add them to .y
25822: now internally. externally it's not as precise as needed
25823:
25824: * src/: include/code.h, include/pa_types.h, main/compile.C,
25825: main/compile.y, main/compile_tools.C, main/compile_tools.h,
25826: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
25827: compiler works ok
25828:
25829: 2001-02-20 paf
25830:
25831: * src/main/: compile.C, compile.y, compile_tools.C,
25832: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
25833: not perfect
25834:
25835: * src/: include/code.h, include/compile.h, include/execute.h,
25836: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
25837: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25838: main/compile.C, main/compile.y, main/compile_tools.C,
25839: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
25840: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
25841: main/pa_string.C, main/pa_table.C: bison[yacc] first time
25842: compiled. execute=dump for now
25843:
25844: * src/main/core.C: core rewrite using yacc investigations now will
25845: be compile[yacc]/execute[opcodes]
25846:
25847: 2001-02-15 paf
25848:
25849: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
25850: rewrite as turing machine? for it seems it would be it's too many
25851: ifs with this syntax now
25852:
25853: 2001-02-14 paf
25854:
25855: * src/main/core.C: get_params 1
25856:
25857: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
25858: :( ]
25859:
25860: * src/main/core.C: varios breaks
25861:
25862: * src/main/core.C: get names 3
25863:
25864: * src/main/core.C: get names 2
25865:
25866: * src/main/core.C: get names 1
25867:
25868: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
25869: names 0
25870:
25871: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
25872: text repassing2 operator static vars
25873:
25874: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
25875: main/pa_string.C: process text repassing
25876:
25877: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
25878: module:calls changes
25879:
25880: 2001-02-13 paf
25881:
25882: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
25883: ^class:calls[] started
25884:
25885: * src/: include/pa_value.h, main/core.C: z
25886:
25887: * src/main/core.C: operators : and self. prefixes
25888:
25889: * src/main/core.C: z
25890:
25891: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25892: tested
25893:
25894: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25895: optimized
25896:
25897: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
25898: would change privates to better support optimization
25899:
25900: * src/: include/pa_string.h, main/pa_string.C:
25901: String_iterator::skip_to todo:optimize
25902:
25903: 2001-02-12 paf
25904:
25905: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
25906: String_iterator
25907:
25908: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
25909: comments
25910:
25911: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
25912: self/methodref joined
25913:
25914: 2001-02-11 paf
25915:
25916: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
25917: main/main.dsp: core started. core.C, context&value .h
25918:
25919: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25920: include/pa_string.h, main/main.dsp, main/pa_array.C,
25921: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
25922:
25923: 2001-01-30 paf
25924:
25925: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
25926: comments
25927:
25928: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
25929: main/pa_pool.C: moved pa_pool.C to be target specific
25930:
25931: * src/: include/pa_exception.h, include/pa_pool.h,
25932: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
25933: to & changes
25934:
25935: * src/: include/pa_exception.h, include/pa_pool.h,
25936: include/pa_request.h, include/pa_table.h, main/pa_array.C,
25937: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
25938: re-associated. that's much better even removed 'die' necessety
25939:
25940: * src/: include/pa_error.h, include/pa_exception.h,
25941: include/pa_pool.h, include/pa_request.h, main/main.dsp,
25942: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
25943: targets/Makefile.am: lowered targets/parser into subdir, added
25944: parser_Pool(Pool) failed to add. would think..
25945:
25946: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
25947: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
25948: main/pa_string.C, main/pa_table.C: Table more like C++ style
25949: hence lots of 'const'
25950:
25951: * src/: include/pa_error.h, include/pa_request.h,
25952: include/pa_string.h, include/pa_table.h, main/pa_error.C,
25953: main/pa_table.C: Error fixed
25954:
25955: 2001-01-29 paf
25956:
25957: * src/: include/pa_array.h, include/pa_common.h,
25958: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
25959: include/pa_request.h, include/pa_string.h, include/pa_table.h,
25960: main/Makefile.am, main/pa_array.C, main/pa_common.C,
25961: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
25962:
25963: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25964: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25965: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
25966: main/pa_string.C, main/pa_table.C: Request Error Table
25967:
25968: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
25969: templates"
25970:
25971: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
25972: main/main.dsp, main/pa_array.C: templates failed no template
25973: specializations [VC6], no library auto instantation [VC6, GNU c++
25974: 2.95.2-6 from latest cygwin]
25975:
25976: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25977: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25978: main/main.dsp, main/pa_array.C, main/pa_string.C,
25979: main/pa_table.C: Table started would test template Array now
25980:
25981: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25982: String originating
25983:
25984: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
25985: main/pa_hash.C: made local Hash-es not thread safe=quicker by
25986: SYNCHRONIZED(thread_safe)
25987:
25988: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
25989: parts to top
25990:
25991: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
25992: main/pa_threads.C: decided on one global_mutex, like PHP as I can
25993: see: needed only in global Hash now, made Hash:: put/get
25994: SYNCHRONIZED
25995:
25996: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
25997: main/pa_threads.C: added pa_threads
25998:
25999: Mutex
26000:
26001: * src/include/pa_hash.h: some comments
26002:
26003: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
26004: Array& operator += (Array& src)
26005:
26006: * src/main/pa_array.C: expand not convinient, would rewrite
26007:
26008: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
26009: (Array& src)
26010:
26011: rethought, would change now
26012:
26013: 2001-01-27 paf
26014:
26015: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
26016: caching
26017:
26018: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
26019: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
26020: cache rethought to chunk caching
26021:
26022: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
26023: include/pa_string.h, main/main.dsp, main/pa_array.C,
26024: main/pa_hash.C, main/pa_string.C: Array 0
26025:
26026: * src/main/pa_string.C: String::operator ==
26027:
26028: * src/main/pa_hash.C: String(&String)
26029:
26030: * src/main/pa_hash.C: added pa_hash.C [forgotten]
26031:
26032: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
26033: main/main.dsp, main/pa_string.C: uint, and added pa_types &
26034: pa_hash[forgotten]
26035:
26036: 2001-01-26 paf
26037:
26038: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
26039: removed templates [vc++ suxx]
26040:
26041: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
26042: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
26043:
26044: * src/include/: pa_pool.h, pa_string.h: pa_pool split
26045:
1.119 moko 26046: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 26047:
1.119 moko 26048: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 26049: check
26050:
26051: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
26052: dynamic row_count
26053:
26054: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
26055: main/main.dsp, main/pa_pool.C, main/pa_string.C,
26056: targets/Makefile.am: Initial revision
26057:
26058: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
26059: main/main.dsp, main/pa_pool.C, main/pa_string.C,
26060: targets/Makefile.am: creating parser3 module
26061:
E-mail: