Annotation of parser3/ChangeLog, revision 1.187
1.187 ! moko 1: 2023-12-14 moko
! 2:
! 3: * tests/212.html: pcre2 compatibility (related to feature #1236)
! 4:
! 5: * tests/: 425.html, results/425.processed: test for pcre/pcre2
! 6: exceptions and behavour added (related to feature #1236)
! 7:
! 8: 2023-12-13 moko
! 9:
! 10: * buildall: by default parser is now bundled with pcre2 10.42,
! 11: --without-pcre2 option added to build with pcre-8.45 (related to
! 12: feature #1236)
! 13:
! 14: 2023-12-12 moko
! 15:
! 16: * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
! 17: support added (implements feature #1236)
! 18:
! 19: * src/: include/pa_charset.h, include/pa_config_includes.h,
! 20: lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
! 21: main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
! 22: types/pa_vregex.h: Adopted patch from Yavor Doganov
! 23: <yavor@gnu.org> to add pcre2 library support (implements feature
! 24: #1236)
! 25:
1.186 moko 26: 2023-11-28 moko
27:
28: * src/include/pa_config_includes.h: warnings war continues
29:
30: * src/include/pa_config_includes.h: warning war
31:
32: * tests/: 424.html, results/424.processed: tests for '+' and '-'
33: number strings, whitespace and sign in exception messages
34: (related to bug #1234)
35:
1.185 moko 36: 2023-11-26 moko
37:
38: * tests/: 274.html, results/224.processed, results/274.processed:
39: tests for date double, int, bool added (related to feature #1235)
40:
41: * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
42: added for date class (implements feature #1235)
43:
44: 2023-11-23 moko
45:
46: * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
47: and '-' strings are no longer can be treated as number 0,
48: exception thrown (fixes bug #1234)
49:
1.184 moko 50: 2023-11-18 moko
51:
52: * src/include/pa_types.h: minor
53:
54: * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
55:
56: * tests/: 389.html, results/389.processed: error messages for some
57: OS differs a bit, reducing failing tests for them
58:
59: 2023-11-17 moko
60:
61: * tests/: 423.html, results/423.processed: test for optional
62: @auto[] inheritance added (related to feature #1233)
63:
64: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
65: types/pa_vstateless_class.C: optional @auto[] inheritance
66: implemented if defined with two args (path, class name)
67: (implements feature #1233)
68:
69: * src/: classes/double.C, classes/int.C, classes/math.C,
70: include/pa_random.h, include/pa_types.h, main/pa_common.C,
71: types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
72: sync double->int overflow behavour under different architectures
73: (fixes bug #1232)
74:
75: * tests/: 422.html, results/422.processed: int clipping added
76:
77: 2023-11-16 moko
78:
79: * tests/: 422.html, results/422.processed: test for int and uint
80: overflow in ^n.format[d/u/x]
81:
82: * src/classes/math.C: bugfix: crc32 should not be negative (under
83: Apple M1 when negative double converts to uint the result is 0)
84: and crc32 should be 32 bits
85:
86: * src/main/pa_common.C: avoid (uint)<negative double> conversion as
87: on Apple M1 it's 0
88:
89: * src/classes/file.C: bugfix: crc32 should not be negative (under
90: Apple M1 when negative double converts to uint the result is 0)
91: and crc32 should be 32 bits
92:
1.183 moko 93: 2023-10-07 moko
94:
95: * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
96: behavour with other OP_NUM_*, related to bug #1230
97:
98: 2023-10-06 moko
99:
100: * tests/: 338.html, results/338.processed: test for bug #1230 added
101:
102: * src/: main/execute.C, types/pa_vdate.h: force double operands to
103: be converted to double to avoid 80 bit operations in x87 mode
104: (fixes bug #1230)
105:
106: 2023-10-05 moko
107:
108: * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
109: compatibility
110:
111: * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
112:
113: * tests/: 421.html, results/421.processed: test to cover all
114: classes and objects nonexistent method and field exceptions
115: (related to feature #1080 and #1227)
116:
117: * tests/results/: 182.processed, 324.processed: undefined method ->
118: <type> method not found exception (related to feature #1080)
119:
120: * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
121: pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
122: "element can not be fetched from" for them, "field not found" for
123: all other types (related to bug #1227)
124:
125: 2023-10-03 moko
126:
127: * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
128: <type> method not found" exception now thrown for static calls
129: instead of "undefined method" without class name (related to
130: feature #1080)
131:
132: 2023-10-02 moko
133:
134: * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
135: pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
136: <method name>, Comment: <type> method not found" exception now
137: thrown for all dynamic objects instead of "undefined method"
138: without class name (implements feature #1080)
139:
1.182 moko 140: 2023-10-01 moko
141:
142: * src/classes/json.C: we don't have a dynamic json object.
143:
144: 2023-09-28 moko
145:
146: * tests/: 420.html, results/261.processed, results/420.processed:
147: tests updated after bug #1228 fix reverted
148:
149: * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
150: whitespace string is hash compatible, so we don't want $s.key to
151: return a junction
152:
153: * tests/: 261.html, 420.html, results/261.processed,
154: results/420.processed: test for bug #1227 added, test updated
155: after bug #1228 fixed
156:
157: * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
158: now throws exception as $non-empty-string.field (fixes bug #1227)
159:
160: * src/types/pa_vstring.h: allow $string.method access (fixes bug
161: #1228)
162:
163: 2023-09-26 moko
164:
165: * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
166: src/classes/classes.C, src/classes/classes.awk,
167: src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
168: src/classes/double.C, src/classes/file.C, src/classes/form.C,
169: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
170: src/classes/inet.C, src/classes/int.C, src/classes/json.C,
171: src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
172: src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
173: src/classes/regex.C, src/classes/response.C,
174: src/classes/string.C, src/classes/table.C, src/classes/void.C,
175: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
176: src/include/pa_array.h, src/include/pa_base64.h,
177: src/include/pa_cache_managers.h, src/include/pa_charset.h,
178: src/include/pa_charsets.h, src/include/pa_common.h,
179: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
180: src/include/pa_dictionary.h, src/include/pa_dir.h,
181: src/include/pa_exception.h, src/include/pa_exec.h,
182: src/include/pa_globals.h, src/include/pa_hash.h,
183: src/include/pa_http.h, src/include/pa_memory.h,
184: src/include/pa_opcode.h, src/include/pa_operation.h,
185: src/include/pa_os.h, src/include/pa_pool.h,
186: src/include/pa_random.h, src/include/pa_request.h,
187: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
188: src/include/pa_sapi.h, src/include/pa_socks.h,
189: src/include/pa_sql_connection.h,
190: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
191: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
192: src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
193: src/include/pa_table.h, src/include/pa_threads.h,
194: src/include/pa_types.h, src/include/pa_uue.h,
195: src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
196: src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
197: src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
198: src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
199: src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
200: src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
201: src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
202: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
203: src/main/compile.tab.C, src/main/compile.y,
204: src/main/compile_tools.C, src/main/compile_tools.h,
205: src/main/execute.C, src/main/pa_base64.C,
206: src/main/pa_cache_managers.C, src/main/pa_charset.C,
207: src/main/pa_charsets.C, src/main/pa_common.C,
208: src/main/pa_dictionary.C, src/main/pa_dir.C,
209: src/main/pa_exception.C, src/main/pa_exec.C,
210: src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
211: src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
212: src/main/pa_request.C, src/main/pa_socks.C,
213: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
214: src/main/pa_stylesheet_connection.C,
215: src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
216: src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
217: src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
218: src/main/untaint.C, src/main/helpers/simple_folding.pl,
219: src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
220: src/targets/apache/mod_parser3_core.C,
221: src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
222: src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
223: src/types/pa_method.h, src/types/pa_property.h,
224: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
225: src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
226: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
227: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
228: src/types/pa_vcookie.h, src/types/pa_vdate.C,
229: src/types/pa_vdate.h, src/types/pa_vdouble.h,
230: src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
231: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
232: src/types/pa_vhash.C, src/types/pa_vhash.h,
233: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
234: src/types/pa_vimage.C, src/types/pa_vimage.h,
235: src/types/pa_vint.h, src/types/pa_vjunction.C,
236: src/types/pa_vjunction.h, src/types/pa_vmail.C,
237: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
238: src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
239: src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
240: src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
241: src/types/pa_vobject.h, src/types/pa_vregex.C,
242: src/types/pa_vregex.h, src/types/pa_vrequest.C,
243: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
244: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
245: src/types/pa_vstateless_class.h,
246: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
247: src/types/pa_vstatus.h, src/types/pa_vstring.C,
248: src/types/pa_vstring.h, src/types/pa_vtable.C,
249: src/types/pa_vtable.h, src/types/pa_vvoid.C,
250: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
251: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
252: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
253: src/types/pa_wwrapper.h: copyright, authors actualized
254:
1.181 moko 255: 2023-08-20 moko
256:
257: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
258: commited (related to feature #1219)
259:
260: 2023-08-16 moko
261:
262: * src/main/pa_random.C: replaced clock precision with monotonicity
263: counter, good for Windows version with low clock frequency
264: (related to feature #1229)
265:
266: 2023-08-15 moko
267:
268: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
269: fixes related to feature #1229
270:
271: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
272: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
273: (implements feature #1229)
274:
1.180 moko 275: 2023-08-02 moko
276:
277: * tests/: results/417.processed, 417.html: test for empty string
278: match after last char added (related to bug #1224)
279:
280: * src/main/pa_string.C: avoid prestart++ after last char on zero
281: length match (related to bug #1224)
282:
1.179 moko 283: 2022-11-22 moko
284:
285: * tests/: 419.html, results/419.processed: test for L_URI and path
286: removeal from filename added (related to bug #1204)
287:
288: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
289: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
290: attribute value, L_URI should be used
291:
1.178 moko 292: 2022-09-21 moko
293:
294: * src/targets/cgi/parser3.C: more clear error messages
295:
296: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
297: SAPI_Info will return 0 in read_post and post_size !=
298: content_length will be thrown
299:
1.177 moko 300: 2022-08-23 moko
301:
302: * src/types/pa_vmail.C: .tables addes as .raw contains only last
303: header value
304:
305: 2022-08-22 moko
306:
307: * tests/: 418.html, results/418.processed: test for
308: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
309: to #1225)
310:
311: * src/classes/hash.C: keep old behavoir by default
312:
313: * src/classes/hash.C: ^hash_a.intersection[hash_b;
314: $.order[self|arg] ] added (implements #1215)
315:
1.176 moko 316: 2022-03-21 moko
317:
318: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
319: xmlInitCharEncodingHandlers is called in libxml static
320: initializers before gc_substitute_memory_management_functions in
321: pa_globals and thus gc may not see reference to our
322: xmlCharEncodingHandler and free it.
323:
1.175 moko 324: 2022-01-26 moko
325:
326: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
327:
1.174 moko 328: 2021-12-28 moko
329:
330: * tests/: 417.html, results/417.processed: test for empty string
331: match added (related to bug #1224)
332:
333: * src/main/pa_string.C: empty string match now works (fixes bug
334: #1224)
335:
1.173 moko 336: 2021-12-24 moko
337:
338: * tests/: 415_dir/29.p, results/415.processed: yet another test
339:
340: 2021-12-23 moko
341:
342: * src/: classes/table.C, main/pa_request.C: warnings war
343:
344: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
345: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
346:
347: 2021-12-21 moko
348:
349: * tests/: 416.html, results/416.processed: test for ^break[] in
350: ^hash/table.select[] (related to feature #1222)
351:
352: * src/classes/: hash.C, table.C: ^break[] support for
353: ^hash/table.select[] (implements feature #1222)
354:
1.172 moko 355: 2021-11-30 moko
356:
357: * src/targets/cgi/parser3.C: default sock_ready interval changed to
358: 0.5 sec
359:
1.171 moko 360: 2021-11-10 moko
361:
362: * tests/results/415.processed: more syntax errors tests added
363:
364: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
365: 28.p: minor syntax error tests
366:
367: * src/main/pa_exception.C: pa_strdup added for compatibility
368:
369: * src/classes/curl.C: hint to call ^curl:options[
370: $.library[correct.libcurl.so.name] ] added if default load fails.
371:
372: 2021-11-09 moko
373:
374: * src/main/compile.y: error message can be on stack
375:
376: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
377:
378: * src/main/pa_charset.C: memcpy is more correct and efficient in
379: this case then strncpy
380:
381: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
382: instead of strcpy where possible
383:
384: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
385: used to avoid MAX_STRING limit in Exception comment
386:
387: * tests/results/415.processed: compiler exceptions are no longer
388: limited to MAX_STRING
389:
390: * src/main/: compile.y, compile_tools.h: Parse_control uses const
391: char * instead of fixed buffer
392:
393: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
394: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
395: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
396: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
397: results/415.processed: tests for parser.compile exceptions added
398:
399: 2021-11-08 moko
400:
401: * src/: classes/math.C, include/pa_common.h, main/compile.y,
402: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
403: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
404: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
405: drawbacks
406:
1.170 moko 407: 2021-11-06 moko
408:
409: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
410: (implements feature #1219)
411:
412: * tests/: 414.html, results/414.processed: test for
413: ^hash.rename[from;to] added (related to feature #1144)
414:
415: 2021-11-05 moko
416:
417: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
418: (related to feature #1144)
419:
420: 2021-11-04 moko
421:
422: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
423: added (implements feature #1144)
424:
1.169 moko 425: 2021-10-19 moko
426:
427: * tests/: 413.html, results/413.processed: test for hash no longer
428: is accepted as file parameter (related to bug #1218)
429:
430: * src/: classes/curl.C, classes/file.C, classes/image.C,
431: classes/math.C, classes/xdoc.C, types/pa_value.C,
432: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
433: longer is accepted as file parameter (fixes bug #1218)
434:
1.168 moko 435: 2021-07-19 moko
436:
437: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
438: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
439:
1.167 moko 440: 2021-04-16 moko
441:
442: * src/types/pa_vmail.C: message can be null when e-mail is broken,
443: processing it leads to assertions.
444:
1.166 moko 445: 2021-03-25 moko
446:
447: * tests/: 412.html, results/412.processed: test to demonstrate bug
448: #1213
449:
1.165 moko 450: 2021-02-12 moko
451:
452: * tests/: 360.html, results/360.processed, results/363.processed:
453: parser method call in expression mode no longer differs from call
454: in string mode (related to feature #1211)
455:
456: 2021-02-11 moko
457:
458: * src/types/pa_vmail.C: mail parsing with Windows line endings
459: fixed (bug #1212)
460:
461: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
462: when called $v[^test[]] vs $v(^test[]), numbers are converted to
463: strings in both calls (implements feature #1211)
464:
1.164 moko 465: 2021-01-28 moko
466:
467: * buildall, etc/auto.p.in: to remove last patch in debian package
468:
469: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
470: 3.4.7b
471:
1.162 moko 472: 2021-01-21 moko
473:
474: * src/main/pa_http.C: no alarm() in file::load when web server mode
475: is MULTITHREADED
476:
1.157 moko 477: 2021-01-20 moko
478:
1.161 moko 479: * src/targets/apache/mod_parser3.c: it is more correct to recommend
480: 'a2enmod mpm_prefork'
481:
1.160 moko 482: * src/targets/apache/mod_parser3.c: prefork name is now
483: 'libapache2-mpm-itk'
484:
485: * src/targets/apache/mod_parser3_core.C: last regular malloc
486: removed
487:
1.159 moko 488: * src/targets/isapi/Makefile.am: -pa_threads.C
489:
1.158 moko 490: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
491: 3.4.6
492:
1.157 moko 493: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
494:
495: * etc/auto.p.in: @config[result] added to simplify $cfg change in
496: /httpd.p
497:
498: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
499: ^use[/httpd.p] + optional ^preprocess[] (related to feature
500: #1203)
501:
502: 2021-01-19 moko
503:
504: * buildall: --disable-parallel-mark added to avoid "number of
505: processors" threads creation for heap marking as it conflicts
506: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
507: limits threads)
508:
1.156 moko 509: 2021-01-16 moko
510:
511: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
512: main/pa_globals.C, main/pa_memory.C,
513: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
514: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
515: feature #1209)
516:
517: 2021-01-15 moko
518:
519: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
520: 3.4.6rc
521:
522: * src/classes/json.C: get_delim added for delimiter caching (10%
523: faster on large json)
524:
525: 2021-01-14 moko
526:
527: * operators.txt: updated with 3.4.6 changes
528:
529: * tests/results/224.processed: test result modified after
530: today(shift) implemented
531:
532: * tests/: 407.html, results/407.processed: test for ^hash.select
533: option $.default(bool) added (related to feature #1172)
534:
535: * src/classes/hash.C: ^hash.select option $.default(bool) added
536: (related to feature #1172)
537:
538: * tests/: 141.html, results/141.processed: test modified for
539: feature #1185.
540:
541: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
542: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
543: options $.lower(bool) (implements feature #1185)
544:
545: 2021-01-11 moko
546:
547: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
548: #1192)
549:
550: * tests/: 411.html, results/411.processed: test for ^date::today(N)
551: added (related to feature #1192)
552:
1.155 moko 553: 2021-01-05 moko
554:
555: * tests/: 270.html, results/270.processed: test modified to work
556: under Windows
557:
558: * tests/: 390.html, 395.html, results/395.processed: tests updated
559: 4 windows
560:
561: * tests/: 410.html, results/410.processed: test for
562: $CLASS-GETTER-PROTECTED(false) added
563:
564: 2021-01-04 moko
565:
566: * tests/: 409.html, results/409.processed, results/auto.p: test for
567: $MAIN:LOCALS(true) added
568:
1.154 moko 569: 2021-01-03 moko
570:
571: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
572: types/pa_vclass.h, types/pa_vstateless_class.C,
573: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
574: +LOCALS. $main -> $MAIN in exception texts (implements feature
575: #1207)
576:
577: 2021-01-02 moko
578:
579: * etc/auto.p.in: minor
580:
581: * src/main/pa_request.C: sending headers only after opening file to
582: allow error reporting if file was not opened (foreign group,
583: etc).
584:
585: 2020-12-31 moko
586:
587: * src/: include/pa_request.h, main/pa_request.C,
588: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
589:
590: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
591: main/pa_request.C: get_class_ref added and used
592:
593: * etc/auto.p.in: @CLASS httpd added
594:
595: * etc/auto.p.in: @auto[] is now first
596:
597: 2020-12-30 moko
598:
599: * tests/: 408.html, results/408.processed: test for bug #1166
600: (windows only) added
601:
602: * src/main/pa_common.C: create_dir_for_file should not create dir
603: for trailing / (fixes bug #1166)
604:
605: * tests/: 341.html, results/341.processed: tests for
606: ^nameless_table.hash[] added (related to feature #1138)
607:
608: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
609: (implements feature #1138), extra fields in named tables no
610: longer ignored (implements feature #1138)
611:
612: * tests/results/390.processed: updated after exception text change
613:
614: 2020-12-29 moko
615:
616: * tests/: 407.html, results/407.processed: +$._default check
617:
618: * src/classes/hash.C: keep $_default in ^hash.reverse[]
619:
620: * tests/: 407.html, results/407.processed: test for ^hash.select[]
621: and ^hash.reverse[] added (releated to feature #1172)
622:
623: * src/classes/hash.C:
624: ^hash.select[key;value](bool-condition)[options hash] +
625: ^hash.reverse[] added (implements feature #1172)
626:
627: * src/types/pa_vtable.h: warning war
628:
629: * src/include/pa_config_fixed.h: win32 fix
630:
1.153 moko 631: 2020-12-27 moko
632:
633: * tests/: 406.html, results/406.processed: test results updated
634:
635: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
636: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
637: spelling
638:
639: 2020-12-26 moko
640:
641: * tests/: 406.html, results/406.processed: tests for
642: ^table.rename[] added (related to feature #1148)
643:
644: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
645: ^table.rename[column name from;column name to], ^table.rename[
646: $.[column name from][column name to] ... ] added (implements
647: feature #1148)
648:
649: 2020-12-25 moko
650:
651: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
652: request_info now on stack to avoid yet another THREAD_LOCAL
653: memory deallocation issue (now with cookies), explained in #1203
654:
655: * src/types/pa_vcookie.C: fields should be inited
656:
657: 2020-12-24 moko
658:
659: * src/include/pa_stylesheet_connection.h: looks like
660: xsltFreeStylesheet leads to memory double-free. If so, it's for
661: sure libxml bug, but we have GC anyway, so we just remove this
662: call and see...
663:
664: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
665: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
666: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
667: abort.c:65:8 frame #3: 0x00000000004da663
668: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
669: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
670: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
671: malloc.c:617:9 frame #5: 0x0000000000577f0c
672: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
673: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
674: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
675: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
676: frame #8: 0x000000000050d35c
677: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
678: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
679: frame #10: 0x00000000004436e5
680: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
681: [inlined]
682: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
683: pa_stylesheet_connection.h:62:3
684:
685: 2020-12-23 moko
686:
687: * src/classes/image.C: ^image::measure[; $.video() ] option added
688:
689: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
690: ^image::measure[; $.video(true) ] added
691:
692: * src/main/pa_exec.C: not cleared automatically in multithreaded
693: httpd mode for unknown reasons
694:
695: 2020-12-22 moko
696:
697: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
698: error_log uri of currently processed document", but never used
699: and conflicts with how libgc stops threads on FreeBSD (#define
700: SIG_SUSPEND SIGUSR1), thus removed.
701:
702: 2020-12-21 moko
703:
704: * src/main/pa_request.C: +comment
705:
1.151 moko 706: 2020-12-20 moko
707:
1.152 moko 708: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
709: it is more safe to have versions of pa_strdup with one and two
710: arguments, as helper_length=0 not always mean that strlen()
711: should be called, but means zero.
712:
713: * src/targets/isapi/parser3isapi.C: minor
714:
715: * src/main/pa_http.C: +valid_http_method
716:
1.151 moko 717: * src/: include/pa_http.h, main/pa_http.C,
718: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
719:
720: 2020-12-17 moko
721:
722: * tests/: 405.html, results/405.processed: test for split by regex
723: added (related to feature #1160)
724:
725: * src/classes/string.C: split by regex implemented (feature #1160)
726:
727: * src/classes/string.C: minor
728:
729: * tests/: 404.html, results/404.processed: test for whitespace
730: string is now OK for table argument (related to feature #1169)
731:
732: * src/: classes/image.C, classes/string.C, classes/table.C,
733: types/pa_vmethod_frame.C: whitespace string is now OK for table
734: argument (as with hash) (implements feature #1169)
735:
736: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
737: limit for comment (fixes bug #1102)
738:
739: * src/targets/cgi/parser3.C: +HAVE_TLS check
740:
741: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
742:
743: * src/include/pa_config_includes.h: HAVE_TLS used
744:
745: * configure.ac: +TLS check
746:
747: * src/main/pa_http.C: content logging added
748:
749: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
750: clear_response_headers added
751:
752: 2020-12-16 moko
753:
754: * buildall: as we now use threads, libatomic_ops still required for
755: some OS.
756:
757: * src/main/pa_request.C: whitespace
758:
759: * src/: include/pa_request.h, main/pa_request.C:
760: Request::Exception_trace::table extracted and used
761:
762: * src/main/pa_request.C: moving output_result call outside of try
763: as network exceptions should not be handled by parser code
764:
765: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
766: logging network exchange
767:
768: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
769: via network if it was network write error.
770:
771: * src/targets/cgi/parser3.C: log -> pa_log
772:
773: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
774:
775: * src/main/pa_threads.C: getpid() if no gettid() found
776:
777: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
778: we need to ignore "void" connections from browsers (browsers open
779: connections in advance and they will be empty if user does not
780: request more pages)
781:
782: 2020-12-15 moko
783:
784: * src/targets/cgi/parser3.C: avoid previous uri in logs
785:
786: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
787: RequestController not needed in httpd mode
788:
789: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
790: classes/classes.h, classes/curl.C, classes/date.C,
791: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
792: classes/hashfile.C, classes/image.C, classes/inet.C,
793: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
794: classes/memcached.C, classes/memory.C, classes/op.C,
795: classes/reflection.C, classes/regex.C, classes/response.C,
796: classes/string.C, classes/table.C, classes/void.C,
797: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
798: include/pa_array.h, include/pa_base64.h,
799: include/pa_cache_managers.h, include/pa_charset.h,
800: include/pa_charsets.h, include/pa_common.h,
801: include/pa_config_fixed.h, include/pa_config_includes.h,
802: include/pa_dictionary.h, include/pa_dir.h,
803: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
804: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
805: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
806: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
807: include/pa_request_charsets.h, include/pa_request_info.h,
808: include/pa_sapi.h, include/pa_socks.h,
809: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
810: include/pa_stack.h, include/pa_string.h,
811: include/pa_stylesheet_connection.h,
812: include/pa_stylesheet_manager.h, include/pa_symbols.h,
813: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
814: include/pa_uue.h, include/pa_xml_exception.h,
815: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
816: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
817: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
818: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
819: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
820: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
821: main/compile.tab.C, main/compile.y, main/compile_tools.C,
822: main/compile_tools.h, main/execute.C, main/pa_base64.C,
823: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
824: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
825: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
826: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
827: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
828: main/pa_sql_driver_manager.C, main/pa_string.C,
829: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
830: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
831: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
832: main/untaint.C, sql/pa_sql_driver.h,
833: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
834: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
835: targets/isapi/parser3isapi.C, types/pa_junction.h,
836: types/pa_method.h, types/pa_property.h, types/pa_value.C,
837: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
838: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
839: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
840: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
841: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
842: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
843: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
844: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
845: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
846: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
847: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
848: types/pa_vmemory.h, types/pa_vmethod_frame.C,
849: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
850: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
851: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
852: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
853: types/pa_vstateless_object.h, types/pa_vstatus.C,
854: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
855: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
856: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
857: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
858: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
859:
860: * src/main/pa_request.C: old compilers support
861:
862: * tests/: 362.html, results/362.processed: test updated after
863: changes after upgrade to libxml2-2.9.9 were made (related to bug
864: #1108)
865:
866: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
867: removed, as xsltFreeStylesheet has side effects on original doc.
868: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
869: not updated after xdoc modification (part 3 of test 362).
870: (related to bug #1108)
871:
872: * src/targets/isapi/parser3isapi.C: +pa_strcat
873:
874: * src/: classes/memory.C, include/pa_memory.h,
875: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
876: PA_GC_GCOLLECT used
877:
878: * src/include/pa_memory.h: +PA_GC_COLLECT
879:
880: * src/targets/cgi/parser3.C: msvs support fixes
881:
882: * src/lib/gc/include/gc.h: more cleanup
883:
884: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
885:
886: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
887: targets/cgi/parser3.C: $main:HTTPD.mode implemented
888:
889: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
890:
891: * configure.ac: pthread.h added to checked headers
892:
893: * src/classes/table.C: string stream is back :)
894:
895: * src/classes/memory.C: GC_generate_random_backtrace no longer
896: exists
897:
898: * src/main/pa_globals.C: GC_dont_gc replaced
899:
900: * src/lib/gc/include/gc.h: major cleanup, only used functions are
901: left to simplify adding new functions. depricated GC_dont_gc
902: replaced with GC_disable and GC_enable calls.
903:
904: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
905: CORD_from_file* not used and thus removed
906:
907: * src/lib/gc/include/gc_allocator.h: minor cleanup
908:
909: 2020-12-14 moko
910:
911: * src/classes/: curl.C, memory.C, table.C: every TLS should be
912: referenced elsewhere, or GC will collect it.
913:
914: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
915: main/pa_xml_io.C: bugfix: TLS variables should be referenced
916: elsewhere, or GC will collect them (and we'll get GPF in
917: multithreaded enviroment). May be it can be also fixed by some
918: GC call, not sure. But this fix costs nothing (but hours of
919: debugging to find the issue :).
920:
1.150 moko 921: 2020-12-11 moko
922:
923: * configure.ac: gettid() check added
924:
925: * src/main/pa_threads.C: HAVE_GETTID used
926:
927: * src/include/pa_config_auto.h.in: +HAVE_GETTID
928:
929: * src/: include/pa_threads.h, main/pa_threads.C: now unified
930: version for isapi/cgi/apache
931:
932: * buildall: threads are now required.
933:
934: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
935: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
936: main/main.vcproj: pa_threads.C moved to main
937:
938: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
939: isapi/pa_threads.C: pa_threads.C moved to main
940:
941: * src/: main/Makefile.am, targets/cgi/Makefile.am,
942: targets/apache/Makefile.am: pa_threads.C moved to main
943:
944: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
945:
946: * src/: include/pa_stylesheet_connection.h,
947: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
948: and weird GPF in multithreaded httpd is gone
949:
950: * src/include/: pa_stylesheet_connection.h,
951: pa_sql_driver_manager.h: whitespace
952:
953: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
954:
955: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
956: main/pa_stylesheet_manager.C: whitespace, warning war
957:
958: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
959: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
960: parser_multithreaded never used
961:
962: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
963:
964: 2020-12-10 moko
965:
966: * src/: include/pa_config_includes.h, include/pa_http.h,
967: main/pa_http.C, targets/cgi/parser3.C: initial support for
968: MULTITHREADED and PARALLEL httpd server modes
969:
970: * src/main/pa_globals.C: GC_java_finalization is depricated
971:
972: 2020-12-09 moko
973:
974: * etc/auto.p.in: + @httpd-main
975:
976: * src/: include/pa_common.h, main/pa_request.C,
977: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
978: work
979:
980: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
981: slow file_read_binary no longer used, send_range added
982:
983: 2020-12-08 moko
984:
985: * src/main/pa_request.C: >4Gb support
986:
987: * src/targets/cgi/parser3.C: msvc warning war
988:
989: * src/: include/pa_config_includes.h, main/pa_http.C,
990: main/pa_request.C: msvc warnings war
991:
992: * src/classes/image.C: warning war
993:
994: * src/classes/table.C: MSVC warning war
995:
996: * src/targets/cgi/parser3.C: msvc warnings war
997:
998: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
999: added
1000:
1.149 moko 1001: 2020-12-07 moko
1002:
1.150 moko 1003: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
1004: avoid logging beside system-wide auto.p
1005:
1006: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
1007:
1008: * configure, configure.ac, src/include/pa_config_auto.h.in:
1009: configure options added:
1010:
1011: --with-system-cfg=FILE to specify system-wide auto.p
1012: --with-system-log=FILE to specify system-wide parser3.log
1013:
1014: * Makefile.am: bin no longer exists
1015:
1016: * configure, configure.ac: auto.p moved to etc to simplify debian
1017: package
1018:
1019: * buildall: auto.p and parser3.charsets moved to their default
1020: location after install
1021:
1022: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
1023:
1024: * aclocal.m4, configure: automake 1.15 -> 1.16.1
1025:
1.149 moko 1026: * src/targets/cgi/parser3.C: locate_config call returned to
1027: original place as it requires pa_thread_request() under Windows
1028:
1029: * src/targets/cgi/parser3.C: renaming
1030:
1031: 2020-12-06 moko
1032:
1033: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
1034: check added
1035:
1036: 2020-12-04 moko
1037:
1038: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
1039: main/pa_request.C: unified uint64_t lseek implemented to support
1040: >4Gb files under x86, including Windows
1041:
1042: 2020-12-02 moko
1043:
1044: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
1045: with max_file_size
1046:
1047: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1048: support for processing files sized >4Gb on 32 bit planforms
1049:
1050: * tests/399.html: file moved
1051:
1052: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
1053:
1054: * src/targets/cgi/pa_sapi_info.h: warning war
1055:
1056: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
1057: warning war
1058:
1059: 2020-12-01 moko
1060:
1061: * src/classes/image.C: mp4 extended size (>4Gb) support added
1062:
1063: * src/classes/image.C: for "size not found" exception to be shown
1064: if size not found until eof
1065:
1066: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
1067: bit linux)
1068:
1069: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
1070: #1188)
1071:
1072: 2020-11-30 moko
1073:
1074: * src/classes/image.C: definitions moved closer to code
1075:
1076: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
1077: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
1078: 395_dir/3_VP8X.webp, results/395.processed,
1079: results/396.processed: tests for ^image::measure[] .webp support
1080: added, all image files moved into one directory (related to
1081: feature #1188)
1082:
1083: * src/classes/image.C: ^image::measure[] now supports webp (feature
1084: #1188)
1085:
1.148 moko 1086: 2020-11-29 moko
1087:
1088: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
1089: processing, unnessesary defines removed
1090:
1091: 2020-11-24 moko
1092:
1093: * tests/results/: 099.processed, 100.processed, 205.processed,
1094: 309.processed, 310.processed: Content-Disposition: inline
1095: returned
1096:
1097: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
1098: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
1099: ] added (related to bug #1204)
1100:
1101: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
1102: ] supported to avoid Content-Disposition: inline;
1103: filename="<file>.ext" but still set Content-Type for ext (related
1104: to bug #1204)
1105:
1.147 moko 1106: 2020-11-22 moko
1107:
1108: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
1109: types/pa_vfile.C: pa_filename added to avoid useless rsplit
1110:
1111: * src/main/pa_request.C: content_disposition_inline returned.
1112:
1113: 2020-11-17 moko
1114:
1115: * src/main/pa_request.C: empty main method name support
1116:
1117: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
1118: config_handler added, stdout flush added.
1119:
1120: 2020-11-16 moko
1121:
1122: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
1123:
1124: * tests/results/: 099.processed, 205.processed, 237.processed,
1125: 309.processed, 310.processed: Content-Disposition: inline is not
1126: required and should not contain filename="<name>"
1127:
1128: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
1129: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1130: targets/isapi/parser3isapi.C: pa_strcat implemented and used
1131:
1.146 moko 1132: 2020-11-14 moko
1133:
1134: * src/targets/cgi/parser3.C: spelling
1135:
1136: * src/targets/cgi/parser3.C: renaming
1137:
1138: * src/targets/cgi/parser3.C: args_skip removed, locate_config
1139: relocated
1140:
1141: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
1142: before request processing, which is weired
1143:
1144: 2020-11-13 moko
1145:
1146: * src/main/pa_http.C: pa_recv added with timeout support, thus read
1147: copied in httpd.
1148:
1149: 2020-11-12 moko
1150:
1151: * src/main/pa_http.C: ALARM code unified to be used in httpd
1152:
1153: * src/: include/pa_request.h, main/pa_request.C,
1154: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
1155:
1156: * src/main/pa_http.C: URI validation added
1157:
1158: * src/targets/cgi/parser3.C: filespec_to_process now variable,
1159: can't be empty but can be null. httpd-main is now main method
1160: name for httpd mode
1161:
1162: 2020-11-11 moko
1163:
1164: * src/main/pa_request.C: path_translated can be null in httpd mode
1165:
1166: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
1167: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
1168: classes/xdoc.C, include/pa_request.h, main/execute.C,
1169: main/pa_request.C: r.absolute -> r.full_disk_path
1170:
1171: * src/targets/cgi/parser3.C: if filename to process is not
1172: specified, auto.p should be present.
1173:
1.145 moko 1174: 2020-11-03 moko
1175:
1176: * src/: classes/op.C, include/pa_request.h: unused argument removed
1177:
1178: * src/main/pa_request.C: content_disposition_inline is the default,
1179: not required.
1180:
1.144 moko 1181: 2020-10-29 moko
1182:
1183: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
1184: ^use[file; $.main(true) ] implemented for auto.p processing and
1185: path_translated changing to correct relative files path
1186: calculation in httpd mode
1187:
1188: * src/: include/pa_request.h, main/pa_request.C:
1189: fail_on_read_problem removed, as it allways true, as if should
1190: be.
1191:
1192: * src/: include/pa_request.h, main/pa_request.C,
1193: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1194: targets/isapi/parser3isapi.C: clearing config_filespec when
1195: config was not found, thus flag not required and removed.
1196:
1197: 2020-10-28 moko
1198:
1199: * tests/: 402.html, results/402.processed: error reporting test
1200:
1201: * src/main/execute.C: better error reporting when
1202: $result[^hash::create[]] in @main.
1203:
1204: * src/main/: execute.C, pa_request.C: frame.result() should be used
1205: + minor optimization
1206:
1207: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
1208: main/pa_xml_io.C: execute_*_method simplified and unified
1209:
1210: 2020-10-27 moko
1211:
1212: * tests/: 306.html, results/306.processed: a bit more testing. :)
1213:
1214: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
1215: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
1216: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
1217: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
1218: types/pa_vmethod_frame.h, types/pa_vobject.C,
1219: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
1220: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
1221: longer used in object-prototype mode
1222:
1223: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
1224: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
1225: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
1226: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
1227: $form:name[value] features
1228:
1.143 moko 1229: 2020-10-18 moko
1230:
1231: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
1232:
1233: 2020-10-15 moko
1234:
1235: * src/main/pa_http.C: url no longer needed as
1236: ALTER_EXCEPTION_SOURCE is used
1237:
1238: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
1239: main/pa_http.C: check_file_size filespec is now optional
1240:
1241: * src/: classes/curl.C, include/pa_exception.h,
1242: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
1243: ALTER_EXCEPTION_COMMENT added for better error reporting
1244:
1245: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
1246: results/346-curl.processed, results/379-curl.processed,
1247: results/379.processed: test results updated as load now provides
1248: better error reporting + curl responses updated
1249:
1250: 2020-10-14 moko
1251:
1252: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
1253: main/pa_string.C, targets/apache/mod_parser3_core.C,
1254: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
1255: checked. 10 is now default base, no hex autodetect by default
1256:
1257: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1258: connection socket closing in destructor + accept exception
1259: handling
1260:
1261: * src/targets/cgi/parser3.C: warning war
1262:
1263: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
1264: main/pa_request.C, targets/apache/mod_parser3_core.C,
1265: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
1266: exception handling unified
1267:
1268: 2020-10-13 moko
1269:
1270: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
1271: autodetection
1272:
1273: * src/targets/apache/mod_parser3_core.C: reverted to atoi
1274:
1275: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
1276:
1277: * src/main/pa_http.C: warning war
1278:
1.142 moko 1279: 2020-10-12 moko
1280:
1.143 moko 1281: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
1282: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
1283: unhandled exception code optimization
1284:
1285: * src/targets/cgi/parser3.C: request_info now global variable
1286:
1287: * src/main/pa_http.C: http_read_response moved to HTTP_response
1288: class
1289:
1290: * src/: include/pa_http.h, main/pa_http.C,
1291: targets/cgi/pa_sapi_info.h: read_post implemented
1292:
1.142 moko 1293: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1294: [host:]port syntax support in httpd mode
1295:
1296: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
1297: targets/cgi/parser3.C: populate_env added
1298:
1299: * src/include/pa_hash.h: to make get(char *) compiling in
1300: HashStringString
1301:
1302: 2020-10-10 moko
1303:
1304: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
1305: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
1306:
1307: * src/: include/pa_http.h, include/pa_request_info.h,
1308: main/pa_http.C, main/pa_string.C,
1309: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
1310: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1311: types/pa_vrequest.C: initial httpd mode implementation
1312:
1.141 moko 1313: 2020-10-04 moko
1314:
1315: * src/targets/cgi/parser3.C: options together
1316:
1317: 2020-09-30 moko
1318:
1319: * src/main/pa_http.C: renamed
1320:
1.140 moko 1321: 2020-08-14 moko
1322:
1323: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
1324: src/targets/cgi/Makefile.am: no httpd as separate library
1325:
1326: 2020-08-13 moko
1327:
1328: * src/targets/cgi/parser3.C: SAPI::die used in exception in
1329: unhandled exception handler to report 500 instead of 200 it was
1330: before.
1331:
1332: * src/targets/apache/mod_parser3_core.C: minor cleanup
1333:
1334: * src/: include/pa_sapi.h, main/untaint.C,
1335: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1336: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
1337: thus replaced with SAPI::die and removed
1338:
1339: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
1340: cgi/parser3.C: whitespace
1341:
1342: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
1343:
1344: 2020-08-12 moko
1345:
1346: * src/targets/cgi/parser3.C: duplicate info in signal logging
1347: removed, whitespace was: SIGPIPE received while executing code.
1348: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
1349: cl=0]
1350:
1351: * parser3.sln: + httpd.vcproj
1352:
1353: 2020-08-11 moko
1354:
1355: * src/targets/cgi/Makefile.am: +libhttpd
1356:
1357: * configure.ac, src/lib/Makefile.am: +libhttpd
1358:
1.139 moko 1359: 2020-07-13 moko
1360:
1361: * tests/: 401.html, results/401.processed: test for hash key does
1362: not keep language, but tainted in foreach.
1363:
1.138 moko 1364: 2020-07-01 moko
1365:
1366: * tests/: 235.html, results/235.processed: test result updated as
1367: messages before attachments implemented (feature #1176)
1368:
1.137 moko 1369: 2020-06-27 moko
1370:
1371: * tests/: 400.html, results/400.processed: test updated to check
1372: ^return{code}
1373:
1374: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
1375: fixed
1376:
1377: 2020-06-26 moko
1378:
1379: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
1380: added (related to https://www.parser.ru/forum/?id=85319)
1381:
1382: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
1383: when $result assignment was last statement in the method
1384: (https://www.parser.ru/forum/?id=85319)
1385:
1.136 moko 1386: 2020-05-23 moko
1387:
1388: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
1389: whitespace, unused level removed
1390:
1391: 2020-05-19 moko
1392:
1393: * src/types/pa_vmail.C: whitespace
1394:
1395: * src/types/pa_vmail.C: files should be processed last (related to
1396: feature #1176)
1397:
1.135 moko 1398: 2020-05-12 moko
1399:
1400: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
1401: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
1402:
1403: * configure.ac: FreeBSD1X.X check added to avoid
1404: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
1405:
1.134 moko 1406: 2020-02-26 moko
1407:
1408: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
1409: compilation issue (related to bug #1201)
1410:
1411: * src/main/pa_common.C: entry_readable -> entry_exists,
1412: undocumented access(fname, R_OK) call removed (fixes bug #1201)
1413: -f and -d now works under Windows in UTF-8 with Russian
1414: filenames.
1415:
1416: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
1417: advice (related to feature #1199)
1418:
1419: 2020-02-25 moko
1420:
1421: * buildall: --silent removed
1422:
1423: * configure.ac: gmime-3.0 support
1424:
1425: * buildall: --with-system-mailreceive option added to build with
1426: system libgmime
1427:
1428: * src/types/pa_vmail.C: avoiding
1429: https://github.com/jstedfast/gmime/issues/83 "feature" (related
1430: to feature #1199)
1431:
1.133 moko 1432: 2020-02-18 moko
1433:
1434: * src/classes/op.C: windows x64 debug mode compile fix
1435:
1436: * src/main/pa_globals.C: no longer required due to -MD -> -MT
1437: change (releated to feature #1200)
1438:
1439: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1440: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
1441: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
1442: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
1443: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1444: targets/apache/ApacheModuleParser3.vcproj,
1445: targets/apache/ApacheModuleParser3Core.vcproj,
1446: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1447: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
1448: dependency (related to feature #1200)
1449:
1.132 moko 1450: 2020-02-12 moko
1451:
1452: * src/types/pa_vmail.C: minimize diff
1453:
1454: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
1455: #1199)
1456:
1.131 moko 1457: 2020-01-18 moko
1458:
1459: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
1460:
1.130 moko 1461: 2019-12-28 moko
1462:
1463: * src/targets/cgi/parser3.C: avoid empty ?
1464:
1465: 2019-12-27 moko
1466:
1467: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
1468: DOCUMENT_ROOT (related to feature #1164)
1469:
1470: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
1471: fcgiwrap setup (implements feature #1164)
1472:
1473: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
1474: but no issues found (related to feature #1164)
1475:
1476: * src/targets/cgi/parser3.C: actualized
1477:
1478: 2019-12-26 moko
1479:
1480: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
1481: removed
1482:
1483: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
1484: removed
1485:
1486: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
1487: allocation errors, we don't want default gc warnings (without
1488: timestamp and URI).
1489:
1490: * src/: classes/memory.C, main/pa_globals.C,
1491: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1492: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
1493: pa_globals_init
1494:
1495: * src/main/pa_globals.C: setup_hex_value() removed, static array
1496: initialization used (optimization)
1497:
1498: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
1499: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
1500: pa_socks_init/pa_socks_done moved inside pa_globals_init
1501: (optimization)
1502:
1.129 moko 1503: 2019-12-09 moko
1504:
1505: * src/include/pa_config_fixed.h: warning war
1506:
1.128 moko 1507: 2019-12-08 moko
1508:
1509: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
1510: process grammar under Unix.
1511:
1512: 2019-12-07 moko
1513:
1514: * tests/389.html: For Windows XP. :)
1515:
1516: * tests/388-sql.html: Windows compatibility added
1517:
1518: 2019-12-06 moko
1519:
1520: * src/targets/cgi/parser3.C: warning war
1521:
1522: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
1523: == sizeof(CORD)) to avoid aligning bugs in future
1524:
1525: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
1526: XML_STATIC
1527:
1528: * src/include/pa_request.h: StackItem() not required
1529:
1530: * src/include/pa_stack.h: warning war
1531:
1532: * src/include/pa_config_includes.h: GCC warning silenced
1533:
1534: * src/include/pa_memory.h: warning war: the program should also
1535: define 'void operator delete [](void*, std::size_t)'
1536: [-Wsized-deallocation]
1537:
1538: * src/types/: pa_vregex.h, pa_vtable.h: warning war
1539:
1540: * src/classes/string.C: not reqired cast removed
1541:
1542: * src/classes/string.C: not reqired cast removed
1543:
1544: 2019-12-05 moko
1545:
1546: * src/lib/sdbm/pa_file_io.C: warning war
1547:
1548: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
1549: enum Language : size_t - required for VS2015+ to make
1550: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
1551: without it (related to feature #1198)
1552:
1553: 2019-12-04 moko
1554:
1555: * src/main/pa_base64.C: unsigned char -> uchar
1556:
1557: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
1558: as other libs
1559:
1560: * src/include/pa_version.h: +amd64
1561:
1562: 2019-12-03 moko
1563:
1564: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
1565: release
1566:
1567: * src/include/pa_config_includes.h: warning war
1568:
1569: * src/classes/image.C: warning war
1570:
1571: * src/main/pa_globals.C: x64 libs support
1572:
1573: * src/include/pa_config_includes.h: warning war
1574:
1575: * src/types/pa_method.h: warning war
1576:
1.127 moko 1577: 2019-11-28 moko
1578:
1579: * src/classes/math.C: vs2003 compatibility + warning war
1580:
1581: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
1582: libxml2-2.9.9 (related to feature #1136)
1583:
1584: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
1585: typecast for more compatibility (related to feature #1136)
1586:
1587: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
1588: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
1589: feature #1136)
1590:
1591: 2019-11-26 moko
1592:
1593: * src/main/: compile_tools.C, compile_tools.h: invalid assert
1594: removed (it was failing in $$var case), condition added
1595:
1.126 moko 1596: 2019-11-25 moko
1597:
1598: * tests/: 397.html, 399.html, results/141.processed,
1599: results/399.processed: base64 options tested
1600:
1601: * src/: classes/math.C, main/pa_http.C: base64 options used
1602:
1603: * src/main/pa_base64.C: base64 encode rewritten, base64 options
1604: implemented (feature #986)
1605:
1606: * src/main/pa_cache_managers.C: whitespace
1607:
1608: * tests/: 397.html, 399.html, results/399.processed: tests for
1609: ^base64 encode options added (related to feature #986)
1610:
1611: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
1612: pa_base64_encode(file) removed - more memory, but faster and less
1613: code (related fo feature #986)
1614:
1615: 2019-11-24 moko
1616:
1617: * tests/: 155.html, results/155.processed: limit and offset in
1618: ^table::load[] now supported, thus test added
1619:
1620: * src/: classes/file.C, classes/table.C, include/pa_common.h,
1621: main/pa_common.C: optimization: offset and limit options parsing
1622: moved inside file_load.
1623:
1624: 2019-11-23 moko
1625:
1626: * src/: classes/file.C, classes/op.C, include/pa_common.h,
1627: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
1628: optimization: file_read replaced with simplified file_read_binary
1629:
1630: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
1631: types/pa_vform.C: whitespace
1632:
1633: * src/: include/pa_common.h, main/pa_common.C: never used params
1634: removed
1635:
1636: 2019-11-21 moko
1637:
1638: * tests/: 193.html, results/193.processed, results/389.processed:
1639: test results updated as now base64 does not discard tail without
1640: padding (related to feature #986)
1641:
1642: 2019-11-20 moko
1643:
1644: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
1645: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
1646: pa_base64_decode (related to feature #986)
1647:
1648: * tests/398.html: tests for base64 decode added (related to feature
1649: #986)
1650:
1651: * src/main/pa_base64.C: base64_decode rewritten - padding option
1652: support, padding inside base 64 supported (related to feature
1653: #096)
1654:
1655: 2019-11-19 moko
1656:
1657: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
1658: FreeBSD 12
1659:
1.125 moko 1660: 2019-11-16 moko
1661:
1662: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
1663: support added, step support removed (related to #986)
1664:
1665: 2019-11-15 moko
1666:
1667: * src/classes/math.C: using log since log2 is not present on
1668: FreeBSD < 8.4 (related to feature #1177)
1669:
1670: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
1671: pa_base64_size extracted and used for files as well (related to
1672: feature 986)
1673:
1674: 2019-11-14 moko
1675:
1676: * tests/: 397.html, results/397.processed: + content check
1677:
1678: * tests/: 141.html, results/141.processed: make test resuls more
1679: readable
1680:
1681: * tests/: 397.html, results/193.processed, results/397.processed:
1682: test results updated after \x00 character was disabled in
1683: math:convert string mode (related to feature #1177)
1684:
1685: * src/classes/: math.C, string.C: \\x00 character disabled while
1686: converting to string (as in base64, related to feature #1177)
1687:
1688: * src/classes/file.C: more correct arguments separation
1689:
1690: * src/: classes/file.C, classes/math.C, classes/string.C,
1691: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1692: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
1693: options added, but not yet implemented (related to feature #986)
1694:
1695: * src/classes/math.C: whitespace
1696:
1697: 2019-11-13 moko
1698:
1699: * tests/: 397.html, results/397.processed: +tainting test (related
1700: to feature #1177)
1701:
1702: * src/classes/math.C: as we now produce not only digits, result
1703: should be tainted (related to feature #1177)
1704:
1705: * src/main/pa_base64.C: whitespace
1706:
1707: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
1708: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1709: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
1710: implementation moved from pa_common.h and pa_common.C
1711:
1712: 2019-11-12 moko
1713:
1714: * tests/: 275.html, results/275.processed: out of range test fixed,
1715: as ^math:convert now supports arbitrary precision
1716:
1717: 2019-11-11 moko
1718:
1719: * tests/results/389.processed: uctualized error message
1720:
1721: * tests/: 389.html, 397.html, results/397.processed: tests for
1722: ^math:convert added (related to feature #1177)
1723:
1724: * src/classes/math.C: ^math:convert now supports arbitrary
1725: precision, alphabet support added (implements feature #1177)
1726:
1.124 moko 1727: 2019-11-06 moko
1728:
1729: * tests/: 181.html, results/181.processed: entities usage added,
1730: more entites load tests (related to bug #842 discussion)
1731:
1732: 2019-11-05 moko
1733:
1734: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
1735: call from xmlFileOpen if http://localhost/<file> was not found
1736: (related to bug #842)
1737:
1738: * src/main/pa_xml_io.C: rename
1739:
1740: * src/main/pa_xml_io.C: +MemoryStream constructor
1741:
1742: * src/main/pa_xml_io.C: whitespace
1743:
1.123 moko 1744: 2019-10-31 moko
1745:
1746: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
1747: XML_PARSE_NOENT) added to fix entities load, (related to feature
1748: #1181)
1749:
1.122 moko 1750: 2019-10-25 moko
1751:
1752: * tests/: 388-sql.html, results/388-sql.processed: more multiple
1753: queries tests
1754:
1755: 2019-10-24 moko
1756:
1757: * tests/: 388-sql.html, results/388-sql.processed: support for
1758: pgsql driver test
1759:
1760: * tests/: 388-sql.html, results/388-sql.processed:
1761: multi_statements=1 now tested, mysql test now supported
1762: (connection must be specified in [parser3] section in .my.cnf)
1763: related to issues #1195 and #1194
1764:
1.121 moko 1765: 2019-09-11 moko
1766:
1767: * src/classes/int.C: whitespace
1768:
1769: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
1770: exception test
1771:
1772: * tests/results/388-sql.processed: sql queries now shown (related
1773: to feature #1196)
1774:
1775: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
1776: with old parser versions.
1777:
1778: * src/: classes/file.C, classes/hash.C, classes/string.C,
1779: classes/table.C, classes/void.C, include/pa_sql_connection.h,
1780: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
1781: instead of connect string in query_event_handlers exceptions
1782: (implements feature #1196)
1783:
1.120 moko 1784: 2019-09-06 moko
1785:
1786: * tests/388-sql.html: mysql compat
1787:
1788: * src/: classes/hash.C, classes/string.C, classes/table.C,
1789: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
1790: sql_ variables declaration moved to pa_common.h
1791:
1.116 moko 1792: 2019-01-15 moko
1793:
1794: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
1795: logically sorted
1796:
1797: 2018-12-27 moko
1798:
1799: * src/include/pa_config_includes.h: warning war:
1800: -Wdeprecated-register added for C++ 17
1801:
1802: 2018-10-15 moko
1803:
1804: * configure.ac: FreeBSD 11.2 can be build with ./configure
1805: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
1806: --with-xml=/usr/local/
1807:
1808: 2018-09-24 moko
1809:
1810: * tests/: 396.html, 396.tiff, results/396.processed: test for
1811: ^image::measure[] now supports tiff added (related to feature
1812: #1188)
1813:
1814: * src/classes/image.C: ^image::measure[] now supports tiff
1815: (implements feature #1188)
1816:
1817: 2018-09-20 moko
1818:
1819: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
1820: files measure added (related to ticket #1188)
1821:
1822: * src/classes/image.C: measure of bmp files implemented (related to
1823: ticket #1188)
1824:
1825: 2018-09-18 moko
1826:
1827: * tests/: 394-curl.html, results/394-curl.processed,
1828: results/auto.p: test for bug #1187 (max_file_size check for head
1829: requests) added
1830:
1831: 2018-08-24 moko
1832:
1833: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
1834: response content-length check is required (fixes bug #1187)
1835:
1836: 2018-05-11 moko
1837:
1838: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
1839: $.append(bool) ] option added (related to feature #919)
1840:
1841: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
1842: from misha@ patch (implements feature #919)
1843:
1844: 2018-03-22 moko
1845:
1846: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
1847: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
1848: with 128kb buffer. Now works at least 12 times faster. :) May be
1849: Windows-only problem.
1850:
1851: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
1852: build fix)
1853:
1854: 2018-02-03 moko
1855:
1856: * src/main/execute.C: removes irrelevant lines from exception stack
1857: trace when exceptions occurs in assigment (fixes bug #1165)
1858:
1859: * tests/: 393.html, results/393.processed: test for behavour after
1860: "Property can not be created, already exists field with that
1861: name" exception removed (related to feature #1183)
1862:
1863: * src/types/pa_vclass.C: "Property can not be created, already
1864: exists field with that name" exception removed (implements
1865: feature #1183)
1866:
1867: 2018-01-19 moko
1868:
1869: * src/classes/string.C: whitespace
1870:
1871: * src/classes/string.C: whitespace
1872:
1873: * tests/: 392.html, results/392.processed: test for
1874: ^regex::create[$regex] added (related to feature #1135)
1875:
1876: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
1877: ^regex::create[$regex] added (implements feature #1135)
1878:
1879: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
1880: commented define added (related to feature #1157)
1881:
1882: 2018-01-17 moko
1883:
1884: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
1885:
1886: 2018-01-15 moko
1887:
1888: * tests/: 390.html, results/390.processed: real path replaced by
1889: stub
1890:
1891: * tests/: 391.html, results/391.processed: test for feature #1181
1892: (XML_PARSE_HUGE exception) added
1893:
1894: 2018-01-11 moko
1895:
1896: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
1897: XML_PARSE_HUGE option passed by default (implements feature
1898: #1181)
1899:
1900: * src/classes/string.C: whitespace
1901:
1902: 2017-12-10 moko
1903:
1904: * tests/: 389.html, 390.html, results/389.processed,
1905: results/390.processed: image code coverage tests added (related
1906: to feature #1125)
1907:
1908: 2017-12-08 moko
1909:
1910: * tests/: 346-curl.html, 388-sql.html, 389.html,
1911: results/346-curl.processed, results/388-sql.processed,
1912: results/389.processed: more code coverage tests
1913:
1914: * tests/: 264.html, results/264.processed: code coverage for
1915: ^file::exec[]
1916:
1917: 2017-12-07 moko
1918:
1919: * tests/: 174.html, 388-sql.html, 389.html,
1920: results/388-sql.processed, results/389.processed,
1921: results/174.processed: more coverage tests
1922:
1923: * src/classes/math.C: exception text actualized
1924:
1925: 2017-12-06 moko
1926:
1927: * tests/388-sql.html: $SQL can be here
1928:
1929: * tests/results/auto.p: $SQL not required here
1930:
1931: * tests/: 388-sql.html, 389.html, Makefile,
1932: results/388-sql.processed, results/389.processed, results/auto.p:
1933: code coverage tests for sql (using sqlite) and int/double/bool
1934: added (related to feature #1125)
1935:
1936: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1937: lib/json/json.vcproj, lib/md5/md5.vcproj,
1938: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
1939: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1940: targets/apache/ApacheModuleParser3Core.vcproj,
1941: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1942: types/types.vcproj: gc\include no longer required
1943:
1944: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
1945: required
1946:
1947: * src/: classes/Makefile.am, classes/table.C,
1948: include/pa_config_includes.h, include/pa_string.h,
1949: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1950: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
1951: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
1952: targets/apache/Makefile.am, targets/cgi/Makefile.am,
1953: types/Makefile.am: to be sure that our version of gc.h/cord.h is
1954: used, we now include it directly
1955:
1956: 2017-12-04 moko
1957:
1958: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
1959: memcached/memcached.vcproj, punycode/punycode.vcproj,
1960: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
1961: where required
1962:
1963: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
1964: now can be used to trace memory allocations
1965:
1966: * src/: classes/table.C, include/pa_config_includes.h,
1967: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1968: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
1969: method removes, libcord also can work without libgc
1970:
1971: * src/classes/json.C: pa_gc_malloc_atomic should not be used
1972:
1973: 2017-11-29 moko
1974:
1975: * src/classes/curl.C: no exception if some of ^curl:info[] elements
1976: are not present (related to feature #1173)
1977:
1978: * tests/346-curl.html: test updated to test curl content-length bug
1979: (related to feature #1173)
1980:
1981: * tests/results/346-curl.processed: more test for content-length
1982: curl bug (related to feature #1173)
1983:
1984: * tests/results/346-curl.processed: test results updated after
1985: #1173 implemented
1986:
1987: 2017-11-28 moko
1988:
1989: * src/classes/curl.C: another libcurl Content-length bug walkaround
1990: (related to feature #1173)
1991:
1992: 2017-11-27 moko
1993:
1994: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
1995: $.http_version[version string] added (implements feature #1173),
1996: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
1997: where $post(true) bug existed.
1998:
1999: 2017-11-18 moko
2000:
2001: * src/include/pa_memory.h: warning war (related to feature #1170)
2002:
2003: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
2004: feature #1170)
2005:
2006: 2017-11-17 moko
2007:
2008: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
2009: std::basic_stringstream used in ^table.csv-string[] is compatible
2010: with delete usage check only under Debian 9 (related to feature
2011: #1170)
2012:
2013: 2017-11-16 moko
2014:
2015: * src/: classes/curl.C, classes/hash.C, classes/json.C,
2016: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
2017: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
2018: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
2019: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
2020: types/pa_vxdoc.h: regular new/delete no longer used in our code,
2021: stubs defend from accidental use (implements feature #1170)
2022:
2023: 2017-06-24 moko
2024:
2025: * configure.ac: minor fix: thanks to alx@
2026:
1.115 moko 2027: 2017-05-29 moko
2028:
2029: * src/types/pa_vmail.C: mail headers are now correctly truncated -
2030: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
2031: added to avoid cutting of UTF-8 chars (fixed bug #123)
2032:
2033: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
2034: ignored, =?UTF-8?Q?= should start in case of leading space
2035: (related to bug #123)
2036:
2037: * buildall: echo -n -> printf for OS X. :)
2038:
2039: 2017-05-25 moko
2040:
2041: * tests/: 288.html, results/288.processed: test updated afted
2042: setting $o.prop without setter exception removed (related to
2043: feature #1157)
2044:
2045: * src/types/pa_vclass.C: no more "this property has no setter
2046: method" when setting $o.prop without setter (implements feature
2047: #1157)
2048:
2049: * buildall: echo \c -> echo -n for FreeBSD
2050:
2051: * configure, configure.ac, src/include/pa_config_auto.h.in,
2052: src/types/pa_vdouble.h: isfinite now checked in configure
2053:
2054: * compile, config.guess, config.sub, depcomp, install-sh, missing:
2055: upgraded to automake 1.15
2056:
2057: 2017-05-23 moko
2058:
2059: * src/types/pa_vdouble.h: finite returned where isfinite not
2060: defined
2061:
2062: 2017-05-22 moko
2063:
2064: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
2065:
2066: * buildall: extern CFLAGS setting support
2067:
2068: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
2069:
2070: * buildall: http -> https
2071:
2072: * buildall: gc-7.2f -> gc-7.6.0
2073:
2074: 2017-05-20 moko
2075:
2076: * buildall: https, pcre, xml, xslt updated to current versions
2077: (related to feature #1136)
2078:
2079: 2017-05-19 moko
2080:
2081: * tests/097.html: after parser.ru moved to https
2082:
2083: 2017-05-17 moko
2084:
2085: * tests/results/: 175.processed, 372.processed: tests resuls
2086: updated after lintian spelling typos fixed (related to bug #1156)
2087:
2088: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
2089: classes/string.C, classes/table.C, main/pa_charset.C,
2090: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
2091: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
2092: lintian reported by Sergey B Kirpichev (fixes bug #1156)
2093:
2094: * tests/results/096.processed: +XMP
2095:
2096: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
2097: $.xmp(true) options tested (test for feature #1154)
2098:
2099: * src/classes/image.C: ^image:measure[] options $.exif(false)
2100: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
2101: fetched by default! (implements feature #1154)
2102:
2103: 2017-05-16 moko
2104:
2105: * tests/: 256.html, results/256.processed: ^json:string[$image] now
2106: allowed (related to feature #1154)
2107:
2108: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2109: initial XMP implementation - without options and transcode
2110: (related to feature #1154)
2111:
2112: 2017-05-12 moko
2113:
2114: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2115: image: exif moved to ffields, skipped in ^image.html[] where
2116: iterators now used (preparation for feature #1154)
2117:
2118: 2017-05-05 moko
2119:
2120: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
2121: results/387.processed: test for circular class inheritance check
2122: added (related to bug #1150)
2123:
2124: * src/types/pa_vstateless_class.C: circular class inheritance check
2125: added (fixes endless add_derived bug #1150)
2126:
2127: 2017-05-04 moko
2128:
2129: * tests/: 386.html, results/386.processed: test for
2130: $table.value(number) added (related to feature #1152)
2131:
2132: * src/types/pa_vtable.C: table put_element: column value must be
2133: string - > column value must be string compatible to allow
2134: $t.value(1) (implements feature #1152)
2135:
2136: 2017-05-03 moko
2137:
2138: * src/main/pa_request.C: $use[$method] is not possible, reverting
2139: (related to feature #1151)
2140:
2141: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
2142: not possible, removing test (related to feature #1151)
2143:
2144: * src/: main/pa_request.C, types/pa_vstateless_class.h:
2145: get_element_method added and used to allow $use[$method] and
2146: $autouse[$method] (implements feature 1151)
2147:
2148: * tests/: 386.html, 386.p, results/386.processed: test for @use in
2149: variable added (related to feature #1151)
2150:
2151: * tests/results/226.processed: actualized after ^try-catch used
2152:
2153: * tests/: 226.html, 385.html, results/385.processed: test for
2154: @autouse in variable added
2155:
2156: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
2157:
1.114 moko 2158: 2017-02-27 moko
2159:
2160: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
2161:
1.113 moko 2162: 2017-02-20 moko
2163:
2164: * operators.txt: actualization + beauty
2165:
2166: 2017-02-16 moko
2167:
2168: * tests/: 384.html, results/384.processed: test for
2169: ^reflection:mixin[; $.name[] ] option added (related to feature
2170: #1089)
2171:
2172: * tests/: 384.html, results/384.processed: test for
2173: ^reflection:mixin[] added (related to feature #1089)
2174:
2175: * src/types/pa_value.h: warning war: virtual ~Value() added
2176:
1.112 moko 2177: 2017-02-15 moko
2178:
2179: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
2180: fixed
2181:
2182: * tests/: 320.html, results/320.processed: $.reverse(true/false)
2183: test added (related to feature #1069)
2184:
2185: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2186: compilation without HASH_ORDER fixed
2187:
2188: * src/: classes/reflection.C, include/pa_hash.h:
2189: $.reverse(true/false) added to ^reflection:methods[] (related to
2190: feature #1069)
2191:
2192: 2017-02-14 moko
2193:
2194: * tests/: 152.html, results/152.processed: test for $._default hash
2195: added (related to bug #1131)
2196:
2197: * tests/: 277.html, results/277.processed: test for hash with only
2198: $._default is now defined (related to bug #1131)
2199:
2200: * src/types/pa_vhash.h: hash with only $._default is now defined
2201: (fixed bug #1131)
2202:
2203: 2017-02-13 moko
2204:
2205: * tests/cat-windows.sh: cat-windows added (cygwin required)
2206:
2207: * tests/: 171.html, 264.html, 286.html, 370.html,
2208: results/320.processed, results/375.processed, results/auto.p:
2209: cat-windows.sh support added
2210:
2211: * tests/375.html: Windows support
2212:
2213: * tests/270.html: documented
2214:
2215: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
2216: (not backslashes) even under Windows (broke test 270)
2217:
2218: 2017-02-12 moko
2219:
2220: * tests/: descript.ion, todo.txt: cleanup
2221:
2222: 2017-02-09 moko
2223:
2224: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
2225: run_tests.cmd: Windows compatibility
2226:
2227: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
2228: incorrectly (GMT) if parser is called from cygwin
2229:
1.111 moko 2230: 2017-02-08 moko
2231:
1.112 moko 2232: * operators.txt: actualization 15% completed
2233:
2234: * operators.txt: cp1251 -> utf-8
2235:
2236: * NEWS, README: minor update
2237:
2238: * src/include/pa_config_includes.h: warning war continues
2239:
2240: * src/: include/pa_config_includes.h, include/pa_memory.h,
2241: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2242: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
2243: gcc 6.x issues fixed
2244:
1.111 moko 2245: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2246: classes/classes.h, classes/curl.C, classes/date.C,
2247: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2248: classes/hashfile.C, classes/image.C, classes/inet.C,
2249: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2250: classes/memcached.C, classes/memory.C, classes/op.C,
2251: classes/reflection.C, classes/regex.C, classes/response.C,
2252: classes/string.C, classes/table.C, classes/void.C,
2253: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2254: include/pa_array.h, include/pa_cache_managers.h,
2255: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2256: include/pa_config_fixed.h, include/pa_config_includes.h,
2257: include/pa_dictionary.h, include/pa_dir.h,
2258: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2259: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2260: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2261: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2262: include/pa_request_charsets.h, include/pa_request_info.h,
2263: include/pa_sapi.h, include/pa_socks.h,
2264: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2265: include/pa_stack.h, include/pa_string.h,
2266: include/pa_stylesheet_connection.h,
2267: include/pa_stylesheet_manager.h, include/pa_symbols.h,
2268: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
2269: include/pa_uue.h, include/pa_xml_exception.h,
2270: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
2271: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
2272: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2273: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
2274: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2275: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2276: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2277: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2278: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2279: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2280: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2281: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2282: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2283: main/pa_string.C, main/pa_stylesheet_connection.C,
2284: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
2285: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
2286: main/untaint.C, sql/pa_sql_driver.h,
2287: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2288: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2289: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2290: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2291: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2292: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2293: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
2294: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
2295: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
2296: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
2297: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
2298: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
2299: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
2300: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
2301: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
2302: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
2303: types/pa_vmemcached.h, types/pa_vmemory.h,
2304: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2305: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2306: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2307: types/pa_vresponse.C, types/pa_vresponse.h,
2308: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2309: types/pa_vstateless_object.h, types/pa_vstatus.C,
2310: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2311: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2312: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2313: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2314: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
2315: 2015->2017
2316:
1.110 moko 2317: 2017-02-07 moko
2318:
2319: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
2320:
2321: 2017-02-06 moko
2322:
2323: * src/main/pa_common.C: minor fixes, whitespace
2324:
2325: * src/: classes/curl.C, classes/file.C, classes/image.C,
2326: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
2327: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
2328: now used (implements feature #1081)
2329:
2330: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
2331:
2332: 2017-02-01 moko
2333:
2334: * src/include/pa_request.h: cleanup
2335:
2336: 2017-01-30 moko
2337:
2338: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
2339:
2340: 2017-01-29 moko
2341:
2342: * tests/: 383.html, results/383.processed: test for
2343: ^reflection:stack[] added (related to feature #1052)
2344:
2345: * src/classes/reflection.C: else added
2346:
2347: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
2348: $.max_file_lock_wait added (implements feature #1128)
2349:
2350: 2017-01-28 moko
2351:
2352: * tests/: 379-curl.html, results/379-curl.processed: curl empty
2353: body and other cases tests added (related to featue #1014)
2354:
2355: * src/classes/curl.C: bug if response is empty fixed (related to
2356: feature #1014)
2357:
2358: 2017-01-27 moko
2359:
2360: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
2361: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
2362: added (implements feature #1052)
2363:
2364: 2017-01-25 moko
2365:
2366: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
2367: method test added
2368:
2369: 2017-01-23 moko
2370:
2371: * src/classes/reflection.C: optimization: options->get replaced by
2372: hash iterator
2373:
2374: * tests/: 381.html, results/381.processed: now -> fixed date
2375:
2376: * src/main/pa_request.C: warning war
2377:
2378: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
2379: 5Mb (fixes bug #1058)
2380:
2381: * src/classes/curl.C: warning war
2382:
2383: * tests/: 381.html, results/381.processed: tests for ^json:string
2384: $.one-line(true) option added (related to feature #1124)
2385:
2386: * src/: classes/json.C, types/pa_value.h: $json-string
2387: $.one-line(true|false) options is now supported (implements
2388: feature #1124)
2389:
2390: * tests/: 380.html, results/380.processed: test for modified
2391: $.max_file_size added (related to bug #1014)
2392:
2393: * tests/: 379.html, results/auto.p: tests for rewritten http file
2394: load added (related to bug #1014)
2395:
2396: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2397: main/pa_common.C, main/pa_http.C: check_file_size added and used
2398: in curl / file load from disk and http, http file load rewritten
2399: (related to bug #1014)
2400:
2401: 2017-01-18 moko
2402:
2403: * tests/: 378.html, results/378.processed: tests for ^result[]
2404: added (related to feature #66)
2405:
2406: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
2407: Method::CO_WITHOUT_FRAME as frame still added in expression
2408: (related to feature #66)
2409:
2410: 2017-01-17 moko
2411:
2412: * tests/: 377.html, results/377.processed: test for different
2413: combinations of breaks in body and delimiter (related to bug
2414: #1077)
2415:
2416: * tests/: 376.html, results/376.processed: many ^break[] tests
2417: added (related to bug #1077)
2418:
2419: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
2420: passed to native method" exception added to avoid bugs due to
2421: WRITE_EXPR_RESULT skipped and native methods execution continues
2422: after ^break[] (related to bug #1077)
2423:
2424: 2017-01-14 moko
2425:
2426: * tests/: 330.html, results/330.processed: test results updated
2427: after ^break[] bugs where fixed (related to bug #1077)
2428:
2429: * tests/: 329.html, results/329.processed: test results updated
2430: after ^break[] bugs where fixed (related to bug #1077)
2431:
2432: * tests/results/320.processed: ^return[] added
2433:
2434: 2017-01-13 moko
2435:
2436: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
2437: classes/table.C, include/pa_request.h, main/execute.C,
2438: main/pa_request.C, targets/cgi/parser3.C,
2439: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
2440: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
2441: checked after each possible process/execute call (fixes bug
2442: #1077)
2443:
2444: 2016-12-29 moko
2445:
2446: * src/main/pa_common.C: warning war
2447:
2448: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
2449: include/pa_types.h, main/pa_request.C, main/pa_string.C:
2450: pa_file_size_limit added, ^math:random fixed for upper limit and
2451: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
2452: (related to feature #1014)
2453:
2454: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
2455: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
2456: (related to feature #1014)
2457:
2458: 2016-12-28 moko
2459:
2460: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
2461: warning war
2462:
2463: 2016-12-26 moko
2464:
2465: * tests/: 341.html, results/341.processed: test for
2466: ^table.hash[id;;$.type[string]] added (related to feature #1057)
2467:
2468: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
2469: (related to feature #1057)
2470:
2471: * src/types/pa_vdate.C: warning war continues...
2472:
2473: * src/: classes/date.C, classes/image.C, classes/table.C,
2474: include/pa_config_includes.h, types/pa_vfile.C: warning war
2475:
2476: * src/lib/gd/gifio.C: warning war / cleanup
2477:
2478: * src/lib/json/pa_json.C: warning war
2479:
2480: * src/classes/hash.C: warning war
2481:
2482: * src/types/pa_vfile.C: warning war
2483:
2484: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
2485: -Wall warning war continues
2486:
2487: * configure.ac: --with-build-warnings actualized
2488:
2489: 2016-12-25 moko
2490:
2491: * src/main/pa_exec.C: -wAll warning war
2492:
2493: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
2494: -wAll warning war
2495:
2496: * src/: include/pa_common.h, include/pa_sapi.h,
2497: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
2498: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
2499: -wAll warning war
2500:
2501: 2016-12-23 moko
2502:
2503: * src/lib/ltdl/Makefile.am: extra dist added
2504:
2505: * tests/results/344.processed: test result updated after $file.text
2506: prefetched in ^hash::create[$file] (related to feature #1075)
2507:
2508: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
2509: ^hash::create[$file] (related to feature #1075)
2510:
2511: 2016-12-22 moko
2512:
2513: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
2514: main/pa_request.C, main/pa_stylesheet_connection.C,
2515: types/pa_vfile.C: file_stat now return 64-bit size (implements
2516: #1014 under 32-bit unix versions)
2517:
2518: 2016-12-21 moko
2519:
2520: * tests/: 375.html, results/375.processed: test for exec returning
2521: stated file added (related to feature #1119)
2522:
2523: * src/classes/file.C: load should not return file with null body
2524: (fixes bug #1119)
2525:
2526: 2016-12-14 moko
2527:
2528: * tests/: 374.html, results/374.processed: test for $method.name
2529: added (related to feature #1117) plus method returning junction
2530: test
2531:
2532: 2016-12-13 moko
2533:
2534: * src/: include/pa_symbols.h, main/pa_symbols.C,
2535: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
2536: (implements feature #1117)
2537:
2538: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
2539: HEAD and TRACE can't have body (implements feature #1116)
2540:
2541: 2016-12-09 moko
2542:
2543: * tests/: 373.html, results/373.processed: tests for
2544: ^reflection:tainting added (related to feature #1098)
2545:
2546: * src/classes/reflection.C: ^reflection:tainting arguments order
2547: change (related to feature #1098)
2548:
2549: 2016-12-06 moko
2550:
2551: * src/: classes/reflection.C, include/pa_string.h,
2552: main/pa_string.C: ^reflection:tainting[$string] added (implements
2553: feature #1098)
2554:
2555: 2016-12-05 moko
2556:
2557: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
2558: (fixes bug #1114)
2559:
2560: 2016-12-04 moko
2561:
2562: * tests/: 206.html, results/206.processed: negative zero (0/-1)
2563: check added
2564:
2565: 2016-12-03 moko
2566:
2567: * tests/: 346-curl.html, results/346-curl.processed: test modified
2568: to test value.as_hash() usage
2569:
2570: * src/classes/curl.C: value.as_hash() used for correct hash
2571: processing
2572:
2573: * src/classes/reflection.C: exceptions texts fixes
2574:
2575: 2016-12-02 moko
2576:
2577: * tests/: 372.html, results/372.processed: tests for
2578: ^reflection:create[ $.class[name] $.constructor[name]
2579: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
2580: feature #1094)
2581:
2582: * src/types/pa_vmethod_frame.h: comment added: params should be
2583: declared outside of *_FRAME_ACTION as MethodParams destructor
2584: will be called in ~VNativeMethodFrame
2585:
2586: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
2587: ] minor fix
2588:
2589: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
2590: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
2591: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
2592: now supported (implements feature #1094) value::as_hash added
2593: (and should be used everywhere)
2594:
2595: * src/classes/reflection.C: cleanup
2596:
2597: 2016-12-01 moko
2598:
2599: * tests/: 356.html, results/356.processed: test for method
2600: junctions class name added to the resulting hash added (related
2601: to feature #1068)
2602:
2603: * src/classes/reflection.C: for method junctions class name added
2604: to the resulting hash (related to feature #1068)
2605:
2606: 2016-11-30 moko
2607:
2608: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
2609: exception (related to bug #1113)
2610:
2611: * src/types/pa_vhashfile.C: whitespace
2612:
2613: * src/main/pa_os.C: errno now returned as it should (fixes bug
2614: #1113)
2615:
2616: * tests/results/: 175.processed, 192.processed, 224.processed,
2617: 229.processed, 239.processed, 244.processed, 246.processed,
2618: 314.processed, 352.processed: tests results updated after method
2619: call exceptions improved as method now keeps its name
2620:
2621: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
2622: types/pa_vmethod_frame.h: method call exceptions improved as
2623: method now keeps its name
2624:
2625: * tests/: 224.html, 239.html, results/224.processed,
2626: results/239.processed: tests and tests results updated after
2627: Request::construct exception changed
2628:
2629: * src/: classes/reflection.C, main/execute.C: Request::construct
2630: exception optimized
2631:
2632: * tests/: 371.html, results/371.processed: test for
2633: WWrapper.get_element call in $.name.key[value] code added
2634: (related to feature #1091)
2635:
2636: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
2637: in $.name.key[value] code (related to feature #1091)
2638:
2639: 2016-11-29 moko
2640:
2641: * src/classes/op.C: VS warning war
2642:
2643: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
2644: C4239: nonstandard extension used : 'return' : conversion from
2645: 'Value' to 'Value &' (related to feature #1020)
2646:
2647: * src/: main/execute.C, types/pa_vmethod_frame.h,
2648: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
2649: used : 'return' : conversion from 'Value' to 'Value &' (related
2650: to feature #1020)
2651:
2652: * src/main/execute.C: VS warning war
2653:
2654: * src/targets/cgi/parser3.C: VS compatibility fix
2655:
2656: * src/include/pa_request.h: VS warning war
2657:
2658: * tests/: 370.html, results/370.processed: test for ^file::exec[
2659: ... $.stdin[$binary_file] ] added (related to bug #1044)
2660:
2661: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
2662: include/pa_string.h, main/pa_exec.C: pa_exec now supports
2663: $.stdin[$binary_file] (fixes bug #1044)
2664:
2665: 2016-11-28 moko
2666:
2667: * src/main/pa_exec.C: whitespace
2668:
2669: * src/main/pa_request.C: whitespace
2670:
2671: * tests/: 369.html, results/369.processed: test for
2672: $response:status usage added (related to feature #1099)
2673:
2674: * src/targets/cgi/parser3.C: HTTP response code used as exit status
2675: if < 100 (implements feature #1099)
2676:
2677: * src/targets/cgi/parser3.C: whitespace
2678:
2679: * src/targets/cgi/parser3.C: whitespace
2680:
2681: * tests/: 368.html, results/368.processed: test updated after
2682: ^reflection:filename[$method] added (related to feature #1053)
2683:
2684: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
2685: main/compile.y, main/execute.C, main/pa_request.C,
2686: types/pa_vclass.h: filename -> filespec,
2687: ^reflection:filename[$method] added (related to feature #1053)
2688:
2689: 2016-11-27 moko
2690:
2691: * tests/: 368.html, results/368.processed: test for
2692: reflection:filename[$class or object] added (related to feature
2693: #1053)
2694:
2695: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
2696: types/pa_vstateless_class.h: ^reflection:filename[$class or
2697: object] added (implements feature #1053)
2698:
2699: 2016-11-26 moko
2700:
2701: * src/: include/pa_request_info.h,
2702: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2703: remove_absolute_uri -> strip_absolute_uri
2704:
2705: 2016-11-25 moko
2706:
2707: * src/: include/pa_request_info.h,
2708: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2709: request_info.remove_absolute_uri added to remove possible
2710: http://site.name/ from $request:uri (implements feature #1112)
2711:
2712: 2016-11-24 moko
2713:
2714: * tests/: 367-curl.html, results/367-curl.processed: test for
2715: previous request headers clearing after redirect added (related
2716: to bug #1109)
2717:
2718: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
2719: response headers from previous requests are now cleared, only
2720: last request headers are collected (fixes bug #1109)
2721:
2722: * tests/results/: 266.processed, 321.processed, 356.processed:
2723: tests results updated as method name now added to the resulting
2724: hash for new syntax only (Imp1 compatimility fixed, related to
2725: feature #1068)
2726:
2727: * src/classes/reflection.C: method name now added to the resulting
2728: hash for new syntax only (Imp1 compatimility fixed, related to
2729: feature #1068)
2730:
2731: * tests/results/366.processed: test for native and parser
2732: implementation of ^use[] logic (related to feature #1074)
2733:
2734: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
2735: for native and parser implementation of ^use[] logic (related to
2736: feature #1074)
2737:
2738: 2016-11-23 moko
2739:
2740: * src/: classes/op.C, include/pa_request.h, main/compile.y,
2741: main/pa_request.C: @USE file now implemented as ^use[file;
2742: $.origin[origin_file] ] (implements feature #1074)
2743:
1.109 moko 2744: 2016-11-21 moko
2745:
1.110 moko 2746: * tests/: 365.html, results/365.processed: test for $caller bugs in
2747: 3.4.4 and $caller.method now tested (related to feature #1110)
2748:
2749: * tests/: 364.html, results/364.processed: $caller usage in
2750: different contexts now tested (related to feature #1110)
2751:
2752: * src/types/types.vcproj: +pa_vcaller_wrapper.h
2753:
2754: * src/types/Makefile.am: pa_vcaller_wrapper.h added
2755:
1.109 moko 2756: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
2757: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
2758: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
2759: used (implements feature #1110)
2760:
2761: 2016-11-20 moko
2762:
2763: * src/types/pa_vdouble.h: whitespace
2764:
2765: 2016-11-11 moko
2766:
2767: * tests/: 363.html, results/363.processed: more tests for feature
2768: #1091 (how parser methods work in expression context)
2769:
2770: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
2771: expressions strings are now written as strings, not values by
2772: write_as_string (related to feature #1091)
2773:
2774: * src/classes/op.C: to make more correct behavour in expression
2775: context
2776:
2777: 2016-11-07 moko
2778:
2779: * tests/: 362.html, results/362.processed: test for
2780: xsltParseStylesheetDoc caching as xsl modification after it added
2781: (related to bug #1108)
2782:
2783: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
2784: result now cached as xdoc is modified after it (fixes bug #1108)
2785:
2786: 2016-11-06 moko
2787:
2788: * src/types/pa_vxdoc.h: whitespace
2789:
2790: 2016-11-05 moko
2791:
2792: * src/types/pa_vmethod_frame.h: cleanup
2793:
2794: 2016-11-03 moko
2795:
2796: * tests/results/244.processed: more correct exception after method
2797: frames separation
2798:
2799: * src/types/pa_vmethod_frame.h: minor optimizaion
2800:
2801: * src/types/pa_method.h: optimization: params_count added
2802:
2803: * src/: classes/json.C, classes/op.C, classes/reflection.C,
2804: include/pa_request.h, main/execute.C, main/pa_request.C,
2805: types/pa_value.C, types/pa_vmethod_frame.C,
2806: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
2807: VMethodFrame now divided into VNativeMethodFrame,
2808: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
2809: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
2810: and used (related to feature #1104)
2811:
2812: 2016-11-02 moko
2813:
2814: * src/: classes/bool.C, classes/curl.C, classes/date.C,
2815: classes/double.C, classes/file.C, classes/hash.C,
2816: classes/hashfile.C, classes/image.C, classes/inet.C,
2817: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2818: classes/memcached.C, classes/op.C, classes/reflection.C,
2819: classes/regex.C, classes/string.C, classes/table.C,
2820: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
2821: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
2822: r.write (implements feature #1091)
2823:
2824: * src/main/execute.C: cleanup (related to feature #1104)
2825:
2826: * src/: include/pa_request.h, main/execute.C,
2827: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
2828: added, in_expression removed (implements feature #1104)
2829:
2830: 2016-10-31 moko
2831:
2832: * src/types/pa_value.C: whitespace
2833:
2834: 2016-10-28 moko
2835:
2836: * tests/results/244.processed: updated after error reporting fixed
2837: in pa_wcontext.C
2838:
2839: * src/types/pa_wcontext.C: error reporting fixed
2840:
2841: * src/types/pa_wcontext.h: whitespace
2842:
2843: * src/classes/image.C: not fully readed entries are no longer
2844: processed (fixes bug #1106)
2845:
2846: 2016-10-26 moko
2847:
2848: * src/classes/image.C: whitespace
2849:
2850: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
2851: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
2852: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
2853: longer required (related to feature #1091)
2854:
2855: * tests/results/: 264.processed, 350.processed: test results update
2856: reverted (whitespace optimization) after write_no_lang removed :)
2857: (related to feature #1091)
2858:
2859: * src/: classes/file.C, classes/hash.C, classes/op.C,
2860: classes/string.C, classes/table.C, classes/void.C,
2861: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
2862: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
2863: equal write_pass_lang (related to feature #1091)
2864:
2865: * tests/results/: 264.processed, 350.processed: test results
2866: updated (whitespace optimization) after write_assign_lang removed
2867: (related to feature #1091)
2868:
2869: * tests/: 361.html, results/361.processed: test for non-string
2870: ^untaint added (related to feature #1091)
2871:
2872: * src/: classes/curl.C, classes/date.C, classes/file.C,
2873: classes/hash.C, classes/op.C, classes/string.C,
2874: include/pa_request.h, main/execute.C: optimization:
2875: write_assign_lang removed as not required (first part of feature
2876: #1091 implementation)
2877:
1.108 moko 2878: 2016-10-12 moko
2879:
2880: * tests/: 360.html, results/360.processed: more test code (related
2881: to feature #1104)
2882:
2883: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
2884: include/pa_request.h, main/compile.y, main/execute.C: opcode
2885: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
2886: WContext is next task (implements feature #1104)
2887:
2888: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
2889: / CO_WITHOUT_WCONTEXT
2890:
2891: * tests/: 360.html, results/360.processed: test for in expression
2892: state (related to feature #1104)
2893:
2894: 2016-10-11 moko
2895:
2896: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
2897:
2898: * src/classes/op.C: default value removed from initializer
2899:
2900: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
2901:
2902: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
2903:
2904: 2016-10-10 moko
2905:
2906: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
2907: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
2908: to feature #42)
2909:
2910: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
2911: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
2912:
2913: 2016-10-08 moko
2914:
2915: * src/classes/double.C: whitespace
2916:
2917: 2016-10-07 moko
2918:
2919: * src/types/pa_vmethod_frame.h: reorder
2920:
2921: 2016-10-06 moko
2922:
2923: * src/classes/date.C: typo
2924:
2925: * src/types/pa_vmethod_frame.h: whitespace + cleanup
2926:
2927: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2928: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
2929: types/pa_vmethod_frame.h: params.get now returns Value&, not
2930: Value*
2931:
2932: * src/types/pa_vmethod_frame.C: params.get should return Value&.
2933:
2934: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
2935: removed; first as_* code rewrite
2936:
2937: 2016-10-05 moko
2938:
2939: * src/include/pa_request.h: whitespace
2940:
2941: * tests/: 359.html, results/359.processed: test for VCodeFrame and
2942: intercept_string added (related to feature #1097)
2943:
2944: * src/: classes/image.C, classes/op.C, classes/table.C,
2945: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2946: optimization: intercept_string removed (implements feature #1097)
2947:
2948: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
2949:
2950: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
2951: from VCodeFrame and WWrapper as not required
2952:
2953: 2016-10-04 moko
2954:
2955: * src/: classes/curl.C, classes/date.C, classes/double.C,
2956: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
2957: classes/int.C, classes/json.C, classes/op.C,
2958: classes/reflection.C, classes/string.C, classes/table.C,
2959: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2960: proces_to_value -> process after StringOrValue removed (related
2961: to feature #1020)
2962:
2963: * src/classes/form.C: whitespace
2964:
2965: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
2966:
2967: * tests/: 357.html, 358.html, results/357.processed,
2968: results/358.processed, results/auto.p: test for @conf
2969: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
2970:
2971: 2016-10-03 moko
2972:
2973: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
2974: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
2975: supported (implements feature #42)
2976:
2977: * src/types/pa_vregex.h: no reason for VRegex to be
2978: is_evaluated_expr
2979:
2980: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
2981: (implements feature #1095)
2982:
2983: 2016-10-01 moko
2984:
2985: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
2986: false by default (related to feature #1089)
2987:
2988: 2016-09-30 moko
2989:
2990: * src/types/pa_wcontext.h: cleanup
2991:
2992: 2016-09-29 moko
2993:
2994: * src/main/execute.C: whitespace
2995:
2996: * src/include/pa_request.h: whitespace
2997:
2998: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2999: classes/op.C, classes/table.C, include/pa_request.h,
3000: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
3001: types/pa_vobject.C, types/pa_wcontext.h: optimization:
3002: StringOrValue removed as it just slows down and adds complexity
3003: (implements feature #1020)
3004:
3005: 2016-09-28 moko
3006:
3007: * tests/: 356.html, results/266.processed, results/321.processed,
3008: results/356.processed: tests updated after name was added to
3009: method_info hash, test for ^reflection:method_info[junction]
3010: added (related to feature #1068)
3011:
3012: * src/classes/reflection.C: ^reflection:method_info[junction] now
3013: supported, method name added to the resulting hash (implements
3014: feature #1068)
3015:
3016: * tests/: 276.html, results/276.processed: more tests for
3017: ^reflection:delete[]
3018:
3019: * src/classes/reflection.C: fixed bug then ^reflection:delete
3020: didn't work on class and could damage native objects (like file)
3021:
3022: 2016-09-26 moko
3023:
3024: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
3025: results/345.processed, results/346-curl.processed,
3026: results/347-curl.processed, results/348.processed: numbers added
3027: to simplify diff analysis
3028:
3029: * tests/: 352.html, results/352.processed: test result updated as
3030: method name used
3031:
3032: * src/classes/reflection.C: method name used
3033:
3034: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
3035: its name
3036:
3037: * src/types/pa_method.h: whitespace
3038:
3039: * src/classes/reflection.C: both method and field with one name can
3040: exist.
3041:
3042: * src/classes/reflection.C: ^reflection:mixin added (implements
3043: feature #1089)
3044:
3045: * tests/: 355.html, results/355.processed: property appears in
3046: derived class if added in base test added
3047:
3048: * src/types/pa_vstateless_class.h: get_method declaration +
3049: whitespace
3050:
3051: * tests/: 354.html, results/354.processed: nice test from method
3052: and property with one name in class added
3053:
3054: 2016-09-23 moko
3055:
3056: * src/classes/reflection.C: ^reflection:method usage documented
3057:
3058: 2016-09-22 moko
3059:
3060: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
3061: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
3062: compile warning and GPF occures on VS2003 (related to feature
3063: #1087)
3064:
3065: * tests/: 350.html, results/350.processed: test added for
3066: $.encloser[] support in ^table::create (related to feature #11)
3067:
3068: * src/classes/table.C: another minor fix (related to feature #11)
3069:
1.107 moko 3070: 2016-09-21 moko
3071:
3072: * src/include/pa_config_fixed.h: vs2015 compilation fixes
3073:
3074: * src/: classes/curl.C, classes/file.C, classes/hash.C,
3075: classes/json.C, classes/string.C, classes/table.C,
3076: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3077: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3078: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
3079: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
3080: pa_charsets, vs2015 warning war
3081:
3082: * src/classes/table.C: vs2015 warning war
3083:
3084: * src/types/pa_vdate.C: vs2015 warning war
3085:
3086: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
3087:
3088: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
3089: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
3090:
3091: * src/main/pa_common.C: vs2015 compilation fixes
3092:
3093: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
3094: vs2015 compilation fixes
3095:
3096: * src/main/pa_charset.C: vs2015 warning war
3097:
3098: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
3099:
3100: * src/main/pa_charset.C: vs2015 warning war
3101:
3102: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
3103:
3104: * src/types/pa_vdate.C: vs2015 compilation fix
3105:
3106: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
3107:
3108: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
3109: VS2015 compilation fixes
3110:
3111: * src/classes/table.C: minor fix (related to feature #11)
3112:
3113: * tests/results/282.processed: no longer skipping extra enclosers
3114: (related to feature #11)
3115:
3116: * src/classes/table.C: minor fix + no longer skipping extra
3117: enclosers (related to feature #11)
3118:
3119: * src/classes/table.C: minor optimization (related to feature #11)
3120:
3121: * src/classes/table.C: minor fix and optimization (related to
3122: feature #11)
3123:
3124: 2016-09-20 moko
3125:
3126: * tests/: 353.html, results/353.processed: test for
3127: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
3128: added (related to bug #1090)
3129:
3130: * src/main/compile.y: PC.cclass->is_vars_local() check added for
3131: one_big_piece (fixes bug #1090)
3132:
3133: * tests/: 229.html, results/229.processed: code coverage tests
3134:
3135: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
3136: body) was called
3137:
3138: * src/classes/op.C: whitespace
3139:
3140: * tests/: 323.html, results/323.processed: test for code junction
3141: should not be returned by ^reflection:class, ^reflection:base
3142:
3143: * src/classes/reflection.C: bugfix: code junction should not be
3144: returned by ^reflection:class, ^reflection:base
3145:
3146: * tests/: 323.html, 352.html, results/352.processed: no more
3147: exception for ^reflection:method[class;no-such-method] (related
3148: to feature #1087)
3149:
3150: * src/classes/reflection.C:
3151: ^reflection:method[class;no-such-method] : exception -> void
3152: (related to feature #1087)
3153:
3154: * src/include/pa_request.h: request::write_value added to allow
3155: write value without convertion (related to issue #1091)
3156:
3157: 2016-09-19 moko
3158:
3159: * src/main/pa_random.C: windows build fix
3160:
3161: * src/types/pa_vhash.h: warning war
3162:
3163: 2016-09-14 moko
3164:
3165: * tests/: 352.html, 552.html, results/352.processed,
3166: results/552.processed: test for ^reflection:method[] extension
3167: added (related to feature #1087)
3168:
3169: * tests/: 552.html, results/552.processed: test for
3170: ^reflection:method[] extension added (related to feature #1087)
3171:
3172: * src/classes/reflection.C: compatibility issue fixed, VClass
3173: dynamic_cast check added (related to feature #1087)
3174:
3175: * tests/: 351.html, results/351.processed: test for @auto[]
3176: inheritance bug diring ^process[] added (related to bug #1088)
3177:
3178: * src/: classes/op.C, main/pa_request.C,
3179: types/pa_vstateless_class.C: set_method now checks for @auto[] to
3180: disable it inheritance during ^process (fixes bug #1088)
3181:
3182: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
3183: added (implements feature #1087)
3184:
3185: 2016-09-13 moko
3186:
3187: * tests/: 349.html, results/auto.p: test for objects prototyping
3188: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
3189: to feature #1086)
3190:
3191: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
3192: types/pa_vobject.C: objects now are not class instances, but have
3193: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
3194: in @conf (implements feature #1086)
3195:
3196: 2016-09-08 moko
3197:
3198: * src/: classes/file.C, classes/mail.C, classes/string.C,
3199: classes/table.C, main/pa_http.C, main/pa_string.C,
3200: include/pa_string.h: cleanup: string::split limit argument
3201: removed as no longer required, pos_after no longer reference
3202: (related to feature #11)
3203:
3204: * src/classes/table.C, tests/results/348.processed: now exception
3205: is rised when invalid option is passed to ^table::create[]
3206:
3207: * tests/: 282.cfg, 282.html, results/282.processed: more code
3208: coverage tests
3209:
3210: * tests/: 348.html, results/348.processed: code coverage tests
3211: added
3212:
3213: * tests/: 348.html, results/348.processed: generic ^table::create[]
3214: tests
3215:
3216: * tests/: 035.html, results/035.processed, results/272.processed:
3217: tests updated after $.encloser[] support for ^table::create
3218: implementation (related to feature #11)
3219:
3220: * src/classes/table.C: $.encloser[] support for ^table::create
3221: finally added (implements feature #11)
3222:
3223: 2016-09-07 moko
3224:
3225: * src/include/pa_string.h: added StringSplitHelper as friend
3226: (related to feature #11)
3227:
3228: * src/include/pa_string.h: body and langs now protected, not
3229: private to allow inheritance (related to feature #11)
3230:
3231: * src/classes/table.C: lsplit optimized before cloning for
3232: ^table::create with $.encloser[] (related to feature #11)
3233:
3234: * src/classes/table.C: optimizaion: TableControlChars.separators
3235: added and used (related to feature #11)
3236:
3237: * src/classes/table.C: spelling:
3238:
3239: TableSeparators -> TableControlChars column -> separator
3240: separators -> control_chars
3241:
3242: 2016-09-06 moko
3243:
3244: * src/main/pa_string.C: whitespace
3245:
3246: * src/main/pa_string.C: whitespace
3247:
3248: 2016-09-01 moko
3249:
3250: * tests/: 347-curl.html, results/347-curl.processed: to make tests
3251: results OS-independent
3252:
3253: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
3254: compiler (related to feature #1042)
3255:
3256: 2016-08-15 moko
3257:
3258: * src/include/pa_string.h: whitespace
3259:
3260: * src/classes/table.C: whitespace
3261:
1.106 moko 3262: 2016-08-05 moko
3263:
3264: * tests/: 344.html, results/344.processed: test for
3265: ^hash::create[$file] added (related to feature #1075)
3266:
3267: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
3268: supported (implements feature #1075)
3269:
3270: 2016-08-04 moko
3271:
3272: * tests/: 341.html, results/341.processed: more code coverage tests
3273:
3274: * tests/: 346-curl.html, results/346-curl.processed: more code
3275: coverage tests for curl
3276:
3277: * tests/: 346-curl.html, results/346-curl.processed: more code
3278: coverage tests for curl
3279:
3280: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
3281: results/223.processed: code coverage tests: $.form[ $.table[] ]
3282: test added
3283:
3284: * tests/: 223-curl.html, results/223-curl.processed: more code
3285: coverage tests for curl
3286:
3287: 2016-08-03 moko
3288:
3289: * src/classes/curl.C: dlink(curl_library) now called not once, but
3290: until it will be loaded, allowing to find existing library.
3291:
3292: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
3293: results/347-curl.processed: more code coverage tests for curl
3294:
3295: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
3296: results/339-curl.processed, results/346-curl.processed: curl
3297: functionality tests
3298:
3299: 2016-08-02 moko
3300:
3301: * tests/: 339.html, results/339.processed: test for tables in
3302: ^file:load[] and ^curl:load[] (commented) added (related to
3303: feature #1042)
3304:
3305: * tests/: 345.html, results/345.processed: code coverage tests for
3306: file class
3307:
3308: * tests/: 344.html, results/344.processed: code coverage tests
3309:
3310: * tests/: 344.html, results/344.processed: mdate removed from
3311: output
3312:
3313: * src/classes/file.C: minor bugfix: is_text should be taked from
3314: fcontent.is_text_mode() if not set (related to feature #1061)
3315:
3316: * tests/: 344.html, results/344.processed: more tests
3317:
3318: * tests/: 343.html, 344.html, results/343.processed,
3319: results/344.processed: tests for ^file::create[ $.from-charset
3320: and $.to-charset ] (related to feature #1061)
3321:
3322: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3323: aset_text_mode argument optimized
3324:
3325: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3326: checkBOM now used in detect_binary_content (related to feature
3327: #1061)
3328:
3329: * src/main/pa_request.C: load_charset no longer required to_upper
3330:
3331: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
3332: preserves original file mode (if no $.mode specified)
3333:
3334: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3335: ^file::create now supports $.from-charset[] and $.to-charset
3336: options (implements feature #1061), automatic transcode is done
3337: if text file is created from binary file and charset is detected.
3338:
3339: 2016-07-30 moko
3340:
3341: * src/classes/table.C: ^t.hash[..;] now supported (related to
3342: feature #1057)
3343:
3344: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
3345: added (related to feature #1057)
3346:
3347: * tests/: 286.html, results/286.processed: code tests coverage
3348:
3349: 2016-07-29 moko
3350:
3351: * src/classes/table.C: table size should be checked inside menu and
3352: foreach (related to feature #858)
3353:
3354: * src/: classes/curl.C, classes/file.C, classes/string.C,
3355: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3356: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
3357: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
3358: charsets.get now does str_upper inside (related to feature #1061)
3359:
3360: * tests/: 342.html, results/342.processed: more code coverage tests
3361:
3362: * tests/: 342.html, outputs/342.processed: table menu code coverage
3363: + foreach test added (related to feature #858)
3364:
3365: * tests/: 341.html, results/341.processed: tests for
3366: ^table.hash[]{code} added + code coverage tests (related to
3367: feature #1057)
3368:
3369: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
3370: value} support (implements feature #1057)
3371:
3372: * src/classes/table.C: whitespace
3373:
3374: 2016-07-28 moko
3375:
3376: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
3377: from URL, if not specified query string removed from url-based
3378: filenames in ^curl:load[] and ^file::load[] (related to feature
3379: #1042)
3380:
3381: 2016-07-27 moko
3382:
3383: * tests/: 340.html, results/340.processed: test for
3384: transcode_text_result=false added (related to issue #1042)
3385:
3386: 2016-07-26 moko
3387:
3388: * src/types/pa_vfile.C: file name should not be empty (if file path
3389: is folder and ends with /) (related to feature #1042)
3390:
3391: * src/main/pa_http.C: whitespace optimizaion
3392:
3393: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3394: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
3395: multiple headers, ^file::load supports headers transcoding
3396: (implements feature #1042)
3397:
3398: 2016-07-25 moko
3399:
3400: * src/include/pa_common.h: PA_DEFAULT added
3401:
3402: 2016-07-22 moko
3403:
3404: * tests/: 338.html, results/338.processed: test for
3405: $date.field(value) added (related to feature #1066)
3406:
3407: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3408: $date.field(value) now supported for y/m/d/h/m/s (implements
3409: feature #1066)
3410:
1.105 moko 3411: 2016-07-21 moko
3412:
3413: * src/: classes/file.C, classes/image.C, include/pa_common.h,
3414: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
3415: arguments removed; image.C - absolute path shown in exception
3416: (implements feature #1071)
3417:
3418: * tests/: 235.html, results/235.processed: test and test result
3419: updated after static boundary in mail and Errors-To: mail header
3420: removed (related to feature #1047)
3421:
3422: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
3423: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
3424: used, static boundary in mail removed, Errors-To: mail header
3425: removed (implements feature #1047)
3426:
3427: 2016-07-20 moko
3428:
3429: * src/: classes/reflection.C, types/pa_vstateless_class.h:
3430: equest.classes(): Value -> VStateless_class, part 3 (related to
3431: issue #1051)
3432:
3433: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
3434: request.classes(): Value -> VStateless_class, part 2 (related to
3435: issue #1051)
3436:
3437: * tests/results/: 224.processed, 323.processed: classes without
3438: methods should not be methoded (related to issue #1051)
3439:
3440: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
3441: main/compile_tools.h, main/pa_request.C: request.classes(): Value
3442: -> VStateless_class, part 1 (related to issue #1051)
3443:
3444: * tests/: 337.html, results/337.processed: test for
3445: ^reflection:fields_reference[] and VHashReference class added
3446: (related to feature #1072)
3447:
3448: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
3449: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
3450: and VHashReference added, allowing ^reflection:fields_reference[]
3451: implementation (closes feature #1072)
3452:
3453: 2016-07-19 moko
3454:
3455: * tests/: 323.html, results/323.processed: we want to see
3456: "methoded"
3457:
3458: * tests/: 336.html, results/336.processed: test for $BASE:property
3459: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
3460: #1059)
3461:
3462: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
3463: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
3464: somebody_entered_some_class, $BASE:property works again,
3465: ^BASE:method[] bugs fixed (fixes bug #1059)
3466:
3467: 2016-07-14 moko
3468:
3469: * tests/: 335.html, results/335.processed: test for feature #1055
3470: added
3471:
3472: * src/classes/hash.C: bugfix: $._default was not copied if empty
3473: feature: ^hash.contains[_default] added (implements feature
3474: #1055)
3475:
3476: 2016-07-13 moko
3477:
3478: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
3479: should not call @autouse (http://www.parser.ru/forum/?id=83480)
3480:
3481: 2016-07-05 moko
3482:
3483: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
3484: in ^hash.foreach (related to feature #1073)
3485:
3486: 2016-07-04 moko
3487:
3488: * tests/: 134.html, 281.html, results/134.processed,
3489: results/281.processed: tests updated after hash blocking removed
3490: (related to feature #1073)
3491:
3492: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
3493: no longer blocks on change during foreach (implements feature
3494: #1073)
3495:
3496: 2016-06-17 moko
3497:
3498: * tests/: 330.html, results/330.processed: try exception source
3499: test added (related to bug in #1062)
3500:
3501: * tests/: 334.html, results/334.processed: Exception stack trace
3502: test added (related to bug in $1062)
3503:
3504: * src/classes/op.C: Exception trace now correctly restored and
3505: errors reported (related to bug #1062)
3506:
1.104 moko 3507: 2016-05-25 moko
3508:
3509: * src/main/compile.y: minor cleanup + beauty
3510:
3511: 2016-05-24 moko
3512:
3513: * tests/: 333.html, results/333.processed: more exceptions testing
3514:
3515: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
3516: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
3517: features #1056, #1026)
3518:
3519: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
3520: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
3521: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
3522: (implements feature #1056)
3523:
3524: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3525: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
3526: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
3527: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
3528: feature #1026)
3529:
3530: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
3531: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
3532: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
3533: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
3534: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
3535: feature #1026)
3536:
3537: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3538: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
3539: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
3540: SYMBOLS_CACHING define implemented (related to feature #1026)
3541:
3542: * src/main/main.vcproj: + ps_symbols
3543:
3544: * src/: include/Makefile.am, include/pa_string.h,
3545: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
3546: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
3547: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3548: types/pa_vstateless_class.C: initial implementation for symbols
3549: cache (related to feature #1026)
3550:
3551: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
3552:
3553: * src/main/pa_globals.C: minor cleanup
3554:
3555: 2016-05-19 moko
3556:
3557: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
3558: (related to feature #1046)
3559:
3560: * tests/: 331.html, results/331.processed: test for
3561: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
3562: (related to feature #1051)
3563:
3564: * src/main/compile.y:
3565: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
3566: (implements feature #1054)
3567:
3568: 2016-05-18 moko
3569:
3570: * src/types/pa_vtable.C, tests/results/324.processed: no more
3571: "column not found" exception for ^table.no-such-method[] (related
3572: to feature #1046)
3573:
3574: * tests/: 261.html, results/261.processed: test added and updated
3575: after feature #1046 implementation
3576:
3577: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
3578: types/pa_vvoid.h: $string.anything works for whitespace strings,
3579: ^string.contains added for hash compatibility, $string.method no
3580: longer returns stting method (implements feature #1046)
3581:
3582: 2016-05-12 moko
3583:
3584: * src/classes/curl.C: content-type response header no longer
3585: ignored (fixes issue #1045)
3586:
3587: * tests/: 330.html, results/330.processed: test for incomplete
3588: finally execution when break occures added (related to issue
3589: #1077)
3590:
3591: * src/classes/op.C: bugfix: Request::skip reset is called before
3592: executing catch and finally code (fixes issue #1062)
3593:
3594: 2016-05-11 moko
3595:
3596: * tests/: 329.html, results/329.processed: test for invalid
3597: ^break[] behavour added (bug #1077)
3598:
3599: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
3600:
3601: 2016-04-24 moko
3602:
3603: * src/types/pa_vstateless_class.h: warning war
3604:
3605: 2016-04-17 moko
3606:
3607: * tests/: 328.html, results/328.processed: test for
3608: ^break(condition) and ^continue(condition) (related to feature
3609: #1063)
3610:
3611: * src/classes/op.C: ^break(condition) and ^continue(condition)
3612: implemented (feature #1063)
3613:
3614: 2016-04-12 moko
3615:
3616: * tests/results/280.processed: ordered hash now used for class
3617: methods and properties (test results updated for feature #1069)
3618:
3619: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
3620: to xdoc.C as under FreeBSD it was inited after and inheritance
3621: failed (related to issue #1051)
3622:
3623: * tests/: 320.html, results/320.processed: xdoc and xnode methods
3624: are printed to check inheritance (related to feature #1051)
3625:
1.103 moko 3626: 2016-04-09 moko
3627:
3628: * tests/results/320.processed: ordered hash now used for class
3629: methods and properties (test results updated for feature #1069)
3630:
3631: * src/types/pa_vstateless_class.h: ordered hash now used for class
3632: methods and properties (implements feature #1069)
3633:
3634: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
3635: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
3636: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
3637: feature #1051)
3638:
3639: 2016-04-07 moko
3640:
3641: * src/main/execute.C: returned Value in .CLASS case for VJunction
3642: (related to feature #1051)
3643:
3644: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
3645: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
3646: string constants deduplication (related to feature #1051)
3647:
3648: * tests/results/224.processed: test result updated (related to
3649: feature #1051)
3650:
3651: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
3652: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
3653: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
3654: types/pa_vstatus.h: classes hash now contains only
3655: VStateless_class derived objects, .CLASS is also allways
3656: VStateless_class derived object (related to feature #1051).
3657:
3658: 2016-04-06 moko
3659:
3660: * tests/results/323.processed: test result updated after feature
3661: #1051 implementation
3662:
3663: * src/: classes/classes.h, classes/op.C, classes/response.C,
3664: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3665: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
3666: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
3667: types/pa_vresponse.C, types/pa_vresponse.h,
3668: types/pa_vstateless_class.h: base -> methoded_donor for static
3669: classes, type() moved from VStateless_class to VClass and
3670: Methoded (implements feature #1051)
3671:
3672: 2016-04-04 moko
3673:
3674: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
3675: beauty: put_class added (related to feature #1051)
3676:
3677: 2016-04-01 moko
3678:
3679: * tests/results/: 175.processed, 192.processed, 224.processed,
3680: 229.processed, 244.processed, 246.processed, 316.processed: test
3681: results updated as class.type() removed from error messages, only
3682: type() left (related to feature #1051)
3683:
3684: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
3685: classes/op.C, classes/reflection.C, main/compile.y,
3686: main/compile_tools.h, main/execute.C, main/pa_request.C,
3687: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
3688: types/pa_vmethod_frame.h, types/pa_vobject.h,
3689: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
3690: from VStateless_class, type() is used instead (related to feature
3691: #1051)
3692:
3693: * src/classes/mail.C: old logic restored.
3694:
3695: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
3696: classes/classes.h, classes/curl.C, classes/date.C,
3697: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
3698: classes/hashfile.C, classes/image.C, classes/inet.C,
3699: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3700: classes/memcached.C, classes/memory.C, classes/reflection.C,
3701: classes/regex.C, classes/response.C, classes/string.C,
3702: classes/table.C, classes/xdoc.C, classes/xnode.C,
3703: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
3704: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
3705: feature #1051)
3706:
3707: 2016-03-30 moko
3708:
3709: * tests/: 327.html, results/224.processed, results/327.processed:
3710: test for TZ specification in ^date::create[], TZ is kept during
3711: ^date::create[$dt] (related to feature #1048)
3712:
3713: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
3714: ^date::create[], TZ is kept during ^date::create[$dt] (implements
3715: feature #1048)
3716:
3717: 2016-03-29 moko
3718:
3719: * tests/: 315.html, results/315.processed: test for timezone format
3720: +HHmm added (related to feature #1065)
3721:
3722: * src/classes/date.C: timezone format +HHmm now supported
3723: (implements feature #1065)
3724:
3725: 2016-03-28 moko
3726:
3727: * tests/: 202.html, results/131.processed, results/202.processed,
3728: results/224.processed, results/256.processed,
3729: results/315.processed: test results updated after %.2d now
3730: default for hours offset in iso-string (was %2d), test for
3731: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3732: added (related to feature #1065)
3733:
3734: 2016-03-27 moko
3735:
3736: * src/types/pa_vdate.C: '+' sign for zero offset (related to
3737: feature #1065)
3738:
3739: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3740: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3741: added (implements feature #1065)
3742:
3743: 2016-03-24 moko
3744:
3745: * tests/: 202.html, results/202.processed: test $date.week added
3746: (related to bug #1067)
3747:
3748: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
3749: date (fix for bug #1067)
3750:
3751: 2016-03-10 moko
3752:
3753: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
3754:
1.102 moko 3755: 2015-12-07 moko
3756:
3757: * tests/: 326.html, results/326.processed: test for .CLASS &
3758: .CLASS_NAME optimization added (related to feature #844)
3759:
3760: 2015-11-17 moko
3761:
3762: * tests/: 323.html, results/323.processed: order added
3763:
3764: * tests/: 325.html, results/325.processed: double range test added
3765: (related to bug #1049)
3766:
3767: 2015-11-16 moko
3768:
3769: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
3770: added to disallow NaN and Infinity (fixes bug #1049)
3771:
3772: 2015-11-11 moko
3773:
3774: * tests/324.html: parser 3.4.3 execution support added (related to
3775: feature #1017)
3776:
3777: * tests/: 324.html, results/324.processed: test for
3778: GET_ELEMENT4CALL feature added (feature #1017)
3779:
1.101 moko 3780: 2015-10-29 moko
3781:
3782: * operators.txt: updated for 3.4.4
3783:
3784: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
3785:
3786: * src/main/pa_exec.C: get_exit_status implemented for Windows
3787: (related to bug #1043)
3788:
3789: 2015-10-28 moko
3790:
3791: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
3792: hangup during ^file::exec (fixes bug #1043)
3793:
1.100 moko 3794: 2015-10-27 moko
3795:
3796: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
3797:
1.99 moko 3798: 2015-10-26 moko
3799:
1.100 moko 3800: * tests/322.html, src/classes/reflection.C: arguments reorder
3801: (related to issue #1041)
3802:
3803: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
3804: Copyright year updated
3805:
1.99 moko 3806: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
3807: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
3808: classes/form.C, classes/hash.C, classes/hashfile.C,
3809: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
3810: classes/mail.C, classes/math.C, classes/memcached.C,
3811: classes/memory.C, classes/op.C, classes/reflection.C,
3812: classes/regex.C, classes/response.C, classes/string.C,
3813: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
3814: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
3815: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
3816: include/pa_config_fixed.h, include/pa_config_includes.h,
3817: include/pa_dictionary.h, include/pa_dir.h,
3818: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
3819: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
3820: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
3821: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
3822: include/pa_request_charsets.h, include/pa_request_info.h,
3823: include/pa_sapi.h, include/pa_socks.h,
3824: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
3825: include/pa_stack.h, include/pa_string.h,
3826: include/pa_stylesheet_connection.h,
3827: include/pa_stylesheet_manager.h, include/pa_table.h,
3828: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
3829: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
3830: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
3831: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
3832: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
3833: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
3834: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
3835: main/compile.y, main/compile_tools.C, main/compile_tools.h,
3836: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
3837: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
3838: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
3839: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
3840: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
3841: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
3842: main/pa_string.C, main/pa_stylesheet_connection.C,
3843: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
3844: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
3845: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
3846: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
3847: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
3848: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
3849: targets/isapi/parser3isapi.C, types/pa_junction.h,
3850: types/pa_method.h, types/pa_property.h, types/pa_value.C,
3851: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
3852: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
3853: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
3854: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
3855: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
3856: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
3857: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
3858: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
3859: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
3860: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
3861: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
3862: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3863: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
3864: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
3865: types/pa_vresponse.C, types/pa_vresponse.h,
3866: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
3867: types/pa_vstateless_object.h, types/pa_vstatus.C,
3868: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
3869: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
3870: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3871: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
3872: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
3873:
3874: * src/targets/cgi/parser3.C: year updated
3875:
3876: * src/classes/reflection.C: VS2003 compatibility fixed (related to
3877: issue #1041)
3878:
3879: * tests/: 323.html, results/323.processed: test for base classes
3880: added
3881:
3882: * tests/: 261.html, results/261.processed: updated after better
3883: error reporting done for $string.key exception
3884:
3885: * src/types/pa_vstring.h: better error report for $string.key
3886: exception
3887:
3888: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
3889: copied as VObject::get_element4call to remove extra virtual call
3890:
3891: * tests/: 322.html, results/322.processed: test for
3892: ^reflection:is[] added (related to feature #1041)
3893:
3894: * src/classes/reflection.C: ^reflection:is empty value is void
3895: (related to feature #1041)
3896:
3897: * src/classes/reflection.C:
3898: ^reflection:is[class_name|code|method;[context;]element_name]
3899: added (implements feature #1041)
3900:
3901: 2015-10-24 moko
3902:
3903: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
3904:
1.98 moko 3905: 2015-10-22 moko
3906:
3907: * tests/: 321.html, results/321.processed: test for
3908: ^reflection:method_info[] file detection added
3909:
3910: * tests/: 320.html, results/320.processed: test for
3911: ^reflection:class_by_name[class_name] added (related to feature
3912: #993)
3913:
3914: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
3915: added (implements feature #993)
3916:
3917: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
3918: (related to feature #1017)
3919:
3920: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
3921: added (related to issue #1039)
3922:
3923: * src/main/pa_request.C: ^throw origin fixed (related to feature
3924: #1039)
3925:
3926: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
3927: for VDate
3928:
3929: * tests/results/182.processed: updated after feature #1038
3930: implemented
3931:
3932: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
3933: compile-time exception origin added (test for feature #1039)
3934:
3935: * src/: include/pa_request.h, main/compile.C, main/compile.y,
3936: main/pa_request.C: exception unification: compile-time exceptions
3937: now have origin, @USE origins also tracked (implements feature
3938: #1039)
3939:
3940: 2015-10-20 moko
3941:
3942: * src/main/pa_request.C: cleanup
3943:
3944: 2015-10-15 moko
3945:
3946: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
3947:
3948: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
3949: types/pa_vtable.C: new feature: no more $table.method and
3950: $hash.method, aliases for _at, _count, _key (related to feature
3951: #1017)
3952:
1.97 moko 3953: 2015-10-14 moko
3954:
1.98 moko 3955: * tests/: 317.html, results/317.processed: test for
3956: ^string.unescape[] added (related to feature #120)
3957:
1.97 moko 3958: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
3959: defined" bug (described in issue #1036)
3960:
3961: * tests/: 247.html, results/247.processed: test for checkBOM added
3962: (test for bug #1037)
3963:
3964: * src/: include/pa_charsets.h, main/pa_charsets.C,
3965: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
3966: it's not enforced, skips BOM signature if it complies charset
3967: (fixes bug #1037)
3968:
3969: 2015-10-13 moko
3970:
3971: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
3972: linking
3973:
3974: * src/classes/inet.C: vs2003 compilation fix
3975:
3976: * src/classes/math.C: warning war
3977:
3978: * src/lib/punycode/pa_punycode.c: warning war
3979:
3980: 2015-10-12 moko
3981:
3982: * src/lib/punycode/pa_punycode.c: warning war
3983:
3984: * parser3.sln: moved parser3 first, to make it default startup
3985: project
3986:
3987: * buildall: parser "mirror" now used for external libs sources
3988: (implements feature #1036)
3989:
3990: * buildall: most external libs are updated to their current
3991: versions (related to feature #1036)
3992:
3993: * src/classes/image.C: more tags added
3994:
3995: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
3996:
3997: 2015-10-11 moko
3998:
3999: * src/classes/curl.C: minor optimization (related to feature #1035)
4000:
4001: 2015-10-09 moko
4002:
4003: * src/classes/curl.C: pa_strdup added for strings from curl
4004: (related to feature #1035)
4005:
4006: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
4007: ULLONG_MAX definition
4008:
4009: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
4010: (implements feature #1035)
4011:
4012: * src/main/pa_charset.C: String::Body(String::C) used
4013:
4014: * src/main/pa_charset.C: exceptions unified
4015:
4016: * src/: include/pa_charset.h, main/pa_charset.C: declarations
4017: unified
4018:
4019: * src/: classes/file.C, classes/image.C, classes/mail.C,
4020: classes/op.C, classes/xdoc.C, classes/xnode.C,
4021: include/pa_string.h, main/pa_request.C, main/pa_string.C,
4022: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
4023: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
4024: String::Body(String::C) constructor added (related to bug #957)
4025:
4026: * src/classes/file.C: minor optimization
4027:
4028: * src/include/pa_hash.h: hash.get(char*) added, to minimize
4029: Cord(char*) autocreation (related to bug #957)
4030:
4031: * src/: classes/string.C, main/untaint.C: minor optimizations
4032:
4033: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
4034: String(char*, Lang, length) removed, String(C(), Lang) used
4035: instead (related to bug #957)
4036:
4037: 2015-10-08 moko
4038:
4039: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
4040: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
4041: main/untaint.C: Now char * is converted to CORD only using
4042: AS_CORD() to check for empty cord bug (fixes bug #957)
4043:
4044: * src/include/pa_hash.h: fixed compilation without
4045: HASH_CODE_CACHING
4046:
4047: * src/classes/string.C:
4048: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
4049: feature #120)
4050:
4051: * src/main/pa_common.C: reduce js flags checks count (related to
4052: feature #120)
4053:
1.96 moko 4054: 2015-10-07 moko
4055:
4056: * tests/: 275.html, results/275.processed: test modified after
4057: unsigned long long int support implemented (feature #1034)
4058:
4059: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
4060: pa_atoul added for unsigned long long int support
4061:
4062: 2015-10-06 moko
4063:
4064: * src/types/pa_vdate.C: INT_MAX used
4065:
4066: 2015-10-03 moko
4067:
4068: * tests/: 302.html, results/302.processed: test for bug #1023
4069: (\u2028, \u2029 escaping) added
4070:
4071: * src/main/untaint.C: \u2028, \u2029 are now escaped in
4072: json:string[] (fixes bug #1023)
4073:
4074: 2015-09-29 moko
4075:
4076: * tests/305.html: try-catch added for OS without ipv6 support
4077:
4078: * src/lib/json/pa_json.C: more unique prefixes for Solaris
4079: compilation
4080:
4081: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
4082: main/execute.C, types/pa_value.h, types/pa_vhash.h,
4083: types/pa_vtable.C, types/pa_vtable.h: get_element4call
4084: implemented to distinguish ^hash.method from $hash.field
4085: (implements feature #1017)
4086:
4087: * src/lib/punycode/pa_punycode.c: warning war
4088:
4089: * src/include/pa_config_includes.h: warning war
4090:
4091: * src/include/pa_config_includes.h: pragma warning actualized a bit
4092:
4093: * src/include/pa_config_includes.h: warning war
4094:
4095: * src/include/pa_hash.h: clang compilation fix
4096:
4097: 2015-09-27 moko
4098:
4099: * src/main/compile.tab.C: Bison 3 is now default
4100:
4101: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
4102:
4103: 2015-09-25 moko
4104:
4105: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
4106: works with undefined HASH_ORDER (related to feature #196)
4107:
4108: 2015-09-24 moko
4109:
4110: * tests/: 027.html, results/027.processed: test modified to test
4111: ^hash.sort (feature #196)
4112:
4113: * src/: classes/hash.C, include/pa_hash.h:
4114: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
4115: added (implements feature #196)
4116:
4117: * tests/: 316.html, results/316.processed: Added test for bug #1025
4118: (exception handling in non-cached ^cache), plus for "it does not
4119: have logical value" and "$exception.handled value must be either
4120: boolean or string 'cache'" exceptions.
4121:
4122: * src/classes/op.C: ^cache: exceptions now handled in non-cached
4123: code (fixes bug #1025)
4124:
1.95 moko 4125: 2015-09-23 moko
4126:
4127: * src/classes/table.C: warning war
4128:
4129: * src/: classes/math.C, types/pa_vcookie.C: warning war
4130:
4131: * src/classes/file.C: warning war
4132:
4133: * src/: include/pa_table.h, main/pa_table.C: warning war
4134:
4135: * src/: main/pa_request.C, classes/date.C: warning war
4136:
4137: * src/: types/pa_vdate.C, classes/op.C: warning war
4138:
4139: * tests/: 122.html, results/122.processed: win sync: to remove
4140: differences with OS that doesn't keep timezone change history
4141:
4142: * src/types/pa_vdate.C: tzset() should be called in Windows after
4143: TZ change (related to feature #36)
4144:
4145: * tests/: 075.html, results/075.processed: win sync: to remove
4146: differences with OS that doesn't keep timezone change history
4147:
4148: * tests/: 315.html, results/315.processed: win sync: to remove
4149: differences with OS that doesn't keep timezone change history
4150:
4151: * tests/: 256.html, results/256.processed: win sync: to remove
4152: differences with OS that doesn't keep timezone change history
4153:
4154: * tests/: 124.html, results/124.processed: win results sync: to
4155: avoid hitting time change hole.
4156:
4157: * src/types/pa_vdate.C: static returned. :)
4158:
4159: 2015-09-22 moko
4160:
4161: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
4162:
4163: * tests/results/131.processed: more tests for feature #1032
4164:
4165: * src/classes/date.C: minor fix related to feature #1032
4166:
4167: * operators.txt: ISO date creation documented (related to feature
4168: #1032)
4169:
4170: * operators.txt: iso-string documented (related to feature #1032)
4171:
4172: * tests/: 315.html, results/315.processed: more tests added
4173: (related to feature #1032)
4174:
4175: * tests/: 131.html, results/131.processed: date range checks
4176: updated (related to feature #36)
4177:
4178: * tests/: 315.html, results/057.processed, results/315.processed:
4179: test added for ISO date support (related to issue #315)
4180:
4181: * src/classes/date.C: more readable exceptions in date creation
4182: (related to ticket #1032)
4183:
4184: 2015-09-18 moko
4185:
4186: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
4187: added (related to issue #1032)
4188:
4189: * tests/results/256.processed, src/classes/json.C: iso-string
4190: documented (related to issue #1032)
4191:
4192: * tests/: 256.html, results/256.processed: ISO date check added
4193: (related to issue #1032)
4194:
4195: * tests/: 057.html, results/057.processed, results/224.processed:
4196: tests results updated after ISO date support implemented (related
4197: to feature #1032)
4198:
4199: * src/: classes/date.C, classes/image.C, types/pa_value.h,
4200: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
4201: ^date::create[string] constructor formalized, ^date.iso-string[]
4202: added (implements feature #1032)
4203:
4204: 2015-09-05 moko
4205:
4206: * operators.txt: actualized
4207:
4208: * operators.txt: date changes documented (related to ticket #36)
4209:
4210: 2015-09-04 moko
4211:
4212: * src/types/pa_vdate.C: warning war
4213:
4214: * src/: classes/op.C, types/pa_vhashfile.C: warning war
4215:
4216: 2015-09-03 moko
4217:
4218: * tests/results/096.processed: test result updated for 0..9999 year
4219: date range support (related to feature #36)
4220:
4221: * tests/: 314.html, results/314.processed: test for
4222: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
4223: bug #1031)
4224:
4225: * src/classes/string.C: Static calls fixed for ^string:base64[],
4226: ^string:idna[], ^string:js-escape[] (closes bug #1031)
4227:
1.116 moko 4228: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
4229: configure.in -> configure.ac
1.95 moko 4230:
1.116 moko 4231: * configure, configure.in, src/include/pa_config_auto.h.in: more
4232: correct timezone check for FreeBSD Warning war: configure.in ->
4233: configure.ac
1.95 moko 4234:
4235: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 4236: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
4237: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
4238: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
4239: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
4240: src/main/Makefile.am, src/targets/apache/Makefile.am,
4241: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 4242: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
4243: check added
4244:
4245: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
4246:
4247: * tests/results/: 124.processed, 224.processed: test resuls updated
4248: for new date implementation (related to feature #36)
4249:
4250: * src/: classes/date.C, classes/image.C, include/pa_common.h,
4251: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
4252: types/pa_vdate.h: new double date implementation with internal
4253: support for extended 0..9999 year range, default timezone support
4254: (related to feature #36)
4255:
4256: 2015-08-28 moko
4257:
4258: * src/types/pa_vmail.C: fixed $mail:received.date calculations
4259: (fixes bug #1030)
4260:
4261: 2015-08-21 moko
4262:
4263: * src/classes/inet.C: snprintf size "bug" commented
4264:
4265: * src/main/pa_common.C: snprintf comments updated
4266:
4267: 2015-08-16 moko
4268:
4269: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
4270:
4271: 2015-08-11 moko
4272:
4273: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4274: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
4275: can be null (fixes bug #1029)
4276:
4277: 2015-08-06 moko
4278:
1.116 moko 4279: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
4280: pa_vdate.C added
1.95 moko 4281:
4282: 2015-08-05 moko
4283:
4284: * tests/: 313.html, results/313.processed: test for
4285: ^table.count[columns] and ^table.flip[] with nameless tables
4286: (feature #1003)
4287:
4288: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4289: max_cell added, now ^table.count[columns] and ^table.flip[] works
4290: correctly for nameless tables (implements feature #1003)
4291:
4292: 2015-08-03 moko
4293:
4294: * tests/312.html: test for ^table.append[$hash] and
4295: ^table.insert[$hash] added (related to feature #1028)
4296:
4297: * src/classes/table.C: ^table.append[$hash] and
4298: ^table.insert[$hash] now supported (implements feature #1028)
4299:
4300: * tests/: 312.html, results/312.processed: test row copy in
4301: ^table.hash[; $.type[table] ] added (related to feature #1016)
4302:
4303: * src/classes/table.C: row copy now created in ^table.hash[;
4304: $.type[table] ] (related to feature #1016)
4305:
4306: 2015-07-29 moko
4307:
4308: * tests/: 312.html, results/312.processed: test for ^table.delete[]
4309: added (related to feature #1016)
4310:
4311: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4312: ^table.delete[] added to delete current row (related to feature
4313: 1016)
4314:
4315: 2015-07-28 moko
4316:
4317: * tests/: 312.html, results/312.processed: test for
4318: $table.column[value] and ^table.insert{row} (related to feature
4319: #1016)
4320:
4321: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
4322: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
4323: ^table.insert{row} are now implemented (feature #1016)
4324:
4325: * src/include/pa_array.h: Optimization: bool reverse removed from
4326: append(), insert() added, memmove arguments order in remove()
4327: fixed (related to feature #1016)
4328:
4329: 2015-07-23 moko
4330:
4331: * src/classes/json.C: tainted json and empty json exception added
4332: (implements feature #1015)
4333:
4334: * tests/: 311.html, results/311.processed: empty json and tainted
4335: json exception test added (related to issue #1015)
4336:
4337: 2015-07-22 moko
4338:
4339: * tests/: 311.html, results/311.processed: test for UTF-8
4340: processing added
4341:
4342: * tests/: 311.html, results/311.processed: test for
4343: json_exception_with_source added (related to issue #394)
4344:
4345: * src/classes/json.C: json_exception_with_source added (implements
4346: feature #394)
4347:
4348: 2015-06-29 moko
4349:
4350: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
4351: directories are now correctly determined if _d_type == DT_UNKNOWN
4352: (closes bug #1027)
4353:
4354: 2015-06-10 moko
4355:
4356: * src/types/pa_vxnode.h: extern "C" not requred and causes build
4357: error if libxml has LIBXML_ICU_ENABLED.
4358:
4359: 2015-06-04 moko
4360:
4361: * tests/099.html: ups, reverting
4362:
4363: * tests/: 099.html, 309.html, 310.html, results/309.processed,
4364: results/310.processed: tests for $response:body[ $.file[] ] and
4365: $response:last-modified added
4366:
4367: * src/main/pa_request.C: last-modified check fixed
4368:
4369: 2015-06-03 moko
4370:
4371: * tests/: 204.html, 205.html, 293.html, results/204.processed,
4372: results/205.processed, results/293.processed: $response:headers
4373: logging added (tests for feature #1007)
4374:
4375: * src/: include/pa_common.h, include/pa_request.h,
4376: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
4377: $response:headers are now in uppercase (closes feature #1007)
4378:
4379: 2015-06-02 moko
4380:
4381: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
4382: build errors reverted for clang compatibility
4383:
4384: 2015-06-01 moko
4385:
4386: * src/include/pa_memory.h: -pedantic build errors fixed
4387:
4388: * src/classes/math.C: -pedantic build error fixed
4389:
4390: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
4391:
4392: 2015-05-31 moko
4393:
4394: * src/classes/table.C: USE_STRINGSTREAM optimized
4395:
4396: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
4397: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
4398: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
4399: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
4400: types/pa_vxnode.h: warning war (-pedantic flag)
4401:
4402: 2015-05-28 moko
4403:
4404: * tests/: 308.html, results/308.processed: test for
4405: ^table::create[$t;], etc work added (related to bug #975)
4406:
4407: * src/classes/table.C: check_option_param removed,
4408: ^table::create[$t;], etc now works (fixes bug #975)
4409:
4410: 2015-05-27 moko
4411:
4412: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
4413: (Debian jessie) fixed (closes issue #1024)
4414:
4415: * tests/Makefile: sort added as in Debian jessie list become
4416: unsorted
4417:
4418: 2015-05-18 moko
4419:
4420: * tests/: 201.html, results/201.processed: test for
4421: ^string.trim[what] feature #1022
4422:
4423: * src/classes/string.C: ^string.trim[what] now supported,
4424: implements feature #1022
4425:
4426: 2015-05-17 moko
4427:
4428: * tests/results/185.processed: test result updated as feature #1021
4429: implemented (left/right accept negative parameter)
4430:
4431: * src/classes/string.C: left/right now accept negative parameter
4432: (implements feature #1021)
4433:
4434: 2015-05-08 moko
4435:
4436: * src/classes/math.C: isalnum -> pa_isalnum
4437:
4438: * src/main/execute.C: optimization in getter-junction processing
4439: (related to issue #997)
4440:
4441: 2015-05-07 moko
4442:
4443: * tests/: 307.html, results/307.processed: test for issue #997
4444: added
4445:
4446: * src/main/execute.C: process_getter result now checked if junction
4447: returned (closes issue #997)
4448:
4449: * tests/: 305.html, results/305.processed: sort added to ignore
4450: different order
4451:
4452: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
4453: assignment (closes issue #994)
4454:
4455: * tests/: 306.html, results/306.processed: test for issue #994
4456: added
4457:
4458: * tests/: 303.html, results/303.processed: two more errors tested
4459:
4460: 2015-05-06 moko
4461:
4462: * tests/: 305.html, results/305.processed: test for name2ip &
4463: ip2name added (related to feature #992)
4464:
4465: * tests/: 303.html, 304.html, results/303.processed,
4466: results/304.processed: tests for idna conversion added (related
4467: to issue #849)
4468:
4469: 2015-05-02 moko
4470:
4471: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
4472: implemented
4473:
4474: 2015-04-30 moko
4475:
4476: * src/main/pa_http.C: idna_host added, related to issue #849
4477:
4478: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
4479: (related to issue #849)
4480:
4481: 2015-04-24 moko
4482:
4483: * src/types/pa_vjunction.C: warning war
4484:
4485: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
4486: unification
4487:
4488: * src/lib/punycode/pa_idna.c: warning war
4489:
4490: 2015-04-22 moko
4491:
4492: * src/main/main.vcproj: punycode include path added
4493:
4494: * src/lib/punycode/pa_idna.c: windows compile error fixed
4495:
4496: * src/lib/punycode/pa_idna.c: warning war
4497:
4498: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
4499: project file added
4500:
4501: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
4502:
4503: * src/include/pa_memory.h: warning war
4504:
4505: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
4506: ^string:idna[xn--...], ^string.idna[] - idna conversion support
4507: implemented (related to feature #849)
4508:
4509: * configure.in, src/main/Makefile.am,
4510: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
4511: libpunycode added in Unix
4512:
4513: 2015-04-21 moko
4514:
4515: * configure.in: large files support
4516:
4517: 2015-04-15 moko
4518:
4519: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
4520: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
4521: pa_punycode.h: initial version for punycode/idna support library
4522: (ticket #849)
4523:
4524: 2015-04-08 moko
4525:
4526: * src/: classes/curl.C, classes/date.C, classes/file.C,
4527: classes/image.C, classes/mail.C, classes/reflection.C,
4528: classes/string.C, classes/xnode.C, include/pa_request.h,
4529: include/pa_string.h, include/pa_stylesheet_connection.h,
4530: main/compile.y, main/compile_tools.h, main/execute.C,
4531: main/pa_common.C, main/pa_request.C, main/pa_string.C,
4532: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
4533: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
4534: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
4535: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
4536: clang compiler warnings (closes issue #1018)
4537:
4538: * src/include/pa_string.h: String::Body comparation operators with
4539: char * added (related to issue #958)
4540:
4541: 2015-04-07 moko
4542:
4543: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
4544: pa_malloc/pa_free to remove system malloc/free usage (related to
4545: issue #1018)
4546:
4547: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
4548: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
4549: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
4550: main/pa_http.C, main/pa_request.C, main/pa_string.C,
4551: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
4552: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
4553: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
4554: malloc/strdup/free replaced with pa_ version and checks for
4555: accidental use of non-pa_ version added (related to issue #1018)
4556:
4557: 2015-04-03 moko
4558:
4559: * buildall: pcre-8.33 -> pcre-8.36
4560:
4561: * src/: main/compile.y, classes/form.C, classes/mail.C,
4562: classes/op.C, classes/string.C, main/compile.tab.C,
4563: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
4564: main/pa_sql_driver_manager.C, types/pa_vfile.C,
4565: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
4566: ticket #958)
4567:
4568: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
4569: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4570: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
4571: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
4572: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
4573: $request:headers, $request:method added (implements feature
4574: #1007)
4575:
4576: 2015-03-17 misha
4577:
4578: * tests/302.html: - test for
4579: ^json:string[...;$._default[method-name]]
4580:
4581: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4582: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
4583: option $._default[method-name] is specified in ^json:string[], a
4584: method with specified name will be called for classes/objects
4585: serialization ( new feature: #982 )
4586:
4587: 2015-03-16 misha
4588:
4589: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
4590: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
4591: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
4592: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
4593: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
4594: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
4595: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4596: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
4597: types/pa_vrequest.h, types/pa_vstateless_class.C,
4598: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4599: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
4600: $var.CLASS_NAME now have special opcodes. This can be switched
4601: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
4602: on pa_opcode.h ( new feature: #844 )
4603:
4604: 2015-03-15 misha
4605:
4606: * tests/075.html: - test for $response:header[]
4607:
4608: * src/types/pa_vresponse.C: - $response:header[] deletes header
4609: that was set earlie ( new feature: #1001 )
4610:
4611: 2015-03-12 misha
4612:
4613: * tests/246.html: - more tests for ^hash._at[]
4614:
4615: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
4616: accepts second param [key|value|hash] ( new feature: #1012 )
4617:
4618: 2015-03-09 moko
4619:
4620: * src/types/pa_vmail.C: exception for everything but
4621: $mail:received, closes issue #1011
4622:
4623: 2015-02-20 moko
4624:
4625: * tests/: 275.html, results/275.processed: hex detection in
4626: pa_atoui fix test (closes issue #1010)
4627:
4628: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
4629: issue #1010)
4630:
4631: 2015-02-17 moko
4632:
4633: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
4634: tainted.
4635:
4636: 2015-02-03 misha
4637:
4638: * tests/301.html: - test for ^json:string($double) causes
4639: exception. bugfix: #1008
4640:
4641: * src/classes/json.C: - ^json:string($double) causes exception.
4642: bugfix: #1008
4643:
4644: * tests/014.html: - updated for work with ^hash.delete[]
4645:
4646: 2015-01-12 misha
4647:
4648: * src/: classes/form.C, include/pa_common.h,
4649: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
4650: types/pa_vform.h: - supports body with PUT method as well ( new
4651: feature: #1006 )
4652:
4653: * src/classes/file.C: - warnings war
4654:
4655: 2015-01-11 misha
4656:
4657: * tests/300.html: - test for ^hash.delete[] is added
4658:
4659: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
4660: feature: #989 ) - tiny optimization in intersects
4661:
4662: 2015-01-06 moko
4663:
4664: * src/types/pa_vmail.C: file names transcode added, to and cc added
4665: with transcode, attachments detection fixed
4666:
4667: * src/main/pa_request.C: filling mail received after cgi/auto.p
4668: load to allow charset switch (related to issue #996)
4669:
4670: 2014-12-31 moko
4671:
4672: * src/types/pa_vmail.C: from and subject now transcoded if not
4673: UTF-8 source charset (fixes issue 996)
4674:
4675: * src/main/pa_exception.C: fixed string from stack bug (closes
4676: issue #1000)
4677:
4678: 2014-12-11 misha
4679:
4680: * src/types/pa_vhashfile.C: - check if key is not empty before
4681: access ( bug fix: #1005 )
4682:
4683: 2014-11-13 misha
4684:
4685: * src/main/compile.y: - PC.append does not reset to false while
4686: creating a new class. bugfix: #990
4687:
4688: * tests/299.html: - test for creation class after working with
4689: partial class (create+append)
4690:
4691: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
4692: #995
4693:
4694: * tests/232.html: - test for @get[def] added
4695:
4696: 2014-10-12 moko
4697:
4698: * src/lib/pcre/pcre_internal.vcproj: correct path
4699:
4700: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
4701: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
4702: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
4703: targets/apache/ApacheModuleParser3.vcproj,
4704: targets/apache/ApacheModuleParser3Core.vcproj,
4705: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4706: types/types.vcproj: project GUID inserted in *.vcproj for correct
4707: conversion in newer VS versions
4708:
4709: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
4710: pcre_internal.vcproj added
4711:
4712: 2014-08-28 moko
4713:
4714: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
4715: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
4716: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
4717:
4718: 2014-06-30 misha
4719:
4720: * tests/298.html: - tests for ^reflection:def[class;className]
4721: added
4722:
4723: * src/classes/reflection.C: - ^reflection:def[class;className]
4724: added ( new feature: #918 )
4725:
4726: 2014-06-29 misha
4727:
4728: * src/classes/table.C: - ^table::create[unsupported data] -
4729: exception comment changed to "body must be table or code" ( bug
4730: fix: #951 )
4731:
4732: * tests/: 261.html, results/261.processed: - tests for
4733: ^json:string[...;$.void[null|string]] added
4734:
4735: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
4736: option $.void[string|null] added to ^json:string[...] ( new
4737: feature: #952 )
4738:
4739: 2014-06-28 moko
4740:
4741: * src/classes/curl.C: $.charset now processed before other curl
4742: options (closes issue #980)
4743:
4744: 2014-05-23 misha
4745:
4746: * src/classes/json.C: - bug fix: #987
4747:
4748: 2014-05-04 misha
4749:
4750: * tests/: 253.html, 253_json.txt: - test for
4751: ^json:parse[$.int(false)] is added
4752:
4753: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
4754: default true). The option is similar to $.double(bool) but for
4755: integers.
4756:
4757: 2014-05-01 moko
4758:
4759: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
4760: #12 )
4761:
4762: 2014-04-16 moko
4763:
4764: * src/main/pa_http.C: response-charset option should finally work
4765: now (fix for issue #867)
4766:
4767: * src/main/pa_http.C: response-charset option should work now (fix
4768: for issue #867)
4769:
4770: 2014-03-07 moko
4771:
4772: * buildall: libgc moved
4773:
4774: * buildall: libgc moved
4775:
4776: 2013-12-29 moko
4777:
4778: * src/classes/string.C: ^string:js-unescape result now tainted,
4779: closes issue #966
4780:
4781: * tests/: 186.html, results/186.processed: ^string:js-unescape
4782: result now tainted, issue #966
4783:
4784: 2013-12-03 moko
4785:
4786: * src/: classes/memcached.C, types/pa_vmemcached.C,
4787: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
4788: option was added for http://www.parser.ru/forum/?id=79343
4789:
4790: * src/classes/file.C: bugfix for
4791: http://www.parser.ru/forum/?id=79337
4792:
4793: 2013-11-05 moko
4794:
4795: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
4796:
4797: * src/main/pa_globals.C: spelling fixed
4798:
4799: 2013-10-29 moko
4800:
4801: * src/lib/json/json.vcproj: json.c -> pa_json.C
4802:
4803: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
4804: #892
4805:
4806: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
4807: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
4808: exceptions to be thrown thougth json library), related to issue
4809: #892
4810:
4811: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
4812: related to issue #896
4813:
4814: 2013-10-24 moko
4815:
4816: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
4817:
4818: 2013-10-23 moko
4819:
4820: * README: actualization
4821:
4822: 2013-10-22 moko
4823:
4824: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
4825: compatibility patch from Sergey Kirpichev
4826:
4827: * tests/: 297.html, results/297.processed: non-working getter fix
4828: test for issue #948
4829:
4830: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
4831: called when saving value of $match variable in ^string.match[] to
4832: increase compatibility (related to issue #948).
4833:
4834: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
4835: usage optimization
4836:
4837: 2013-10-21 moko
4838:
4839: * tests/: 182.html, results/182.processed: local path removed for
4840: compatibility
4841:
4842: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
4843: results/244.processed, results/253.processed,
4844: results/254.processed, results/275.processed,
4845: results/281.processed: try_catch -> try-catch
4846:
4847: * tests/: 288.html, 294.html, 296.html, results/288.processed,
4848: results/294.processed, results/296.processed: try_catch ->
4849: try-catch
4850:
4851: 2013-10-20 moko
4852:
4853: * tests/: 296.html, results/296.processed: test for xsl exception
4854: for issue #938 added.
4855:
4856: * src/: include/pa_xml_exception.h,
4857: main/pa_stylesheet_connection.C: forgotten to be replaced
4858: XmlException is now replaced (once again closes issue #938)
4859:
4860: 2013-10-18 moko
4861:
4862: * buildall: disable clock_gettime detection to avoid librt linking
4863: (which in turn depends on libpthread), related to issue #943
4864:
4865: 2013-10-18 misha
4866:
4867: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
4868: lib/smtp/smtp.vcproj, main/main.vcproj,
4869: targets/apache/ApacheModuleParser3Core.vcproj,
4870: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4871: types/types.vcproj: - new locations for libxml2 includes where
4872: added to vcproj files
4873:
4874: 2013-10-18 moko
4875:
4876: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
4877: fix
4878:
4879: * tests/: 295.html, results/295.processed: test for issue #948
4880: updated
4881:
4882: * src/classes/table.C: hopefully last lost part for issue #948 fix.
4883: :)
4884:
4885: * tests/: 295.html, results/295.processed: test for issue #948
4886: added
4887:
4888: * src/: classes/hash.C, classes/string.C, classes/table.C,
4889: include/pa_request.h, types/pa_method.h: for getters and setters
4890: to be executed request.put_element should be called, not
4891: context.put_element (fixes issue #948)
4892:
4893: 2013-10-17 moko
4894:
4895: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
4896: LIBXML2_NEW_BUFFER check (closes issue #943)
4897:
4898: * buildall: libxml 2.9.1 build is broken --without-reader.
4899:
4900: 2013-10-16 moko
4901:
4902: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
4903:
4904: * tests/: 294.html, results/294.processed: test for issue #938
4905:
4906: * src/: classes/xdoc.C, classes/xnode.C,
4907: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
4908: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
4909:
4910: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
4911: libxslt-1.1.26 -> libxslt-1.1.28
4912:
4913: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
4914: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
4915: to '?', related to issue #938
4916:
4917: 2013-10-15 moko
4918:
4919: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
4920: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
4921: minor optimizations (closes issue #896)
4922:
4923: * tests/results/: 292.processed, 293.processed: results updated to
4924: comply with issue #896
4925:
4926: * tests/: 292.html, 293.html, results/292.processed,
4927: results/293.processed: tests for json escaping
4928:
4929: 2013-10-14 moko
4930:
4931: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
4932: and cleanup, code moved from .h to .C, no changes in code
4933:
4934: 2013-10-12 moko
4935:
4936: * tests/results/119.processed: updated test result commited
4937:
4938: * tests/: 291.html, results/291.processed: test for issue #894
4939: added
4940:
4941: * src/types/pa_wcontext.h: base methods call support function
4942: get_somebody_entered_some_class should not be true forever, as
4943: wcontext can have many get_elements calls (fixes issue #894)
4944:
4945: 2013-10-11 moko
4946:
4947: * tests/: 290.html, results/290.processed: test for junction GPF
4948: issue #942 added
4949:
4950: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
4951: to native method fixed (closes issue #942)
4952:
4953: * tests/: 158.html, results/158.processed: test for csv-string[]
4954: added
4955:
4956: * src/classes/table.C: minor fixes for table.csv-string[] (closes
4957: feature #907)
4958:
4959: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
4960: feature #907)
4961:
4962: 2013-10-09 moko
4963:
4964: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
4965: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
4966: types/pa_vstateless_class.C: GET_default, SET_default now works
4967: properly not only in objects, but in classes as well (closes
4968: issue #903)
4969:
4970: * tests/: 289.html, results/289.processed: GET/SET_default now
4971: works in classes, not only objects, test case added, related to
4972: issue #903
4973:
4974: * tests/: 288.html, results/288.processed: test for endless
4975: recursion bug added (related to issue #903)
4976:
4977: 2013-10-05 moko
4978:
4979: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
4980: classes/table.C, main/execute.C, types/pa_method.h,
4981: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
4982: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
4983: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
4984: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
4985: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
4986: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
4987: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
4988: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4989: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
4990: optimization: put_element no longer has "bool areplace" argument,
4991: related to issue #903
4992:
4993: 2013-10-03 moko
4994:
4995: * tests/results/182.processed: result for $.replace(false) test
4996: commited
4997:
4998: * src/classes/date.C: ^date::create(number) processed correctly
4999: (fixes issue #901)
5000:
5001: * src/classes/image.C: as_no_junction removed, as param can be
5002: expression (closes issue #931)
5003:
5004: * tests/233.html: test for issue #931 added
5005:
5006: 2013-10-02 moko
5007:
5008: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
5009: modified, test for $.replace(false) added
5010:
5011: * src/main/compile_tools.h: forgotten class replace returned. :)
5012:
5013: 2013-09-30 moko
5014:
5015: * tests/: 141.html, results/141.processed: md5 tainting test added
5016:
5017: * src/: classes/op.C, include/pa_request.h, main/compile.y,
5018: main/compile_tools.h, main/pa_request.C: allow_class_replace
5019: implemented; $.replace option added to ^process and ^use
5020:
5021: 2013-08-27 moko
5022:
5023: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
5024: cstr_to_string_body_untaint should be called with charsets for
5025: possible uri language and connection for possible sql language.
5026: related to issue #857
5027:
5028: * buildall: and -> or fixed
5029:
5030: 2013-08-26 moko
5031:
5032: * buildall: prepare_ functions logic changed to support
5033: gc-7.2d.tar.gz extracting to gc-7.2 directory
5034:
5035: 2013-08-23 moko
5036:
5037: * src/include/pa_config_fixed.h: gc and xml libs are now linked
5038: statically
5039:
5040: 2013-08-22 moko
5041:
5042: * src/classes/string.C: String::Empty used (related to issue #912)
5043: append_know_length removed (related to old GPF bug)
5044:
5045: 2013-08-21 moko
5046:
5047: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
5048:
5049: * src/classes/math.C: ^math:digest[...;$file] support added
5050: (related to ticket #857
5051:
5052: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
5053: implemented
5054:
5055: * src/types/pa_vhashfile.h: warning war
5056:
5057: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
5058: include/pa_request.h, main/pa_request.C, types/pa_value.h:
5059: anti_endless_json_string_recoursion removed from request;
5060: json_string_recoursion added to json_options; $.indent[indent
5061: value] now supported and passed within recoursion closes feature
5062: #937
5063:
5064: * tests/: 287.html, results/287.processed: test for feature #937
5065:
5066: 2013-07-31 moko
5067:
5068: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
5069: compilation having #define _S
5070:
5071: * src/main/pa_globals.C: cleanup
5072:
5073: 2013-07-30 moko
5074:
5075: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
5076: main/pa_common.C: vs2003 warning war
5077:
5078: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
5079:
5080: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
5081:
5082: * src/lib/md5/pa_sha2.c: warning war
5083:
5084: 2013-07-29 moko
5085:
5086: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
5087: patches from github
5088:
5089: * src/: classes/bool.C, classes/double.C, classes/int.C,
5090: classes/memcached.C, include/pa_config_includes.h,
5091: types/pa_vfile.C, types/pa_vfile.h: warning war
5092:
5093: * src/lib/json/json.vcproj: C++ -> C
5094:
5095: * src/lib/json/: json.c, pa_json.C: C++ warning revert
5096:
5097: * src/lib/json/: json.c, pa_json.C: windows compatibility
5098:
5099: * src/lib/json/: json.c, pa_json.C: windows compatibility
5100:
5101: * src/lib/json/: json.c, pa_json.C: warning war
5102:
5103: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
5104:
5105: * src/include/pa_config_fixed.h: uint16_t added
5106:
5107: * configure.in: uint16_t check added
5108:
5109: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 5110: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
5111: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
5112: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
5113: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 5114:
5115: 2013-07-25 moko
5116:
5117: * parser3.sln: dependencies added
5118:
5119: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
5120: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
5121: module support
5122:
5123: * src/targets/apache/mod_parser3_core.C: win32 cleanup
5124:
5125: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
5126:
5127: 2013-07-23 moko
5128:
5129: * src/: include/pa_memory.h, main/pa_memory.C: non-working
5130: PA_DEBUG_GC_MEMORY removed
5131:
5132: * src/: main/pa_globals.C, targets/cgi/parser3.C:
5133: PA_DEBUG_DISABLE_GC compilation fix
5134:
5135: * src/: classes/op.C, classes/table.C, include/pa_request.h,
5136: main/pa_request.C: outdated RESOURCES_DEBUG removed
5137:
5138: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
5139: garbage cleanup
5140:
5141: * src/main/pa_common.C: warning war
5142:
5143: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
5144:
5145: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
5146: minor cleanup
5147:
5148: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
5149: uses cygwin, not WIN32 implementation
5150:
5151: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
5152: able to exec shell scripts
5153:
5154: * src/classes/math.C: ifdef WIN32 cleanup
5155:
5156: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
5157:
5158: * src/classes/curl.C: LT_MODULE_EXT used
5159:
5160: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
5161:
5162: 2013-07-22 moko
5163:
5164: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
5165: includes fix
5166:
5167: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
5168:
5169: * configure.in, src/include/pa_config_includes.h,
5170: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
5171: src/main/pa_exec.C: includes cleanup
5172:
5173: * src/targets/cgi/parser3.C: 2012->2013
5174:
5175: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
5176:
5177: * configure.in, src/include/pa_config_includes.h,
5178: src/include/pa_http.h, src/lib/json/JSON_parser.h,
5179: src/main/pa_random.C, src/main/pa_socks.C,
5180: src/types/pa_vstatus.C: cygwin support cleanup
5181:
5182: * configure.in: dirent.h check added
5183:
5184: * src/: include/pa_config_includes.h, include/pa_dir.h,
5185: main/pa_dir.C: includes cleanup, dirent.h check added filePath
5186: not copied
5187:
5188: 2013-07-21 moko
5189:
5190: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
5191:
5192: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
5193: parser3.vcproj: unused getopt.h / getopt.c removed
5194:
5195: * operators.txt, src/classes/file.C, tests/022.html,
5196: tests/results/022.processed: ^file:list[path][$.filter[regexp]
5197: $.stat(true)] usage commented
5198:
5199: * configure.in, src/classes/file.C, src/include/pa_dir.h,
5200: src/main/pa_dir.C: ^file:list[] now has dir column and when
5201: $.stat(true) it has size/*date columns modified patch from misha@
5202: that closes issue #914.
5203:
5204: * src/: include/pa_config_includes.h, main/pa_globals.C:
5205: PA_RELEASE_ASSERTS removed
5206:
5207: * src/lib/md5/pa_md5c.c: minor cleanup
5208:
5209: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
5210: localeconv()->decimal_point usage remoed (related to issue #934)
5211:
5212: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
5213: cordprnt.c removed
5214:
5215: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
5216: pa-include/pa_errno.h, pa-include/pa_file_io.h,
5217: pa-include/pa_strings.h: includes cleanup
5218:
5219: * src/lib/md5/pa_md5c.c: headers cleanup
5220:
5221: 2013-07-20 moko
5222:
5223: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
5224: cleanup
5225:
5226: 2013-07-19 moko
5227:
5228: * src/classes/math.C: extern "C" added for crypt
5229:
5230: 2013-07-18 moko
5231:
5232: * src/classes/math.C: fix redhat7.2 build
5233:
5234: 2013-07-17 moko
5235:
5236: * configure.in, src/include/pa_config_includes.h,
5237: src/include/pa_config_fixed.h: headers actualized (inttypes.h
5238: added for uint8/32/64_t)
5239:
5240: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
5241: pa_config_includes.h used for uint32/64_t
5242:
5243: 2013-07-16 moko
5244:
5245: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
5246: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
5247: war
5248:
5249: * src/main/compile.tab.C: compile.y was updated
5250:
5251: * src/main/compile.y: warning war
5252:
5253: * src/: include/pa_exception.h, main/pa_exception.C,
5254: main/pa_xml_exception.C: warning war
5255:
5256: * src/: include/pa_common.h, main/pa_common.C: warning war
5257:
5258: * configure.in: beauty :)
5259:
5260: * tests/: 141.html, results/141.processed: sha256/512 added
5261:
5262: 2013-07-13 moko
5263:
5264: * src/lib/md5/md5.vcproj: sha2 added
5265:
5266: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
5267: classes/math.C: sha2 support (sha256/sha512 digest)
5268:
5269: 2013-07-08 moko
5270:
5271: * src/classes/image.C: directory read or other read problem message
5272: fixed (related to issue #933)
5273:
5274: 2013-07-07 moko
5275:
5276: * AUTHORS: + misha + moko. :)
5277:
5278: 2013-07-06 moko
5279:
5280: * src/: classes/curl.C, include/pa_globals.h,
5281: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
5282: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
5283: for lt_dlinit to be called once and lt_dlexit called at right
5284: place (related to issue #925)
5285:
5286: 2013-07-04 moko
5287:
5288: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
5289: VString::as_vfile now uses vfile.set_binary_string to avoid
5290: content-type to be set, as it brokes badly designed logic in
5291: response output. This hopefully finishes issue #928.
5292:
5293: * tests/results/: 256.processed, 286.processed: file now displayed
5294: as name, size, mode, content-type
5295:
5296: * src/main/pa_common.C: read error now reported cottectly (fixes
5297: issue #933
5298:
5299: 2013-06-28 moko
5300:
5301: * tests/: 286.html, results/286.processed: test extended
5302:
5303: * tests/: 286.html, results/286.processed: Test for issue #928
5304: added. it tests default content-type change.
5305:
5306: * src/types/pa_vfile.C: closes issue #928 - default content-type
5307: now updated
5308:
5309: 2013-06-25 moko
5310:
5311: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
5312: content-type for text/binary files without name added;
5313: ^file::create[$f;...] options now works properly and $f
5314: properties are default (fixes issue #928)
5315:
5316: 2013-05-16 misha
5317:
5318: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
5319: added
5320:
5321: * src/main/pa_table.C: - a tiny memory optimisation while creating
5322: table if specified limit is bigger than source rows count
5323:
5324: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
5325: added ( new feature: #858 )
5326:
5327: 2013-04-29 moko
5328:
5329: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
5330: $.ipresolve(0|1|2) added (closes issue #891)
5331:
5332: * src/lib/curl/curl.h: CURL_IPRESOLVE added
5333:
5334: 2013-04-24 moko
5335:
5336: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5337: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5338: types/pa_vmemcached.h: ^memcache.release[] added, calls
5339: memcached_quit (refs #893)
5340:
5341: 2013-04-22 moko
5342:
5343: * src/: include/pa_string.h, main/pa_common.C: no more double
5344: slashes in file path (fixes bug #872)
5345:
5346: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
5347: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
5348: #739)
5349:
5350: * tests/results/266.processed: $.max_params added (feature #915)
5351:
5352: * src/: include/pa_common.h, main/pa_http.C: response-charset
5353: option added to file::load (closes issue #867)
5354:
5355: 2013-04-20 misha
5356:
5357: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
5358: commited
5359:
5360: 2013-03-15 misha
5361:
5362: * src/classes/: hash.C, table.C: - Optimisation: do not create
5363: multiple empty strings while ::sql. uae String::Empty instead
5364:
5365: 2013-03-14 misha
5366:
5367: * src/classes/reflection.C: - for user classes
5368: ^reflection:method_info[] returns $.max_params and $.extra_param
5369: with $.call_type if they available ( new feature: #915 )
5370:
5371: * src/classes/file.C: - ^file:delete[] now supports an option
5372: $.exception(false) that suppress any exception while deleting
5373: file ( new feature: #916 )
5374:
5375: * src/classes/curl.C: - parsing cookies after curl:load now should
5376: work :)
5377:
5378: 2013-03-12 misha
5379:
5380: * src/types/pa_vfile.C: - if specified file_name is empty string
5381: set default name for the file
5382:
5383: 2013-03-11 misha
5384:
5385: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
5386: also available in $f.cookies
5387:
5388: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
5389: moved to a separate method
5390:
5391: 2013-03-10 moko
5392:
5393: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
5394: added
5395:
5396: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
5397: removed (declared by autoconf)
5398:
5399: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
5400: uint32_t define
5401:
5402: 2013-03-10 misha
5403:
5404: * src/classes/file.C: ^file:delete and ^file:move now support
5405: option $.keep-empty-dirs(true) ( new feature: #884 )
5406:
5407: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
5408: empty dirs is added
5409:
5410: 2013-03-10 moko
5411:
5412: * src/classes/: bool.C, double.C, int.C: default can be present,
5413: but default check removed from ^int/double/bool.int/double/bool
5414: for string.int/double/bool compatibility (related to issue #913)
5415:
5416: * src/classes/string.C: ^string.int/dobule/bool no longer
5417: internally throws exception if default is present (closes issue
5418: #913)
5419:
5420: 2013-03-09 misha
5421:
5422: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
5423: optimisations ( #845 )
5424:
5425: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
5426:
5427: 2013-03-08 moko
5428:
5429: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
5430: creates correct table (fixes issue #910)
5431:
5432: * src/classes/op.C: r.connection() -> r.connection(false) to allow
5433: use outside of 'connect' operator (fixes issue #911)
5434:
5435: * tests/results/: 096.processed, 122.processed: test results
5436: updated as doubles now printed with 15 significant digits, not 5
5437: (fixes issue #882)
5438:
5439: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
5440: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
5441:
5442: 2013-02-21 moko
5443:
5444: * src/classes/table.C: _locate_name_value does not check arguments
5445: count, so we check it in advance (fixes issue #905)
5446:
5447: 2012-10-23 moko
5448:
5449: * buildall: old shell for and echo compatibility (for six)
5450:
5451: 2012-10-19 moko
5452:
5453: * buildall: --strip added --disable-safe-mode listed in usage
5454:
5455: 2012-10-17 misha
5456:
5457: * src/classes/op.C: - apply-taint should not throw "outside
5458: connect" exception with sql lang now
5459:
5460: 2012-10-17 moko
5461:
5462: * src/main/pa_request.C: bugfix: safe mode should be inited for
5463: each request (for apache module)
5464:
5465: 2012-09-26 moko
5466:
5467: * src/doc/doxygen.cfg: png -> svg
5468:
5469: 2012-09-25 moko
5470:
5471: * tests/: 141.html, results/141.processed: md5 hmac added, long key
5472: test added
5473:
5474: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
5475: double use when key is long
5476:
5477: 2012-09-16 moko
5478:
5479: * src/classes/math.C: Format -> Method Encode -> Format
5480:
5481: * tests/: 141.html, results/141.processed: math:digest hmac test
5482: added
5483:
5484: 2012-09-14 moko
5485:
5486: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
5487: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
5488: implementation added
5489:
5490: 2012-09-12 moko
5491:
5492: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
5493: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
5494: targets.dox and string.dox slightly actualized
5495:
5496: 2012-08-31 moko
5497:
5498: * ChangeLog: now generated with patched cvs2cl.pl
5499:
5500: 2012-07-29 moko
5501:
5502: * tests/285.html, src/main/execute.C, tests/results/285.processed:
5503: result should be pushed after VMethodFrame destructor is called,
5504: as it deletes junctions from stack params (fixes issue #868)
5505:
5506: 2012-07-23 moko
5507:
5508: * INSTALL, README: buildall script usage documented, other outdated
5509: info updated.
5510:
5511: * buildall-with-xml, buildall-without-xml: replaced by buildall
5512:
5513: 2012-07-21 moko
5514:
5515: * buildall: glib does not compile when threads are disabled...
5516:
5517: * src/types/pa_vmail.C: g_assertion fixes for empty input
5518:
5519: * src/types/pa_vmail.C: yet another fix (strange GPF on object
5520: unref, can't unref nested objects)
5521:
5522: * src/types/pa_vmail.C: another check added
5523:
5524: 2012-07-19 moko
5525:
5526: * buildall: usage added
5527:
5528: * buildall: new buildall script that unites buildall-with-xml,
5529: buildall-without-xml, --with-apache and --with-mailreceive
5530:
5531: * configure.in: support for static gmime and dynamic glib linking.
5532: fixes for FreeBSD
5533:
5534: 2012-07-17 moko
5535:
5536: * configure.in: --with-mailreceive replaced
5537: --with-static-mailreceive and --with-shared-mailreceive pathlink
5538: removed
5539:
5540: 2012-07-16 moko
5541:
5542: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
5543: capitalized, content now decoded and text content converted to
5544: $request:charset. all properties are accessed by functions, this
5545: ready for dynamic load.
5546:
5547: 2012-06-28 moko
5548:
1.116 moko 5549: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
5550: 32 bit
1.95 moko 5551:
5552: 2012-06-27 moko
5553:
5554: * buildall-with-xml, buildall-without-xml: fetch requires -p for
5555: passive ftp
5556:
5557: * src/lib/ltdl/ltdl.vcproj: release build fixed
5558:
5559: * configure.in: 3.4.2 RC -> 3.4.2
5560:
5561: 2012-06-22 moko
5562:
5563: * src/types/pa_vfile.C: returned empty mode to stated files (issue
5564: #815)
5565:
5566: * tests/: 284.html, results/284.processed: output options test
5567: (feature #265)
5568:
5569: 2012-06-22 misha
5570:
5571: * tests/215.html: - little changes
5572:
5573: 2012-06-21 moko
5574:
5575: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
5576: types/pa_vxdoc.h: output_options returned and used (bugfix for
5577: feature #265)
5578:
5579: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
5580: breaks long .*, default 10M restored. (issue #216)
5581:
5582: * tests/: 283.html, results/283.processed: test for issue #815
5583: added
5584:
5585: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
5586: again, cstrm not required.
5587:
5588: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
5589: Win32 and broken FreeBSD (issue #45)
5590:
5591: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
5592:
5593: * src/main/pa_string.C: warnings war
5594:
5595: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
5596: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
5597: main/pa_socks.C, targets/apache/pa_threads.C,
5598: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5599: types/pa_vstatus.C: compilation under cygwin fixed
5600:
5601: 2012-06-19 moko
5602:
5603: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
5604: Windows fixed
5605:
5606: * parser3.sln: removed antique pcre_ctype
5607:
5608: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
5609:
5610: * src/include/pa_config_fixed.h: undefined reference to
5611: __imp__pcre_* fix for Windows
5612:
5613: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 5614: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
5615: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
5616: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
5617: define fixed
1.95 moko 5618:
5619: 2012-06-18 moko
5620:
5621: * src/classes/memcached.C: flush -> clear
5622:
5623: * src/classes/memcached.C: memcached does not support quotes even
5624: in server name
5625:
5626: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5627: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
5628: called on open to check servers existance. $.key(true) syntax
5629: now supported
5630:
5631: 2012-06-17 moko
5632:
5633: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
5634: cleanup
5635:
5636: * src/classes/table.C, tests/282.cfg, tests/282.html,
5637: tests/results/282.processed: encloser at the EOF bug fixed,
5638: incorrectly enclosed data now processed more logicaly (fixes
5639: #339)
5640:
5641: 2012-06-15 moko
5642:
5643: * buildall-without-xml: sync with buildall-with-xml
5644:
5645: * buildall-with-xml: download auto-detected between fetch and curl
5646:
5647: * configure.in: --with-gc and --with-pcre now also processed
5648: correctly
5649:
1.116 moko 5650: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
5651: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
5652: should be run on rol1 using automake / aclocal (GNU automake)
5653: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 5654:
5655: * configure.in: new PARSER_VERSION logic
5656:
5657: * src/include/pa_version.h: new pa_version.h logic
5658:
5659: * src/: classes/curl.C, classes/file.C, classes/image.C,
5660: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5661: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
5662: feols_normalized -> fis_text_content set_binary added
5663:
5664: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
5665:
5666: 2012-06-15 misha
5667:
5668: * src/: classes/curl.C, classes/file.C, classes/image.C,
5669: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5670: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
5671: ^file::create[text;content] EOLs in content now is normalized. (
5672: new feature: #815 )
5673:
5674: 2012-06-15 moko
5675:
5676: * configure.in: --disable-version-update added to disable version
5677: update with host information (for debian package) whitespace
5678: optimized
5679:
5680: * configure.in: version changed to 3.4.2 RC no-pic added for
5681: libtool
5682:
5683: * src/include/pa_version.h: Nice pa_version.h default. Please keep
5684: it.
5685:
5686: 2012-06-14 moko
5687:
5688: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
5689: tests/results/281.processed: "hash flocked" error removed for
5690: safe operations like ^h._count[] ( new feature: #335 )
5691:
1.116 moko 5692: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 5693:
5694: * buildall-with-xml, buildall-without-xml: --with-static -> --with
5695:
5696: * configure.in: --with-static/shared xml replaced with --with-xml,
5697: xml compilation check added
5698:
5699: * configure.in: --with-static/shared-gc, --with-static-pcre are
5700: replaced with --with-gc and --with-pcre test for pcre linking
5701: added
5702:
5703: 2012-06-13 moko
5704:
5705: * configure.in: apxs2 check optimized
5706:
5707: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
5708: .la, includes optimized
5709:
5710: * buildall-with-xml: --with-pic looks better for -fPIC
5711:
5712: * configure.in: switched to convenience library in static linking
5713:
5714: * src/targets/apache/Makefile.am: switched to convenience library
5715: usage to avoid libtool warnings
5716:
5717: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
5718: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
5719: smtp/Makefile.am: switched to convenience library usage
5720:
5721: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
5722:
5723: * src/targets/apache/Makefile.am: updated for libtool usage
5724:
5725: * buildall-without-xml: --with-included-ltdl added
5726:
5727: * buildall-without-xml: sync with buildall-with-xml
5728:
5729: * buildall-with-xml: --with-included-ltdl added $cflags added for
5730: -fPIC for x64 $download added for wget success check added
5731:
5732: * buildall-without-xml: --with-dynamic-stdcpp removed
5733:
5734: * configure.in: disable-static returned
5735:
5736: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
5737: LIBTOOLFLAGS
5738:
5739: 2012-06-12 moko
5740:
5741: * configure.in, src/targets/cgi/Makefile.am: disable-static not
5742: compatible with LIBTOOLFLAGS for unknown reasons
5743:
5744: * buildall-with-xml: --with-dynamic-stdcpp removed
5745:
5746: * configure.in: static/dynamic -lstdc++ linking option removed
5747: apxs2 check added
5748:
5749: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
5750: option removed
5751:
5752: 2012-06-10 moko
5753:
5754: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
5755: added
5756:
5757: * src/targets/cgi/pp3.cmd: old PAF stuff
5758:
1.116 moko 5759: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
5760: beauty
1.95 moko 5761:
5762: * depcomp: from libtool 2.4.2
5763:
5764: * configure.in: ltdl directory removed, it has correct Makefile.in
5765:
5766: 2012-06-09 moko
5767:
1.116 moko 5768: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
5769: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 5770: autogenerated files updated after libtool update
5771:
1.116 moko 5772: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
5773: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 5774: config_auto.h.in, config_fixed.h, configure, configure.ac,
5775: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
5776: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
5777: config/compile, config/config.guess, config/config.sub,
5778: config/depcomp, config/install-sh, config/ltmain.sh,
5779: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
5780: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
5781: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
5782: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
5783: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
5784: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
5785: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
5786: m4/lt~obsolete.m4: libtool updated to version 2.4.2
5787:
5788: * configure.in: preparation for new libtool
5789:
5790: * configure.in: Some beauty added :)
5791:
5792: * src/targets/apache/Makefile.am: := -> =
5793:
5794: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
5795: again. :)
5796:
5797: * src/include/pa_config_includes.h, configure.in: limits.h added,
5798: previously was taken from pcre_internal.h. :)
5799:
5800: * src/lib/pcre/Makefile.am: config.h returned
5801:
5802: * src/lib/pcre/config.h: still need this. :)
5803:
5804: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
5805:
5806: * configure.in: --with-charsets removed; --with-mysql-client & co
5807: removed
5808:
5809: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
5810: now in parser tree, no need to copy
5811:
5812: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
5813: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
5814: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
5815: debian/patches/101_pcre.patch - local copy of pcre_internal.h
5816: extracts now used old trash removed
5817:
5818: * etc/parser3.charsets/Makefile.am: charsets now in share
5819: (debian/patches/104_automake.patch) + all charsets are copied
5820:
5821: * buildall-with-xml, buildall-without-xml: curl option removed +
5822: extra arguments now supported
5823:
5824: 2012-06-08 misha
5825:
5826: * src/classes/table.C: - one params.as_hash usage was rolled back:
5827: the 2nd option in ^table.hash[] could be hash or table so
5828: .as_hash will throw an exception when table option is specified
5829:
5830: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5831: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
5832: classes/table.C, classes/void.C, classes/xdoc.C,
5833: include/pa_exception.h, types/pa_vmethod_frame.C,
5834: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
5835: and improved (whitespaces are allowed as empty options) -
5836: MethodParams::as_table is added - above methods are used for
5837: parsing methods' options ( new feature: #9 )
5838:
5839: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
5840: to vclass. now class fields can be accessible as a hash:
5841: $h[^hash::create[$asd:CLASS]]
5842:
5843: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
5844: have get_fields method so their fields can be accessed with
5845: ^reflection:fields[...] & ^reflection:field[...]
5846:
5847: 2012-06-06 misha
5848:
5849: * tests/280.html: - tests for
5850: ^reflection:method[obj-or-class;method],
5851: ^reflection:field[obj-or-class;field] and
5852: ^reflection:fields[obj-or-class] are added
5853:
5854: 2012-06-05 misha
5855:
5856: * src/classes/reflection.C: - ^reflection:method[class or
5857: object;method name] and ^reflection:field[class or object;field
5858: name] are added
5859:
5860: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
5861: is used
5862:
5863: * src/types/pa_method.h: - Method::as_vjunction method is added
5864:
5865: 2012-06-05 moko
5866:
1.116 moko 5867: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 5868:
5869: * src/classes/memcached.C: flish ttl fixed
5870:
5871: 2012-06-04 moko
5872:
5873: * src/classes/json.C, src/classes/op.C, tests/279.html,
5874: tests/results/279.processed: ^json:parse[] now supports $.taint
5875: option (new feature #833)
5876:
5877: 2012-06-04 misha
5878:
5879: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
5880: - search_stop method was moved from pa_vcookie.C to pa_common.C
5881:
5882: 2012-06-03 misha
5883:
5884: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
5885: cookies are parced and stored into $.cookies ( new feature: #31 )
5886:
5887: 2012-05-30 misha
5888:
5889: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
5890: incomplete class into a scope while @USE is found
5891:
5892: * src/main/compile.y: - add incomplete class into a scope while
5893: @USE and @CLASS instructions are found ( bugfix: #838 )
5894:
5895: 2012-05-30 moko
5896:
5897: * src/types/pa_vclass.C, tests/278.html,
5898: tests/results/278.processed: removed "property has no getter
5899: method" exception when GET_DEFAULT present (fixes #269)
5900:
5901: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
5902: $._default
5903:
5904: 2012-05-29 moko
5905:
5906: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
5907: uninitialized values usage (new feature: #154)
5908:
5909: 2012-05-28 moko
5910:
5911: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
5912: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
5913: src/types/pa_vdate.h, src/types/pa_vdouble.h,
5914: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
5915: src/types/pa_vobject.C, src/types/pa_vobject.h,
5916: src/types/pa_vstring.h, src/types/pa_vtable.C,
5917: tests/results/277.processed, src/types/pa_vtable.h,
5918: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
5919: ^json:string[$o; $.default[$method]] implemented for VObject (new
5920: feature #803)
5921:
5922: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
5923: tests/results/277.processed: json numbers are now treated as
5924: double ( new feature: #834 )
5925:
5926: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
5927: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
5928: added for out of range checks, zero division in vint/vdouble
5929: check added ( fixes #832 )
5930:
5931: * tests/: 275.html, results/275.processed: tests for pa_atoui added
5932: ( fixes #832 )
5933:
5934: 2012-05-28 misha
5935:
5936: * buildall-with-xml: - --without-lzma option is added to libxml2
5937: configure
5938:
5939: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
5940: added - tests for unsupported values for options $.file, $.table
5941: and $.date are added
5942:
5943: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
5944: accepts "stat" $.file[] option's value in addition to existed
5945: "text" and "base64" ( new feature: #835 )
5946:
5947: * tests/276.html: - test for
5948: ^reflection:delete[$object-or-class;field-name]
5949:
5950: * src/classes/reflection.C: -
5951: ^reflection:delete[$object-or-class;field-name] is added ( new
5952: feature: #268 )
5953:
5954: 2012-05-27 misha
5955:
5956: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
5957:
5958: 2012-05-24 misha
5959:
5960: * src/include/pa_common.h: - method lastposafter was removed
5961:
5962: * src/classes/file.C: - use strrpbrk & rskipchars instead of
5963: lastposafter - ^file:dirname[] & Co proper handle windows file
5964: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
5965: work as *nix commands
5966:
5967: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
5968:
5969: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
5970: rskipchars were added
5971:
5972: * tests/270.html: - more tests for ^file:find[]
5973:
5974: * tests/065.html: - more tests for ^file:dirname[] & Co
5975:
5976: * src/include/pa_version.h: - must be "win32" here. it is
5977: auto-generated on *nix
5978:
5979: 2012-05-24 moko
5980:
5981: * src/classes/math.C: ^math:convert[] now supports uint32 and
5982: throws overflow exception ( new feature: #830 )
5983:
5984: * tests/: 275.html, results/275.processed: test for ^math:convert[]
5985: uint32 support and overflow added ( new feature: #830 )
5986:
5987: 2012-05-23 moko
5988:
5989: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
5990: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
5991: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
5992: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
5993: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
5994: types/pa_vregex.h, types/pa_vstateless_class.C,
5995: types/pa_vstateless_class.h, types/pa_vstring.h,
5996: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
5997: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
5998: "return string as-is" removed from as_expr_result. ( new feature:
5999: #831 )
6000:
6001: * tests/results/244.processed: test changed after bug #782 fix
6002: commited
6003:
6004: * tests/results/229.processed: test results for bug #782 commited
6005:
6006: * tests/: 254.html, results/254.processed: uid now just compared,
6007: not printed. :)
6008:
6009: 2012-05-20 moko
6010:
6011: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
6012: feature: #341 )
6013:
6014: * tests/: 254.html, results/254.processed: test for
6015: ^reflection:uid[] added
6016:
6017: * tests/: 254.html, results/254.processed: test for
6018: ^reflection:uid[$obj] added
6019:
6020: 2012-05-17 misha
6021:
6022: * src/main/untaint.C: - do not replace ' char by _26 while
6023: exploding filespec-tainting ( new feature: #829 )
6024:
6025: 2012-05-12 moko
6026:
6027: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
6028: not.
6029:
6030: 2012-05-08 moko
6031:
6032: * src/types/pa_vmethod_frame.h: bug #782 fixed
6033:
6034: * tests/229.html: test for bug #782
6035:
6036: * tests/results/259.processed, src/main/pa_request.C,
6037: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
6038: src/types/pa_vstring.h, src/types/pa_vvoid.C,
6039: src/types/pa_vvoid.h: feature #154 - first empty param now
6040: string; defined locals are empty strings; $STRICT-VARS(true)
6041: added
6042:
6043: 2012-04-27 moko
6044:
1.116 moko 6045: * src/targets/apache/Makefile.am:
1.95 moko 6046: ../../lib/memcached/libmemcached.a added
6047:
6048: 2012-04-27 misha
6049:
6050: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
6051: ( #827 )
6052:
6053: 2012-04-25 moko
6054:
6055: * src/: classes/json.C, classes/memcached.C,
6056: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6057: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
6058: implemented.
6059:
6060: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
6061:
6062: 2012-04-23 moko
6063:
6064: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6065: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6066: types/pa_vmemcached.h: open allows options hash for new
6067: memcached(options) function
6068:
6069: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
6070: not appended
6071:
6072: 2012-04-21 moko
6073:
6074: * src/classes/curl.C: '' added. :)
6075:
6076: * src/classes/classes.vcproj: new curl.h location
6077:
6078: * src/classes/curl.C: verbose output redirection from stderr to
6079: file curl option added
6080:
6081: 2012-04-20 moko
6082:
6083: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
6084: contains what we need from curl, #ifdef HAVE_CURL removed
6085:
1.116 moko 6086: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 6087: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 6088: src/lib/Makefile.am, src/lib/curl/Makefile.am,
6089: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 6090: configure option
6091:
6092: 2012-04-19 moko
6093:
6094: * src/: classes/double.C, classes/inet.C, classes/int.C,
6095: classes/string.C, lib/gc/include/gc_allocator.h,
6096: types/pa_vform.C: PVS-Studio detected errors fixes, unused
6097: options from sql_result_string removed. (closes issue #468)
6098:
6099: * src/types/pa_vmemcached.C: empty string fix
6100:
6101: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
6102: pa_vstring.C, pa_vstring.h: serialization helpers moved to
6103: pa_vmemcached.C
6104:
6105: 2012-04-18 moko
6106:
6107: * src/targets/apache/mod_parser3.c: "Parser3 module requires
6108: apache2-mpm-prefork" error displayed in threaded mpm.
6109:
6110: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6111: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
6112: installed (issue #354)
6113:
6114: 2012-04-16 moko
6115:
6116: * src/types/pa_vmemcached.C: call to memcached_result_create and
6117: memcached_result_free removed
6118:
6119: 2012-04-14 moko
6120:
6121: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
6122:
6123: * src/types/pa_vmemcached.C: check_key added and used
6124:
6125: 2012-04-13 moko
6126:
6127: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
6128: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
6129: Serialization_data now added and used, VString now serialized
6130: with languages into memcached.
6131:
6132: 2012-03-28 moko
6133:
6134: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
6135: lib/memcached/pa_memcached.h: result lengths added
6136:
6137: 2012-03-27 moko
6138:
6139: * src/types/pa_vmemcached.C: strdup added
6140:
6141: 2012-03-24 moko
6142:
6143: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6144: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6145: types/pa_vmemcached.h: memcached: mget, flush, fttl added
6146:
6147: 2012-03-20 moko
6148:
1.116 moko 6149: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 6150:
6151: * src/targets/cgi/Makefile.am: cleanup
6152:
6153: * src/: types/Makefile.am, types/pa_vmemcached.C,
6154: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
6155:
6156: * src/: classes/Makefile.am, classes/memcached.C,
6157: lib/memcached/Makefile.am, lib/memcached/constants.h,
6158: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6159: lib/memcached/types.h, lib/Makefile.am: memcached initial
6160:
6161: 2012-03-16 moko
6162:
6163: * src/main/execute.C: ident now works under Linux + ident displays
6164: filenames (closes issue #818)
6165:
1.116 moko 6166: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 6167: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
6168: pa_vmethod_frame_local.h removed
6169:
6170: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
6171: classes/classes.h, classes/curl.C, classes/date.C,
6172: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
6173: classes/hashfile.C, classes/image.C, classes/inet.C,
6174: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
6175: classes/memory.C, classes/op.C, classes/reflection.C,
6176: classes/regex.C, classes/response.C, classes/string.C,
6177: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
6178: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
6179: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
6180: include/pa_config_fixed.h, include/pa_config_includes.h,
6181: include/pa_dictionary.h, include/pa_dir.h,
6182: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
6183: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
6184: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
6185: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
6186: include/pa_request_charsets.h, include/pa_request_info.h,
6187: include/pa_sapi.h, include/pa_socks.h,
6188: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
6189: include/pa_stack.h, include/pa_string.h,
6190: include/pa_stylesheet_connection.h,
6191: include/pa_stylesheet_manager.h, include/pa_table.h,
6192: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
6193: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
6194: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
6195: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
6196: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
6197: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
6198: main/compile.tab.C, main/compile.y, main/compile_tools.C,
6199: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
6200: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
6201: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
6202: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
6203: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
6204: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
6205: main/pa_string.C, main/pa_stylesheet_connection.C,
6206: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
6207: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
6208: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
6209: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
6210: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
6211: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
6212: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6213: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
6214: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
6215: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
6216: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
6217: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
6218: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6219: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
6220: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
6221: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
6222: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
6223: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
6224: types/pa_vmemory.h, types/pa_vmethod_frame.C,
6225: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
6226: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
6227: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
6228: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
6229: types/pa_vresponse.h, types/pa_vstateless_class.C,
6230: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
6231: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
6232: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
6233: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
6234: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6235: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
6236: ident now works under Linux + ident displays filenames (closes
6237: issue #818) Copyright updated
6238:
6239: 2012-03-13 moko
6240:
6241: * src/main/pa_string.C: compilation fix for feature #741
6242:
6243: 2012-03-09 misha
6244:
6245: * tests/193.html: - tests for ^string:base64[encoded] are updated
6246:
6247: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
6248: now detects invalid base64 chars in the middle of encoded stricg
6249: ( new feature: #55 )
6250:
6251: * src/include/pa_exception.h: - new exception type for base64
6252: decoding is added
6253:
6254: 2012-03-06 misha
6255:
6256: * tests/274.html: - tests for ^date::today[] and
6257: ^date.sql-string[datetime|date|time] are added
6258:
6259: * src/classes/date.C: - constructor ^date::today[] is added ( new
6260: feature: #811 ) - ^date.sql-string[] now can accept one param --
6261: strings "datetime", "date" or "time" - comments tidying up
6262:
6263: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
6264: date and time
6265:
6266: 2012-03-03 misha
6267:
6268: * tests/193.html: - tests for
6269: ^string:base64[encoded;$.strict(true)] are added
6270:
6271: * tests/results/auto.p: - try-catch operator is added
6272:
6273: * src/: classes/file.C, classes/string.C, include/pa_common.h,
6274: main/pa_common.C: - $.strict(true|false) option is added to
6275: base64 decode methods ( new feature: #55 )
6276:
6277: * src/main/pa_common.C: - base64 decode memory usage was decreased
6278: ( new feature: #819 )
6279:
6280: 2012-02-28 moko
6281:
6282: * src/classes/hash.C: ident test
6283:
6284: 2012-02-27 misha
6285:
6286: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
6287:
6288: 2012-01-08 misha
6289:
6290: * tests/273.html: - tests for ^string.replace[from;to] are added
6291:
6292: * src/: classes/string.C, include/pa_dictionary.h,
6293: main/pa_dictionary.C, main/pa_string.C: -
6294: ^string.replace[from;to] is added ( new feature: #741 ) -
6295: ^string.replace[one subst here] is slightly optimized
6296:
6297: 2011-12-07 misha
6298:
6299: * src/classes/table.C: - $t[^table::create{$empty}] now creates
6300: named table with one empty column ( bugfix: #63 )
6301:
6302: 2011-11-30 misha
6303:
6304: * src/classes/json.C: - it's possible to set user's method for
6305: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
6306: #763 )
6307:
6308: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
6309:
6310: 2011-11-23 misha
6311:
6312: * src/: classes/curl.C, classes/file.C, classes/image.C,
6313: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
6314: types/pa_vfile.h, types/pa_vform.C: - constructor
6315: ^file::create[mode;filename;content[;options]] now accepts binary
6316: mode and file-content - new constructor's format:
6317: ^file::create[string-or-file-content[;$.name[filename]
6318: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
6319: feature: #65 )
6320:
6321: * src/: include/pa_request.h, main/pa_request.C: - new method
6322: mime_type_of(const String*) is added
6323:
6324: * src/include/pa_exception.h: - new exception constant
6325: FILE_NAME_MUST_BE_SPECIFIED is added
6326:
6327: * src/classes/table.C: - bug with negative offset transformed into
6328: a feature. it means pointing to a row from the end of the table (
6329: new feature: #810 )
6330:
6331: 2011-11-19 misha
6332:
6333: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
6334: â ìåòîäå _select ( new feature: #810 )
6335:
6336: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
6337: options were specified together is simplified
6338:
6339: 2011-11-12 misha
6340:
6341: * src/main/pa_request.C: - forgotten fix for escaping filename in
6342: HTTP content-disposition header (a part of bug #361 )
6343:
6344: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
6345: checks for ancestors' classes as well ( new feature: #456 )
6346:
6347: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
6348: "without cycle" now have types "parser.break" and
6349: "parser.continue" instead of "parser.runtime" ( new feature: #799
6350: )
6351:
6352: 2011-11-11 misha
6353:
6354: * tests/results/: 099.processed, 100.processed, 205.processed,
6355: 237.processed: - since bug #361 was fixed the content of filename
6356: in HTTP headers is quoted
6357:
6358: * tests/results/270.processed: - result for test 270
6359:
6360: * tests/: 065.html, results/065.processed: - more tests for
6361: ^file:basename[] & Co were added
6362:
6363: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
6364:
6365: * tests/270.html: - tests for ^file:find[] are added
6366:
6367: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
6368: using option $.charset. option $.engoding is still supported but
6369: these options can not be specified together
6370:
6371: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
6372: comparation charset name with string "UTF-8" ( bugfix: #759 )
6373:
6374: 2011-10-11 misha
6375:
6376: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
6377: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
6378: #622)
6379:
6380: 2011-09-30 misha
6381:
6382: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
6383: exception "saving stat-ed file" ( bugfix: #395 )
6384:
6385: 2011-05-30 misha
6386:
6387: * src/classes/string.C: - fixed bug which was added with
6388: params.as_hash into string:sql
6389:
6390: 2011-05-29 misha
6391:
6392: * src/types/pa_value.C: - filename in content-disposition header
6393: must be quoted ( bugfix: #361 )
6394:
6395: 2011-05-27 misha
6396:
6397: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
6398: created file
6399:
6400: * src/classes/: hash.C, mail.C: - little tunning with get_hash
6401: usage
6402:
6403: * src/include/pa_exception.h: - one more string for exception was
6404: added
6405:
6406: 2011-05-25 misha
6407:
6408: * tests/269.html: - tests for checking input params in some dom
6409: methods
6410:
6411: * src/classes/: xdoc.C, xnode.C: - validation of some input params
6412: was added. it isn't possible not wo create xdoc with invalid
6413: tagName. ( bugfix: #160 )
6414:
6415: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
6416: string "data must be string" was mover from pa_exception.h to
6417: pa_xml_exception.h
6418:
6419: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
6420: as_xmlncname, as_xmlname and as_xmlnsuri were added
6421:
6422: * src/main/pa_xml_exception.C: - XmlException accepts more options
6423:
6424: * src/include/pa_xml_exception.h: - XmlException accepts more
6425: options - XML-related exception's strings were added
6426:
6427: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
6428: output_options were removed)
6429:
6430: 2011-05-19 misha
6431:
6432: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
6433: params.as_hash is used more while parsing methods hash-options
6434:
6435: 2011-05-18 misha
6436:
6437: * operators.txt: - info about json-serialization of xdoc was added
6438:
6439: * tests/256.html: - tests for json-serialization xdoc were added
6440:
6441: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
6442:
6443: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
6444: classes/json.C, classes/xdoc.C: - now json:string can serialize
6445: xdoc-objects. options (the same as ^xdoc.string[]) could be
6446: specified in $.xdoc[] ( new feature: #265 )
6447:
6448: 2011-05-15 misha
6449:
6450: * tests/268.html: - tests for ^table.count[with options] were added
6451:
6452: * src/classes/table.C: - method ^table.count[] now can accept
6453: options ( new feature: #93 ): ^table.count[column] returns number
6454: of columns for named table; ^table.count[cells] returns number of
6455: cells in the current row; ^table.count[] & ^table.count[rows]
6456: return number of rows in a table.
6457:
6458: * tests/267.html: - test for checking switch/case in boolean mode
6459: was added
6460:
6461: * src/classes/op.C: - if switch's or case's value is bool, they are
6462: compared as bool values, not as double values: new feature: #351
6463:
6464: 2011-05-06 misha
6465:
6466: * tests/242.html: - EOL before EOF was added
6467:
6468: * tests/169.html: - tests for splitting empty string and void were
6469: added
6470:
6471: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
6472: returned table with one empty cell)
6473:
6474: 2011-04-03 misha
6475:
6476: * src/include/pa_version.h, configure.in: - version in head was
6477: changed to 3.4.2b
6478:
6479: 2011-03-30 misha
6480:
6481: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
6482: as well ( new feature #294 )
6483:
6484: 2011-03-29 misha
6485:
6486: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
6487: limited to approx. 6 MB. previous limits were too big for real
6488: life. bugfix: #216
6489:
6490: 2011-03-04 moko
6491:
6492: * etc/parser3.charsets/cp866.cfg: Conforms to
6493: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
6494:
6495: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
6496: vlalek@
6497:
6498: 2011-02-22 misha
6499:
6500: * src/include/pa_charset.h, operators.txt: - some methods mustn't
6501: be under #ifdef XML or parser can't be compiled without xml
6502: support
6503:
6504: 2011-02-21 misha
6505:
1.116 moko 6506: * src/targets/apache/: Makefile.am: - mention
1.95 moko 6507: ApacheModuleParser3.vcproj was removed
6508:
6509: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
6510: removed)
6511:
6512: 2011-02-20 misha
6513:
6514: * tests/: 266.html, 266.p: - tests for checking $.inherited and
6515: $.overridden in ^reflection:method_info[...] were added
6516:
6517: * src/classes/reflection.C: - beautifying result of
6518: ^reflection:method_info[] ($.overridden/inherited)
6519:
6520: 2011-02-18 misha
6521:
6522: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
6523: and pa_isalnum instead of isalpha and isalnum - bug with
6524: redundand quoting lowercased latin chars while building email
6525: body was fixed
6526:
6527: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
6528: added (they check for latin chars only)
6529:
6530: 2011-02-16 misha
6531:
6532: * src/main/pa_charset.C: - bugfix: in some cases the calculating
6533: string size for transcoding gave too small value (should ever
6534: look for availability char in dest charset inspite of the char
6535: size)
6536:
6537: 2011-02-04 moko
6538:
6539: * tests/223.html: header values now not url-encoded (issue #195)
6540:
6541: 2011-02-01 misha
6542:
6543: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
6544:
6545: 2011-01-31 misha
6546:
6547: * src/main/pa_request.C: - throw exception if param file_name in
6548: use_file is empty
6549:
6550: 2011-01-08 moko
6551:
6552: * src/classes/curl.C: compilations errors fixed
6553:
6554: 2010-12-29 moko
6555:
6556: * tests/: 265.html, results/265.processed: test for issue #200
6557: added
6558:
6559: * src/main/pa_string.C: empty regex result check added (fixes issue
6560: #200)
6561:
6562: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
6563:
6564: * tests/results/223.processed: header values now not url-encoded
6565: (issue #195)
6566:
6567: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
6568: main/untaint.C: L_HTTP_HEADER now used in http headers values,
6569: pa_http_safe_header_name added for headers names (fixes bug #195)
6570:
6571: 2010-12-18 misha
6572:
6573: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
6574: => pa-include
6575:
6576: 2010-11-28 moko
6577:
6578: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
6579:
6580: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
6581: -> pa
6582:
6583: * configure.in: apr -> pa
6584:
6585: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
6586:
6587: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
6588: classes/Makefile.am, types/Makefile.am: apr -> pa
6589:
6590: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
6591: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
6592: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
6593: pa-include/pa_apr.h, pa-include/pa_errno.h,
6594: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
6595: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
6596: module apr name conflict resolved)
6597:
6598: 2010-11-27 misha
6599:
6600: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
6601: libbz2
6602:
6603: 2010-11-26 misha
6604:
6605: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
6606: warnings removed
6607:
6608: 2010-11-25 moko
6609:
6610: * operators.txt: $.indent(true)
6611:
6612: * operators.txt: another bugfix. :)
6613:
6614: * operators.txt: bugfix. :)
6615:
6616: * buildall-with-xml: libxml2-2.7.8 + with-apache
6617:
6618: 2010-11-24 moko
6619:
1.116 moko 6620: * configure: apxs support
1.95 moko 6621:
6622: * configure.in: apxs support -Bstatic gc removed for OS X
6623:
6624: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
6625:
6626: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
6627: THREAD_LOCAL usage
6628:
6629: * src/: classes/curl.C, include/pa_config_includes.h,
6630: main/pa_globals.C: THREAD_LOCAL defined and used
6631:
6632: 2010-11-23 moko
6633:
6634: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
6635: should be passed to pa_sleep, and only fractional part (bugfix:
6636: #188)
6637:
6638: * src/targets/apache/mod_parser3.c: 1.3 compatibility
6639:
6640: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6641: GC_dont_gc=1, as in cgi version
6642:
6643: * src/targets/apache/mod_parser3.c: warning war
6644:
6645: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6646: pa_httpd.h: version removed, some trash removed
6647:
6648: * src/targets/apache/mod_parser3.c: version removed (we don't want
6649: to show it), warning war
6650:
6651: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6652: pa_httpd.h: parser_status_allowed removed + merge config
6653: functions removed (override is the default) + beauty
6654:
6655: * src/: include/pa_request.h, main/pa_request.C,
6656: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
6657: hide $status used in apache module removed
6658:
6659: 2010-11-18 moko
6660:
6661: * operators.txt: $.table[compact] added for ^json:string[]
6662:
6663: 2010-11-16 moko
6664:
6665: * src/targets/apache/mod_parser3.c: some cleanup done
6666:
6667: * src/main/untaint.C: bugfix: first, second String::Body argument
6668: is hashcode; second, info.fragment_begin is original, not
6669: resulting length
6670:
6671: * src/classes/file.C: new feature: $.stdin now untainted
6672:
6673: * tests/results/264.processed: new feature: $.stdin[] now untainted
6674:
6675: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
6676:
6677: * src/classes/op.C: ^apply-taint[] method added
6678:
6679: * tests/: 264.html, results/264.processed: ^apply-taint[] test
6680: added; $.stdin untaint test added
6681:
6682: 2010-11-15 moko
6683:
6684: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
6685: removed
6686:
6687: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6688: pa_httpd.h: 2x2 calculated under apache2. :)
6689:
6690: 2010-11-13 moko
6691:
6692: * src/targets/apache/mod_parser3.c: initial changes to build module
6693: with apache 2.x includes
6694:
6695: * src/targets/apache/: Makefile.am, mod_parser3.c,
6696: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
6697: united apache 1.3 / apache 2.x DSO module
6698:
6699: 2010-11-09 moko
6700:
6701: * src/types/pa_method.h: check added to dissallow @method[name;*]
6702: syntax
6703:
6704: * tests/: 263.html, results/263.processed: test from method[*args]
6705: added
6706:
6707: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
6708: number of params can now be passed to a method declared with *arg
6709:
6710: 2010-11-06 moko
6711:
6712: * src/classes/table.C: formating fixed. :)
6713:
6714: * src/classes/table.C: closes #4: ^table.select now supports
6715: $.limit(), $.offset, $.reverse() options
6716:
6717: * tests/: 262.html, results/262.processed: test for ^table:select
6718: with options added (feature #4)
6719:
6720: * src/include/pa_array.h: remove function added
6721:
6722: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
6723: object in get_element/put_element, using static one.
6724:
6725: 2010-11-04 moko
6726:
6727: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
6728: options is passed
6729:
6730: * tests/: 256.html, results/256.processed: $.table[compact] feature
6731: now tested; k and p in handler now tested.
6732:
6733: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
6734: $.table[compact] feature added
6735:
6736: * src/classes/json.C: key is now passed to handler in
6737: value_json_string; ^json:string result now process tainting
6738: inside and returns clean string, related to issue #153
6739:
6740: * src/main/untaint.C: bugfix: charset can be null (in
6741: ^string:save[] as example), thus check is added
6742:
6743: 2010-10-31 moko
6744:
6745: * src/classes/string.C: error message changed (fixes issue #149)
6746:
6747: 2010-10-29 moko
6748:
6749: * src/main/pa_http.C: ":port" is now added to "Host:" header if
6750: port is not default (fixes issue #155); exception on invalid port
6751: added.
6752:
6753: * src/main/untaint.C: '*' is now not urlencoded to allow header
6754: "Accept: */*" to be passed
6755:
6756: 2010-10-28 moko
6757:
6758: * src/classes/curl.C: bugfix: detect_charset() was throwing
6759: exception on unknown charset even if response_charset was
6760: specified
6761:
6762: 2010-10-27 moko
6763:
6764: * src/classes/string.C: ^string.append removed for void
6765: compatibility
6766:
6767: 2010-10-26 moko
6768:
6769: * src/classes/json.C: libjson supports array at top level, we too
6770: (GPF fixed)
6771:
6772: 2010-10-25 moko
6773:
6774: * tests/: 253.html, results/253.processed: libjson supports array
6775: at top level, parser now supports it as well.
6776:
6777: * tests/261.html, tests/results/261.processed,
6778: src/types/pa_vstring.h: empty string is now void compatible
6779: (allows $empty.key)
6780:
6781: 2010-10-22 misha
6782:
6783: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
6784: while adding additional expires checkout)
6785:
6786: * tests/030.html: - test for session cookie was added
6787:
6788: 2010-10-21 moko
6789:
6790: * src/: classes/string.C, classes/void.C, main/execute.C,
6791: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
6792: string (feature #111)
6793:
6794: * tests/: 261.html, results/261.processed: checks void from string
6795: inheritance (feature #111)
6796:
6797: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
6798: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
6799: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
6800: now true by default
6801:
6802: 2010-10-17 moko
6803:
6804: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
6805: upload now uses binary blocks instead of L_FILE_POST tainting.
6806: (bugfix: #128)
6807:
6808: * tests/: 223.html, results/223.processed: binary file upload test
6809: added, GPF (issue #128) also checked in this test
6810:
6811: 2010-10-13 misha
6812:
6813: * tests/260.html: - test for math:convert
6814:
6815: * src/classes/math.C: - error in math:convert was fixed
6816:
6817: * operators.txt: - info about
6818: ^math:convert[number](from-base;to-base) was added
6819:
6820: * src/classes/math.C: - method
6821: ^math:convert[number](from-base;to-base) for converting number
6822: represention from one base to another was added ( new feature:
6823: #23 )
6824:
6825: 2010-10-13 moko
6826:
6827: * src/main/compile.tab.C: [] now is empty string, not void
6828:
6829: * src/main/compile.y: [] now is empty string, not void
6830:
6831: * src/types/pa_vvoid.h: void now passed as parameter
6832:
6833: * tests/: 259.html, results/259.processed: to test difference
6834: between void and empty string (see ticket #111)
6835:
6836: * tests/results/152.processed: $sEmpty[] is now empty string, not
6837: void
6838:
6839: * tests/256.html: $s[$void] is no longer empty string
6840:
6841: * tests/254.html: empty string is no longer void
6842:
6843: 2010-10-12 misha
6844:
6845: * src/types/pa_vcookie.C: - check if $.expires value can be
6846: converted to date during cookies set up ( bugfix: #104 )
6847:
6848: * tests/041.html: - more tests for ^table.locate were added
6849:
6850: * src/classes/table.C: - ^table.locate[field;value;options] didn't
6851: work ( bugfix: #129 ) - exception comment for incorrect options
6852: ^table.locate[field;value;options] was fixed
6853:
6854: 2010-10-10 moko
6855:
6856: * src/: classes/reflection.C, main/execute.C: constructor returning
6857: another object feature returned
6858:
6859: * tests/results/258.processed: test result updated as constructor
6860: returning another object feature returned
6861:
6862: * tests/: 258.html, results/258.processed: test for constructor
6863: returning another object
6864:
6865: 2010-10-08 misha
6866:
6867: * tests/257.html: - whitespaces after @METACOMMANDS and their
6868: options shouldn't cause exceptions any longer
6869:
6870: 2010-10-06 moko
6871:
6872: * src/classes/: hash.C, table.C: length from sql server is now
6873: ignored, as sql string can contain 0x00 inside (bugfix: #119)
6874:
6875: 2010-10-02 misha
6876:
6877: * operators.txt: - the X mark was removed from ^cache[file]. it is
6878: usable to delete cache file.
6879:
6880: 2010-10-02 moko
6881:
6882: * tests/: 253.html, results/253.processed: hook_key added for key
6883: checking
6884:
6885: * src/classes/json.C: null key bug fixed
6886:
6887: 2010-09-29 misha
6888:
6889: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
6890:
6891: 2010-09-25 moko
6892:
6893: * src/classes/json.C: small fixed
6894:
6895: * tests/results/: 253.processed, 255.processed: just updated
6896:
6897: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
6898: results/255.processed: charset transcode test added for
6899: json:parse
6900:
6901: 2010-09-24 moko
6902:
6903: * src/types/pa_value.h: warning war :)
6904:
6905: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
6906: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
6907: ^json:string
6908:
6909: 2010-09-22 moko
6910:
6911: * src/main/pa_charset.C: parser charset tables declare only
6912: white-space before 0x20, thus adding the missing chars
6913:
6914: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
6915: to http://unicode.org/Public/MAPPINGS/VENDORS/
6916:
6917: 2010-09-21 misha
6918:
6919: * src/main/compile.y: - some semicolons were added (VS2010 don't
6920: want to compile grammar if they are absent)
6921:
6922: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
6923:
6924: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
6925:
6926: * src/main/main.vcproj: - path to bison is changed
6927:
6928: 2010-09-21 moko
6929:
1.116 moko 6930: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
6931: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
6932: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 6933:
6934: 2010-09-20 misha
6935:
6936: * src/types/pa_vtable.C: - add EOLs while json-serializing table
6937:
6938: * src/classes/json.C: - add EOL while json-serializing hash
6939:
6940: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
6941: compilers don't like 'ES'.
6942:
6943: 2010-09-17 misha
6944:
6945: * operators.txt: - info about json class was added
6946:
6947: * src/classes/json.C: - ^json:string[object]
6948:
6949: * src/: include/pa_request.h, main/pa_request.C: - stuff for
6950: preventing infinite recursion while executing json:string was
6951: added
6952:
6953: * src/include/pa_string.h: - method append_quoted was added
6954:
6955: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
6956: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
6957: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
6958: was added to Value & Co
6959:
6960: * src/classes/date.C: - methods get_gmt_string and get_sql_string
6961: were used
6962:
6963: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
6964: were added
6965:
6966: 2010-09-10 moko
6967:
6968: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6969: die_or_abort (backport from 3.4.1)
6970:
6971: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6972: die_or_abort (bugfix: #106)
6973:
6974: 2010-09-09 moko
6975:
6976: * src/classes/json.C: warning war. :)
6977:
6978: 2010-09-08 misha
6979:
6980: * src/lib/json/Makefile.am: - additional include directories were
6981: added (for pa_memory.h and gc.h)
6982:
6983: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
6984: compile as C++ instead default - additional include directory was
6985: added (for gc.h)
6986:
6987: * src/types/pa_vform.C: - little code reformating
6988:
6989: * src/classes/file.C: - $.content-type option now can be specified
6990: in ^file::create ( new feature: #102 )
6991:
6992: 2010-09-08 moko
6993:
6994: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
6995: pa_malloc/pa_free
6996:
6997: 2010-09-07 moko
6998:
6999: * tests/results/254.processed: VStateless_class:put_element
7000: exception was fixed
7001:
7002: * src/types/: pa_value.h, pa_vstateless_class.h: now
7003: VStateless_class:put_element barks self.type, not this.type
7004: (bugfix: #105)
7005:
7006: 2010-09-06 moko
7007:
7008: * src/classes/reflection.C: bugfix: new String() is required for
7009: exception handling
7010:
7011: * tests/: 254.html, results/254.processed: test modified
7012:
7013: 2010-09-05 moko
7014:
7015: * tests/: 254.html, results/254.processed: ^reflection:copy test
7016: added
7017:
7018: * src/: classes/reflection.C, include/pa_request.h:
7019: ^reflection:copy implemented (new feature: #100)
7020:
7021: 2010-09-03 moko
7022:
7023: * src/lib/json/JSON_parser.C: c++ compatiblity
7024:
7025: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
7026: option testing added
7027:
7028: 2010-09-02 moko
7029:
7030: * src/classes/json.C: $.distinct[first|last|all] added
7031:
7032: 2010-09-01 moko
7033:
7034: * tests/results/253.processed: json test result
7035:
7036: * tests/: 253.html, 253_json.txt: json test added
7037:
7038: * src/classes/json.C: json.C update to actual version + hash key
7039: creation bugfix
7040:
7041: 2010-08-31 misha
7042:
7043: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
7044: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
7045: src/lib/Makefile.am, src/classes/Makefile.am,
7046: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
7047: json library was added
7048:
7049: 2010-08-30 moko
7050:
7051: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
7052: types/pa_vobject.C: cosmetic optimization in
7053: request:execute_method usage
7054:
7055: * src/: include/pa_charset.h, main/pa_charset.C: small
7056: optimization, just to decrease number of lines. :)
7057:
7058: 2010-08-27 misha
7059:
7060: * src/classes/op.C: - taint[json] was added
7061:
7062: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
7063: were added
7064:
7065: * src/main/pa_exec.C: - warning fix was rolled back.
7066:
7067: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
7068: include/pa_string.h: - taint[json] was added - escaping was
7069: slightly modified
7070:
7071: 2010-08-25 misha
7072:
7073: * src/classes/file.C: - typo in file:sql exception was fixed
7074:
7075: * src/main/pa_exec.C: - warning about declared and not used
7076: variable forced_allow was removed
7077:
7078: 2010-08-14 misha
7079:
7080: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
7081: were removed
7082:
7083: 2010-08-11 moko
7084:
7085: * tests/: 249.html, results/249.processed: default setter and
7086: anti-recursive default getter test added
7087:
7088: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
7089: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
7090: types/pa_vobject.h, types/pa_vstateless_class.C,
7091: types/pa_vstateless_class.h: default setter support +
7092: anti-recursive default getter support ( new feature: #13 )
7093:
7094: * src/include/pa_hash.h: optimization: threshold member removed
7095: from hash, reducing sizeof(hash)
7096:
7097: 2010-08-10 misha
7098:
7099: * tests/196.html: - junction-method was added to the test
7100:
7101: * tests/248.html: - ups. typo :)
7102:
7103: * tests/248.html: - test for checking .match with 4 params
7104:
7105: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
7106: 247_windows1251.txt: - test for "transcode file from utf-8 to
7107: $request:charset during loading if the BOM code is detected"
7108:
7109: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
7110: $request:charset during loading if the BOM code is detected ( new
7111: feature: #98 )
7112:
7113: 2010-08-05 misha
7114:
7115: * src/classes/image.C: - ^image.replace now can accept only 2
7116: params. in this case the whole image is affected ( new feature:
7117: #95 )
7118:
7119: 2010-08-04 misha
7120:
7121: * tests/246.html: - test tor ^hash._at[] was added
7122:
7123: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
7124: #53 )
7125:
7126: * src/include/pa_hash.h: - methods for accessing the first and the
7127: last values of ordered hash were added (first_value and
7128: last_value)
7129:
7130: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
7131: (similar to others file's methods):
7132: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
7133: #68 )
7134:
7135: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
7136:
7137: 2010-08-01 moko
7138:
7139: * src/classes/op.C: to correctly process $result[] in code, called
7140: from ^process
7141:
7142: * tests/245.html: $result in ^process[] test added
7143:
7144: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
7145: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
7146: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
7147: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
7148: caller, self) op_call(VMethodFrame &frame, bool constructing)
7149: removed, construct(class,method) added
7150:
7151: * tests/results/: 192.processed, 244.processed: request::construct
7152: added
7153:
7154: * tests/: 244.html, 245.html, results/244.processed,
7155: results/245.processed: object creation exceptions and ^process
7156: tests added
7157:
7158: 2010-07-28 misha
7159:
7160: * tests/make_tests.cmd: - win32 EOLs
7161:
7162: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
7163: tests on Win32 were added (The system timezone should be GMT+3)
7164:
7165: 2010-07-26 misha
7166:
7167: * tests/: 212.html, results/212.processed: - sizes were removed
7168: mecause they could be different on different OSs
7169:
7170: * tests/065.html: - make it "win32 friendly"
7171:
7172: 2010-07-25 misha
7173:
7174: * src/main/compile.y: - all EOLs between methods are removed during
7175: compilation ( new feature: #47 )
7176:
7177: * tests/results/149.processed: - prepare tests to trim trailing
7178: methods' EOLs
7179:
7180: * tests/149.html: - prepare tests to trim trailing methods' EOLs
7181:
7182: * tests/: results/006.processed, results/014.processed, 006.html,
7183: 014.html, 022.html: - prepare tests to trim trailing methods'
7184: EOLs
7185:
7186: * tests/: 059.html, 071.html, 149.html, results/059.processed,
7187: results/071.processed, results/022.processed: - prepare tests to
7188: trim trailing methods' EOLs
7189:
7190: * tests/: results/073.processed, results/109.processed,
7191: results/142.processed, results/144.processed,
7192: results/149.processed, 073.html, 096.html, 109.html, 142.html,
7193: 144.html: - prepare tests to trim trailing methods' EOLs
7194:
7195: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
7196: 149.html, 152.html, results/096.processed, results/107.processed,
7197: results/109.processed, results/142.processed,
7198: results/144.processed: - prepare tests to trim trailing methods'
7199: EOLs
7200:
7201: 2010-07-24 moko
7202:
7203: * tests/results/: 156.processed, 224.processed: fix for #54 changed
7204: the hash order in this test
7205:
7206: * tests/014.html: to check hash order, hash no is longer sorted
7207: before print
7208:
7209: * src/include/pa_hash.h: hash copy constructor now keeps order
7210: (bugfix: #54)
7211:
7212: 2010-07-23 moko
7213:
7214: * tests/results/224.processed: @auto[] is no longer inherited
7215:
7216: * src/types/pa_vstateless_class.C, tests/227.html,
7217: tests/results/227.processed: @auto[] is no longer inherited
7218: (bugfix: #57)
7219:
7220: 2010-07-22 misha
7221:
7222: * src/classes/table.C: - don't skip comment lines during
7223: table::load if encloser or separator is set as '#' ( new feature:
7224: #30 )
7225:
7226: * src/targets/cgi/parser3.C: - don't run as cgi if
7227: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
7228: #12 )
7229:
7230: * src/classes/file.C: - set PARSER_VARSION env before external
7231: script executing
7232:
7233: 2010-07-13 misha
7234:
7235: * tests/058.html: - test for suppressing @border was added - test
7236: for user attribute was added
7237:
7238: * tests/results/186.processed: unescaping from \uXXXX
7239:
7240: * tests/186.html: unescaping from \uXXXX
7241:
7242: * tests/: 239.html, results/239.processed: method call type
7243:
7244: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
7245: $junction_method.CLASS_NAME (+CLASS)
7246:
7247: 2010-07-07 misha
7248:
7249: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
7250: *nix
7251:
7252: 2010-07-05 misha
7253:
7254: * src/: classes/curl.C, classes/file.C, classes/hash.C,
7255: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
7256: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
7257: comment strings "options must be hash", "options must be hash,
7258: not code" and "called with invalid option" were replaced by
7259: constatns - exception comment string "invalid option passed" was
7260: replaced by "called with invalid option" (now in different
7261: methods are the same exception comment string)
7262:
7263: * src/include/pa_exception.h: - more exception strings were defined
7264:
7265: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
7266: types/pa_vstateless_class.h: - now we can define possible
7267: method's call type ( new feature: #5 ) 1.
7268: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
7269: methods 2. @static:method[params] (only static keyword could be
7270: used here) -- for specified methods
7271:
7272: * src/main/pa_common.C: - junction points should not be deleted on
7273: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
7274: cleanup
7275:
7276: 2010-07-03 misha
7277:
7278: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
7279: results/158.processed, results/160.processed,
7280: results/161.processed, results/162.processed,
7281: results/163.processed: - prepare tests to trim trailing methods'
7282: EOLs
7283:
7284: * tests/results/169.processed: - prepare tests to trim trailing
7285: methods' EOLs
7286:
7287: * tests/results/: 168.processed, 169.processed: - prepare tests to
7288: trim trailing methods' EOLs
7289:
7290: * tests/: results/170.processed, results/167.processed,
7291: results/168.processed, results/169.processed, 167.html, 168.html,
7292: 169.html: - prepare tests to trim trailing methods' EOLs
7293:
7294: * tests/: results/170.processed, results/171.processed,
7295: results/172.processed, results/173.processed,
7296: results/174.processed, results/175.processed, 170.html, 171.html,
7297: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
7298: trailing methods' EOLs
7299:
7300: * tests/: results/176.processed, results/180.processed,
7301: results/184.processed, results/185.processed,
7302: results/191.processed, results/192.processed,
7303: results/196.processed, results/197.processed,
7304: results/198.processed, 176.html, 180.html, 184.html, 185.html,
7305: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
7306: to trim trailing methods' EOLs
7307:
7308: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
7309: results/199.processed, results/208.processed,
7310: results/209.processed, results/213.processed,
7311: results/214.processed: - prepare tests to trim trailing methods'
7312: EOLs
7313:
7314: 2010-06-29 misha
7315:
7316: * tests/: 220.html, 218.html, results/218.processed,
7317: results/215.processed, results/217.processed, 215.html, 217.html:
7318: - prepare tests to trim trailing methods' EOLs
7319:
7320: * tests/: results/224.processed, 224.html, 223.html,
7321: results/223.processed, results/220.processed: - prepare tests to
7322: trim trailing methods' EOLs
7323:
7324: * tests/results/: 226.processed, 230.processed: - prepare tests to
7325: trim trailing methods' EOLs
7326:
7327: * tests/: 229.html, results/229.processed: - prepare tests to trim
7328: trailing methods' EOLs
7329:
7330: * tests/: 232.html, 235.html, results/232.processed,
7331: results/235.processed, 226.html, 227.html, 228.html, 230.html,
7332: results/226.processed, results/227.processed,
7333: results/228.processed, results/230.processed: - prepare tests to
7334: trim trailing methods' EOLs
7335:
7336: 2010-06-16 moko
7337:
7338: * tests/: 229.html, results/229.processed: elseif now supported in
7339: ^if
7340:
7341: * src/classes/op.C: new feature: #56 elseif now supported in ^if
7342:
7343: 2010-06-03 misha
7344:
7345: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
7346: instead of memcopy for overlaped regions
7347:
7348: 2010-05-25 misha
7349:
7350: * src/main/pa_common.C: - wanring about unused vars was removed
7351:
7352: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
7353: get_method_filename was moved to execute.C
7354:
7355: 2010-05-23 misha
7356:
7357: * src/main/pa_request.C: - more accurate detection of method's file
7358:
7359: 2010-05-22 misha
7360:
7361: * src/classes/reflection.C: - bugfix: core during detection of
7362: .file if filespec isn't detected successfully
7363:
7364: 2010-05-20 misha
7365:
7366: * src/main/pa_request.C: - fix in get_method_filename
7367:
7368: * src/include/pa_request.h: - new feature: #24 -- searching
7369: included file in @USE/^use is changed. if its filespec doesn't
7370: start from '/' it will be searched in caller file directory
7371:
7372: * src/classes/reflection.C: - ^reflection:method_info returns file
7373: where the method is defined
7374:
7375: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
7376: classes/op.C: - new feature: #24 -- searching included file in
7377: @USE/^use is changed. if its filespec doesn't start from '/' it
7378: will be searched in caller file directory
7379:
7380: * src/: classes/file.C, include/pa_common.h: - method lastposafter
7381: is moved to pa_common.h
7382:
7383: 2010-05-18 misha
7384:
7385: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
7386: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
7387: cookie parser decode \uXXXX as well as %uXXXX
7388:
7389: 2010-05-17 misha
7390:
7391: * src/classes/curl.C: beauty: - unused param is removed in method
7392: _curl_version_action - some spaces were removed or replaced by
7393: tabs
7394:
7395: * src/classes/table.C: - bugfix: #72 core with empty value during
7396: ^table.hash[...;name_of_the_last_column][$.type[string]]
7397:
7398: 2010-05-16 misha
7399:
7400: * src/classes/curl.C: new: #61 more curl options were added
7401: (contributed by Sumo)
7402:
7403: 2010-04-29 pretender
7404:
7405: * src/main/pa_string.C: fixes #63 Split result from empty string
7406: now empty string.
7407:
7408: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
7409: string type.
7410:
7411: 2010-04-28 pretender
7412:
7413: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
7414: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
7415: macrodefinition removed
7416:
7417: 2010-04-19 pretender
7418:
7419: * src/main/execute.C: fixes #60 Stacktrace now contains info for
7420: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
7421:
7422: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
7423: fixes #64 Now file.missing exception generates in unsafe mode to.
7424:
7425: * src/classes/file.C: fixes #48 Now not throw "not save environment
7426: variable" exception in grpunlim version.
7427:
7428: 2010-04-05 misha
7429:
7430: * src/classes/string.C: - new feature: 4th param was added to
7431: match. if specified its value is returned in case of nothing was
7432: found
7433:
7434: 2010-04-01 misha
7435:
7436: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
7437: multiple execution of /a/b/auto.p
7438:
7439: 2010-03-19 misha
7440:
7441: * src/main/execute.C: - core in $table1.$table2 was fixed
7442:
7443: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
7444:
7445: 2010-01-27 misha
7446:
7447: * src/main/pa_common.C: - bugfix: there are no excaption.type if
7448: trying to open file by path /existing-file/non-exixting-file
7449:
7450: 2010-01-26 misha
7451:
7452: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
7453: was added (returns file)
7454:
7455: 2009-12-22 misha
7456:
7457: * src/classes/curl.C: - method 'option' was renamed to 'options' -
7458: now parser doesn't have class curl if it was built without it
7459:
7460: 2009-12-15 misha
7461:
7462: * configure.in: - little cheat with curl include dir was added
7463:
7464: 2009-12-05 misha
7465:
7466: * src/classes/curl.C: - some fixes
7467:
7468: 2009-12-04 misha
7469:
7470: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
7471: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
7472: buildall-with-xml, buildall-without-xml, configure.in: - curl
7473: class was added
7474:
7475: * src/include/pa_hash.h: - hash-iterator was added
7476:
7477: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
7478: was added to pcre
7479:
7480: 2009-11-27 misha
7481:
7482: * src/classes/image.C: - don't add @border attribute to output of
7483: ^image.html[] if it was specified by user with empty value
7484:
7485: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
7486: root element and we are trying to access .documentElement
7487:
7488: 2009-11-11 misha
7489:
7490: * src/classes/table.C: - in ^table.flip[] look at number of columns
7491: instead of number of items in first row for named tables
7492:
7493: 2009-11-10 misha
7494:
7495: * operators.txt: - info about hash-options in ^file::create was
7496: added
7497:
7498: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
7499: added
7500:
7501: 2009-11-09 misha
7502:
7503: * buildall-with-xml: - moving to libxml 2.7.6
7504:
7505: * tests/236.html: - tests for comparations cords with functions
7506: were added
7507:
7508: * src/include/pa_string.h: - optimisation: cacheing of cstr was
7509: added
7510:
7511: * src/main/pa_http.C: - little optimisation
7512:
7513: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
7514: GPF mallocs + stringstream (table.save)
7515:
7516: * src/classes/file.C: - file::create now accepts 4th param: options
7517: with $.charset
7518:
7519: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
7520: bug in cord (comparation cords with functions was buggy)
7521:
7522: 2009-11-06 misha
7523:
7524: * src/main/pa_string.C: - bugfix: calculation string.length
7525: sometimes was buggy
7526:
7527: * src/classes/string.C: - bugfix: Temp_value_element wasn't
7528: destroyed if exception occured during match/replace
7529:
7530: * src/: main/pa_charset.C, include/pa_charset.h: - method
7531: lengthUTF8Char was added
7532:
7533: * src/classes/op.C: - clean tainting lang was added for user's
7534: usage
7535:
7536: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
7537: fixed: checkouts are required after GC_MALLOC
7538:
7539: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
7540:
7541: * operators.txt: - actually, there is no ^untaint[xml] in
7542: file::create
7543:
7544: 2009-10-15 misha
7545:
7546: * tests/: 235.html, 235_attach.txt: - tests for preparing email
7547: were added
7548:
7549: * tests/234.html: - more tests for checking ^taint[uri] escaping
7550: were added
7551:
7552: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
7553: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
7554: hacking: for dealing with transcoding+^taint[uri]
7555: transcode_and_untaint was replaced by untaint_and_transcode
7556:
7557: 2009-10-13 misha
7558:
7559: * tests/: 121.html, results/121.processed: - test transcoding +
7560: url-escaping now
7561:
7562: * tests/results/auto.p: - more helpers' methods were added
7563:
7564: * src/main/pa_globals.C: - die instead of abort
7565:
7566: 2009-10-06 misha
7567:
7568: * src/main/pa_common.C: - don't allocate memory during
7569: capitalization if input string is already capitalized
7570:
7571: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
7572:
7573: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
7574: use format function because it calls malloc
7575:
7576: * src/include/pa_common.h: - more capitalized headers were added
7577:
7578: * src/main/pa_common.C: - in safe mode clear executable bits during
7579: file writing
7580:
7581: 2009-10-05 misha
7582:
7583: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
7584:
7585: 2009-10-03 misha
7586:
7587: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
7588: ^img.text[] & ^img.length[] can work in utf-8 now
7589:
7590: * src/: include/pa_charset.h, main/pa_charset.C: - class
7591: UTF8_string_iterator was added
7592:
7593: * src/classes/image.C: - respect utf-8 when calculate alphabet
7594: length
7595:
7596: * src/classes/mail.C: - check from before get message.cstr
7597:
7598: 2009-10-02 misha
7599:
7600: * tests/233.html: - test for image.font, image.length, image.text
7601: with text in utf-8 were added
7602:
7603: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
7604:
7605: * buildall-with-xml, buildall-without-xml: - comment about gc
7606: version for freebsd 4 was added
7607:
7608: 2009-10-01 misha
7609:
7610: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
7611: terminator) - read_pipe were slightly optimized
7612:
7613: 2009-09-28 misha
7614:
7615: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
7616: removed
7617:
7618: * src/types/pa_vmail.C: - forgot about space after ':'
7619:
7620: * src/types/pa_vmail.C: - escape filenames while preparing mail
7621: body - small simplifications
7622:
7623: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
7624: inout params like pa_base64
7625:
7626: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
7627: option $.debug-print(1) was added to mail:send - changes for
7628: using uue_encode which uses less memory
7629:
7630: * src/main/pa_common.C: - pa_base64_encode uses less memory now
7631:
7632: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
7633: memory now
7634:
7635: 2009-09-26 misha
7636:
7637: * src/types/pa_vmail.C: - default encoding now is base64
7638:
7639: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
7640:
7641: 2009-09-25 misha
7642:
7643: * src/types/pa_vmail.C: - capitalization of headers was added to
7644: sending mail as well
7645:
7646: * buildall-with-xml: - catalog package was removed from libxml
7647:
7648: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
7649: win32 absolute path
7650:
7651: * src/include/pa_common.h: - one more capitalized header was added
7652:
7653: 2009-09-22 misha
7654:
7655: * INSTALL: - comment about building just httpd binary while
7656: building apache module was added
7657:
7658: 2009-09-21 misha
7659:
7660: * buildall-with-xml: - moving to the latest versions of xml libs:
7661: libxml 2.7.4 and libxslt 1.1.25
7662:
7663: 2009-09-19 misha
7664:
7665: * tests/231.html: - test for encoding cookie in win-1251
7666:
7667: 2009-09-18 misha
7668:
7669: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
7670: object] were added
7671:
7672: * operators.txt: - info about method ^reflection:fields[class or
7673: object] was added
7674:
7675: * src/classes/reflection.C: - method ^reflection:fields[class or
7676: object] was added
7677:
7678: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
7679: methods get_fields were added
7680:
7681: * tests/232.html: - tests for @GET[name]
7682:
7683: * src/classes/table.C: - some changes in handling hash-options for
7684: creare, join and locate
7685:
7686: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
7687: defined with option: the type of requested value
7688:
7689: 2009-09-17 misha
7690:
7691: * tests/212.html: - tests for .pattern and .options were added
7692:
7693: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
7694: $regex.options were added
7695:
7696: 2009-09-11 misha
7697:
7698: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
7699: rewrited. it checks not just one case of sending cookies during
7700: file::load[http], but also sending headers and fields (including
7701: files)
7702:
7703: 2009-09-10 misha
7704:
7705: * src/main/untaint.C: - workaround in file-spec lang for old Macs
7706: was removed => now parser can open files with Russian 'r' in
7707: filename
7708:
7709: * src/main/untaint.C: - bugfix: client charset whould be analized
7710: while escaping cookies but now source charset
7711:
7712: * src/main/pa_http.C: - bugfix: the values of http headers didn't
7713: ^tainted[uri] so it was possible to make request with incorrect
7714: http header
7715:
7716: * src/main/pa_http.C: - capitalization of http headers during
7717: file::load[http was slightly changes - bugfix: all headers which
7718: parser sends during file::load[http should be transcoded and only
7719: then escaped
7720:
7721: * src/main/untaint.C: - a bit more comments were added
7722:
7723: * src/classes/: file.C, string.C: - types where changes (minus 2
7724: warnings)
7725:
7726: * src/include/pa_common.h: - 2 capitalized strings for making http
7727: headers during file::load[http were added
7728:
7729: 2009-09-08 misha
7730:
7731: * operators.txt: - changes in file.save and string.save were added
7732:
7733: * tests/: 230.html, 230.txt: - tests for checking options in
7734: file.save and string.save were added
7735:
7736: * src/main/pa_request.C: - http headers names, which are passed to
7737: SAPI::add_header_attribute are lowercased now (it'll be
7738: capitalized in that method)
7739:
7740: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
7741: classes/string.C: - file_write accepts Request_charsets and asked
7742: charset and cound transcode content before writing - string.save
7743: and file.save have option $.charset now
7744:
7745: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
7746: classes/xdoc.C: - file_write accepts Request_charsets and asked
7747: charset and cound transcode content before writing
7748:
7749: * src/include/pa_exception.h: - new exception comment string was
7750: defined
7751:
7752: 2009-09-07 misha
7753:
7754: * src/main/compile.y: - grammar $name\ name stops now for regex
7755: sub-pattern\s
7756:
7757: 2009-09-04 misha
7758:
7759: * src/main/pa_http.C: - capitalization of http headers during
7760: file::load[http was implemented
7761:
7762: 2009-09-03 misha
7763:
7764: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
7765: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
7766: types/pa_vmail.C, targets/cgi/parser3.C,
7767: targets/isapi/parser3isapi.C: - back to storing response http
7768: headers in lowercase - capitalize them during output
7769:
7770: 2009-08-31 misha
7771:
7772: * src/classes/table.C: - allow call with any brackets (it could be
7773: useful in methods with explict result declaration)
7774:
7775: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
7776: correctly if $request:charset==koi8-r
7777:
7778: 2009-08-30 misha
7779:
7780: * src/: include/pa_common.h, main/pa_request.C: - http headers were
7781: changed: content-type => Content-type and so on
7782:
7783: * src/classes/file.C, src/include/pa_common.h,
7784: src/include/pa_request.h, src/main/pa_http.C,
7785: src/main/pa_request.C, src/types/pa_vcookie.C,
7786: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
7787: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
7788: tests/results/002.processed, tests/results/003.processed,
7789: tests/results/004.processed, tests/results/005.processed,
7790: tests/results/006.processed, tests/results/007.processed,
7791: tests/results/008.processed, tests/results/009.processed,
7792: tests/results/010.processed, tests/results/011.processed,
7793: tests/results/012.processed, tests/results/013.processed,
7794: tests/results/014.processed, tests/results/015.processed,
7795: tests/results/016.processed, tests/results/017.processed,
7796: tests/results/018.processed, tests/results/019.processed,
7797: tests/results/020.processed, tests/results/021.processed,
7798: tests/results/022.processed, tests/results/023.processed,
7799: tests/results/024.processed, tests/results/025.processed,
7800: tests/results/026.processed, tests/results/027.processed,
7801: tests/results/028.processed, tests/results/029.processed,
7802: tests/results/030.processed, tests/results/031.processed,
7803: tests/results/032.processed, tests/results/033.processed,
7804: tests/results/034.processed, tests/results/035.processed,
7805: tests/results/036.processed, tests/results/037.processed,
7806: tests/results/038.processed, tests/results/039.processed,
7807: tests/results/040.processed, tests/results/041.processed,
7808: tests/results/042.processed, tests/results/043.processed,
7809: tests/results/044.processed, tests/results/045.processed,
7810: tests/results/046.processed, tests/results/047.processed,
7811: tests/results/048.processed, tests/results/049.processed,
7812: tests/results/050.processed, tests/results/051.processed,
7813: tests/results/052.processed, tests/results/053.processed,
7814: tests/results/054.processed, tests/results/055.processed,
7815: tests/results/056.processed, tests/results/057.processed,
7816: tests/results/058.processed, tests/results/059.processed,
7817: tests/results/060.processed, tests/results/061.processed,
7818: tests/results/062.processed, tests/results/063.processed,
7819: tests/results/064.processed, tests/results/065.processed,
7820: tests/results/066.processed, tests/results/067.processed,
7821: tests/results/068.processed, tests/results/069.processed,
7822: tests/results/070.processed, tests/results/071.processed,
7823: tests/results/072.processed, tests/results/073.processed,
7824: tests/results/074.processed, tests/results/075.processed,
7825: tests/results/076.processed, tests/results/077.processed,
7826: tests/results/078.processed, tests/results/079.processed,
7827: tests/results/080.processed, tests/results/081.processed,
7828: tests/results/082.processed, tests/results/083.processed,
7829: tests/results/084.processed, tests/results/085.processed,
7830: tests/results/086.processed, tests/results/087.processed,
7831: tests/results/088.processed, tests/results/089.processed,
7832: tests/results/090.processed, tests/results/091.processed,
7833: tests/results/092.processed, tests/results/093.processed,
7834: tests/results/094.processed, tests/results/095.processed,
7835: tests/results/096.processed, tests/results/097.processed,
7836: tests/results/098.processed, tests/results/099.processed,
7837: tests/results/100.processed, tests/results/101.processed,
7838: tests/results/102.processed, tests/results/103.processed,
7839: tests/results/104.processed, tests/results/105.processed,
7840: tests/results/106.processed, tests/results/107.processed,
7841: tests/results/108.processed, tests/results/109.processed,
7842: tests/results/110.processed, tests/results/111.processed,
7843: tests/results/112.processed, tests/results/113.processed,
7844: tests/results/114.processed, tests/results/115.processed,
7845: tests/results/116.processed, tests/results/117.processed,
7846: tests/results/118.processed, tests/results/119.processed,
7847: tests/results/120.processed, tests/results/121.processed,
7848: tests/results/122.processed, tests/results/123.processed,
7849: tests/results/124.processed, tests/results/125.processed,
7850: tests/results/126.processed, tests/results/127.processed,
7851: tests/results/128.processed, tests/results/129.processed,
7852: tests/results/130.processed, tests/results/131.processed,
7853: tests/results/132.processed, tests/results/133.processed,
7854: tests/results/134.processed, tests/results/135.processed,
7855: tests/results/136.processed, tests/results/138.processed,
7856: tests/results/139.processed, tests/results/140.processed,
7857: tests/results/141.processed, tests/results/142.processed,
7858: tests/results/143.processed, tests/results/144.processed,
7859: tests/results/145.processed, tests/results/146.processed,
7860: tests/results/147.processed, tests/results/148.processed,
7861: tests/results/149.processed, tests/results/150.processed,
7862: tests/results/151.processed, tests/results/152.processed,
7863: tests/results/153.processed, tests/results/154.processed,
7864: tests/results/155.processed, tests/results/156.processed,
7865: tests/results/157.processed, tests/results/158.processed,
7866: tests/results/159.processed, tests/results/160.processed,
7867: tests/results/161.processed, tests/results/162.processed,
7868: tests/results/163.processed, tests/results/164.processed,
7869: tests/results/165.processed, tests/results/166.processed,
7870: tests/results/167.processed, tests/results/168.processed,
7871: tests/results/169.processed, tests/results/170.processed,
7872: tests/results/171.processed, tests/results/172.processed,
7873: tests/results/173.processed, tests/results/174.processed,
7874: tests/results/175.processed, tests/results/176.processed,
7875: tests/results/177.processed, tests/results/178.processed,
7876: tests/results/179.processed, tests/results/180.processed,
7877: tests/results/181.processed, tests/results/182.processed,
7878: tests/results/183.processed, tests/results/184.processed,
7879: tests/results/185.processed, tests/results/186.processed,
7880: tests/results/187.processed, tests/results/188.processed,
7881: tests/results/189.processed, tests/results/190.processed,
7882: tests/results/191.processed, tests/results/192.processed,
7883: tests/results/193.processed, tests/results/194.processed,
7884: tests/results/195.processed, tests/results/196.processed,
7885: tests/results/197.processed, tests/results/198.processed,
7886: tests/results/199.processed, tests/results/200.processed,
7887: tests/results/201.processed, tests/results/202.processed,
7888: tests/results/203.processed, tests/results/204.processed,
7889: tests/results/205.processed, tests/results/206.processed,
7890: tests/results/207.processed, tests/results/208.processed,
7891: tests/results/209.processed, tests/results/210.processed,
7892: tests/results/211.processed, tests/results/212.processed,
7893: tests/results/213.processed, tests/results/214.processed,
7894: tests/results/215.processed, tests/results/216.processed,
7895: tests/results/217.processed, tests/results/218.processed,
7896: tests/results/219.processed, tests/results/220.processed,
7897: tests/results/221.processed, tests/results/222.processed,
7898: tests/results/223.processed, tests/results/224.processed,
7899: tests/results/225.processed, tests/results/226.processed,
7900: tests/results/227.processed, tests/results/228.processed,
7901: tests/results/229.processed: - http headers were changed:
7902: content-type => Content-type and so on
7903:
7904: 2009-08-27 misha
7905:
7906: * src/: main/pa_random.C, include/pa_random.h,
7907: targets/cgi/parser3.C: - year was updated :)
7908:
7909: 2009-08-26 misha
7910:
7911: * tests/: 224.html, 224.p: - test for creating of parser object
7912: using constructor without params - little bugfix in test
7913:
7914: * src/main/compile_tools.h: - bugfix: should't call autouse while
7915: checking existed class while processing partial option
7916:
7917: * src/classes/reflection.C: - bugfix: core when creating object
7918: with reflection and constructor doesn't have params
7919:
7920: 2009-08-24 misha
7921:
7922: * tests/229.html: - tests for checking the number of parameters
7923: were added
7924:
7925: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
7926: number of method's parameters wasn't checked correctly (the bug
7927: was introduced in 3.4.0)
7928:
7929: 2009-08-22 misha
7930:
7931: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
7932: transcoded, but tainted pieces are escaped only when
7933: content-type==url-encoding
7934:
7935: * tests/228.html: - test for checking
7936: ^file::load[http://...;$.body[]]
7937:
7938: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
7939: post charset was too early (charsets is empty at this moment)
7940:
7941: 2009-08-21 misha
7942:
7943: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
7944: main/untaint.C: - some fixes with transcode+untaint
7945:
7946: 2009-08-15 misha
7947:
7948: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
7949: was increaced to 100 (was 50)
7950:
7951: * tests/227.html: - test for checking overriding properties in
7952: static classes was added
7953:
7954: * tests/: 226.html, 226.p: - test for @autoload[] was added
7955:
7956: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
7957: main/execute.C, main/pa_request.C, classes/reflection.C: -
7958: autouse was implemented
7959:
7960: 2009-08-14 misha
7961:
7962: * src/classes/reflection.C: - outdated checkout was removed
7963:
7964: * src/classes/reflection.C: - optimization - method ^dynamical was
7965: added.
7966:
7967: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
7968: types/pa_vstateless_class.h, main/execute.C: - optimization
7969:
7970: * src/types/pa_vclass.C: - exception if base on sytem class
7971:
7972: 2009-08-12 misha
7973:
7974: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
7975: pa_vstateless_class.h: - little optimisation
7976:
7977: 2009-08-11 misha
7978:
7979: * tests/224.html: - method_params => method_info - checking for
7980: $.inherited
7981:
7982: * src/classes/reflection.C, operators.txt: - method method_params
7983: was renamed to method_info and now it returns class name, if
7984: method was defined in ancestor
7985:
7986: * tests/225.html: - tests for cheching properties in hierarhical
7987: classes were added
7988:
7989: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
7990: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7991: main/compile.y, main/execute.C, classes/classes.C: - problems
7992: with properties in new classes implementation were fixed
7993:
7994: 2009-08-10 misha
7995:
7996: * src/main/execute.C: - now constructor shouldn't be defined in
7997: class. it could be defined in parent.
7998:
7999: 2009-08-09 misha
8000:
8001: * src/classes/reflection.C: - ^reflection:methods doesn't return
8002: base's methods
8003:
8004: 2009-08-08 misha
8005:
8006: * src/: classes/classes.h, classes/date.C, classes/file.C,
8007: classes/form.C, classes/hash.C, classes/hashfile.C,
8008: classes/image.C, classes/mail.C, classes/op.C,
8009: classes/reflection.C, classes/regex.C, classes/string.C,
8010: classes/table.C, classes/xdoc.C, classes/xnode.C,
8011: classes/xnode.h, include/pa_hash.h, main/execute.C,
8012: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
8013: types/pa_method.h, types/pa_property.h, types/pa_value.C,
8014: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8015: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8016: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
8017: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
8018: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
8019: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
8020: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
8021: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
8022: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
8023: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
8024: types/pa_vresponse.C, types/pa_vresponse.h,
8025: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8026: types/pa_vstateless_object.h, types/pa_vstatus.C,
8027: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
8028: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
8029: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
8030: types/pa_wwrapper.h, types/types.vcproj: - new classes
8031: implementation
8032:
8033: * buildall-with-xml, buildall-without-xml: - gc has a bug if
8034: USE_MUNMAP is used. so it is disabled as a workaround.
8035:
8036: 2009-08-05 misha
8037:
8038: * src/: main/pa_common.C, include/pa_common.h: - not needed
8039: parameter was removed
8040:
8041: * src/main/pa_http.C: - bugfix: error was during detecting
8042: content-type of file which was loaded by http
8043:
8044: 2009-08-01 misha
8045:
8046: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
8047: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
8048: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
8049: can't be disabled with defines any longer
8050:
8051: 2009-07-29 misha
8052:
8053: * src/classes/reflection.C, tests/results/224.processed: - for
8054: native methods with any call type now returned empty call_type
8055: value
8056:
8057: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
8058: classes/table.C, include/pa_hash.h, include/pa_request.h,
8059: main/pa_request.C: - break in cycles was optimized
8060:
8061: * INSTALL: - more defines were described
8062:
8063: 2009-07-28 misha
8064:
8065: * operators.txt: - some changes in information about reflection
8066: class
8067:
8068: * tests/: 224.html, 224.p: - tests for reflection class
8069:
8070: * src/classes/reflection.C: - some bugs were fixed, method classes
8071: was added, refactoring
8072:
8073: 2009-07-26 misha
8074:
8075: * src/classes/classes.vcproj: - reflection class wass added to
8076: project
8077:
8078: * operators.txt: - information about reflection class was added
8079:
8080: * src/classes/reflection.C: - class was redesigned
8081:
8082: 2009-07-24 misha
8083:
8084: * src/classes/: Makefile.am, reflection.C: - class reflection was
8085: added
8086:
8087: * src/types/pa_vstateless_class.h: - method for reflection method's
8088: in classes was added
8089:
8090: 2009-07-22 misha
8091:
8092: * src/main/compile_tools.h: - bugfix: $object.$var was
8093: over-optimized. it failed if $object1.$object2.field
8094:
8095: 2009-07-16 misha
8096:
8097: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
8098: lib/cord/cordxtra.c, lib/cord/include/cord.h,
8099: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
8100: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
8101: one more arg: length of cord
8102:
8103: 2009-07-15 misha
8104:
8105: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
8106: tainted in ^file::load[http://...;$.cookies[]]
8107:
8108: * src/classes/: op.C, regex.C, string.C: - new string with
8109: exception was used
8110:
8111: * src/include/pa_exception.h: - new string with exception was added
8112:
8113: * tests/223.html: - test for checking cookie-encoding during
8114: ^file::load[http was added
8115:
8116: * tests/: 221.html, 222.html: - tests for checking type of
8117: $table.fields.field were added
8118:
8119: * src/types/pa_vtable.C: - not used var decl was removed
8120:
8121: * src/include/pa_string.h: - use cached string length in Body::mid.
8122: it improves speed of match with brackets in pattern
8123:
8124: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
8125: outside
8126:
8127: 2009-07-14 misha
8128:
8129: * src/types/pa_vtable.C: - $table.fields.a return string even if
8130: column is empty (sometime returned void) - $table.fields was
8131: added for nameless tables
8132:
8133: * src/targets/cgi/getopt.c: - one warning resolved
8134:
8135: * src/main/pa_string.C: - potentian bug fixed
8136:
8137: * src/classes/op.C: - small optimization in taint/untaint
8138:
8139: 2009-07-13 misha
8140:
8141: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
8142: added
8143:
8144: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
8145: souldn't add the attribut to output
8146:
8147: 2009-07-11 misha
8148:
8149: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8150: stack size was increaced to 2MB (default=1MB)
8151:
8152: 2009-07-08 misha
8153:
8154: * src/main/pa_string.C: - link to UTF-8 description was added
8155:
8156: * src/include/pa_hash.h: - hash keeps element's order in more
8157: places (ex: ._keys[])
8158:
8159: * tests/220.html: - test for checking order of elements in hash in
8160: foreach was added
8161:
8162: * tests/172.html: - small changes in printing hash
8163:
8164: * tests/129.html: - small changes in printing hash
8165:
8166: * src/: include/pa_common.h, include/pa_hash.h,
8167: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
8168: types/pa_vmethod_frame.h: - hash now keeps order of elements
8169:
8170: * tests/014.html: - small changes in printing hash
8171:
8172: 2009-07-07 misha
8173:
8174: * src/classes/op.C: - new taint language "parser-code" was added
8175:
8176: * tests/219.html: - test for auto untaint parser code in process
8177: was added
8178:
8179: * src/classes/op.C: - tainted pieces in body of process are
8180: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
8181:
8182: * src/: include/pa_string.h, main/untaint.C: - new language
8183: L_PARSER_CODE for auto-untaint in process was added
8184:
8185: * src/: classes/file.C, classes/hash.C, classes/image.C,
8186: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
8187: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
8188: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
8189: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
8190: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
8191: code cleanup
8192:
8193: 2009-07-06 misha
8194:
8195: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
8196: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
8197: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8198:
8199: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
8200: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
8201: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
8202: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
8203: should be used
8204:
8205: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
8206: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
8207: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
8208: untaint_cstr[m] should be used
8209:
8210: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
8211: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8212:
8213: * tests/218.html: - test for checking automatic file-spec-taint was
8214: added
8215:
8216: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
8217: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
8218: classes/file.C, classes/hash.C, classes/image.C,
8219: classes/string.C, classes/table.C, classes/void.C,
8220: classes/xdoc.C: - optimizations and simplification of
8221: string.cstr(...)
8222:
8223: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
8224: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
8225: - optimizations and simplification of string.cstr(...)
8226:
8227: 2009-07-04 misha
8228:
8229: * tests/217.html: - test for recursion detection was added
8230:
8231: * src/: types/types.vcproj, main/main.vcproj,
8232: classes/classes.vcproj, targets/cgi/parser3.vcproj,
8233: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
8234: from .vcproj
8235:
8236: * src/types/pa_wwrapper.h: - dynamic_cast was removed
8237:
8238: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
8239: uploading files and case-insensitive http-method were added
8240:
8241: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
8242: tainted pattern in ^file:list[] was added
8243:
8244: 2009-07-03 misha
8245:
8246: * src/: classes/classes.vcproj, main/main.vcproj,
8247: types/types.vcproj, targets/cgi/parser3.vcproj,
8248: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
8249: for dynamic_cast) - little options changes
8250:
8251: * src/main/pa_http.C: - file::load[http works now with uploading
8252: files _and_ changing $.charset
8253:
8254: 2009-06-29 misha
8255:
8256: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
8257: while creating pattern
8258:
8259: 2009-06-25 misha
8260:
8261: * src/classes/image.C, operators.txt: - options' names for
8262: ^image.font were changed to $.space, $.width and $spacing -
8263: default space width now == gif's width
8264:
8265: 2009-06-24 misha
8266:
8267: * tests/215.html: - tests for $file.mode were added
8268:
8269: * operators.txt: - added info about $file.mode and changes in
8270: ^image.font[
8271:
8272: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
8273: param now could be omited - third param now could be hash (with
8274: all widths options: $.space-width, $.letter-width) - it's
8275: possible to specify tracking ($.letter-space)
8276:
8277: * src/classes/file.C: - file objects now could have mode field
8278: (text|binary)
8279:
8280: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
8281:
8282: 2009-06-23 misha
8283:
8284: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8285: trim can work with utf-8 chars now
8286:
8287: 2009-06-20 misha
8288:
8289: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
8290: was implemented
8291:
8292: * src/classes/table.C: - string length cacheing was implemented
8293:
8294: * src/include/pa_string.h: - string length cacheing was implemented
8295:
8296: 2009-06-17 misha
8297:
8298: * src/main/execute.C: - value param was removed from
8299: WContext::WContext
8300:
8301: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
8302: pa_wwrapper.h: - value param was removed from WContext::WContext
8303: - field wcontext was removed from VCodeFrame (using fparent
8304: instead)
8305:
8306: * tests/214.html: - test with hash copying
8307:
8308: 2009-06-16 misha
8309:
8310: * tests/: 062.html, results/062.processed: - evaluation hardcoded
8311: strings doesn't work in expression anymore
8312:
8313: * src/main/execute.C: - less calls for get_constructing() - little
8314: refactoring
8315:
8316: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
8317: include/pa_request.h: - less calls for get_constructing()
8318:
8319: * src/classes/: hash.C, hashfile.C: - fixed bug which was
8320: introduced with OPTIMIZE_SINGLE_STRING optimization
8321:
8322: 2009-06-14 misha
8323:
8324: * src/: classes/date.C, classes/file.C, classes/hash.C,
8325: classes/hashfile.C, classes/image.C, classes/regex.C,
8326: classes/table.C, classes/xdoc.C, classes/xnode.h,
8327: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8328: types/pa_vstateless_class.h, main/execute.C: - create object for
8329: storing object's fields only for parser objects
8330:
8331: 2009-06-13 misha
8332:
8333: * buildall-with-xml, buildall-without-xml: - new option was added
8334: for building GC (it slightly reduces memory usage)
8335:
8336: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
8337: single string write
8338:
8339: * src/main/execute.C: - bytecode optimization of ^class:constructor
8340: - optimization of single string write
8341:
8342: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
8343: - bytecode optimization of ^class:constructor
8344:
8345: 2009-06-09 misha
8346:
8347: * src/targets/cgi/parser3.C: - type size_t was changed to int in
8348: main (better compatibility)
8349:
8350: 2009-06-08 misha
8351:
8352: * src/main/compile.y: - I've forgot to commit it :(
8353:
8354: 2009-06-07 misha
8355:
8356: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
8357: WITH_READ and WITH_ROOT
8358:
8359: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8360: execute.C: - more optimizations for WITH_SELF, WITH_READ and
8361: WITH_ROOT - little refactoring
8362:
8363: 2009-06-06 misha
8364:
8365: * tests/213.html: - tests for 3rd match string-param were added
8366:
8367: * src/classes/string.C: - 3rd match param could be string now
8368:
8369: * src/main/: compile.y, compile_tools.h: - much more bytecode's
8370: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
8371: GET_OBJECT_ELEMENT
8372:
8373: 2009-06-05 misha
8374:
8375: * src/main/pa_http.C: - bugfix: content-length was not calculated
8376: if $.body was specified
8377:
8378: 2009-06-04 misha
8379:
8380: * src/classes/op.C: - optimizing write_assign_lang in connect
8381:
8382: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
8383:
8384: * src/main/execute.C: - little refactoring - optimizing
8385: write_assign_lang in taint/untaint
8386:
8387: * src/include/pa_opcode.h: - little refactoring
8388:
8389: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
8390: main/compile_tools.h, main/execute.C: - optimizations for
8391: $self.field, ^self.method, $self.field[...] and $self.field(...)
8392: were added
8393:
8394: 2009-06-03 misha
8395:
8396: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
8397:
8398: 2009-06-02 misha
8399:
8400: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
8401: include/pa_opcode.h: - refactoring in last optimizations
8402: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
8403: now but code is much easy and it is ready for further
8404: improvements.
8405:
8406: 2009-05-27 misha
8407:
8408: * src/: types/pa_junction.h, types/pa_vjunction.C,
8409: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
8410: changed in destructing junctions
8411:
8412: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
8413: String:Body
8414:
8415: 2009-05-26 misha
8416:
8417: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
8418: one method detect_charset was deleted - bug was fixed in this
8419: method (error while detecting charset in content_type withot last
8420: ';')
8421:
8422: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
8423: once
8424:
8425: 2009-05-25 misha
8426:
8427: * src/classes/file.C: - bugfix: file::exec didn't work after
8428: optimizing of helper_length
8429:
8430: 2009-05-24 misha
8431:
8432: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
8433: were added - little refactoring
8434:
8435: * src/main/execute.C: - core while printing in debug log
8436: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
8437: optimisations were added
8438:
8439: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
8440: were added
8441:
8442: 2009-05-23 misha
8443:
8444: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
8445: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
8446: CORD_cat optimization
8447:
8448: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
8449: - call constr optimisation under separate define now
8450:
8451: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
8452: in $b should be string, not void
8453:
8454: * src/main/compile.y: - little fix for rem-cut optimisation
8455:
8456: * src/: include/pa_opcode.h, main/compile_tools.C,
8457: main/compile_tools.h, main/execute.C: - optimisations for
8458: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
8459:
8460: * INSTALL: - description of some #defined were added
8461:
8462: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
8463: before 1st access (memory usage is reduced if don't access to
8464: .text field)
8465:
8466: * src/include/pa_array.h: - array grows step now not static (it
8467: reduces numbers of reallocs)
8468:
8469: 2009-05-20 misha
8470:
8471: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
8472: $.b(2), $c[d] and $.e[f] was added
8473:
8474: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8475: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
8476: $.e[f] was added
8477:
8478: * src/main/execute.C: - debug printing moved in defines
8479:
8480: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
8481: and little refactoring for OP_GET_OBJECT_ELEMENT +
8482: OP_GET_OBJECT_VAR_ELEMENT optimisation
8483:
8484: 2009-05-19 misha
8485:
8486: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8487: execute.C: - $a.$b & ^a.$b bytecode optimisation
8488:
8489: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
8490: ^a.$b optimisation)
8491:
8492: * src/main/compile.y: - compiler now generate new opcodes:
8493: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
8494: ^a.b - compiler now cut off ^rem{ with all content ; any number
8495: of params }
8496:
8497: * src/main/execute.C: - code for handle new opcodes
8498: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
8499:
8500: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
8501: added for LA2V and LA2S
8502:
8503: * src/include/pa_opcode.h: - new defines which can be used for
8504: disable some bytecode optimisation and new opcodes were added
8505:
8506: 2009-05-17 misha
8507:
8508: * src/lib/cord/cordxtra.c: - bugfix.
8509:
8510: * tests/212.html: - .size[] and .study_size[] were added to tests
8511:
8512: * operators.txt: - info about regex class was added
8513:
8514: * tests/212.html: - tests for regex class were added
8515:
8516: 2009-05-16 misha
8517:
8518: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
8519: gc7.1
8520:
8521: * tests/022.html: - test for ^file:list[path;] (empty second param)
8522: was added
8523:
8524: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
8525: param) should work
8526:
8527: 2009-05-15 misha
8528:
8529: * src/classes/table.C: - automatically disable stringstream usage
8530: on freebsd4
8531:
8532: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
8533: scope
8534:
8535: * tests/211.html: - test with different types of access to hash was
8536: added
8537:
8538: * tests/210.html: - test which checks for loosing tainting in
8539: hash's keys was added
8540:
8541: * tests/208.html: - some parser work added. or stime == 0 %-)
8542:
8543: * src/lib/cord/cordbscs.c: - little hack was added to cord
8544:
8545: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
8546:
8547: * src/include/pa_version.h, configure.in: - moko have made a lot of
8548: optimisations for increacing version number more dramatically :)
8549:
8550: * src/classes/date.C: - little refactoring: use constructor which
8551: accepts formated string
8552:
8553: * src/: include/pa_string.h, main/pa_string.C: - String constructor
8554: which can print formatted string was added
8555:
8556: 2009-05-14 misha
8557:
8558: * src/include/pa_string.h: - type was fixed
8559:
8560: * src/: classes/hashfile.C, classes/op.C,
8561: include/pa_cache_managers.h, include/pa_charset.h,
8562: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
8563: include/pa_request.h, include/pa_sql_driver_manager.h,
8564: include/pa_string.h, include/pa_stylesheet_manager.h,
8565: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
8566: main/pa_charsets.C, main/pa_string.C,
8567: main/pa_stylesheet_connection.C, types/pa_value.h,
8568: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8569: types/pa_vobject.C, types/pa_vstateless_class.C,
8570: types/pa_vstateless_class.h: - hash_code caching was implemented
8571: (seaches should be faster now)
8572:
8573: * src/: classes/file.C, classes/hash.C, classes/image.C,
8574: classes/string.C, classes/table.C, include/pa_string.h,
8575: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
8576: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
8577: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
8578: types/pa_vrequest.C: - String constructors don't have that stupid
8579: true/false param which means 'tainted'. they accept lang instead.
8580:
8581: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
8582: with OPTIMIZE_RESULT
8583:
8584: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
8585: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
8586:
8587: 2009-05-13 misha
8588:
8589: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
8590: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
8591: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8592: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
8593: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
8594: main/pa_common.C, main/pa_request.C, main/pa_string.C,
8595: include/pa_string.h, classes/date.C, classes/file.C,
8596: classes/hash.C, classes/image.C, classes/string.C,
8597: classes/table.C, classes/xdoc.C: - result optimisation -
8598: helper_length parameter removed from string constructors
8599:
8600: 2009-05-11 misha
8601:
8602: * tests/209.html: - tests for ^hash::create[hash] were added
8603:
8604: * tests/208.html: - tests for $status:rusage, $status:memory,
8605: ^memory:compact[] were added
8606:
8607: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
8608: log10 were added
8609:
8610: * tests/206.html: - test for try with finally was added
8611:
8612: 2009-05-10 misha
8613:
8614: * tests/205.html: - test for ^file::create[...] was added
8615:
8616: * tests/204.html: - test for ^response:clear[] was added
8617:
8618: * tests/038.html: - tests for trigonometric functions were added
8619:
8620: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
8621: added - more tests for .add, .sub, .union, .intersects and
8622: .intersections
8623:
8624: * tests/065.html: - test for ^file:dirname was added
8625:
8626: * tests/030.html: - test for $cookie:fields was added
8627:
8628: * tests/203.html: - test for ^h._keys[column name] was added
8629:
8630: * tests/201.html: - tests for .trim were added
8631:
8632: * tests/202.html: - tests for last-day,
8633: date:calendar[type](YYYY;MM;DD) were added
8634:
8635: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
8636: .offset[type](N) were added
8637:
8638: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
8639: and .pos[c](N) were added
8640:
8641: * tests/141.html: - test for math:sha1 was added
8642:
8643: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
8644:
8645: 2009-05-09 misha
8646:
8647: * src/main/compile.y: - rollback
8648:
8649: 2009-05-05 misha
8650:
8651: * src/main/pa_exec.C: - little optimisation: somewhere length() was
8652: replaced by is_empty()
8653:
8654: * src/: include/pa_string.h, main/pa_charset.C: - little
8655: optimisation: somewhere length() was replaced by is_empty()
8656:
8657: * src/classes/table.C: - little optimisation: somewhere length()
8658: was replaced by is_empty()
8659:
8660: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
8661: classes/op.C, classes/table.C, main/pa_exception.C: - little
8662: optimisation: somewhere length() was replaced by is_empty()
8663:
8664: 2009-05-04 misha
8665:
8666: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8667: types/pa_vstateless_class.h, main/execute.C,
8668: include/pa_request.h, classes/hash.C, classes/op.C,
8669: classes/table.C: - more optimisations were added: some operators
8670: don't switch write context anylonger
8671:
8672: 2009-05-01 misha
8673:
8674: * src/main/compile.y: - slightly more opcode optimisations for
8675: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
8676:
8677: * src/main/execute.C: - simplifying process for getters
8678:
8679: 2009-04-30 misha
8680:
8681: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
8682:
8683: * tests/results/199.processed: - test for checking $result into
8684: ^rem was added
8685:
8686: * tests/199.html: - test for checking $result into ^rem was added
8687:
8688: * tests/: 022.html, 096.html: - þsort after :list was asses (on
8689: some OS it returns list in different order)
8690:
8691: * src/: include/pa_array.h, include/pa_request.h,
8692: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
8693: changes in stack impl - get_element() optimisation: 3rd param
8694: removed - bugfix: problems with reading empty input param -
8695: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
8696:
8697: * tests/results/198.processed: - test for reading empty local var
8698: was added
8699:
8700: * tests/198.html: - test for reading empty local var was added
8701:
8702: 2009-04-29 misha
8703:
8704: * src/main/compile.y: - bugfix: couldn't compile because
8705: OP_VALUE__GET_ELEMENT should be unde #ifdef
8706:
8707: * src/: include/pa_array.h, include/pa_opcode.h,
8708: include/pa_request.h, main/compile.y, main/execute.C,
8709: main/pa_request.C, types/pa_vmethod_frame.C,
8710: types/pa_vmethod_frame.h: - we can work without opcode
8711: OP_STORE_PARAM, so it was removed
8712:
8713: 2009-04-28 misha
8714:
8715: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
8716: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
8717: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
8718: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
8719: 4.
8720: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
8721:
8722: * src/main/compile_tools.h: - new stuff for op-codes optimisation
8723:
8724: * src/: main/pa_string.C, classes/string.C: - !length() =>
8725: is_empty()
8726:
8727: 2009-04-27 misha
8728:
8729: * src/types/pa_vregex.h: - back explicit vars initialisation
8730:
8731: 2009-04-24 misha
8732:
8733: * src/classes/string.C: - ups. typo fixed
8734:
8735: * src/main/execute.C: - more replacements '*new VBool' to
8736: 'VBool::get' - checks for ^break[], ^continue[] and
8737: parser.interrupted were optimised
8738:
8739: * src/classes/string.C: - number of params.count() calls was
8740: slightly reduced
8741:
8742: 2009-04-23 misha
8743:
8744: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8745: make it x64 friendly
8746:
8747: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8748: parser is x64 friendly now
8749:
8750: 2009-04-22 misha
8751:
8752: * src/types/pa_vhashfile.C: - coder friendly exception about
8753: exceeding record size was added
8754:
8755: * src/classes/file.C: - use vregex object instead of direct calls
8756: methods from pcre lib
8757:
8758: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
8759: classes/string.C: - use vregex object instead of direct calls
8760: methods from pcre lib
8761:
8762: * src/: include/pa_common.h, main/pa_common.C: - method
8763: print_pcre_exec_error_text was moved to class vregex
8764:
8765: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
8766: was added
8767:
8768: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
8769: - class vregex was added
8770:
8771: 2009-04-21 misha
8772:
8773: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
8774:
8775: * src/: types/pa_junction.h, types/pa_value.C,
8776: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
8777: types/pa_wcontext.h, main/execute.C, classes/op.C: -
8778: junction-optimisation (destructors)
8779:
8780: * src/include/pa_array.h: - free under if now
8781:
8782: 2009-04-19 misha
8783:
8784: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
8785:
8786: 2009-04-18 misha
8787:
8788: * src/include/pa_version.h:
8789: :q :
8790:
8791: CV:
8792: ----------------------------------------------------------------------
8793:
8794: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
8795: refactoring
8796:
8797: * src/: include/pa_array.h, include/pa_hash.h,
8798: types/pa_vmethod_frame.h: - destructors under #ifdef now
8799:
8800: * src/include/pa_memory.h: - define for using destructors was added
8801:
8802: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8803: main/execute.C: - some junctions will be cached now
8804:
8805: * src/include/pa_hash.h: - hash destructor frees pairs now
8806:
8807: * src/include/pa_array.h: - inline was added to destructor
8808:
8809: * src/types/pa_method.h: - comment was changed
8810:
8811: 2009-04-17 misha
8812:
8813: * src/: include/pa_array.h, include/pa_hash.h,
8814: types/pa_vmethod_frame.h: - destructors were added
8815:
8816: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
8817: renamed to always_use_result
8818:
8819: * src/main/: compile.y, compile_tools.h: - rollback changes in
8820: compiler: full backward compatibility is better
8821:
8822: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
8823: result in var's hash
8824:
8825: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8826: optimisation in method_frame
8827:
8828: * src/include/pa_array.h: - optimisation in array (allocate
8829: elements only when needed)
8830:
8831: * src/types/pa_vresponse.C: - check for $response:headers field
8832: before looking at custom fields
8833:
8834: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
8835: not needed to check existance var with name 'result' in var's
8836: hash
8837:
8838: * src/main/compile.y: - compiler was changed: now it detects
8839: writings to $result and set flag writo_to_result in method
8840:
8841: * src/classes/string.C: - little optimisation: no needed to write
8842: number with lang
8843:
8844: * src/main/pa_charset.C: - methods readChar and skipChar which is
8845: used for read utf8-strings were renamed - is_escaped was renamed
8846: to isEscaped (to the same name convention)
8847:
8848: * src/: types/pa_method.h, main/compile_tools.h: - flag
8849: write_to_result added. compiler get this info from code.
8850:
8851: 2009-04-16 misha
8852:
8853: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
8854: String only before 1st write
8855:
8856: * src/include/pa_string.h: - not needed template removed
8857:
8858: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
8859: types/pa_vjunction.C, types/pa_vproperty.C,
8860: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
8861: main/pa_request.C, classes/bool.C, classes/double.C,
8862: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
8863: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
8864: bool objects)
8865:
8866: 2009-04-15 misha
8867:
8868: * src/lib/cord/cordxtra.c: - more optimisation
8869:
8870: * src/: include/pa_string.h, main/untaint.C: - String::append
8871: optimisation
8872:
8873: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
8874: then get and can sometime be used)
8875:
8876: * src/main/pa_string.C: - String::length optimisation
8877:
8878: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
8879: these methods read different strings
8880:
8881: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8882: fresult_initial_void removed + some optimisation - if $result
8883: defined we don't write to context anymore
8884:
8885: * src/main/pa_charset.C: - readChar => skipChar (in this place we
8886: need just skip char)
8887:
8888: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8889: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
8890: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
8891:
8892: * src/types/pa_vvoid.h: - added get() method for retreave one
8893: instance
8894:
8895: 2009-04-11 misha
8896:
8897: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
8898:
8899: * tests/197.html: - test for parser://test in xml was added
8900:
8901: * src/classes/string.C: - small optimisation
8902:
8903: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
8904: optimisation
8905:
8906: 2009-04-10 misha
8907:
8908: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
8909: to pcre-7.8
8910:
8911: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
8912:
8913: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
8914: added
8915:
8916: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
8917: $request:CLASS_NAME were added
8918:
8919: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
8920: were added
8921:
8922: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
8923: $env:CLASS_NAME were added
8924:
8925: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
8926: '@todo' now
8927:
8928: * src/targets/cgi/parser3.C: - size_t -> int for calming down
8929: compirer
8930:
8931: * src/main/pa_string.C: - little code cleanup
8932:
8933: * src/main/pa_common.C: - describe one more UTF-8 related error
8934: during PCRE compile/execute
8935:
8936: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
8937: normalizing todo-comments: '@todo' now
8938:
8939: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
8940:
8941: * src/main/pa_charset.C: - type changed for making compiler happy
8942:
8943: 2009-03-10 misha
8944:
8945: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
8946: in main()
8947:
8948: 2009-02-01 misha
8949:
8950: * src/main/pa_http.C: - bugfix: double CRLF before the end of
8951: boundary
8952:
8953: 2009-01-25 misha
8954:
8955: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
8956:
8957: * src/classes/file.C: - more changes for parsing different number
8958: of params for file::load
8959:
8960: * tests/193.html: - tests for exception while base64-decode binary
8961: to string was added
8962:
8963: * tests/192.html: - tests for file::load with different number of
8964: options
8965:
8966: * src/classes/math.C: - ups. forgot '+1'
8967:
8968: * src/: classes/table.C, classes/file.C, include/pa_common.h,
8969: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
8970: main/pa_http.C: - ^file::load[...;http://...;] now can post files
8971: (new option $.encode[multipart-form/data] should be specified) -
8972: $.method[] option for file::load now is not case-sensitive
8973:
8974: * src/: include/pa_string.h, main/untaint.C: - for file post the
8975: new taint language L_FILE_POST was added
8976:
8977: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
8978: main/main.vcproj, classes/math.C, include/Makefile.am: - some
8979: stuff was moved to separate files
8980:
8981: 2009-01-23 misha
8982:
8983: * src/classes/math.C: - little optimisation in ^math:sha1[] -
8984: spaces to tabs were converted
8985:
8986: 2009-01-12 misha
8987:
8988: * src/main/pa_http.C: - value of $.method[] option force uppercased
8989: now
8990:
8991: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
8992: types/pa_vform.C, types/pa_vmail.C: - some constants changed
8993: their names
8994:
8995: * src/main/pa_common.C: - changes in formating
8996:
8997: * src/: classes/file.C, main/pa_http.C: - some constants changed
8998: their names
8999:
9000: * src/include/pa_http.h: - some spaces were converted to tabs
9001:
9002: * src/include/pa_common.h: - some constants changed their names
9003:
9004: * src/classes/file.C: - fixed 4-th paramether for file::load -
9005: little code rewriting
9006:
9007: * src/types/pa_vfile.C: - little code rewriting
9008:
9009: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
9010: types/pa_value.h: - some formating changes
9011:
9012: * src/include/pa_common.h: - some formating spaces transformed to
9013: tabs
9014:
9015: * src/classes/string.C: - exception while base64-decode binary to a
9016: string
9017:
9018: 2009-01-11 misha
9019:
9020: * configure.in: - version changed to 3.3.1b
9021:
9022: 2008-09-05 misha
9023:
9024: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
9025: release_3_3_0 on 2008-09-05 10:59:35 +0000
9026:
9027: 2008-09-04 misha
9028:
9029: * tests/: 130.html, 131.html: - these exceptions not typeless
9030: anymore
9031:
9032: * src/classes/op.C: - exception with 'invalid taint language' not
9033: typeless anylonger
9034:
9035: * src/classes/image.C: - some exceptions while operations with
9036: image not typeless anymore
9037:
9038: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
9039: main/pa_exec.C, main/pa_http.C: - some exceptions while
9040: operations with files not typeless anymore
9041:
9042: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
9043: types/pa_vdate.h: - exceptions while checking date range not
9044: typeless anymore
9045:
9046: * src/include/pa_exception.h: - exception type string for invalid
9047: date range was added
9048:
9049: 2008-09-03 misha
9050:
9051: * src/: classes/file.C, main/pa_string.C: - exception while pce
9052: operations not typeless anymore
9053:
9054: * src/include/pa_exception.h: - exception type for pce operations
9055: was added
9056:
9057: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
9058: and .CLASS_NAME insite classes
9059:
9060: * src/classes/table.C: - don't save table header whiile
9061: ^table.save[append;filename] if file exists
9062:
9063: 2008-09-02 misha
9064:
9065: * src/main/compile.y, src/main/compile_tools.h,
9066: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
9067: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
9068: renamed to partial and it login changed: we must mark class as
9069: partial for allow their modifications in future.
9070:
9071: 2008-08-29 misha
9072:
9073: * tests/results/022.processed: - testing taint[regex] in mask for
9074: file:list
9075:
9076: * tests/022.html: - testing taint[regex] in mask for file:list
9077:
9078: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
9079: for file:list was added
9080:
9081: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
9082: file:list
9083:
9084: 2008-08-26 misha
9085:
9086: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
9087: last derived object
9088:
9089: * src/classes/image.C: - many strings "image.format" replaced by
9090: IMAGE_FORMAT constant string - handle GPS info while parse exif -
9091: understand some more exif tags
9092:
9093: * src/include/pa_exception.h: - string "image.format" was added
9094:
9095: 2008-08-21 misha
9096:
9097: * src/: main/pa_string.C, classes/file.C: - use method for print
9098: pcre_exec text error
9099:
9100: * src/main/pa_common.C: - method for print pcre_exec text error was
9101: added
9102:
9103: * src/include/pa_common.h: - method declaration for print pcre_exec
9104: text error was added
9105:
9106: 2008-08-19 misha
9107:
9108: * src/main/execute.C: - bugfix: opcodes must be in separate
9109: namespace while debug execution as well
9110:
9111: * tests/: 015.html, results/015.processed: - test for escaping some
9112: parser chars was added
9113:
9114: 2008-08-18 misha
9115:
9116: * tests/: 190.html, 190.p, results/190.processed: - test for
9117: $caller.self.field + default getter in one class was added
9118:
9119: * tests/: 189.html, results/189.processed: - test for
9120: ^date::create[date object]
9121:
9122: * tests/: 188.html, results/188.processed: - tests for match with
9123: UTF-8 strings
9124:
9125: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
9126: ^string.match[]
9127:
9128: * ChangeLog: - parser 3.3.0 beta13
9129:
9130: 2008-08-15 misha
9131:
1.116 moko 9132: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
9133: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
9134: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
9135: dftables.c: - old PCRE files removed
1.95 moko 9136:
9137: * src/lib/pcre/config.h: - configuration for PCRE library
9138:
9139: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
9140: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
9141:
9142: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
9143: library and set flag UTF8 if $request:charset is UTF-8
9144:
9145: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
9146: include/pa_config_fixed.h: - moved to new PCRE library
9147:
9148: * src/: main/main.vcproj, types/types.vcproj,
9149: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
9150: win32\pcre instead of parser3\src\lib\pcre
9151:
9152: * src/: include/pa_opcode.h, include/pa_operation.h,
9153: main/compile.C, main/compile.y, main/compile_tools.C,
9154: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
9155: opcodes were moved to separate namespace
9156:
9157: 2008-08-14 misha
9158:
9159: * src/types/pa_vstateless_class.C: - newline at the end missed
9160:
9161: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
9162: tainting
9163:
9164: 2008-08-11 misha
9165:
9166: * tests/: 187.html, 187.p, results/187.processed: - tests for
9167: $caller.self, $caller.self.field and $caller.self.field[value]
9168: were added
9169:
9170: * src/types/pa_vmethod_frame.h: - still need to check 'self'
9171: runtime as well (for $caller.self)
9172:
9173: 2008-07-25 misha
9174:
9175: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
9176: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
9177: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
9178: tests with international characters
9179:
9180: 2008-07-23 misha
9181:
9182: * src/main/pa_http.C: - escape $cookies as %uXXXX while
9183: file::load[...;http://
9184:
9185: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
9186: now everywhere in separate namespace
9187:
9188: * src/types/pa_vmethod_frame.h: - looking for caller before looking
9189: for vars
9190:
9191: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
9192: can be escaped by '^'
9193:
9194: 2008-07-22 misha
9195:
9196: * src/classes/string.C, tests/186.html: - names changes:
9197: escape=>js-escape, unescape=>js-unescape
9198:
9199: 2008-07-21 misha
9200:
9201: * tests/results/186.processed: - test for string escape/unescape
9202:
9203: * tests/186.html: - test for string escape/unescape
9204:
9205: * src/classes/string.C: - string has escape and unescape methods
9206: now
9207:
9208: * src/: include/pa_string.h, main/pa_string.C: - escape method was
9209: added
9210:
9211: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
9212: method-layers added (with different params)
9213:
9214: 2008-07-18 misha
9215:
9216: * tests/results/185.processed: - test for ^str.pos[substr](offset)
9217: was added
9218:
9219: * tests/185.html: - test for ^str.pos[sub](offset) added
9220:
9221: * src/classes/string.C, src/classes/void.C, operators.txt: -
9222: ^string.pos[substr](offset) -- 2nd param accepted now
9223:
9224: * src/main/pa_string.C: - .pos works fine with offset for utf-8
9225: strings
9226:
9227: 2008-07-17 misha
9228:
9229: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
9230: helper length added for mid for small optimisation
9231:
9232: 2008-07-16 misha
9233:
9234: * tests/: 185.html, results/185.processed: - tests for
9235: length/left/right/mid/pos with utf-8 strings
9236:
9237: * src/classes/string.C: - left/right/mid/length/pos works fine for
9238: utf-8 strings
9239:
9240: * src/main/untaint.C: - comments removed
9241:
9242: * src/: include/pa_string.h, main/pa_string.C,
9243: include/pa_charset.h, main/pa_charset.C: - methods for working
9244: with pos/mid for strings in utf-8 were added
9245:
9246: 2008-07-15 misha
9247:
9248: * tests/: 184.html, results/184.processed: - test for case body as
9249: expression: $var(^switch(1){^case(1)(true)..})
9250:
9251: * src/classes/op.C: - case body can be expression now:
9252: $var(^switch(1){^case(1)(true)..})
9253:
9254: * tests/: results/183.processed, 183.html: - added test for testing
9255: new cookie encoding (%uXXXX)
9256:
9257: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
9258: decoding for backward compatibility they decoded from %XX in
9259: request:charset too
9260:
9261: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
9262: - cookie class now decode cookies before first access after last
9263: request:charset changing (as form class).
9264:
9265: * src/main/pa_charset.C: - added method escape for escaping cookies
9266: as %uXXXX - before transcode calculate required space for dest
9267: string. it reduce mem usage for transcode
9268:
9269: * src/include/pa_charset.h: - added method escape for escaping
9270: cookies as %uXXXX
9271:
9272: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
9273: was added. will used for escaping cookies as %uXXXX
9274:
9275: * src/include/pa_common.h: - escape method has new option for skip
9276: converting '+' to a space char
9277:
9278: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
9279: transcode - escape method has new option for skip converting '+'
9280: to a space char
9281:
9282: 2008-07-08 misha
9283:
9284: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
9285: (no UE if more then 1 case matches anylonger) - optimization:
9286: doing searching.as_string() || searching.as_double() only once
9287:
9288: 2008-07-04 misha
9289:
9290: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
9291: now ^date::create[date object] works
9292:
9293: * src/classes/string.C: - left and right added as aliases for start
9294: and end in ^string.trim[]
9295:
9296: 2008-07-03 misha
9297:
9298: * src/classes/file.C: - allow $.limit for file::sql as well
9299:
9300: * src/classes/file.C: - allow $.offset option for file::sql - force
9301: send limit=1 to query for use sql specifics authomatically
9302:
9303: * src/classes/: hash.C, string.C, table.C: - don't throw exception
9304: if $.limit value if empty. autoconvert it as everywere
9305:
9306: 2008-07-02 misha
9307:
9308: * configure.in: - time to change version number to 3.3.0 %-)
9309:
9310: * src/include/pa_version.h: - time to change version number to
9311: 3.3.0 %-)
9312:
9313: 2008-06-26 misha
9314:
9315: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
9316: $.limit(0) fixes
9317:
9318: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
9319: - $.limit(0) fixes
9320:
9321: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
9322: new API)
9323:
9324: * src/: include/pa_sql_driver_manager.h,
9325: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
9326: classes/op.C: - document_root added
9327:
9328: * src/main/compile.tab.C: - error message was changed
9329:
9330: 2008-06-25 misha
9331:
9332: * src/main/compile.y: - error message was changed
9333:
9334: 2008-06-24 misha
9335:
9336: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
9337:
9338: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
9339: tests for @OPTIONS\nappend
9340:
9341: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
9342:
9343: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
9344:
9345: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
9346:
9347: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
9348: compile.y
9349:
9350: 2008-06-17 misha
9351:
9352: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
9353: compilation: ^if(default){true. it's incorrect. must be
9354: exception}
9355:
9356: 2008-06-16 misha
9357:
9358: * tests/: 181.ent, 181.html, results/181.processed: - test for
9359: checking external reference loading with 'http://localhost'
9360: prefix while creating xdoc
9361:
9362: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
9363: ^math:long2ip[] and ^math:ip2long[]
9364:
9365: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
9366: added which use scalar stateless class method when user object
9367: used in scalar context - use get_scalar_value when user object
9368: requested in scalar context
9369:
9370: * src/main/pa_common.C: - size must be int but not size_t or we
9371: can't compare with 0 sprintf result
9372:
9373: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9374: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
9375: with internal switch between local/global vars
9376:
9377: * src/types/pa_vclass.C: - register scalar if method @GET[] was
9378: specified
9379:
9380: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
9381: pa_vstateless_object.h: - stateless class and object now has
9382: private scalar field and getter/setter for working with it
9383:
9384: * src/classes/math.C: - methods math:long2ip & math:ip2long were
9385: moved to inet static class
9386:
9387: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
9388: class added (^inet:aton[IP], ^inet:ntoa(number))
9389:
9390: * tests/: 180.html, results/180.processed: - tests for
9391: ^math:long2ip(long) and ^math:ip2long[IP]
9392:
9393: * src/classes/math.C: - ^math:ip2long[IP] added
9394:
9395: 2008-06-11 misha
9396:
9397: * src/main/pa_xml_io.C: - use file_read_text again because of we
9398: need cut BOM code and remove DOS newline chars. but don't
9399: transcode it anyway.
9400:
9401: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
9402: main/pa_http.C: - option for disable transcoding while file_read
9403: and file_read_text added
9404:
9405: 2008-06-10 misha
9406:
9407: * tests/: 179.html, 179.p, results/179.processed: - test for many
9408: classes in 1 file
9409:
9410: * src/main/: compile.C, compile_tools.h: - compile return list of
9411: classes now.
9412:
9413: * src/main/: compile.y, compile.tab.C: - compile return list of
9414: classes now. internals.
9415:
9416: * src/main/pa_request.C: - compile return list of classes now. try
9417: call @conf and @auto for each returned class
9418:
9419: * src/include/pa_request.h: - compile return list of classes now
9420:
9421: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
9422: return list of classes when compile buf)
9423:
9424: 2008-06-07 misha
9425:
9426: * src/main/pa_request.C: - constructing VRequest object with 3rd
9427: param -- form
9428:
9429: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
9430: 3rd param: form. needed for get post_charset
9431:
9432: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
9433: added
9434:
9435: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
9436: types/pa_vform.C, types/pa_vform.h: - some polish
9437:
9438: 2008-06-06 misha
9439:
9440: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
9441: charset and decode chars from it but not from response:charset
9442:
9443: * src/main/pa_http.C: - detect_charset moved out of here
9444:
9445: * src/: include/pa_common.h, main/pa_common.C: - more helpers
9446: methods moved here - unescape_chars accepn one charset now
9447:
9448: * src/main/pa_http.C: - new constants used - don't allow
9449: $.content-type in ^file::load[;http://;$.method[POST]] - add
9450: charset info while ^file::load[;http://;$.method[POST]] - option
9451: $.omit-post-charset(true) added to ^file::load[;http://] for
9452: disabling charset during post
9453:
9454: * src/types/pa_vform.C: - new constants used
9455:
9456: * src/include/pa_common.h: - some constants were added
9457:
9458: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
9459: instead of StrEqNc
9460:
9461: * src/main/pa_common.C: - new method for caseless search
9462: c-substring in c-string - use isxdigit instead of is_hex_digit
9463:
9464: * src/include/pa_common.h: - new method for caseless search
9465: c-substring in c-string
9466:
9467: 2008-06-05 misha
9468:
9469: * tests/results/178.processed: - test for testing default getter
9470:
9471: * tests/178.html: - test for testing default getter
9472:
9473: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
9474: for test for testing default getter
9475:
9476: * src/main/execute.C: - default getter soul
9477:
9478: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
9479: requested objects' field not found
9480:
9481: * src/types/pa_vclass.C: - register default getter if defined - get
9482: default getter if requested field not found
9483:
9484: * src/types/pa_vstateless_object.h: - method get_default_getter was
9485: added
9486:
9487: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9488: pointer to default getter and methods for get/set it were added
9489:
9490: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
9491: auto_name field (for default getter)
9492:
9493: 2008-06-04 misha
9494:
9495: * src/main/pa_xml_io.C: - load external xml in binary mode (no
9496: transcoding, no cutting BOM code, no fixing line breaks) and get
9497: it to libxml "as is"
9498:
9499: 2008-06-03 misha
9500:
9501: * src/main/pa_common.C: - use store_Char instead of
9502: transcodeCharFromUTF8
9503:
9504: * src/: include/pa_charset.h, main/pa_charset.C: - method
9505: store_Char added, transcodeCharFromUTF8 -- removed
9506:
9507: 2008-06-02 misha
9508:
9509: * tests/: results/177.processed, 177.html: - test for checking
9510: .[acm]date after local ^file::load[] was added
9511:
9512: * tests/: results/176.processed, 176.html: - test for checking
9513: @OPTION\locals + @method[vars][locals] added
9514:
9515: * tests/results/auto.p: - CLASS_PATH specified for checking use
9516:
9517: 2008-05-30 misha
9518:
9519: * src/main/: compile.y, compile.tab.C: - changes in compiler:
9520: @OPTION\nlocals + @method[vars][;locals;] were added
9521:
9522: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
9523: moved to separate method op_code - switch from VMethodFrame to
9524: VMethodFrameGlobal + VMethodFrameLocal
9525:
9526: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
9527: was moved to separate method op_code
9528:
9529: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
9530: VMethodFrame now
9531:
9532: * src/types/pa_vstateless_class.h: - stateless class have bool flag
9533: all_vars_local as well
9534:
9535: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
9536: pa_vmethod_frame_local.h, Makefile.am: - who children for
9537: VMethodFrame were added: one (global) works as VMethodFrame
9538: before and second (local) write all vars in self vars scope
9539:
9540: * src/types/pa_method.h: - method has bool flag all_vars_local now
9541:
9542: 2008-05-29 misha
9543:
9544: * tests/: 129.html, results/129.processed: - more tests for
9545: ^table.hash[]
9546:
9547: * src/classes/hash.C: - ^hash::sql has a new option:
9548: $.type[hash|string|table] as ^table.hash[] one.
9549:
9550: * src/classes/op.C: - ^try has 3rd param now: finally code which
9551: executed anyway after try or catch section
9552:
9553: 2008-05-27 misha
9554:
9555: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
9556: must not fail if $.distinct(1) wasn't specified
9557:
9558: 2008-05-26 misha
9559:
9560: * src/classes/op.C: - allow ^throw[my type]
9561:
9562: 2008-05-22 misha
9563:
9564: * configure.in, configure: - version number updated to 3.2.4b
9565:
9566: * src/classes/: op.C, string.C: - trim format string before
9567: eval/format
9568:
9569: * tests/: results/175.processed, 175.html: - more tests for
9570: different format strings in .format[]
9571:
9572: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
9573: as well (not only %XX)
9574:
9575: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
9576: charset specified - checks for format before print number
9577: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
9578: (instead of tabs) removed
9579:
9580: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
9581: charset specified
9582:
9583: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
9584: char in requested charset from utf code was added
9585:
9586: 2008-05-19 misha
9587:
9588: * tests/: 174.html, results/174.processed: - test for
9589: ^hashfile.cleanup[] added
9590:
9591: * src/classes/hashfile.C: - optimization: don't create any key or
9592: value variable if it's name weren't specified
9593: (^hf.foreach[;v]{...})
9594:
9595: 2008-05-16 misha
9596:
9597: * src/classes/hash.C: - optimization: don't create any key variable
9598: if variable name wasn't specified (^h.foreach[;v]{...})
9599:
9600: 2008-05-15 misha
9601:
9602: * src/classes/op.C: - small changes
9603:
9604: * src/classes/hashfile.C: - code reformating (as hash.foreach)
9605:
9606: * src/classes/hash.C: - calculate var_context once before foreach
9607:
9608: 2008-05-14 misha
9609:
9610: * src/classes/hashfile.C: - incorrect vars context calculation for
9611: ^hashfile.foreach[;]{} fixed
9612:
9613: * src/classes/: hash.C, table.C: - little optimisation
9614:
9615: * src/classes/file.C: - bugfix: double absolute path while loading
9616: file
9617:
9618: * tests/: 174.html, results/174.processed: - tests for hashfile
9619: were added
9620:
9621: * buildall-with-xml: - moving to libxslt 1.1.24
9622:
9623: 2008-04-30 misha
9624:
9625: * src/classes/file.C: - stat file while loading (local only) so
9626: .adate, .mdate and .cdate available without additional ::stat
9627:
9628: 2008-04-28 misha
9629:
9630: * src/classes/file.C: - $.name and $.content-type available for
9631: stated file
9632:
9633: 2008-04-14 misha
9634:
9635: * src/targets/cgi/parser3.C: - new year in copyright %-)
9636:
9637: * src/include/pa_version.h: - new version number in head
9638:
9639: 2008-04-10 misha
9640:
9641: * tests/: 080.html, results/080.processed: - cut '0' from
9642: exponential part because of on diff OS it differ (20 or 020 for
9643: ex)
9644:
9645: * tests/: 119.html, results/119.processed: - check for encoding
9646: while creating xdoc
9647:
9648: 2008-04-09 misha
9649:
9650: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
9651:
9652: * src/main/pa_common.C: - comment added
9653:
9654: * src/classes/date.C: - little refactoring
9655:
9656: 2008-04-07 misha
9657:
9658: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
9659: style of ^table.save[]: prepare one big string and sabe it at
9660: once. it's safe on freebsd 4.x but use much more memory.
9661:
9662: * buildall-with-xml, buildall-without-xml: - option
9663: --disable-stringstream added (under comment. use it on freebsd
9664: 4.x)
9665:
9666: 2008-02-22 misha
9667:
9668: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
9669: specified together in file::load[;http] - get back transcoding
9670: $.body[] in file::load[;http]
9671:
9672: 2008-02-21 misha
9673:
9674: * src/classes/date.C: - ^date.gmt-string[] was added
9675:
9676: * src/types/pa_value.C: - method for output date in RFC 822 format
9677: moved to pa_common.h
9678:
9679: * src/include/pa_common.h: - method for output date in RFC 822
9680: format moved here from pa_value.C
9681:
9682: * src/types/pa_vmail.C: - fixed core in sending mail with
9683: attachment in simple mode ($.file[file here]) introduced in 3.2.2
9684:
9685: 2008-02-20 misha
9686:
9687: * src/main/pa_http.C: - transcode $.headers before escaping into
9688: specified charset while ^file::load[...;http://...] (L_URI
9689: instead of L_HTTP_HEADER) - $.cookies param available in
9690: ^file::load[;http://...] now (but we don't parse set-cookies from
9691: response yet) (cookies not transcoded as common $cookies)
9692:
9693: 2008-02-19 misha
9694:
9695: * src/main/pa_request.C: - rollback: we mustn't force taint
9696: $response:field values because in this case
9697: $response:locateion[http://...] don't works.
9698:
9699: 2008-02-15 misha
9700:
9701: * src/classes/op.C: - little refactoring
9702:
9703: * src/main/pa_http.C: - taint names of $.headers for load[;http
9704:
9705: * src/main/pa_request.C: - force taint values of $response:field
9706:
9707: 2008-02-14 misha
9708:
9709: * src/main/pa_request.C: - $response:field transcoded to
9710: $response:charset before escaping now
9711:
9712: * src/main/pa_http.C: - some outdated comments removed
9713:
9714: * src/classes/date.C: - lastdat -> last-day
9715:
9716: * src/classes/date.C: - ^date:lastday(year;month) and
9717: ^date.lastday[] were added - little code refactoring - comments
9718: changes
9719:
9720: * tests/: 159.html, results/159.processed: - test for number of
9721: days in February
9722:
9723: * src/types/pa_value.C: - fixes in code formatting
9724:
9725: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
9726: and comments
9727:
9728: 2008-02-13 misha
9729:
9730: * src/main/pa_common.C: - bugfix for february at leap year
9731:
9732: 2008-01-28 misha
9733:
9734: * tests/: 160.html, results/160.processed: - more test for cache
9735: added
9736:
9737: * src/classes/op.C: - bugfix: cache body executed twice if contains
9738: unhandled exception
9739:
9740: 2008-01-25 misha
9741:
9742: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
9743: bug when hashfile became inavailable after memory:compact)
9744:
9745: * src/lib/sdbm/apr_strings.C: - +arp_malloc
9746:
9747: 2008-01-22 misha
9748:
9749: * src/classes/table.C: - little refactiring and exception texts
9750: changes in method ^table.hash[]
9751:
9752: * src/types/pa_vcookie.C: - link to cookie specification changed
9753:
9754: 2008-01-21 misha
9755:
9756: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
9757: file::exec/cgi
9758:
9759: * src/classes/file.C: - bugfix: core while processing headers if
9760: executed cgi script don't return content
9761:
9762: 2008-01-18 misha
9763:
9764: * buildall-with-xml: - move to libxml2 version 2.6.31
9765:
9766: * src/include/pa_version.h, configure.in: - version number updated
9767: to '3.2.3b'
9768:
9769: 2007-12-28 misha
9770:
9771: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
9772: hash.contains
9773:
9774: 2007-12-27 misha
9775:
9776: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9777: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
9778: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
9779: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
9780: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9781: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
9782: src/targets/cgi/parser3.vcproj,
9783: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
9784: back to VS2003 because of Apache 1.3 module can't work if it was
9785: built in VS 2005. with cgi all file so VS2003 project files can
9786: be easy converted to the new format.
9787:
9788: 2007-12-04 misha
9789:
9790: * src/types/pa_vcode_frame.h: - changes in comment
9791:
9792: 2007-11-29 misha
9793:
9794: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
9795: intercept strings any longer
9796:
9797: * tests/: 173.html, results/173.processed: - tests for
9798: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
9799: but not in main code frame
9800:
9801: * tests/: 172.html, results/172.processed: - more tests for pass
9802: objects from code frames
9803:
9804: 2007-11-27 misha
9805:
9806: * tests/: 152.html, results/152.processed: - tests for converting
9807: strings 'true'/'false' to bool were added
9808:
9809: * tests/152.html: - added checks for converting strings
9810: 'true'/'false' to bool
9811:
9812: * src/classes/string.C: - ^srting.bool[] now can convert to bool
9813: not only strings with numbers but with values 'true'/'false' as
9814: well
9815:
9816: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
9817: for parser3.log increased
9818:
9819: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
9820:
9821: * src/include/pa_common.h: - remove_crlf return cstring size now
9822:
9823: * src/include/pa_types.h: - constant with buffer size for
9824: parser3.log added
9825:
9826: 2007-11-16 misha
9827:
9828: * tests/cat.sh: - script for tests for file::exec/cgi
9829:
9830: * tests/171.html: - tests for file::exec/cgi
9831:
9832: * tests/results/171.processed: - tests results for file::exec/cgi
9833:
9834: 2007-11-15 misha
9835:
9836: * src/main/pa_exec.C: - fixed incorrect exec code for unix
9837:
9838: * src/classes/file.C: - .body must be set before analyzing cgi
9839: headers
9840:
9841: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
9842: only if exec/cgi return anything.
9843:
9844: 2007-11-14 misha
9845:
9846: * operators.txt: - info about new text|binary option for
9847: file::exec/cgi was added
9848:
9849: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
9850: ^file:exec[[text|binary];script;...]
9851:
9852: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
9853: classes/string.C, classes/table.C: - more text strings moved to
9854: the one place
9855:
9856: 2007-11-09 misha
9857:
9858: * src/types/pa_vrequest.C: - $request:argv must be taint
9859:
9860: * ChangeLog: - $request:argv [patch from Sumo]
9861:
9862: * operators.txt: - $request:argv
9863:
9864: * src/: include/pa_request_info.h, types/pa_vrequest.C,
9865: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
9866:
9867: 2007-10-25 misha
9868:
9869: * buildall-with-xml, buildall-without-xml: - options preparations
9870: for ./configure rewrited
9871:
9872: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
9873: error occure in unhandled_exception finally fixed
9874:
9875: 2007-10-23 misha
9876:
9877: * tests/: 170.html, results/170.processed: - test for
9878: @method[][result]
9879:
9880: * operators.txt: - added info about node.prefix and
9881: node.namespaceURI
9882:
9883: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
9884:
9885: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
9886: added for node and attribute
9887:
9888: 2007-10-22 misha
9889:
9890: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
9891:
9892: * src/main/pa_request.C: - added const content-transfer-encoding
9893:
9894: * src/include/pa_request.h: - added const content-transfer-encoding
9895: - ups. constants must be in lowercase (for search)
9896:
9897: * src/types/pa_vmail.C: - more constants used -
9898: content-transfer-encoding: 8bit added
9899:
9900: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
9901:
9902: * src/include/pa_request.h: - more constants
9903:
9904: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
9905: ommit anymore if $.content-disposition was specified - little
9906: refactoring
9907:
9908: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
9909:
9910: 2007-10-17 misha
9911:
9912: * operators.txt: - info about
9913: table::create[nameless]{data}[>options<] was added
9914:
9915: * src/main/: compile.tab.C, compile.y: - if error occure while
9916: compile method don't put this method in methods table anymore.
9917: in other case the parser coredumped if @unhandled_exception
9918: method can't be compiled because of parser.compile error.
9919:
9920: * src/main/execute.C: - little code reformating
9921:
9922: * src/main/pa_request.C: - little code reformating - comment
9923: changed
9924:
9925: 2007-10-16 misha
9926:
9927: * tests/: 035.html, results/035.processed: - tests
9928: table::create[]{}[options] added
9929:
9930: * src/classes/table.C: - table::create[]{} now accept 3rd param:
9931: options (only $.seperator[] yet)
9932:
9933: 2007-10-10 misha
9934:
9935: * src/classes/table.C: - some contstants moved to pa_common.h -
9936: some code changes
9937:
9938: 2007-10-02 misha
9939:
9940: * src/main/pa_uue.C: - memory usage during uuencode reduced more
9941: then three time as much. but base64 encoding method still use
9942: less memory anyway.
9943:
9944: 2007-09-17 misha
9945:
9946: * operators.txt: - added info about $cookie:fields
9947:
9948: * src/types/pa_vcookie.C: - $cookie:fields available now
9949:
9950: * src/classes/hash.C: - some stuff for use with .for_each moved to
9951: common
9952:
9953: * src/include/pa_common.h: - some stuff for use with .for_each
9954: moved here
9955:
9956: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
9957:
9958: 2007-09-14 misha
9959:
9960: * buildall-with-xml: - new xml libs again =)
9961:
9962: 2007-08-28 misha
9963:
9964: * operators.txt: - texts about ^table.columns[[column name]] and
9965: ^string.split[...][v][column name] were added
9966:
9967: * tests/: 168.html, 169.html, results/168.processed,
9968: results/169.processed: - tests for ^table.columns[[column name]]
9969: and ^string.split[...][v][column name] were added
9970:
9971: * src/classes/table.C: - new option ^table.columns[[column name]]
9972: was added
9973:
9974: * src/classes/string.C: - new option ^string.split[...;v;[column
9975: name]]
9976:
9977: * src/include/pa_exception.h: - error text message for
9978: ^hash._keys[], ^table.columns[] and ^string.split[]
9979:
9980: 2007-08-27 misha
9981:
9982: * src/main/untaint.C: - try to fix coredump on unix if print to
9983: body ^taint[sql][something] outside of connect
9984:
9985: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
9986: outside of connect
9987:
9988: * buildall-with-xml, buildall-without-xml: - strip parser3 was
9989: added (commented by default)
9990:
9991: 2007-08-20 misha
9992:
9993: * operators.txt: - comment about new method ^node.hasAttributes[]
9994: was added
9995:
9996: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
9997: duplicated exception text strings were removed
9998:
9999: * src/include/pa_exception.h: - more exception text strings moved
10000: here
10001:
10002: * src/classes/table.C: - some duplicate exceptions' text strings
10003: removed
10004:
10005: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
10006: xdoc.C, xnode.C: - some duplicate exceptions' text strings
10007: removed
10008:
10009: * src/include/pa_exception.h: - some exception text strings movet
10010: to pa_exception
10011:
10012: * tests/: 149.html, results/149.processed: - test for
10013: ^xnode.hasAttributes[] was added - some code changes
10014:
10015: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
10016: added
10017:
10018: 2007-08-17 misha
10019:
10020: * tests/: results/006.processed, results/059.processed, 006.html,
10021: 059.html: - more tests for match
10022:
10023: * tests/: 129.html, results/129.processed: - tests for
10024: ^table.hash[...][$.type[string|hash|table]] added
10025:
10026: * src/targets/cgi/parser3.C: - little syntax changes
10027:
10028: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
10029: syntax changes
10030:
10031: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
10032: messages in parser3.log switched off by default. If someone
10033: really still need it: use $SIGPIPE(1)
10034:
10035: 2007-08-08 misha
10036:
10037: * buildall-with-xml, buildall-without-xml: - remove libs source
10038: files by default since now
10039:
10040: 2007-08-07 misha
10041:
10042: * buildall-without-xml: - some option syntax changes
10043:
10044: * buildall-with-xml: - compile libxml2 without http support - some
10045: option syntax changes
10046:
10047: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
10048:
10049: 2007-08-06 misha
10050:
10051: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
10052:
10053: * tests/: 160.html, results/160.processed: - cache test was
10054: rewrited
10055:
10056: 2007-07-06 misha
10057:
10058: * tests/: 153.html, results/153.processed: - added test for
10059: ^math:sha1[string]
10060:
10061: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
10062: transcoded
10063:
10064: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
10065: were added
10066:
10067: 2007-06-28 misha
10068:
10069: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
10070: some incorrect chars
10071:
10072: 2007-06-19 misha
10073:
10074: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
10075: were moved on top because of gcc 4 had a problems during
10076: building.
10077:
10078: 2007-06-18 misha
10079:
10080: * tests/results/019.processed: - new image commited
10081:
10082: 2007-06-09 misha
10083:
10084: * src/classes/: op.C, table.C: - in while and table.select method
10085: as_expression used now
10086:
10087: * src/types/pa_vmethod_frame.h: - method as_expression was added
10088:
10089: 2007-06-08 misha
10090:
10091: * tests/: 166.html, results/166.processed: - test for
10092: ^match[...][n]
10093:
10094: * tests/: 165.html, results/165.processed: - tests for loops
10095:
10096: * src/lib/cord/include/private/cord_pos.h: - back to origin value
10097: because of no speed/memory optimisation but some proglems with
10098: long cycles occure
10099:
10100: 2007-06-06 misha
10101:
10102: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
10103: ^table.select(true) and ^table.select(1) didn't works because of
10104: awaiting junction-param only. fixed.
10105:
10106: 2007-05-24 misha
10107:
10108: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
10109: with 0.5 secs interval
10110:
10111: * src/classes/op.C: - cache was rewrited. I hope it works with
10112: locking system now on unix
10113:
10114: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
10115: system locks which wait till other threads release it but try get
10116: lock, if fail wait 1 sec and make 10 attempts.
10117:
10118: * src/include/pa_os.h: - consts for blocking locks + some comments
10119: were added
10120:
10121: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
10122: opening files
10123:
10124: * src/classes/table.C: - changes in includes. if unclude <sstream>
10125: after our classes on unix it can't be build
10126:
10127: * src/types/pa_vhashfile.C: - not needed code removed
10128:
10129: 2007-05-23 misha
10130:
10131: * src/: classes/file.C, classes/op.C, main/pa_common.C,
10132: include/pa_common.h: - cosmetic changes
10133:
10134: 2007-05-18 misha
10135:
10136: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
10137: often. it's give some speed increasing
10138:
10139: * tests/results/160.processed: - returned time corrected
10140:
10141: * tests/160.html: - time increased because on unix 1 mean nothing
10142: :(
10143:
10144: * operators.txt: - added info about ^hash.contain[key]
10145:
10146: * src/classes/hash.C: - added ^hash.contain[key]
10147:
10148: * src/include/pa_hash.h: - added method for checking key exists in
10149: hash
10150:
10151: 2007-05-07 misha
10152:
10153: * src/include/pa_string.h: - was compilation error during build on
10154: freebsd4
10155:
10156: 2007-05-03 misha
10157:
10158: * src/classes/table.C: - option $.type[hash|string|table] was added
10159: for ^table.hash[]
10160:
10161: * src/classes/file.C: - comment removed
10162:
10163: 2007-04-26 misha
10164:
10165: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
10166: real files doesn't opened in place anymore
10167:
10168: 2007-04-24 misha
10169:
10170: * src/classes/math.C: - I thought one more time and remove lg(N) :)
10171:
10172: * src/include/pa_exception.h: "static" removed
10173:
10174: 2007-04-23 misha
10175:
10176: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
10177:
10178: * src/classes/math.C: added: - ^math:ln(N) (the same as
10179: ^math:log(N)) - ^math:lg(N)
10180:
10181: * tests/: 097.html, results/097.processed: - charsets converstion
10182: during ^file::load[text;http://...] added
10183:
10184: * tests/: 164.html, results/164.processed: - check for set expires
10185: as a date
10186:
10187: * tests/: 164.html, results/164.processed: - test for hashfile
10188:
10189: * src/classes/hashfile.C: - little comment changes
10190:
10191: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
10192: access
10193:
10194: * src/: classes/date.C, classes/double.C, classes/file.C,
10195: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
10196: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
10197: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
10198: classes/xnode.h, include/pa_request.h, main/execute.C,
10199: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10200: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
10201: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
10202: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
10203: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
10204: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
10205: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10206: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
10207: "parser.runtime" strings were removed
10208:
10209: * src/classes/hashfile.C: - with .clear[] called files_delete()
10210: now.
10211:
10212: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
10213:
10214: * src/include/pa_exception.h: - string constant with
10215: "parser.runtime" text was added
10216:
10217: 2007-04-20 misha
10218:
10219: * operators.txt: - some comments changing
10220:
10221: * operators.txt: - added info about .^hashfile.release[],
10222: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
10223:
10224: * configure: =cheching for unsetenv
10225:
10226: * src/classes/hashfile.C: - ^hashfile.cleanup[],
10227: ^hashfile.release[] were added
10228:
10229: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
10230: ^string.match[][] understand new option now: return number of
10231: matches but not table wit results
10232:
10233: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
10234: reopen now
10235:
10236: * src/classes/op.C: - bug. must be false
10237:
10238: * configure.in: - checking for unsetenv was added
10239:
10240: * src/types/pa_vform.C: - some comments
10241:
10242: 2007-04-18 misha
10243:
10244: * buildall-with-xml: moving to libxml2-2.6.28
10245:
10246: * buildall-with-xml, buildall-without-xml: added commented lines
10247: with --disable-safe-mode option
10248:
10249: * operators.txt: - info about $form:files
10250:
10251: 2007-04-17 misha
10252:
10253: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
10254: $form:files was added
10255:
10256: * tests/: 163.html, results/163.processed: removing auto format
10257:
10258: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
10259:
10260: 2007-04-16 misha
10261:
10262: * tests/: 163.html, results/163.processed: - test for .int[],
10263: floor, round, ceiling and .format[]
10264:
10265: * src/classes/file.C: - little optimization for getting args in
10266: exec/cgi
10267:
10268: 2007-04-13 misha
10269:
10270: * src/classes/file.C: - arguments for file::exec/cgi can be
10271: specified now as s table with one column
10272:
10273: 2007-03-27 misha
10274:
10275: * tests/: 162.html, results/162.processed: - test for
10276: ^table.select(^condition[$t])
10277:
10278: * tests/results/auto.p: - load windows-1251 charset for some tests
10279:
10280: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
10281:
10282: * tests/: results/161.processed, 161.html, 161_utf8.txt,
10283: 161_windows1251.txt: - added test for
10284: ^file::load[text;/local/file.txt;$.charset[...]]
10285:
10286: * tests/: results/013.processed, 013.html: - added test for
10287: checking $._default value while hash modifications
10288:
10289: * tests/: 160.html, results/160.processed: - add test for
10290: ^cache[key](secs){code}, ^cache[] and ^cache(0)
10291:
10292: 2007-03-22 misha
10293:
10294: * src/include/pa_common.h: - "charset" string defined for
10295: ^file::load[text;/local.txt] and ^table::load[/table.txt]
10296:
10297: * src/main/: pa_common.C, pa_http.C: - $.charset option for
10298: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
10299: added - not needed transcodes were removed from
10300: ^file::load[...;http://...]
10301:
10302: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
10303: added
10304:
10305: * src/classes/date.C: - date.week was fixed
10306:
10307: * operators.txt: - added info about date.weekyear
10308:
10309: * tests/: 159.html, results/159.processed: - tests for date.week
10310: and date.weekyear added
10311:
10312: 2007-03-15 misha
10313:
10314: * src/classes/table.C: - enclose column numbers for nameless tables
10315: as well
10316:
10317: 2007-03-14 misha
10318:
10319: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
10320:
10321: * src/classes/table.C: - table.save optimization: now required much
10322: less memory
10323:
10324: 2007-03-13 misha
10325:
10326: * tests/results/: 158.processed, 158.processes: - tests for
10327: table.save/table.load
10328:
10329: * tests/: 158.html, results/158.processes: - tests for
10330: table.save/table.load
10331:
10332: * buildall-with-xml: libxml2: --without-ftp --without-docbook
10333:
10334: * buildall-with-xml: - pattern needed now for building
10335:
10336: * tests/results/097.processed: - added test results for xdoc::load
10337: & xdoc::load[http://...]
10338:
10339: * tests/097.html: - added test for xdoc::load
10340:
10341: 2007-03-12 misha
10342:
10343: * tests/: 107.html, results/107.processed: - added test for xpath
10344: '//man'
10345:
10346: 2007-03-01 misha
10347:
10348: * tests/: 097.html, results/097.processed: - added test for
10349: creating xdoc from file
10350:
10351: * tests/: results/157.processed, 157.html: - added test for
10352: file:move
10353:
10354: 2007-02-28 misha
10355:
10356: * src/classes/xdoc.C: - another attempt
10357:
10358: * src/classes/xdoc.C: - roll back last changes for a while
10359:
10360: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
10361:
10362: * src/classes/file.C: - under lock we create non-exist dir anyway
10363:
10364: * tests/results/099.processed: - ever send content-disposition to
10365: client with file
10366:
10367: * tests/157.html: + test for file:copy
10368:
10369: 2007-02-26 misha
10370:
10371: * src/classes/file.C: - some similar strings moved to #define
10372: instead of to be copy/pasted many times
10373:
10374: * src/types/pa_vfile.h: - class name string ("file") moved to
10375: #define
10376:
10377: 2007-02-20 misha
10378:
10379: * configure.in: - added some strings for sqlite detection
10380:
10381: 2007-02-19 misha
10382:
10383: * operators.txt: - some comments changes
10384:
10385: * buildall-with-xml, buildall-without-xml: - some modifications
10386:
10387: 2007-02-17 misha
10388:
10389: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
10390:
10391: * src/main/pa_request.C: - damn, i forgot to commit it while I
10392: change console behaviour
10393:
10394: 2007-02-12 misha
10395:
10396: * src/targets/cgi/parser3.C: - don't print headers if
10397: $console:line[data] was used during cgi execution.
10398:
10399: * src/types/pa_vconsole.h: - console class have bool flag now which
10400: marked as 'true' if class was used.
10401:
10402: * tests/: 152.html, results/152.processed: - more types was added
10403: to test 152
10404:
10405: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
10406: adding 'bool' (^if($image){} caused exception)
10407:
10408: 2007-02-09 misha
10409:
10410: * tests/: 152.html, results/152.processed: - test alightly updated
10411:
10412: * tests/: 152.html, results/152.processed: - test rewrited
10413:
10414: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
10415: bugfix. I broke xdoc & xnode in expression
10416:
10417: 2007-02-08 misha
10418:
10419: * tests/: 152.html, results/152.processed: - add test for checking
10420: 'def' for void, string, bool, int & double
10421:
10422: 2007-02-07 misha
10423:
10424: * operators.txt: - ^file:base64[filespec] was added
10425:
10426: * tests/results/153.processed: - result test for
10427: ^file:base64[filespec] was updated
10428:
10429: * tests/153.html: - test for ^file:base64[filespec] was added
10430:
10431: * src/types/pa_vconsole.h: - little optimization
10432:
10433: * src/classes/file.C: - ^file:base64[filespec]
10434:
10435: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
10436:
10437: * src/include/pa_common.h: - declarations for
10438: ^file:base64[filespec]
10439:
10440: * src/types/pa_vcookie.C: - little optimization
10441:
10442: 2007-02-06 misha
10443:
10444: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
10445: were temporary commented
10446:
10447: * src/types/pa_vbool.h: - bugfix
10448:
10449: * tests/156.html: - added test for bool cookie
10450:
10451: * src/types/pa_vcookie.h: - not needed string "cookie" removed
10452:
10453: * tests/: 155.html, results/155.processed: - added test for check
10454: $.encloser[] option for table save/load
10455:
10456: * tests/: 153.html, 154.html, todo.txt: - two more tests added
10457:
10458: 2007-02-05 misha
10459:
10460: * tests/results/152.processed: - newline at the end was missed
10461:
10462: * tests/results/141.processed: - math:md5 must be lowercased
10463:
10464: * src/targets/cgi/parser3.C: - 2007 in help ;)
10465:
10466: 2007-02-03 misha
10467:
10468: * tests/results/: 150.processed, 151.processed, 152.processed: -
10469: test for bool added and some content length fixes
10470:
10471: * tests/152.html: - test for bool added
10472:
10473: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
10474:
10475: * operators.txt: - info bool class was added
10476:
1.116 moko 10477: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 10478: classes/classes.vcproj, classes/double.C, classes/int.C,
10479: classes/string.C, classes/void.C, classes/xnode.C,
10480: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
10481: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
10482: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
10483: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10484: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
10485: types/types.vcproj: - bool class was added
10486:
10487: * src/main/pa_request.C: - fix
10488:
10489: 2007-01-18 misha
10490:
10491: * src/: main/pa_string.C, classes/string.C: - return table during
10492: ^string.match[][] even if no matched found.
10493:
10494: 2006-12-20 misha
10495:
10496: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
10497: http://www.parser.ru/forum/?id=55598 ]
10498:
10499: 2006-12-19 misha
10500:
10501: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
10502: details: http://www.parser.ru/forum/?id=52359
10503:
10504: * src/main/pa_request.C: - always set content-disposition for
10505: $response:body[hash here]. more details:
10506: http://www.parser.ru/forum/?id=52130
10507:
10508: 2006-12-07 misha
10509:
10510: * operators.txt: - added info about bool params in cookie set
10511:
10512: * src/types/pa_vcookie.C: - bool param in cookies available now
10513: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
10514: ]
10515:
10516: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
10517: was added
10518:
10519: 2006-12-02 misha
10520:
10521: * src/classes/file.C: - file_block_read used instead of native read
10522:
10523: * src/main/pa_common.C: - added file_block_read with read error
10524: detection - file_block_read used instead of native read
10525:
10526: * src/include/pa_common.h: - added file_block_read declaration
10527:
10528: 2006-12-01 misha
10529:
10530: * operators.txt: - info about $var.CLASS_NAME was added
10531:
10532: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10533: $var.CLASS_NAME added
10534:
10535: * operators.txt: - added info about ^file:copy[]
10536:
10537: * src/classes/file.C: - ^file:copy[from;fo] was added
10538:
10539: 2006-11-20 misha
10540:
10541: * src/classes/date.C: - bug fix :)
10542:
10543: 2006-11-17 misha
10544:
10545: * src/include/pa_common.h: - array in crc32 calculation was changed
10546: to static
10547:
10548: * src/main/pa_common.C: - little optimization in getMonthDays -
10549: small changes in crc32 calculation
10550:
10551: * src/classes/date.C: - not needed code was removed
10552:
10553: 2006-11-16 misha
10554:
10555: * src/types/pa_vmail.C: - fix missed brakes
10556:
10557: * src/types/pa_vmail.C: - mail:send now set content-type:
10558: multipart/related instead of multipart/mixed if file have
10559: $.content-id[]
10560:
10561: 2006-11-15 misha
10562:
10563: * src/types/pa_vdouble.h: abs -> fabs
10564:
10565: 2006-11-14 misha
10566:
10567: * operators.txt: - added info about ^file.md5[] and
10568: ^file:md5[file-name]
10569:
10570: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
10571: added
10572:
10573: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
10574: FILE_BUFFER_SIZE
10575:
10576: * src/classes/math.C: - hex_string was moved to pa_common.h
10577:
10578: * src/include/pa_common.h: - hex_string was moved from math.C -
10579: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
10580:
10581: * src/types/pa_vdouble.h: - incorrect frac detection with negative
10582: values was fixed
10583:
10584: 2006-11-13 misha
10585:
10586: * operators.txt: - added info about ^math:crc32[string],
10587: ^file:crc32[file-name] & ^file.crc32[]
10588:
10589: * src/classes/math.C: - added ^math:crc32[string]
10590:
10591: * src/classes/file.C: - some comments were changed - added
10592: ^file:crc32[file-name] and ^file.crc32[]
10593:
10594: * src/: include/pa_common.h, main/pa_common.C: - some functions for
10595: crc32 calculation added
10596:
10597: 2006-11-03 misha
10598:
10599: * src/include/pa_array.h: - not needed variable removed
10600:
10601: * tests/: 150.html, 151.html, results/150.processed,
10602: results/151.processed: - 2 tests were added
10603:
10604: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
10605: with $.reverse(1) were fixed
10606:
10607: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
10608: query converted to $.charset during ^file::load[http://...]
10609:
10610: 2006-11-02 misha
10611:
10612: * src/include/pa_table.h: ups. forget '=' char
10613:
10614: * src/include/pa_table.h: - one more fix in
10615: .locate[...][$.reverse(1)]
10616:
10617: 2006-11-01 misha
10618:
10619: * src/classes/math.C: - bug fix, details:
10620: http://www.parser.ru/forum/?id=53360
10621:
10622: * src/include/pa_table.h: - bug fix during ^table.locate( condition
10623: false for all records )[$.reverse(1)]
10624:
10625: * src/main/pa_http.C: - second param for this mid method is length
10626: but not end_index so this method has error and can't detect
10627: charsets in next content-types: Content-type: text/html;
10628: charset="windows-1251" Content-type: text/html;
10629: charset="windows-1251"; Content-type: text/html;
10630: charset=windows-1251;
10631:
10632: only Content-type: text/html; charset=windows-1251 was fine
10633:
10634: 2006-10-31 misha
10635:
10636: * src/classes/file.C: - empty args in file::exec removed now
10637:
10638: 2006-09-03 paf
10639:
10640: * src/classes/file.C: proper tainting of
10641: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
10642:
10643: 2006-06-09 paf
10644:
10645: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
10646:
10647: * src/classes/table.C: formatting
10648:
10649: * src/classes/table.C: incorporated patch from misha: Sent:
10650: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
10651: ignoring string options for ^table.save[]
10652:
10653: * src/classes/hash.C: incorporated patch from misha Sent:
10654: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
10655: $hash._default disappear while
10656:
10657: * operators.txt: ^mail:send[ $.file1[ $.value[file]
10658: $.format[!uue|!base64] << new base64 option. default uue ] ]
10659:
10660: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
10661: PM Subject: patch for base64 in ^mail:send[] %-)
10662:
10663: 2006-04-09 paf
10664:
10665: * src/main/compile.tab.C: ` change compiled
10666:
10667: * gnu.vcproj, operators.txt, parser3.sln,
10668: src/classes/classes.vcproj, src/classes/file.C,
10669: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
10670: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10671: src/classes/xnode.C, src/include/pa_array.h,
10672: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10673: src/include/pa_memory.h, src/include/pa_request.h,
10674: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10675: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10676: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10677: src/lib/pcre/pcre_dftables.vcproj,
10678: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10679: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10680: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10681: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10682: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10683: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10684: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10685: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10686: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10687: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10688: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10689: src/types/pa_value.h, src/types/pa_vcookie.C,
10690: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
10691: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10692: src/types/pa_vstatus.C, src/types/types.vcproj,
10693: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
10694: ^menu, ^hash/hashfile.foreach
10695:
10696: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10697: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
10698: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10699: src/classes/xnode.C, src/include/pa_array.h,
10700: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10701: src/include/pa_memory.h, src/include/pa_request.h,
10702: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10703: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10704: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10705: src/lib/pcre/pcre_dftables.vcproj,
10706: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10707: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10708: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10709: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10710: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10711: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10712: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10713: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10714: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10715: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10716: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10717: src/types/pa_value.h, src/types/pa_vcookie.C,
10718: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10719: src/types/pa_vstatus.C, src/types/types.vcproj,
10720: tests/descript.ion: ! switched to VS2005 (projects and
10721: object<info explicitly typed>.for_each(, info)) +
10722: $response:field[] setting void means removing + grammar $name`
10723: name stops now, for mysql `$field` + started ^break[]
10724: ^continue[], in ^for. TODO: to other iterators (while, menu,
10725: foreach) + all log messages += [uri=, method=, cl=]
10726:
10727: * buildall-with-xml: merged . ftp paths update
10728:
10729: * buildall-with-xml: . ftp paths update
10730:
10731: 2006-03-04 paf
10732:
10733: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
10734: checks++ [thanks to Igor Zinkovsky for detailed report]
10735:
10736: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
10737: Igor Zinkovsky for detailed report]
10738:
10739: 2006-03-01 paf
10740:
10741: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10742: \n to ' ' in
10743:
10744: 2006-02-18 paf
10745:
10746: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10747: \n to ' ' in
10748:
10749: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
10750:
10751: 2006-02-03 paf
10752:
10753: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
10754: base64
10755:
10756: * src/main/pa_common.C: ! bugfix: decoding from base64
10757:
10758: 2006-01-20 paf
10759:
10760: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10761: economy fix
10762:
10763: * src/classes/: table.C: merged from HEAD ! bugfix
10764: ^table.save[$.encloser-s now handled properly
10765:
10766: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
10767: handled properly
10768:
10769: 2006-01-19 paf
10770:
10771: * buildall-with-xml, buildall-without-xml: merged from HEAD !
10772: libgc:USE_MUNMAP activates merging of free memory blocks which
10773: helps a lot in our case: after transform we want
10774: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
10775:
10776: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10777: economy fix
10778:
10779: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
10780: activates merging of free memory blocks which helps a lot in our
10781: case: after transform we want CORD(main.result)->cstr[big
10782: malloc]->transcode[big malloc]
10783:
10784: 2006-01-17 paf
10785:
10786: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
10787: before reading them. got rid of reallocs = became quicker and
10788: less fragmentated
10789:
10790: 2005-12-29 paf
10791:
1.116 moko 10792: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
10793: configure, configure.in, src/include/pa_version.h,
10794: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 10795: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
10796: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
10797: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
10798: src/lib/ltdl/missing: . merged from 3.2.1
10799:
1.116 moko 10800: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
10801: packaged when 'make dist', so do configure companion files in
10802: src/lib/ltdl
10803:
10804: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
10805: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
10806: missing: . now config_auto.h is created with configure [were
10807: constant]
1.95 moko 10808:
10809: * INSTALL: . references to documentation and some clarification
10810:
10811: * buildall-with-xml, buildall-without-xml: . farawell doc
10812: indication
10813:
1.116 moko 10814: * Makefile.am: . dist+=buildall*
1.95 moko 10815:
10816: 2005-12-28 paf
10817:
10818: * configure: . 3.2.1
10819:
10820: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
10821: simplify build process, see INSTALL
10822:
10823: 2005-12-26 paf
10824:
10825: * configure: ver
10826:
10827: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
10828: version
10829:
10830: 2005-12-21 paf
10831:
10832: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
10833: compiled with bison 1.875b, it reports unexpected token names
10834:
10835: 2005-12-19 paf
10836:
10837: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
10838: holds a link to xmlNode to prevent premature gc(xmlNode)
10839:
10840: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
10841: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
10842: src/main/main.vcproj, src/main/pa_globals.C,
10843: src/targets/cgi/parser3.vcproj,
10844: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
10845: configure, configure.in, src/include/pa_version.h: . killing
10846: gdome [what a relief]
10847:
10848: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
10849: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
10850: run_parser.sh, results/001.processed, results/002.processed,
10851: results/003.processed, results/004.processed,
10852: results/005.processed, results/006.processed,
10853: results/008.processed, results/009.processed,
10854: results/010.processed, results/011.processed,
10855: results/012.processed, results/013.processed,
10856: results/014.processed, results/015.processed,
10857: results/016.processed, results/017.processed,
10858: results/018.processed, results/020.processed,
10859: results/021.processed, results/022.processed,
10860: results/023.processed, results/024.processed,
10861: results/025.processed, results/026.processed,
10862: results/027.processed, results/028.processed,
10863: results/029.processed, results/030.processed,
10864: results/031.processed, results/032.processed,
10865: results/033.processed, results/034.processed,
10866: results/035.processed, results/036.processed,
10867: results/037.processed, results/038.processed,
10868: results/039.processed, results/040.processed,
10869: results/041.processed, results/042.processed,
10870: results/043.processed, results/044.processed,
10871: results/045.processed, results/046.processed,
10872: results/047.processed, results/048.processed,
10873: results/049.processed, results/050.processed,
10874: results/051.processed, results/052.processed,
10875: results/053.processed, results/054.processed,
10876: results/055.processed, results/056.processed,
10877: results/057.processed, results/058.processed,
10878: results/059.processed, results/060.processed,
10879: results/061.processed, results/062.processed,
10880: results/063.processed, results/064.processed,
10881: results/065.processed, results/066.processed,
10882: results/067.processed, results/068.processed,
10883: results/069.processed, results/070.processed,
10884: results/071.processed, results/072.processed,
10885: results/073.processed, results/074.processed,
10886: results/075.processed, results/076.processed,
10887: results/077.processed, results/078.processed,
10888: results/079.processed, results/080.processed,
10889: results/081.processed, results/082.processed,
10890: results/083.processed, results/084.processed,
10891: results/085.processed, results/086.processed,
10892: results/087.processed, results/088.processed,
10893: results/089.processed, results/090.processed,
10894: results/091.processed, results/092.processed,
10895: results/093.processed, results/094.processed,
10896: results/095.processed, results/096.processed,
10897: results/097.processed, results/099.processed,
10898: results/100.processed, results/101.processed,
10899: results/102.processed, results/104.processed,
10900: results/105.processed, results/106.processed,
10901: results/107.processed, results/108.processed,
10902: results/109.processed, results/110.processed,
10903: results/111.processed, results/112.processed,
10904: results/113.processed, results/114.processed,
10905: results/115.processed, results/117.processed,
10906: results/119.processed, results/120.processed,
10907: results/121.processed, results/122.processed,
10908: results/123.processed, results/124.processed,
10909: results/125.processed, results/126.processed,
10910: results/127.processed, results/128.processed,
10911: results/129.processed, results/130.processed,
10912: results/131.processed, results/132.processed,
10913: results/133.processed, results/134.processed,
10914: results/135.processed, results/136.processed,
10915: results/138.processed, results/139.processed,
10916: results/140.processed, results/141.processed,
10917: results/142.processed, results/143.processed,
10918: results/144.processed, results/145.processed,
10919: results/146.processed, results/147.processed,
10920: results/148.processed, results/149.processed, results/auto.p: .
10921: now works if we turn off default auto.p
10922:
1.116 moko 10923: * configure: . makes
1.95 moko 10924:
10925: * src/types/pa_vxnode.C: . less warnings
10926:
10927: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
10928: tests/145.html, tests/149.html, tests/descript.ion,
10929: tests/outputs/d.cmd, tests/results/142.processed,
10930: tests/results/143.processed, tests/results/144.processed,
10931: tests/results/145.processed, tests/results/146.processed,
10932: tests/results/147.processed, tests/results/148.processed,
10933: tests/results/149.processed: . removed .nodeValue from all node
10934: types other than 5 (grabbed piece from gdome)
10935:
10936: * tests/: 137.html, results/137.processed: . not handled this case
10937: yet. code does not hang from inserting parent into child,
10938: considering thing minor issue -- nodes are removed from source
10939: anyway, don't know why shold that be an error after all
10940:
10941: * src/targets/cgi/parser3.C: . style
10942:
10943: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
10944: xdoc too [were barking "not element"]
10945:
10946: 2005-12-16 paf
10947:
10948: * tests/: 146.html, 147.html, 148.html: . more tests
10949:
10950: * src/classes/xnode.C: . also bark on possible errors
10951:
10952: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
10953: props
10954:
10955: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
10956: main/compile.y: merged from HEAD ! fixed overoptimized
10957: ^call(false) case. (confused it with ^call[] case)
10958:
10959: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
10960: ^call(false) case. (confused it with ^call[] case)
10961:
10962: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
10963:
10964: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
10965: results/001.processed, results/002.processed,
10966: results/003.processed, results/004.processed,
10967: results/005.processed, results/006.processed,
10968: results/008.processed, results/009.processed,
10969: results/010.processed, results/011.processed,
10970: results/012.processed, results/013.processed,
10971: results/014.processed, results/015.processed,
10972: results/016.processed, results/017.processed,
10973: results/018.processed, results/019.processed,
10974: results/020.processed, results/021.processed,
10975: results/022.processed, results/023.processed,
10976: results/024.processed, results/025.processed,
10977: results/026.processed, results/027.processed,
10978: results/028.processed, results/029.processed,
10979: results/030.processed, results/031.processed,
10980: results/032.processed, results/033.processed,
10981: results/034.processed, results/035.processed,
10982: results/036.processed, results/037.processed,
10983: results/038.processed, results/039.processed,
10984: results/040.processed, results/041.processed,
10985: results/042.processed, results/043.processed,
10986: results/044.processed, results/045.processed,
10987: results/046.processed, results/047.processed,
10988: results/048.processed, results/049.processed,
10989: results/050.processed, results/051.processed,
10990: results/052.processed, results/053.processed,
10991: results/054.processed, results/055.processed,
10992: results/056.processed, results/057.processed,
10993: results/058.processed, results/059.processed,
10994: results/060.processed, results/061.processed,
10995: results/062.processed, results/063.processed,
10996: results/064.processed, results/065.processed,
10997: results/066.processed, results/067.processed,
10998: results/068.processed, results/069.processed,
10999: results/070.processed, results/071.processed,
11000: results/072.processed, results/073.processed,
11001: results/074.processed, results/075.processed,
11002: results/076.processed, results/077.processed,
11003: results/078.processed, results/079.processed,
11004: results/080.processed, results/081.processed,
11005: results/082.processed, results/083.processed,
11006: results/084.processed, results/085.processed,
11007: results/086.processed, results/087.processed,
11008: results/088.processed, results/089.processed,
11009: results/090.processed, results/091.processed,
11010: results/092.processed, results/093.processed,
11011: results/094.processed, results/095.processed,
11012: results/096.processed, results/097.processed,
11013: results/099.processed, results/101.processed,
11014: results/102.processed, results/104.processed,
11015: results/105.processed, results/106.processed,
11016: results/107.processed, results/108.processed,
11017: results/109.processed, results/110.processed,
11018: results/111.processed, results/112.processed,
11019: results/113.processed, results/114.processed,
11020: results/115.processed, results/116.processed,
11021: results/117.processed, results/118.processed,
11022: results/119.processed, results/120.processed,
11023: results/121.processed, results/122.processed,
11024: results/123.processed, results/124.processed,
11025: results/125.processed, results/126.processed,
11026: results/127.processed, results/128.processed,
11027: results/129.processed, results/130.processed,
11028: results/131.processed, results/132.processed,
11029: results/133.processed, results/134.processed,
11030: results/135.processed, results/136.processed,
11031: results/137.processed, results/138.processed,
11032: results/139.processed, results/140.processed,
11033: results/141.processed: . refreshed old tests, made them work
11034: without auto.p (in utf8) . things noted: . gif got encoded
11035: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
11036: some strange year)
11037:
11038: * INSTALL: . revived linux libgc fix
11039:
11040: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
11041: glib/gdome in INSTALL and patches]
11042:
11043: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11044: include/pa_charset.h, include/pa_config_includes.h,
11045: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
11046: include/pa_xml_exception.h, lib/cord/Makefile.am,
11047: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
11048: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
11049: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
11050: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
11051: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
11052: types/pa_vxnode.h: . started killing gdome
11053:
11054: 2005-12-13 paf
11055:
11056: * src/main/: pa_request.C: merged from HEAD ! when code in
11057: @unhandled_exception thrown another exception, print correct
11058: origin (earlier code in catch of exception inside of
11059: @unhandled_exception grabbed parent_frame(original_exception)
11060: origin and printed it, instead of true origin)
11061:
11062: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
11063: another exception, print correct origin (earlier code in catch of
11064: exception inside of @unhandled_exception grabbed
11065: parent_frame(original_exception) origin and printed it, instead
11066: of true origin)
11067:
11068: 2005-12-09 paf
11069:
11070: * INSTALL: . updated INSTALL doc to work around linux stack base
11071: detection problem, due to change in gc6.4 code
11072:
11073: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
11074: ignored in ^string.matched :(
11075:
11076: * src/main/pa_string.C: ! regex tainting were ignored in
11077: ^string.matched :(
11078:
11079: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
11080: src/include/pa_config_fixed.h, src/include/pa_version.h,
11081: src/main/compile.y, src/main/compile_tools.h,
11082: src/main/pa_charset.C, src/main/pa_common.C,
11083: src/main/pa_globals.C, src/main/pa_string.C,
11084: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
11085: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
11086:
11087: 2005-12-08 paf
11088:
11089: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
11090: 500 chars now handled OK [were wrapped on 500th char according to
11091: rfc, but sendmail failed to unwrap it properly]
11092:
11093: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
11094: handled OK [were wrapped on 500th char according to rfc, but
11095: sendmail failed to unwrap it properly]
11096:
11097: * src/targets/isapi/parser3isapi.C: . less warnings
11098:
11099: * src/targets/isapi/parser3isapi.C: . undone some strange change
11100: since 3.1.5
11101:
11102: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
11103: link fixes
11104:
11105: * src/: classes/date.C, include/pa_config_fixed.h,
11106: main/compile.tab.C, main/compile.y, main/compile_tools.h,
11107: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
11108: main/pa_string.C, targets/cgi/getopt.c: . less warnings
11109:
11110: * src/include/pa_config_fixed.h: . removed outdated string origins
11111: [in current storage scheme there's no place for them. someday we
11112: can add third CORD to store origins and special version of parser
11113: which stores origins there [separate binary]]
11114:
11115: 2005-12-07 paf
11116:
11117: * src/targets/isapi/parser3isapi.C: . now links in release mode
11118:
11119: * src/include/pa_version.h: makefiles
11120:
11121: * src/include/pa_version.h: . not beta
11122:
11123: * configure, configure.in, src/include/pa_version.h: not beta
11124:
11125: 2005-12-06 paf
11126:
11127: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
11128: [some details here http://i2/tasks/edit/?id=4869912143891354460]
11129: decided to undo the change ^call[$void] passes void. now it will
11130: pass empty string again.
11131:
11132: * src/main/: compile.tab.C, compile.y: . version readded
11133:
11134: * src/classes/op.C: . in this version there is no ^switch[$nothing]
11135: = ^switch[void] problem
11136:
11137: 2005-12-01 paf
11138:
11139: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
11140: caused ^case[string] to be coerced to double since searching
11141: value were not string (it was vvoid)
11142:
11143: * src/classes/op.C: . bugfix ^switch[$void_value] caused
11144: ^case[string] to be coerced to double since searching value were
11145: not string (it was vvoid)
11146:
11147: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
11148: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
11149:
11150: 2005-11-30 paf
11151:
11152: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
11153: win32 must putenv("TZ="), on unix works only putenv("TZ")
11154:
11155: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
11156: putenv("TZ="), on unix works only putenv("TZ")
11157:
11158: * INSTALL: . xml libs versions updated
11159:
11160: * src/main/pa_globals.C: //20051130 trying to remove this, author
11161: claims that fixed a lot there // 20040920 for now both
11162: workarounds needed. wait for new libxml/xsl versions
11163:
11164: 2005-11-28 paf
11165:
11166: * src/classes/table.C: merged from HEAD: ! nameless table has
11167: columns==0
11168:
11169: * src/classes/table.C: ! nameless table has columns==0
11170:
11171: * src/main/pa_http.C: merged from HEAD: ! status line check made
11172: earlier [was totally wrong]
11173:
11174: * src/main/pa_http.C: ! status line check made earlier [was totally
11175: wrong]
11176:
11177: 2005-11-25 paf
11178:
11179: * src/include/pa_array.h: -this reduces speed(table::load) strange.
11180: undoing for now...
11181:
11182: * src/include/pa_version.h: -this reduces speed(table::load),
11183: strange. undoing
11184:
11185: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
11186:
11187: * src/classes/op.C: + ^while(){}[SEPARATOR]
11188:
11189: * src/include/pa_array.h: + optimistics added: all arrays (table
11190: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
11191: this speeds things up and saves memory a LOT! (not noticed
11192: negative effect on syntetic tests, future will tell...)
11193:
11194: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
11195: changed gc_malloc implementation, which obscured profiling
11196:
11197: * src/classes/table.C: merged from HEAD: + optimized
11198: table::load/sql, now row ArrayString-s allocated with
11199: columns.count() elements and don't always grow from
11200: count=3[realloc,realloc]
11201:
11202: * src/classes/table.C: + optimized table::load/sql, now row
11203: ArrayString-s allocated with columns.count() elements and don't
11204: always grow from count=3[realloc,realloc]
11205:
11206: * src/classes/table.C: merged from HEAD: . ^table.save unused
11207: buffer after save
11208:
11209: * src/classes/table.C: . ^table.save unused buffer after save
11210:
11211: 2005-11-24 paf
11212:
11213: * configure.in: . merged glib2-config patch
11214:
11215: * configure.in: + trying to find glib2-config
11216:
11217: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11218: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
11219: file/dir_readable to simple file/dir_exist, this would help in
11220: situations "class not found because .p file has bad rights" << in
11221: that case error would be explicit "access denied to 'this' file"
11222:
1.116 moko 11223: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 11224:
11225: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11226: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
11227: to simple file/dir_exist, this would help in situations "class
11228: not found because .p file has bad rights" << in that case error
11229: would be explicit "access denied to 'this' file"
11230:
11231: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
11232: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11233: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
11234: ^file::exec/cgi[script;$.charset[changed]
11235: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11236: encoded in $.charset charset
11237:
11238: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
11239: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11240: encoded in $.charset charset
11241:
11242: * src/: include/Makefile.am, include/pa_common.h,
11243: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11244: main/pa_common.C, main/pa_http.C: . extracted http:// into
11245: separate file [preparation for
11246: ^file::cgi[script;$.form[$.field1[]
11247:
11248: 2005-11-22 paf
11249:
11250: * src/: include/pa_version.h, main/compile.tab.C: makefiles
11251:
11252: * acinclude.m4, configure.in: . merged underquting fixes
11253:
1.116 moko 11254: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 11255:
11256: * src/classes/op.C: . overmerged a little
11257:
11258: * src/main/compile.tab.C: Makefile
11259:
11260: * src/main/: pa_common.C: . less gcc warnings
11261:
11262: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
11263: now reports original exception if we have no old cache
11264:
11265: * src/classes/op.C: + $exception.handled[cache] now reports
11266: original exception if we have no old cache
11267:
11268: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
11269: from HEAD: + ^taint/untaint[regex] << escapes these:
11270: \^$.[]|()?*+{}
11271:
11272: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
11273: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
11274:
11275: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11276: getenv-ed variable, which does not work both on win32&unix.
11277: copied old TZ value now
11278:
11279: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
11280: stored pointer to getenv-ed variable, which does not work both on
11281: win32&unix. copied old TZ value now
11282:
11283: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11284: getenv-ed variable, which does not work both on win32&unix.
11285: copied old TZ value now
11286:
11287: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
11288: access to internal hash
11289:
11290: * src/types/pa_vresponse.C: + $response:headers access to internal
11291: hash
11292:
11293: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
11294: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11295: isapi] this reduces number of "GC Warning: Repeated allocation of
11296: very large block" messages to only important onces
11297:
11298: * src/targets/isapi/parser3isapi.C: +
11299: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11300: isapi] this reduces number of "GC Warning: Repeated allocation of
11301: very large block" messages to only important onces
11302:
11303: * src/classes/string.C: merged from HEAD: + removed limitation on
11304: ^string/int/double:sql{}[$.default[({param style})] ]
11305:
11306: * src/classes/string.C: + removed limitation on
11307: ^string/int/double:sql{}[$.default[({param style})] ]
11308:
11309: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
11310: with ?params or $.form option" limitation
11311:
11312: * src/main/pa_common.C: + removed "use either uri with ?params or
11313: $.form option" limitation
11314:
11315: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11316: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
11317: ^file::base64[encoded] decode
11318:
11319: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11320: main/pa_common.C: + ^file.base64[] encode +
11321: ^file::base64[encoded] decode
11322:
11323: * src/classes/: file.C, string.C: + ^string.base64[] encode +
11324: ^string:base64[encoded] decode
11325:
11326: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
11327: ^string:base64[in] encode + ^string.base64[] decode
11328:
11329: 2005-11-21 paf
11330:
11331: * src/classes/file.C: + merged from HEAD:
11332: ^file::create[text;file.xml;^untaint[xml]{data}]
11333:
11334: * src/classes/file.C: +
11335: ^file::create[text;file.xml;^untaint[xml]{data}]
11336:
11337: * src/main/pa_request.C: ! merged: $response:body[file] now
11338: differes from :download, it does not return content-disposition
11339: at all now [previusely it returned valueless content-disposition]
11340:
11341: * src/main/pa_request.C: ! $response:body[file] now differes from
11342: :download, it does not return content-disposition at all now
11343: [previusely it returned valueless content-disposition]
11344:
11345: * src/main/: compile.tab.C, compile.y: ! overoptimized void
11346: literals, reverted to just vvod, recreating empty array with each
11347: void_value token. that's absolutely needed, since that array
11348: grows
11349:
11350: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11351: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11352: types/pa_vmethod_frame.h: + merged: expression literals:
11353: true/false. ^format[$.indent(true)]
11354:
11355: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11356: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11357: types/pa_vmethod_frame.h: + expression literals: true/false.
11358: ^format[$.indent(true)]
11359:
11360: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11361: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11362: i386-pc-win32)"
11363:
11364: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11365: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11366: i386-pc-win32)"
11367:
11368: 2005-11-18 paf
11369:
11370: * src/classes/: double.C, int.C: ! ^int/double:sql{select
11371: null}[$.default(123)] will now return default value
11372:
11373: * src/classes/op.C: + merged ^cache[] << returns current cache
11374: expiration time
11375:
11376: * src/classes/op.C: + ^cache[] << returns current cache expiration
11377: time
11378:
11379: * src/classes/table.C: ! merged ^table::create[not'nameless';
11380: failed << Exception.problem_source pointed to local var!
11381:
11382: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
11383: Exception.problem_source pointed to local var!
11384:
11385: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
11386: now loads VFile.ptr!=0, so such files can be saved now
11387:
11388: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
11389: loads VFile.ptr!=0, so such files can be saved now
11390:
11391: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
11392: only . and .. now removed from list [were removed all .*]
11393:
11394: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
11395: .. now removed from list [were removed all .*]
11396:
11397: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
11398: open error now checked, were not :( [stole that piece from apache
11399: 1.3 sources]
11400:
11401: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
11402: checked, were not :( [stole that piece from apache 1.3 sources]
11403:
11404: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
11405: untainting of @main result if returned by $result or
11406: $response:body
11407:
11408: * src/main/pa_request.C: ! ensured proper untainting of @main
11409: result if returned by $result or $response:body
11410:
11411: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
11412: issue: now tries to guess content-length and allocates one big
11413: piece if possible [regretfully gc_realloc works as malloc+free,
11414: leaving lots of holes behind]
11415:
11416: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
11417: fixed file load memory issue: now tries to guess content-length
11418: and allocates one big piece if possible [regretfully gc_realloc
11419: works as malloc+free, leaving lots of holes behind]
11420:
11421: 2005-11-16 paf
11422:
11423: * src/: include/pa_common.h, classes/file.C, classes/table.C,
11424: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
11425: table::save with enclosers now doubles them: "->"" !
11426: table::save/load do not remove elements from options hash
11427:
11428: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
11429: [were overoptimized ^if(double_literal), compiler confused
11430: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11431:
11432: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
11433: [were overoptimized ^if(double_literal), compiler confused
11434: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11435:
11436: * src/: classes/file.C, classes/table.C, include/pa_common.h,
11437: main/pa_common.C: ! table::save with enclosers now doubles them:
11438: "->"" ! table::save/load do not remove elements from options hash
11439:
11440: 2005-11-03 paf
11441:
1.116 moko 11442: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
11443: compilation, not all makefiles liked that
1.95 moko 11444:
11445: 2005-08-30 paf
11446:
11447: * src/classes/op.C: merge . speedup check of [DEFAULT]
11448:
11449: * src/classes/op.C: . speedup check of [DEFAULT]
11450:
11451: 2005-08-26 paf
11452:
11453: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
11454:
11455: * src/: classes/date.C, types/pa_vdate.h: + date.week
11456:
11457: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
11458: complains about bad!=nameless
11459:
11460: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
11461: about bad!=nameless
11462:
11463: * src/classes/: hash.C, string.C, table.C, void.C: merged !
11464: optional options were allowed to be empty. were checked
11465: if(is_string), changed to !defined||is_string to allow void
11466:
11467: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
11468: classes/string.C, classes/table.C, classes/void.C: ! optional
11469: options were allowed to be empty. were checked if(is_string),
11470: changed to !defined||is_string to allow void
11471:
11472: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
11473: as_junction where they needed as_int/double, so failed with
11474: recent "(const) now no junction" optimization
11475:
11476: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
11477: merged ! many classes/* used as_junction where they needed
11478: as_int/double, so failed with recent "(const) now no junction"
11479: optimization
11480:
11481: * src/: classes/double.C, classes/int.C, classes/math.C,
11482: classes/op.C, classes/string.C, classes/table.C,
11483: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
11484: used as_junction where they needed as_int/double, so failed with
11485: recent "(const) now no junction" optimization
11486:
11487: 2005-08-24 paf
11488:
11489: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
11490: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
11491: stripped it
11492:
11493: 2005-08-09 paf
11494:
11495: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11496: not cleared
11497:
11498: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11499: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11500: classes/hashfile.C, classes/image.C, classes/int.C,
11501: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11502: classes/response.C, classes/string.C, classes/table.C,
11503: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11504: include/pa_array.h, include/pa_cache_managers.h,
11505: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11506: include/pa_config_fixed.h, include/pa_config_includes.h,
11507: include/pa_dictionary.h, include/pa_dir.h,
11508: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11509: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11510: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11511: include/pa_request_charsets.h, include/pa_request_info.h,
11512: include/pa_sapi.h, include/pa_socks.h,
11513: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11514: include/pa_stack.h, include/pa_string.h,
11515: include/pa_stylesheet_connection.h,
11516: include/pa_stylesheet_manager.h, include/pa_table.h,
11517: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11518: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11519: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11520: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11521: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11522: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11523: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11524: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11525: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11526: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11527: main/pa_sql_driver_manager.C, main/pa_string.C,
11528: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11529: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11530: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11531: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11532: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11533: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
11534: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
11535: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11536: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11537: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
11538: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
11539: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
11540: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11541: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
11542: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
11543: types/pa_vmemory.h, types/pa_vmethod_frame.C,
11544: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11545: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
11546: types/pa_vresponse.C, types/pa_vresponse.h,
11547: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11548: types/pa_vstateless_object.h, types/pa_vstatus.C,
11549: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11550: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11551: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11552: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11553: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
11554:
11555: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11556: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
11557: speedup consequent checks in vmethod_frame
11558:
11559: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11560: not cleared
11561:
11562: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
11563: params: 50 max (were 10)
11564:
11565: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
11566: params: 50 max (were 10)
11567:
11568: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11569: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
11570: pa_wcontext.h: + ^call[$void] param inside now is void (were:
11571: empty string) ! simplified (double) speedup consequent checks in
11572: vmethod_frame
11573:
11574: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
11575: optimized constants in expressions vstring->vdouble + optimized
11576: ^call(vdouble), no junction creation, no calls later
11577:
11578: 2005-08-08 paf
11579:
11580: * src/main/: compile.tab.C, compile.y, compile_tools.C,
11581: compile_tools.h: merged + optimized constants in expressions
11582: vstring->vdouble + optimized ^call(vdouble), no junction
11583: creation, no calls later
11584:
11585: * src/types/pa_vdouble.h: merged . double values without fractional
11586: part now default printed as %.0f instead of %g
11587:
11588: * src/types/pa_vdouble.h: . double values without fractional part
11589: now default printed as %.0f instead of %g
11590:
11591: * src/classes/hashfile.C: . merged ! second hashfile::open would
11592: cause an exception
11593:
11594: * src/classes/hashfile.C: ! second hashfile::open would cause an
11595: exception
11596:
11597: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
11598: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11599: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11600: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11601: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
11602: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11603: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11604: types/pa_vresponse.h, types/pa_vstateless_class.C,
11605: types/pa_vstateless_object.h, types/pa_vvoid.h,
11606: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11607: merged VJunction(new Junction) optimization from 3.1.4
11608:
11609: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
11610: types/pa_vstateless_class.C: + optimized new VJunction(new
11611: Junction(params)) to new VJunction(params), thousands of mallocs
11612: removed
11613:
11614: 2005-08-05 paf
11615:
11616: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
11617: types/pa_vdouble.h, types/pa_vmethod_frame.C,
11618: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
11619: creation, no calls later
11620:
11621: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11622: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11623: classes/hashfile.C, classes/image.C, classes/int.C,
11624: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11625: classes/response.C, classes/string.C, classes/table.C,
11626: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11627: include/pa_array.h, include/pa_cache_managers.h,
11628: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11629: include/pa_config_fixed.h, include/pa_config_includes.h,
11630: include/pa_dictionary.h, include/pa_dir.h,
11631: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11632: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11633: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11634: include/pa_request_charsets.h, include/pa_request_info.h,
11635: include/pa_sapi.h, include/pa_socks.h,
11636: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11637: include/pa_stack.h, include/pa_string.h,
11638: include/pa_stylesheet_connection.h,
11639: include/pa_stylesheet_manager.h, include/pa_table.h,
11640: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11641: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11642: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11643: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11644: lib/smtp/smtp.h, main/compile.C, main/compile.y,
11645: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11646: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11647: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11648: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11649: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
11650: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
11651: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11652: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11653: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11654: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11655: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11656: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11657: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11658: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11659: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11660: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11661: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11662: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
11663: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11664: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11665: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
11666: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11667: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11668: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11669: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11670: types/pa_vstateless_object.h, types/pa_vstatus.C,
11671: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11672: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11673: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11674: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11675: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
11676:
11677: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
11678: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
11679: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11680: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
11681: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11682: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
11683: optimized constants in expressions vstring->vdouble
11684:
11685: 2005-07-29 paf
11686:
11687: * src/types/pa_vclass.C: . shaped up error messages a bit
11688:
11689: * src/types/pa_vclass.C: + property getter can now be overridden
11690:
11691: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
11692: bug fix: static parent fields were not replaced in case
11693: $derived:field[put] + property setter can now be overridden
11694:
11695: 2005-07-28 paf
11696:
11697: * configure, configure.in, src/classes/classes.h,
11698: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
11699: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
11700: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
11701: src/classes/xnode.h, src/include/pa_hash.h,
11702: src/include/pa_version.h, src/main/execute.C,
1.116 moko 11703: src/types/Makefile.am, src/types/pa_method.h,
11704: src/types/pa_value.h, src/types/pa_vclass.C,
11705: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
11706: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
11707: src/types/pa_vcookie.h, src/types/pa_vhash.h,
11708: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
11709: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
11710: src/types/pa_vobject.C, src/types/pa_vobject.h,
11711: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
11712: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
11713: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
11714: src/types/pa_vstateless_class.h,
1.95 moko 11715: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
11716: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
11717: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
11718: dynamic_fields_join
11719:
11720: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
11721: classes/xnode.C, include/pa_hash.h, main/execute.C,
11722: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11723: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11724: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11725: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11726: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11727: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11728: types/pa_vresponse.h, types/pa_vstateless_object.h,
11729: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
11730: types/pa_wwrapper.h: ! restored put_element('replace' param), and
11731: restored its checks in vobject.put_element->static fields |
11732: dynamic properties
11733:
11734: 2005-07-27 paf
11735:
11736: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
11737: is some old code containing @set_name $name
11738:
11739: * src/types/pa_vobject.h: . fixed warning
11740:
11741: * configure, configure.in, src/include/pa_version.h,
1.116 moko 11742: src/types/Makefile.am: 3.2.0beta started
1.95 moko 11743:
11744: * src/: classes/xnode.C, include/pa_hash.h,
11745: types/pa_vstateless_class.C: ! new asserts were all false.
11746: regretfully reverted them all to checks
11747:
11748: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11749: classes/op.C, main/execute.C, types/pa_method.h,
11750: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11751: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11752: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11753: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11754: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11755: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11756: types/pa_vstateless_object.h, types/pa_vvoid.h,
11757: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11758: joined_dynamic_fields: removed unused param from put_method
11759: (returned to 3 params)
11760:
11761: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
11762: joined_dynamic_fields: dynamic get/set works with overriding
11763: props [alpha2]
11764:
11765: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
11766: works [alfa]
11767:
11768: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11769: classes/op.C, include/pa_hash.h, main/execute.C,
11770: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11771: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11772: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11773: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11774: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11775: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11776: types/pa_vresponse.h, types/pa_vstateless_class.C,
11777: types/pa_vstateless_object.h, types/pa_vvoid.h,
11778: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11779: joined_dynamic_fields: just compiled
11780:
11781: * src/: classes/date.C, classes/file.C, classes/hash.C,
11782: classes/hashfile.C, classes/image.C, classes/table.C,
11783: classes/xdoc.C, classes/xnode.h, main/execute.C,
11784: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
11785: types/pa_vstateless_class.h: joined_dynamic_fields: started
11786:
11787: * src/types/pa_vobject.C: . object setters [only started, does not
11788: work yet]
11789:
11790: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
11791: object setters [only started, does not work yet]
11792:
11793: 2005-07-26 paf
11794:
11795: * src/: include/pa_request.h, main/execute.C: . properties: set
11796: works [alpha2]. for classes. todo: for objects
11797:
11798: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
11799: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11800: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11801: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11802: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11803: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11804: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11805: types/pa_vstateless_object.h, types/pa_vvoid.h,
11806: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11807: properties: set works [alpha1]
11808:
11809: 2005-07-25 paf
11810:
11811: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
11812: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
11813: properties: started, get works [alpha1, other approach]
11814:
11815: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
11816: properties: started, get works [alpha2]
11817:
11818: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
11819: pa_vstateless_class.h: . properties: started, get works [alpha]
11820:
11821: 2005-07-15 paf
11822:
11823: * src/: classes/classes.h, classes/op.C, main/execute.C,
11824: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
11825: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11826: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11827: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11828: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
11829: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
11830: types/pa_vresponse.C, types/pa_vresponse.h,
11831: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11832: types/pa_vstateless_object.h, types/pa_vvoid.h,
11833: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
11834: types/pa_wwrapper.h, types/types.vcproj: + started property
11835: [getters work but think of changing them too to precaching]
11836:
11837: 2005-07-08 paf
11838:
11839: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
11840: gpf
11841:
11842: 2005-06-28 paf
11843:
11844: * src/: classes/file.C, main/untaint.C: ! string invariant violated
11845: in passing empty strings to file::exec/cgi environment
11846:
11847: 2005-06-06 paf
11848:
11849: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
11850: ^table:sql ^hash:sql now DO process $.bind option
11851:
11852: 2005-05-24 paf
11853:
11854: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
11855: $.limit] now work again [support was broken in 3.1.4]
11856:
11857: * src/: main/pa_string.C, classes/op.C: . steps toward removing
11858: ALL_INTERIOR_POINTERS
11859:
11860: 2005-05-12 paf
11861:
11862: * configure: 3.1.5beta
11863:
11864: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
11865:
11866: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
11867: $.limit] now work again [support was broken in 3.1.4]
11868:
11869: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
11870: line-width [was refusing to fill if line-width >1, thanks to
11871: Seras <seras@pinxit.lt> for repro case
11872:
11873: 2005-04-25 paf
11874:
11875: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
11876: correctly
11877:
11878: 2005-04-19 paf
11879:
11880: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
11881: in VString violating invariant!!
11882:
11883: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
11884: getenv("TZ")==null
11885:
11886: 2005-04-08 paf
11887:
11888: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
11889: bugfix: when there is no char in charset one byte produces 6
11890: (ÿ <<max). increased buffer size!
11891:
11892: 2005-03-23 paf
11893:
11894: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
11895: ^date.sql-string now takes TZ into account
11896:
11897: 2005-03-16 paf
11898:
11899: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
11900: gcc 3.4
11901:
11902: * src/types/pa_vhash.C: . warning about eof eol
11903:
11904: 2005-02-17 paf
11905:
11906: * operators.txt, src/classes/op.C: + operator ^sleep(double
11907: seconds)
11908:
11909: 2005-02-02 paf
11910:
11911: * src/classes/xnode.C: beauty: removed needless includes
11912:
11913: 2005-01-31 paf
11914:
11915: * src/types/pa_vmail.C: change: $.partX now always 1... change:
11916: $.partNoNumber now alias to $.part1
11917:
11918: * src/types/pa_vmail.C: change: incoming letter part contains
11919: "content-disposition" header with any value? now considering that
11920: part to be "file#" [for text/plain text/html were $.text#
11921: $.html#]
11922:
11923: * INSTALL: updatet to latest working versions available
11924:
11925: 2005-01-20 paf
11926:
11927: * configure.in, src/include/pa_version.h: version
11928:
11929: 2005-01-19 paf
11930:
1.116 moko 11931: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
11932: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
11933: couple warnings in parser3.C
1.95 moko 11934:
11935: 2004-12-23 paf
11936:
11937: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
11938:
11939: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
11940: dir to directory of script (when shbang used), not to directory
11941: of its interpreter
11942:
11943: * src/include/pa_version.h: compiled on win32...
11944:
11945: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
11946: we need more hspace
11947:
11948: * configure, configure.in, src/include/pa_version.h: configured
11949: host to pa_version. will be displayed everywhere
11950:
11951: * src/main/pa_request.C: new: @unhandled_exception can prevent
11952: exception from being logged by setting $exception.handled(1)
11953:
11954: * operators.txt, src/classes/file.C: change:
11955: ^file::sql{query}[[options]] options: $.name[file name]
11956: $.content-type[application/what]
11957:
11958: * src/: include/pa_common.h, main/pa_common.C,
11959: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
11960: new file
11961:
11962: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
11963: bugfix: table->hash now regards _default
11964:
11965: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
11966: created by accessing $name_of_method it acquired bad self=closest
11967: methodframe; instead of proper self (current class)
11968:
11969: * src/types/pa_vhashfile.C: bugfix: reading empty string from
11970: hashfile produced bad cord
11971:
11972: 2004-12-10 paf
11973:
11974: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
11975: subsequent failures though defined in .h
11976:
11977: * src/main/pa_common.C: comment on volatile
11978:
11979: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
11980: alarm function were not used since the beginning due to stupid
11981: error [setsigjmp were not checked in configure.in]
11982:
11983: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
11984: unix too
11985:
11986: * src/main/pa_common.C: http: exception status of send/recv errors
11987: change to most probable http.timeout
11988:
11989: * src/main/pa_common.C: win32: http connection $.timeout option now
11990: works [setsockopt on send/receive]
11991:
11992: 2004-12-08 paf
11993:
11994: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
11995: cstr-ed knowing mail charset, and untainting uri lang now knows
11996: proper charset
11997:
11998: 2004-11-24 paf
11999:
12000: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
12001:
12002: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
12003: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
12004:
12005: 2004-11-12 paf
12006:
12007: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
12008: [since 3.0.4]
12009:
12010: 2004-11-09 paf
12011:
12012: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
12013: writes basics to c:\parser3.log
12014:
12015: 2004-10-21 paf
12016:
12017: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
12018: tainted strings [were returning clean onces]
12019:
12020: 2004-10-15 paf
12021:
12022: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
12023: cycles(i=1; i=2), which was wrong, now does ONE
12024:
12025: 2004-10-12 paf
12026:
12027: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
12028:
12029: 2004-10-07 paf
12030:
12031: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
12032: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
12033: release asserts
12034:
12035: * src/: main/pa_string.C, include/pa_string.h: debugger help:
12036: String.dump() to stdout in detailed form [were String.v() in
12037: short form]
12038:
12039: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
12040: \t\r\n as @#| and truncates long char sequences less
12041:
12042: 2004-10-06 paf
12043:
12044: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
12045: win32 beauty: socket errors properly decoded
12046:
12047: 2004-10-05 paf
12048:
12049: * src/: include/pa_request.h, main/pa_request.C: bugfix:
12050: request::configure_user/admin done always, even if no
12051: file-to-process useful in @unhandled_exception [say, if they
12052: would want to mail by SMTP something]
12053:
12054: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
12055: now performed prior to file loading [and @auto executing] thus
12056: making $cookie:value available in @auto and in
12057: @unhandled_exception when IIS is configured to run interpreter
12058: even if no file exist
12059:
12060: 2004-09-20 paf
12061:
12062: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
12063: somewhere where it should have called xmlMalloc and it calls
12064: xmlFree when it should have not called it. inserted two
12065: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
12066: xmlFree just ignored. put away a testcase, maybe someday libxml
12067: author would fix all that. until that day: we have SLOW garbage
12068: collecting when many xml objects are alive hint: do
12069: ^memory:compact[] before xdoc::create
12070:
12071: 2004-09-17 paf
12072:
12073: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
12074: error from 3.0.8 version]
12075:
12076: 2004-09-14 paf
12077:
12078: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
12079: part bugfix: hashfile.foreach iterated only part if hashfile were
12080: modified inside
12081:
12082: 2004-09-13 paf
12083:
12084: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
12085: [were as octal]
12086:
12087: * src/types/pa_vhashfile.C: beauty: not reproduced
12088: $hashfile.key[$novalue] bug [reported by motorin], inserted
12089: safety-check
12090:
12091: * src/types/pa_vhashfile.C: change: empty keys now error in parser
12092: [not something obscure from sdbm lib]
12093:
12094: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
12095: = strerror now returnes something and we can properly report that
12096: to client
12097:
12098: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
12099: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
12100:
12101: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12102: [tainted as-is] this helps //[space][newline] to remain as-is and
12103: not be unnecessary optimized away [ruining javascript]
12104:
12105: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12106: [tainted as-is]
12107:
12108: * src/classes/mail.C: bugfix: typo error
12109:
12110: 2004-09-09 paf
12111:
12112: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
12113: separators bugfix: loads header with endings \r\n\r\n and \n\n
12114: (bloody yandex.server)
12115:
12116: 2004-09-06 paf
12117:
12118: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
12119: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
12120: encoded
12121:
12122: 2004-09-01 paf
12123:
12124: * src/types/pa_vmail.C: change: multipart/mixed changed to
12125: multipart/related outlook express have no problems showing
12126: unrelated attachments. todo: someday figure out a way of
12127: multipart/mixed multipart/related text/html
12128: image/xxx application/octet-stream << true attachments
12129:
12130: * src/types/pa_vmail.C: new:
12131: ^mail:send[$.file[$.content-disposition can be overriden new:
12132: empty mail header fields removed from letter
12133:
12134: * src/: classes/mail.C, include/pa_config_fixed.h,
12135: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
12136: ^mail:send[ $.file[ $.any[header]
12137:
12138: 2004-08-30 paf
12139:
12140: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
12141: warnings
12142:
12143: * src/main/pa_common.C: beauty: do not bother with charset
12144: detection when ^file::load[binary
12145:
12146: 2004-08-27 paf
12147:
12148: * src/main/pa_common.C: hack: for yandex.server http server
12149:
12150: 2004-08-18 paf
12151:
12152: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
12153: possibly-chunked response
12154:
12155: 2004-08-17 paf
12156:
12157: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12158: $f.content-type now = that of http response
12159:
12160: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12161: $f.content-type now = that of http response
12162:
12163: 2004-07-30 paf
12164:
12165: * src/: include/pa_request.h, main/pa_request.C,
12166: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
12167: win32: system&parser exceptions in release mode reported properly
12168: parser exception in exception handler WERE mistakenly reported as
12169: system exception, without details [in apache & isapi] +some
12170: beauty in exception text
12171:
12172: * src/: include/pa_exception.h, main/pa_request.C,
12173: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
12174: release mode reported properly parser exception in exception
12175: handler WERE mistakenly reported as system exception, without
12176: details
12177:
12178: * src/main/execute.C: beauty: simplified system exception handling
12179:
12180: 2004-07-29 paf
12181:
12182: * src/classes/table.C: bugfix:
12183: ^table.save[export.csv;$.separator[^;]] now works fine [separator
12184: were ignored, and \t used unconditionally]
12185:
12186: * src/types/Makefile.am: added vhash.c
12187:
12188: 2004-07-28 paf
12189:
12190: * src/: classes/date.C, classes/image.C, classes/math.C,
12191: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
12192: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
12193: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
12194: failed on russian letters
12195:
12196: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
12197: bugfix: isspace((unsigned char)c) everywhere. failed on russian
12198: letters
12199:
12200: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
12201: as 'currentDirectory' parameter to CreateProcess
12202:
12203: 2004-07-27 paf
12204:
12205: * src/targets/cgi/parser3.vcproj: beauty: win32:
12206: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
12207: from release somewhere [to help searching for unhandled system
12208: exceptions]
12209:
12210: * src/types/pa_vdate.h: check: for invalid datetime after temporary
12211: TZ shift
12212:
12213: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
12214: but also in ctor
12215:
12216: 2004-07-26 paf
12217:
12218: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
12219: src/main/pa_request.C, src/types/pa_vfile.h,
12220: src/types/pa_vhash.C, src/types/pa_vhash.h,
12221: src/types/types.vcproj: new: $response:body/download[
12222: $.file[name on disk] $.name[of file for user]
12223: $.mdate[date of last-modified. default from directory] ]
12224:
12225: * src/classes/file.C: moving file:send somewhere else..
12226:
12227: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
12228: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
12229: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
12230: $response:download[ $.filename[filename] $.option[] ,, ]
12231:
12232: * src/classes/file.C: beauty: invalid mode thoroughly reported
12233:
12234: 2004-07-21 paf
12235:
12236: * src/types/pa_vmail.C: bugfix: too long header values now splitted
12237: to several lines
12238:
12239: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
12240:
12241: note: ms outlook[!express] shows only first 255 characters of
12242: subject
12243:
12244: 2004-07-15 paf
12245:
12246: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
12247: off]
12248:
12249: 2004-07-14 paf
12250:
12251: * src/classes/table.C: bugfix: $.bind values now got untainted
12252: according to lang [were: as-is]
12253:
12254: 2004-07-07 paf
12255:
12256: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
12257: checked that
12258:
12259: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
12260: now untainted according to their languages. were: as-is.
12261: EVERYWHERE
12262:
12263: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
12264: environment string now untainted according to their languages.
12265: were: as-is. EVERYWHERE
12266:
12267: * src/main/pa_exec.C: bufix: on unix environment string now
12268: untainted according to their languages. were: as-is. on win32:
12269: ok
12270:
12271: * parser3.vssscc: ...would not go unnoticed
12272:
12273: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
12274: fails. in case on input appears nonutf, those bytes will be
12275: printed in %HH form. that can be easily decoded/recovered.
12276:
12277: this form is quite noticable, and hopefully would not go noticed
12278:
12279: 2004-07-06 paf
12280:
12281: * src/main/pa_exec.C: bufix: on unix environment string now
12282: untainted according to their languages. were: as-is. on win32:
12283: ok
12284:
12285: 2004-07-01 paf
12286:
12287: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
12288: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
12289: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12290: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
12291: main/main.vcproj, targets/cgi/parser3.vcproj,
12292: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
12293: option: global optimization ON
12294:
12295: * src/main/untaint.C: workaround kinda bug in libxml: life requires
12296: to do xdoc::create{invalid chars} standard disables chars less
12297: then \x20, except tab, cr, lf.
12298:
12299: changed tainting so that those become '!'
12300:
12301: 2004-06-25 paf
12302:
12303: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12304: int on odd address [prev bugfix failed due to superwize
12305: optimizer, which turned memcpy into same 'ld' asm command]
12306:
12307: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12308: int on odd address
12309:
12310: 2004-06-22 paf
12311:
12312: * src/sql/pa_sql_driver.h: note: about possible optimization
12313:
12314: * operators.txt, src/classes/hash.C, src/classes/memory.C,
12315: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12316: src/include/pa_config_includes.h: new: ^void:sql{call
12317: paf(:a)}[ $.bind[ $.a[2]
12318: ] ] output variables work. todo: check in out
12319: variables
12320:
12321: 2004-06-18 paf
12322:
12323: * src/: classes/file.C, classes/hash.C, classes/string.C,
12324: classes/table.C, classes/void.C, include/pa_globals.h,
12325: include/pa_sql_connection.h, main/compile.tab.C,
12326: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
12327: $.bind[ $.a[2] ]
12328: ] input variables work. todo:output
12329:
12330: * src/targets/cgi/parser3.C: bugfix: iis specific
12331: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
12332: /_bug.html?404;http://hpsv/test/
12333: --------------------------------------------------------------------------------
12334: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
12335: --------------------------------------------------------------------------------
12336: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
12337:
12338: 2004-06-16 paf
12339:
12340: * src/targets/cgi/parser3.C: new: iis specific
12341: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
12342: $request:query
12343: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
12344: $form:fields IIS-STATUS="404"
12345: IIS-DOCUMENT="http://server/_bug.html" f="v"
12346:
12347: todo: isapi too
12348:
12349: 2004-05-26 paf
12350:
12351: * src/include/pa_version.h: 3.1.3
12352:
12353: * operators.txt: beauty: removed outdated level 'table'
12354:
12355: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
12356:
12357: * src/main/pa_string.C: beauty: removed 3 warnings
12358:
12359: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
12360: classes/op.C: beauty: removed outdated level 'table'
12361:
12362: 2004-05-25 paf
12363:
12364: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
12365: implementation. mistery: how anything worked
12366:
12367: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
12368: changed, it is now safe to use url if pointers to it are stored
12369: to gc mem
12370:
12371: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
12372: unknown errors reported and not cause SIGSEGV now
12373:
12374: 2004-05-24 paf
12375:
12376: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12377: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
12378: less memory: CORD_chars_block originally intended to ... it was
12379: good that CORD_chars_block were not used: it consumes more memory
12380: [and, might be slow too] undoing that. [and removed that func so
12381: that it would not confuse parser developer in future]
12382:
12383: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
12384: less memory: CORD_chars_block originally intended to
12385: speedup/reduce mem usage were forgotten, and were used stupid
12386: CORD_chars
12387:
12388: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
12389:
12390: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
12391: BIGENDIAN processors space-conserving mech failed, causing
12392: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
12393: (1|2|3));
12394:
12395: 2004-05-14 paf
12396:
12397: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
12398: bugfix: void now has vfile value, and $response:body[] works OK
12399:
12400: 2004-05-12 paf
12401:
12402: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
12403: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
12404: sources to use is_defined() {return as_bool();} along VBool
12405:
12406: 2004-05-11 paf
12407:
12408: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
12409: referencing to local objects
12410:
12411: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
12412: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
12413: left intact
12414:
12415: 2004-04-15 paf
12416:
12417: * src/classes/date.C: merged: beauty: unused var removed
12418:
12419: * src/classes/date.C: beauty: unused var removed
12420:
12421: * src/include/: pa_exec.h: bugfix: interface without pointer
12422: provoked bug
12423:
12424: 2004-04-09 paf
12425:
12426: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
12427:
12428: * src/types/pa_vform.C: bugfix: form:imap were incorrect
12429:
12430: 2004-04-08 paf
12431:
12432: * src/classes/date.C: new: ^date::create[y-m-d
12433: h-M-s>>.milliseconds<<] now allowed, ignored so far
12434:
12435: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
12436:
12437: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
12438: to consult default catalog [usually, that file belongs to other
12439: user/group]
12440:
12441: 2004-04-06 paf
12442:
12443: * src/main/pa_common.C: beauty: gcc warning removed
12444:
12445: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
12446: accept that trick, trying other
12447:
12448: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
12449: explicit result problem
12450:
12451: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
12452: explicit result problem
12453:
12454: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
12455: explicit result problem
12456:
12457: * operators.txt, src/classes/string.C: new: ^string.append[string]
12458:
12459: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
12460: main/execute.C: attempt_check_call_in_explicit_result_mode:
12461: failed
12462:
12463: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12464: http://i.p.a.ddress gethostbyaddr added [on some platforms
12465: gethostbyname failed with such 'domains'] now checked properly,
12466: were: needless reverse/forward dns lookup
12467:
12468: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12469: http://i.p.a.ddress gethostbyaddr added [on some platforms
12470: gethostbyname failed with such 'domains'] now checked properly,
12471: were: needless reverse/forward dns lookup
12472:
12473: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
12474: @method[][result] means "no string output here" moved to lexical
12475: level [on grammar level it were too difficult]
12476:
12477: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
12478: src/main/compile.y, src/main/compile_tools.h,
12479: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
12480: @method[][result] means "no string output here", implemented part
12481: of that idea: compiler throws away string literal generation
12482: code. and barks nonwhitespace chars
12483:
12484: * operators.txt: truth: removed comment about $ORIGIN
12485:
12486: 2004-04-05 paf
12487:
12488: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
12489: src/include/pa_version.h, src/main/pa_common.C,
12490: src/targets/isapi/parser3isapi.C: merged with 3.1.3
12491:
12492: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
12493: Konstantin Tomashevitch [mailto:konst@design.ru]
12494:
12495: * src/doc/html2chm.cmd: beauty: no need in bg here
12496:
12497: * src/doc/sources2html.cmd: beauty: same window, in bg it
12498: interfered with FAR console
12499:
12500: * configure, configure.in: 3.1.3
12501:
12502: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
12503:
12504: * src/main/pa_common.C: removed warning
12505:
12506: * src/include/pa_version.h: 3.1.3
12507:
12508: 2004-04-02 paf
12509:
12510: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
12511:
12512: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
12513: allows to specify where to put parser log file
12514:
12515: 2004-04-01 paf
12516:
12517: * src/classes/table.C: bugfix: bugfix: table::load last line
12518: without tab and enter were ignored
12519:
12520: * src/: include/pa_cache_managers.h, include/pa_globals.h,
12521: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
12522: main/pa_socks.C, targets/cgi/parser3.C,
12523: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
12524: bugfix: sql connections now are disconnected
12525:
12526: 2004-03-30 paf
12527:
12528: * src/classes/table.C: bugfix: table::load last line without tab
12529: and enter were ignored
12530:
12531: * src/classes/table.C: bufix: if last table lines were commented,
12532: gpfed
12533:
12534: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
12535: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
12536: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
12537: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
12538: doc/methoded.dox, doc/object.dox, doc/string.dox,
12539: doc/targets.dox, doc/value.dox, include/pa_version.h,
12540: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
12541: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
12542: bugfixes from 3.1.2, changed version to 3.1.3beta
12543:
12544: 2004-03-29 paf
12545:
12546: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
12547: causes gpf
12548:
12549: * src/doc/: ClassExample1.dox, ClassExample2.dox,
12550: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
12551: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
12552: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
12553: value.dox: translated to english
12554:
12555: 2004-03-25 paf
12556:
12557: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
12558: parser3project dependency removed
12559:
12560: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
12561: bugfix: refused to compile without xml
12562:
12563: * src/types/pa_vform.C: beauty: removed warning
12564:
12565: * src/classes/classes.vcproj: merged bugfix: now all compiles in
12566: any folder [removed last ;) folder dependency]
12567:
12568: * src/classes/classes.vcproj: bugfix: now all compiles in any
12569: folder [removed last ;) folder dependency]
12570:
12571: * src/include/pa_version.h: release
12572:
12573: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
12574:
12575: * src/classes/table.C: beauty: comment& more meaningful error
12576: message
12577:
12578: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
12579: $.hash[$.column_value1(true) ... ] [were producing some strang
12580: thing]
12581:
12582: 2004-03-23 paf
12583:
12584: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
12585: and http status line parsing checked number of columns in table
12586: [user reported an assert]
12587:
12588: * operators.txt: example: on hashfile
12589:
12590: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
12591: bugfix: junction reattach now actually reattaches a junction to
12592: new wcontext [were only assigning it to junction, which caused
12593: junction tracking to loose junction, and it's context were not
12594: killed, and it tried to process in invalid context, gpf]
12595:
12596: * src/targets/cgi/parser3.C: debug helper added
12597:
12598: 2004-03-19 paf
12599:
12600: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
12601: "type(type)" in braces
12602:
12603: 2004-03-10 paf
12604:
12605: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
12606: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12607: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
12608: solution to search-in-namespaces problem:
12609: $xdoc.search-namespaces.x[http://pif.design.ru/]
12610: $nodes[^xdoc.select[//x:second]]
12611:
12612: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
12613: expression][[NAMESPACES HASH]] allows to search for info in
12614: namespaces
12615:
12616: $nodes[^xdoc.select[//x:second][
12617: $.x[http://pif.design.ru/] ]]
12618:
12619: 2004-03-09 paf
12620:
12621: * operators.txt, src/main/pa_common.C: new:
12622: ^file::load[...][options] $.form[
12623: !$.field1[string]
12624: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
12625: ] !$.body[string]
12626:
12627: GET ?here notGET(POST, HEAD, others) in content-type:
12628: application/x-www-form-urlencoded
12629:
12630: todo: upload files ability
12631:
12632: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
12633: properly, done
12634:
12635: 2004-03-05 paf
12636:
12637: * operators.txt, src/main/pa_common.C: new: file::load[;http://
12638: GET/POST $.form[$.fields started, not tested yet
12639: todo:$.field[table] for multiple values
12640:
12641: * operators.txt: new: http:// options $.user $.password basic
12642: authorization
12643:
12644: * src/main/pa_common.C: beauty: link to rtf added
12645:
12646: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
12647: new: http:// options $.user $.password basic authorization
12648:
12649: * src/main/pa_common.C: beauty: removed needless vars
12650:
12651: * operators.txt: new: pgsql option [like that recently added to
12652: oracle driver] ClientCharset=parser-charset <<
12653: charset in which parser thinks client works
12654:
12655: * operators.txt: new: odbc option [like that recently added to
12656: oracle driver] ClientCharset=parser-charset <<
12657: charset in which parser thinks client works
12658:
12659: * src/sql/pa_sql_driver.h: beauty: important warning added
12660:
12661: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
12662: char!
12663:
12664: * etc/parser3.charsets/windows-1251.cfg: typo
12665:
12666: 2004-03-04 paf
12667:
12668: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
12669: cached, sql transcoding now goes faster
12670:
12671: * operators.txt: new: mysql option [like that recently added to
12672: oracle driver] ClientCharset=parser-charset <<
12673: charset in which parser thinks client works
12674:
12675: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
12676: typo error
12677:
12678: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
12679: chars commented
12680:
12681: 2004-03-03 paf
12682:
12683: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
12684: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
12685:
12686: 2004-03-02 paf
12687:
12688: * operators.txt: new[update typo]: !^void.left(n)
12689: nothing !^void.right(n) nothing !^void.mid(p[;n])
12690: nothing
12691:
12692: * operators.txt, src/classes/void.C: new: !^void.left(n)
12693: nothing !^void.right(n) nothing !^void.pos(p[;n])
12694: nothing
12695:
12696: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
12697: ^file::sql[[name_to_become_$.name]]{} query result must be one
12698: row with columns: first: data second: file name third:
12699: content-type
12700:
12701: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
12702: ^connect gets properly escaped string, which can be passed to
12703: request now this for mysql only. it's up to parser sql driver to
12704: fix zeros properly
12705:
12706: * INSTALL: note: added on building apache with this option:
12707: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
12708:
12709: 2004-03-01 paf
12710:
12711: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
12712: extension memory:compact befor processingrequest
12713:
12714: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
12715: call sole column of result
12716:
12717: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
12718: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
12719: pixel color
12720:
12721: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
12722: beauty: image -- less checks [were ugly impl]
12723:
12724: * src/classes/string.C: bugfix: ^string.left/right/mid with
12725: negative values now considered bad
12726:
12727: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
12728:
12729: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
12730: options now have unified defaults [after transform
12731: indent/omit-xml-declaration/standalone 'default' erroreously
12732: meant 'true']
12733:
12734: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
12735: added [on some platforms gethostbyname failed with such
12736: 'domains']
12737:
12738: * src/include/pa_config_auto.h.in: no select check, no define
12739:
12740: * src/classes/string.C: feature: ^string.trim both parameters may
12741: be empty-strings, meaning kind=both chars=whitespaces
12742:
12743: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
12744: exist
12745:
12746: * src/classes/string.C: check: trim 'chars' must not be empty,
12747: exception if it is
12748:
12749: * src/classes/string.C: changed: ^string.trim [] << both,
12750: whitespaces [start|both|end] << kind, whitespaces
12751: [start|both|end;chars] full
12752:
12753: 2004-02-27 paf
12754:
12755: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
12756: method: ^string.trim[start|both|end[;chars]] default
12757: 'chars' -- whitespace chars finished
12758:
12759: * operators.txt, src/classes/string.C, src/include/pa_string.h,
12760: src/main/pa_string.C: new method:
12761: ^string.trim[start|both|end[;chars]] default 'chars' --
12762: whitespace chars started, only start works
12763:
12764: * src/main/compile.C: bugfix: line numbers after
12765: ^process{}[$.line(-10]] can be negative, allowed to print they as
12766: signed
12767:
12768: * src/main/untaint.C: speed: there's no \n chars in output
12769: [normally], so no need to optimize them they could be retrived
12770: from databases, though. but 1. should be replaced 2. if not
12771: optimized, no harm done
12772:
12773: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
12774: ^file::exec/cgi could return invalid status & zombie child can
12775: remain for short period until process exists [very bad in
12776: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
12777:
12778: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
12779: malicious SMTP server to attack as by returning too long status
12780: responses http://i2/tasks/edit/?id=4629448401140924947
12781:
12782: 2004-02-26 paf
12783:
12784: * operators.txt: feature: ^process...{CODE}[now has options] which
12785: are $.main[to what to rename @main] $.file[file,
12786: from which (user says) goes that CODE] $.lineno(line
12787: number in that file, where CODE starts. may be negative)
12788:
12789: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12790: src/main/compile.C, src/main/compile_tools.h,
12791: src/main/pa_request.C: feature: ^process...{CODE}[now has
12792: options] which are $.main[to what to rename @main]
12793: $.file[file, from which (user says) goes that CODE]
12794: $.lineno(line number in that file, where CODE starts. may be
12795: negative)
12796:
12797: 2004-02-25 paf
12798:
1.116 moko 12799: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
12800: old @charsetsdir@ recently erased from configure.in]
1.95 moko 12801:
12802: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
12803: produces hash of column=>1
12804:
12805: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
12806: with incomplete errno constants set
12807:
12808: 2004-02-24 paf
12809:
12810: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
12811: "man select"
12812:
12813: * src/main/pa_os.C: beauty: <0 better then ==-1
12814:
12815: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
12816:
12817: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
12818:
1.116 moko 12819: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 12820:
12821: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
12822: unix: steps to work on unix [extracted 'to']
12823:
12824: * src/classes/mail.C: smtp on unix: steps to work on unix
12825:
12826: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
12827:
1.116 moko 12828: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
12829: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
12830: unix [testing on solaris]
1.95 moko 12831:
12832: 2004-02-20 paf
12833:
12834: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
12835: pointing that out
12836:
12837: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
12838: fixed again [same solution, mistanenly removed one line]
12839:
12840: 2004-02-19 paf
12841:
12842: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
12843: date::create from bad datetime in spring daylightsaving hole now
12844: OK for all platforms [on some platforms it failed]
12845:
12846: * src/classes/: date.C, image.C: beauty: date::create[bad date time
12847: in daylightsaving hole] now throws error
12848:
12849: * src/classes/date.C: comment: mistake fixed
12850:
12851: 2004-02-18 paf
12852:
12853: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
12854: now renderes in $request:charset, but in header puts
12855: $response:charset todo: make that default only so that coder
12856: could override that
12857:
12858: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
12859: turns off omit-xml-declaration
12860:
12861: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
12862: /.xsl for sample
12863:
12864: 2004-02-17 paf
12865:
12866: * src/classes/xdoc.C: beauty: needless helper class removed
12867:
12868: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
12869: copied extra time
12870:
12871: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
12872: part of libxml
12873:
12874: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
12875: libxml to do the work] <xsl:output method="html"
12876: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
12877: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
12878: />
12879:
12880: * src/classes/xdoc.C: beauty: no <meta ... charset generated
12881:
12882: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
12883: caused assertion
12884:
12885: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
12886: could hang. now such add does nothing, sub clears $hash
12887:
12888: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
12889: not made quoted-printable
12890:
12891: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
12892: string invariant
12893:
12894: 2004-02-16 paf
12895:
12896: * src/main/pa_globals.C: bugfix: xml errors copy from library now
12897: cleared [were not cleared properly]
12898:
12899: 2004-02-13 paf
12900:
1.116 moko 12901: * src/include/pa_version.h: prerelease
1.95 moko 12902:
12903: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
12904: used, introducing dependencies timestamp check
12905:
12906: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12907: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
12908: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
12909: .xsl.stamp now not used, introducing dependencies timestamp check
12910:
1.150 moko 12911: * configure.in: auto.p: @conf made relative
1.95 moko 12912:
12913: 2004-02-12 paf
12914:
12915: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
12916: ruined empty <input type=file> submits. parser thought there were
12917: nameless empty file and $form:field got value of type 'file'
12918:
12919: * INSTALL: --without-threads
12920:
12921: * src/include/pa_sapi.h: 2004
12922:
12923: 2004-02-11 paf
12924:
12925: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12926: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12927: classes/hashfile.C, classes/image.C, classes/int.C,
12928: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12929: classes/response.C, classes/string.C, classes/table.C,
12930: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12931: include/pa_array.h, include/pa_cache_managers.h,
12932: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12933: include/pa_config_fixed.h, include/pa_config_includes.h,
12934: include/pa_dictionary.h, include/pa_dir.h,
12935: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12936: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12937: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12938: include/pa_request_charsets.h, include/pa_request_info.h,
12939: include/pa_socks.h, include/pa_sql_connection.h,
12940: include/pa_sql_driver_manager.h, include/pa_stack.h,
12941: include/pa_string.h, include/pa_stylesheet_connection.h,
12942: include/pa_stylesheet_manager.h, include/pa_table.h,
12943: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12944: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12945: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12946: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12947: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
12948: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
12949: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12950: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
12951: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
12952: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
12953: main/pa_sql_driver_manager.C, main/pa_string.C,
12954: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
12955: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
12956: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
12957: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12958: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
12959: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
12960: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12961: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
12962: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
12963: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
12964: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12965: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
12966: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
12967: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
12968: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12969: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12970: types/pa_vresponse.h, types/pa_vstateless_class.C,
12971: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
12972: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
12973: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
12974: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12975: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12976: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
12977:
12978: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
12979: debug version of gc.dll
12980:
12981: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12982: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12983: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
12984: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
12985: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
12986: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
12987: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
12988: processes
12989:
12990: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
12991: main/pa_globals.C, targets/cgi/parser3.vcproj,
12992: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
12993: changes to reflect libxml xsl new folders
12994:
12995: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12996: lib/smtp/smtp.vcproj, main/main.vcproj,
12997: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
12998: to reflect libxml xsl new folders
12999:
13000: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13001: lib/smtp/smtp.vcproj, main/main.vcproj,
13002: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
13003: types/types.vcproj: started changes to reflect libxml xsl new
13004: folders
13005:
13006: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
13007: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
13008: src/main/compile.tab.C, src/main/main.vcproj,
13009: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
13010: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13011: started changes to reflect libxml xsl new folders
13012:
13013: 2004-02-10 paf
13014:
13015: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
13016: compile. recommened latest libxml up to date
13017:
13018: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
13019: pattern compilation errors", on which spent 4 hours worktime. use
13020: versions higher than that. recommended now latest up to date
13021:
13022: 2004-02-06 paf
13023:
13024: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
13025: beauty: unified destructing style
13026:
13027: * src/main/untaint.C: beauty: removed old def/ifdef
13028:
13029: * src/main/untaint.C: beauty: coredump @unknown untaint language
13030: now
13031:
13032: 2004-02-03 paf
13033:
13034: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
13035: targets/isapi/parser3isapi.C, types/pa_value.C,
13036: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
13037: then %ld/%lu
13038:
13039: * src/main/pa_common.C: typo: %l -> %u
13040:
13041: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
13042: in attributes or documents-results of transform now not xx;
13043:
13044: * src/classes/xnode.C: memleaks found: not fixed yet. todo
13045:
13046: * src/main/pa_charset.C: bugfix: forgot to undo some
13047:
13048: * src/main/pa_charset.C: beauty: uncomment
13049: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
13050: libraries
13051:
13052: 2004-02-02 paf
13053:
13054: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
13055: $cookie:example[ $.value[value] $.path[/there/] ]
13056:
13057: $cookie:example[ $.value[] $.expires[session]
13058: $.path[/there/] $.domain[test.com] ]
13059:
13060: * src/types/pa_vform.C: bugfix: empty values with
13061: enctype=multipart/form-data now produce entries in $form:tables
13062: <form method=post enctype=multipart/form-data> <input type=hidden
13063: name=a> <input type=hidden name=b>
13064:
13065: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
13066: <hr> <pre>$request:body
13067:
13068: 2004-01-30 paf
13069:
13070: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
13071: or documents-results of transform now not xx;
13072:
13073: * src/classes/date.C: bugfix: ^date::create[invalid fields now
13074: produce exception.
13075:
13076: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
13077: bugfix: ^date::create[invalid fields now produce exception.
13078:
13079: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
13080: year] now produces exception. todo: check other fields
13081:
13082: 2004-01-29 paf
13083:
13084: * src/include/pa_memory.h: typo error
13085:
13086: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
13087: more byte then specified, then zeroed it << useless and
13088: potentially harmful(could gpf)
13089:
13090: 2004-01-22 paf
13091:
13092: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
13093:
13094: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
13095: optimization
13096:
13097: * src/main/untaint.C: bugfix: whitespace now optimized properly
13098: [were bug: ^taint[1 & 2]="1 &2"
13099:
13100: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
13101: errors
13102:
13103: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
13104: overflow
13105:
13106: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
13107: error-reporting code * in parser-error reporting code [when no
13108: @unhandled_exception defined]
13109:
13110: fixed in one place: my *snprintf override
13111:
13112: 2004-01-13 paf
13113:
13114: * operators.txt: typo erro
13115:
13116: 2003-12-25 paf
13117:
13118: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
13119: garbled [pieces after zero bytes were removed]
13120:
13121: 2003-12-22 paf
13122:
1.116 moko 13123: * src/include/Makefile.am: bugfix: removed from dist:
13124: src/include/pa_config_auto.h which were configured for
1.95 moko 13125: make-dist-platform and badly updated proper config file in target
13126: [when .tar used for updating existing source tree]
13127:
13128: * ChangeLog, operators.txt, src/classes/op.C,
13129: src/include/pa_sql_connection.h,
13130: src/include/pa_sql_driver_manager.h,
13131: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
13132: feature: sql introducing ability to transcode charsets
13133:
13134: 2003-12-19 paf
13135:
13136: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
13137: error message
13138:
13139: * src/main/pa_charset.C: bugfix: memory for charsethandler
13140: structure for libxml now allocated properly
13141:
13142: 2003-12-17 paf
13143:
13144: * src/types/pa_vfile.C: beauty: removed outdated cast
13145:
13146: * src/main/pa_common.C: bugfix: empty http response caused gpf
13147:
13148: * src/include/pa_string.h: bugfix: removed too strong a assert
13149:
13150: * src/main/pa_globals.C: bugfix: removed false warning [warning:
13151: unreported xmlGenericErrors]
13152:
13153: 2003-12-15 paf
13154:
13155: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
13156: works}
13157:
13158: 2003-12-11 paf
13159:
13160: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
13161: id
13162: !$status:tid thread id
13163:
13164: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
13165: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
13166: bugfix(solaris): removed dependency on object initialization
13167: order [one more place]
13168:
13169: * src/: classes/file.C, classes/mail.C, classes/op.C,
13170: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
13171: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
13172: understand that
13173:
13174: * src/: classes/file.C, classes/mail.C, classes/op.C,
13175: classes/xdoc.C, include/pa_cache_managers.h,
13176: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13177: include/pa_stylesheet_manager.h, main/pa_request.C,
13178: main/pa_stylesheet_manager.C, types/pa_vimage.C,
13179: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
13180: ctor call [relying on implicit String::Body(cstr) call]
13181:
13182: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
13183: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
13184: object initialization order [two places]
13185:
13186: 2003-12-10 paf
13187:
13188: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
13189: << time now ok
13190:
13191: * operators.txt, src/main/pa_sql_driver_manager.C,
13192: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
13193: operational
13194:
13195: * ChangeLog, operators.txt, src/classes/xdoc.C,
13196: src/include/pa_charset.h, src/include/pa_sql_connection.h,
13197: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
13198: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
13199: back operational
13200:
13201: 2003-12-02 paf
13202:
13203: * src/types/pa_vmail.C: bugfix:
13204: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
13205: as-is forced]
13206:
13207: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
13208: exceptions out of libxml callbacks: reimplemented error handling
13209: of http://localhost, parser://method and safemode check callbacks
13210:
13211: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
13212: [merged from HEAD]
13213:
13214: * src/classes/image.C: nothing: comment removed
13215:
13216: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
13217: addresses to int
13218:
13219: 2003-12-01 paf
13220:
13221: * src/main/pa_xml_io.C: bugfix: typo
13222:
13223: * src/main/pa_globals.C: bugfix: win32: compile prob
13224:
13225: * src/classes/xdoc.C: bugfix: typo
13226:
13227: * src/main/pa_xml_io.C: todo: safe mode check not to throw
13228: exception
13229:
13230: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
13231:
13232: 2003-11-28 paf
13233:
13234: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
13235: all xml documents read
13236:
13237: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
13238:
13239: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13240: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
13241: replaced original open mech of xdoc::create & co to use libxml
13242: open, so that this would work for root document todo: safe mode
13243: checks to libxml: ideally to some 1 point
13244:
13245: * src/main/pa_xml_io.C: comment
13246:
13247: * operators.txt, src/main/pa_xml_io.C: leading / in
13248: http://parser[abscent params]
13249:
13250: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
13251: works. todo: maybe replace original open mech of xdoc::create &
13252: co to use libxml open, so that this would work for root document
13253:
13254: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
13255: "parser://method/params/here"> <test> &test^; </test> }]
13256:
13257: ^taint[^xdoc.string[]]
13258:
13259: @method[param] <!ENTITY test
13260: "test-entity-value+$form:user+$param!">
13261:
13262: 2003-11-27 paf
13263:
13264: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
13265:
13266: * src/classes/date.C: bugfix: typo error
13267:
13268: 2003-11-26 paf
13269:
13270: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
13271: src/main/Makefile.am, src/main/main.vcproj,
13272: src/main/pa_globals.C, src/main/pa_request.C,
13273: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
13274: xml errors to hash<thread_id,error> reorganization: xml io moved
13275: to pa_xml_io.C/h
13276:
13277: * src/types/pa_value.h: warnings: --
13278:
13279: 2003-11-25 paf
13280:
13281: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
13282: whatever)
13283:
13284: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
13285: a, (c?x:y, z)
13286:
13287: * src/main/untaint.C: bugfix: consequences of not reading this
13288: comment: CORD_pos_chars_left /* Number of characters in cache.
13289: <= 0 ==> none */
13290:
13291: * src/include/pa_array.h: removed needless checks
13292:
13293: 2003-11-24 paf
13294:
13295: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
13296: removed limit: now $form:xxx can be accessed anytime, even in
13297: @auto/conf [and request/response:charset still can be changed
13298: anytime]
13299:
13300: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
13301: now not transcodes response body
13302:
13303: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
13304: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
13305: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
13306: $xdoc.firstChild.firstChild.nodeValue[different]
13307: ^taint[^xdoc.string[]]
13308:
13309: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
13310: workaround: static Hash::allocates -> static Hash_allocates
13311:
13312: 2003-11-21 paf
13313:
1.116 moko 13314: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
13315: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
13316: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 13317:
13318: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
13319:
13320: * src/classes/mail.C: bugfix: typo
13321:
13322: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 13323: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
13324: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
13325: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
13326: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 13327: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
13328:
13329: * src/main/pa_exec.C: bug in safe mode
13330:
13331: * src/include/Makefile.am: pa_xml_exception.h
13332:
13333: * src/targets/isapi/parser3isapi.C: more warnings --
13334:
13335: 2003-11-20 paf
13336:
13337: * src/: classes/math.C, classes/op.C, classes/string.C,
13338: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
13339: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
13340: --
13341:
13342: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
13343: more warnings --
13344:
13345: * src/classes/xdoc.C: more warnings --
13346:
13347: * src/classes/: date.C, image.C, xdoc.C: more warnings --
13348:
13349: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
13350: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
13351:
13352: * src/: classes/date.C, classes/file.C, classes/hash.C,
13353: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
13354: classes/table.C, include/pa_cache_managers.h,
13355: include/pa_stylesheet_connection.h, main/pa_request.C,
13356: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
13357: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
13358: --
13359:
13360: * src/main/: execute.C, pa_request.C: old forgotten todo: when
13361: can't report problem (undefined @unhandled_exception) problem
13362: source string were not reported
13363:
13364: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13365: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13366: classes/hashfile.C, classes/image.C, classes/int.C,
13367: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13368: classes/response.C, classes/string.C, classes/table.C,
13369: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13370: include/pa_array.h, include/pa_cache_managers.h,
13371: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13372: include/pa_config_fixed.h, include/pa_dictionary.h,
13373: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
13374: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
13375: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
13376: include/pa_request.h, include/pa_request_charsets.h,
13377: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
13378: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13379: include/pa_stack.h, include/pa_string.h,
13380: include/pa_stylesheet_connection.h,
13381: include/pa_stylesheet_manager.h, include/pa_table.h,
13382: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13383: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
13384: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
13385: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13386: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
13387: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
13388: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
13389: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
13390: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
13391: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
13392: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
13393: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13394: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
13395: targets/isapi/parser3isapi.C, types/pa_junction.h,
13396: types/pa_method.h, types/pa_value.C, types/pa_value.h,
13397: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
13398: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
13399: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13400: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13401: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13402: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
13403: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13404: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13405: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13406: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13407: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13408: types/pa_vresponse.h, types/pa_vstateless_class.C,
13409: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13410: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13411: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13412: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13413: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13414: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
13415: const IDENT
13416:
13417: * src/: include/pa_array.h, include/pa_pool.h,
13418: include/pa_request.h, include/pa_string.h, include/pa_table.h,
13419: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
13420: types/pa_wcontext.h: more warnings --
13421:
13422: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
13423: classes/file.C, classes/hash.C, classes/hashfile.C,
13424: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13425: classes/memory.C, classes/op.C, classes/string.C,
13426: classes/table.C, classes/xdoc.C, classes/xnode.C,
13427: include/pa_config_includes.h, include/pa_operation.h,
13428: include/pa_sql_connection.h, include/pa_table.h,
13429: include/pa_types.h, lib/ltdl/config_fixed.h,
13430: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
13431: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
13432: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
13433: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
13434: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
13435: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
13436: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
13437: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
13438: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
13439: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
13440: types/pa_vmail.C, types/pa_vobject.C,
13441: types/pa_vstateless_class.h, types/pa_vtable.C,
13442: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13443: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
13444: on all projects (except libltdl=off & libsdbm=level3) found
13445: several unitialized vars
13446:
13447: 2003-11-19 paf
13448:
13449: * src/classes/op.C: more ansi C++ comp
13450:
13451: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13452: src/main/pa_request.C: ^cache[...]{body}{catch block with
13453: $exception.handled[cache] meaning "get expired cache, if any.
13454: else error"}
13455:
13456: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
13457: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
13458: ^cache[...]{body}{catch code with $exception.cache field}
13459:
13460: 2003-11-12 paf
13461:
13462: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
13463: [copy/paste bug]
13464:
13465: 2003-11-11 paf
13466:
13467: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
13468: failed]
13469:
13470: 2003-11-10 paf
13471:
13472: * src/types/pa_vconsole.h: flush
13473:
13474: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
13475: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
13476: read/write [for nntp]
13477:
13478: * operators.txt: mysql: transaction support: ?autocommit=0
13479:
13480: * operators.txt: comment: updated
13481:
13482: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
13483: serialize version and exipire now removes entries
13484:
13485: * operators.txt: ^hashfile.delete[] removes files altogether [and
13486: dir, if could]
13487:
13488: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
13489: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
13490: removes files altogether [and dir, if could]
13491:
13492: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
13493: nonexistent pair. .c coded that that was error. fixed
13494:
13495: * src/types/pa_vhashfile.C: sdbm: exception type change to
13496: file.access [regretfull can't split it to different exceptions
13497: without modifying sdbm source wich would prefer not to]
13498:
13499: 2003-11-07 paf
13500:
13501: * src/: classes/date.C, classes/file.C, classes/hash.C,
13502: classes/hashfile.C, classes/image.C, classes/table.C,
13503: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
13504: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
13505: main/execute.C, main/main.vcproj, main/pa_pool.C,
13506: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
13507: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
13508: types/pa_vstateless_class.h: resurrected: pool idea. now only for
13509: destructing objects at request processing end
13510:
13511: 2003-11-06 paf
13512:
13513: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
13514: updates
13515:
13516: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
13517: to include sdbm
13518:
1.116 moko 13519: * src/include/: pa_config_includes.h, pa_version.h: our
13520: replacements of max& co only for cpp
1.95 moko 13521:
13522: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
13523: upper dir, .am updated
13524:
13525: * tests/todo.txt: hashfile: done
13526:
13527: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
13528: expiration [time in value. todo: move time to key]
13529:
13530: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
13531:
13532: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
13533: to do that in foreach, no errors, but surely wrong]
13534:
13535: * operators.txt, src/types/pa_vhashfile.C,
13536: src/types/pa_vhashfile.h: hashfile: clear and proper locking
13537:
13538: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
13539: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
13540: foreach
13541:
13542: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
13543: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
13544:
13545: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
13546: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
13547:
13548: * src/: include/pa_memory.h, targets/cgi/parser3.C,
13549: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13550: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
13551: get/put [raw]
13552:
13553: * src/: classes/op.C, main/pa_os.C: just linked
13554:
13555: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
13556: XmlException changes
13557:
13558: * src/: include/pa_charset.h, include/pa_globals.h,
13559: include/pa_stylesheet_connection.h, main/pa_exception.C:
13560: XmlException changes
13561:
13562: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
13563:
13564: * src/: include/pa_common.h, include/pa_exception.h,
13565: main/main.vcproj, main/pa_common.C, include/pa_os.h,
13566: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
13567: main/pa_xml_exception.C: locking move to pa_os [along with
13568: pa_sleep] apr-impl locking done
13569:
13570: * configure, configure.in, operators.txt, parser3.sln,
13571: src/classes/classes.vcproj, src/classes/hashfile.C,
13572: src/classes/xdoc.C, src/include/pa_config_fixed.h,
13573: src/include/pa_exception.h, src/include/pa_globals.h,
13574: src/include/pa_memory.h, src/include/pa_version.h,
13575: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
13576: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
13577: src/main/compile.tab.C, src/main/main.vcproj,
13578: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
13579: src/types/Makefile.am, src/types/pa_vhash.C,
13580: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
13581: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
13582: again with sdbm from apache
13583:
13584: 2003-11-05 paf
13585:
13586: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13587: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
13588: \parser3project dir anymore
13589:
13590: * src/main/pa_charset.C: bugfix: had broken binary search [copied
13591: thoughtlessly from xalan]
13592:
13593: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
13594: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
13595: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
13596:
13597: * src/main/helpers/CaseFolding.txt:
13598: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
13599:
13600: 2003-11-04 paf
13601:
13602: * operators.txt: comment: ^mail:send[$.options[
13603:
13604: * src/classes/table.C: compiled on unix
13605:
1.116 moko 13606: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 13607:
13608: * src/classes/mail.C: compiled on unix
13609:
13610: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
13611: src/types/pa_vmail.h: !^mail:send[
13612: $.options[unix: string to append to sendmail command
13613: line]
13614:
13615: * operators.txt, src/classes/table.C, src/main/pa_string.C,
13616: tests/todo.txt: ^table.save[... $.separator[^#09]
13617: $.encloser["] <nothing> by default
13618:
13619: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
13620: !$.separator[^#09] !$.encloser["] <nothing> by
13621: default
13622:
13623: 2003-11-03 paf
13624:
13625: * operators.txt, src/classes/table.C, src/main/pa_common.C:
13626: ^table::load[; options: !$.column-separator[^#09]
13627: !$.column-encloser["]
13628:
13629: * operators.txt, src/include/pa_config_fixed.h,
13630: src/types/pa_vrequest.C: $request:document-root
13631:
13632: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
13633: [already included into uri=xxx]
13634:
13635: * operators.txt, src/classes/image.C, tests/todo.txt:
13636: ^image.gif[filename] for $response:download
13637:
13638: * src/classes/date.C: minor precaution
13639:
13640: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
13641: !^date.unix-timestamp[]
13642:
13643: 2003-10-30 paf
13644:
13645: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
13646: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
13647:
13648: * src/classes/: date.C, image.C: improvement diagnostics:
13649: $now[^date::create[$undefined]] now is error
13650:
13651: * src/main/pa_common.C: read errors would now be reported 'actually
13652: read -1 bytes'
13653:
13654: 2003-10-24 paf
13655:
13656: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
13657: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
13658: src/main/Makefile.am, src/targets/cgi/Makefile.am,
13659: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
13660:
13661: 2003-10-22 paf
13662:
13663: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
13664:
13665: 2003-10-21 paf
13666:
13667: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
13668: fixed: string.match[g] without <'> option produced columns with
13669: NULL's, which gpf'ed at table.save time
13670:
13671: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
13672: recoursion' message with intensive throw-catches fixed: incorrect
13673: name and line (one name upper then needed) in error message about
13674: problems inside try block
13675:
13676: 2003-10-10 paf
13677:
13678: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
13679: check offset argument for validity did that in String::Body::pos
13680: myself http://i2/tasks/edit/?id=4577425257580789777
13681:
13682: 2003-10-07 paf
13683:
13684: * src/main/: compile.tab.C, compile.y: ^if ( better error:
13685: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
13686:
13687: 2003-10-03 paf
13688:
13689: * parser3.sln, src/include/pa_dictionary.h,
13690: src/main/pa_dictionary.C, src/main/pa_string.C,
13691: src/targets/cgi/parser3.vcproj: dictionary optimized by
13692: precalculating cstr&length
13693:
13694: 2003-10-02 paf
13695:
13696: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13697: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13698: main/pa_stylesheet_manager.C: bugfix: ^throw context were
13699: saved/restored incompletely http://www.parser.ru/forum/?id=21484
13700:
13701: 2003-09-30 paf
13702:
13703: * src/main/pa_string.C: string::replace bug fix [were ignoring
13704: occurrances after lang-mismatched
13705:
13706: 2003-09-29 paf
13707:
13708: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
13709: helper
13710:
13711: * src/main/pa_string.C: string::serialize bug fix with
13712: zero-terminator
13713:
13714: * src/classes/table.C: ^nameless_table.save column row now has no
13715: \t at the end
13716:
13717: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
13718: @postprocess now takes $response:body/download
13719:
13720: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
13721: error message
13722:
13723: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
13724:
13725: * src/classes/table.C: bugfix: flip: must produce nameless
13726: http://i2/tasks/edit/?id=4573405524674081244
13727:
13728: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
13729: main/helpers/simple_folding.pl: utf-8 upper/lower
13730:
13731: * src/main/pa_common.C: bugfix: utf signature were not ignored due
13732: to typo error http://i2/tasks/edit/?id=4573354650786434584
13733:
13734: 2003-09-26 paf
13735:
13736: * src/main/untaint.C: removed needless field
13737:
13738: * src/main/untaint.C: removed needless const
13739:
13740: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
13741: String.for_each bug fixed [omited one-char cases]
13742:
13743: * src/include/pa_stack.h: bugfix: before collecting garbage,
13744: runtime-executor stack were cleared... BADLY
13745:
13746: * src/main/pa_string.C: ^stirng.replace code used old
13747: param-convention on langs.append, fixed that search fo the like,
13748: found none
13749:
13750: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
13751: string::serialize/deserialize implemented Language enum assigned
13752: meaningful letters [more convinient for debugging. read warning
13753: before adding/changing anything]
13754:
13755: 2003-09-25 paf
13756:
13757: * src/: include/pa_string.h, include/pa_version.h,
13758: main/pa_string.C, main/untaint.C: templates and anonymous unions
13759: differences on unix
13760:
13761: * parser3.sln, src/classes/file.C, src/classes/image.C,
13762: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
13763: src/classes/xdoc.C, src/classes/xnode.C,
13764: src/include/pa_cache_managers.h, src/include/pa_charset.h,
13765: src/include/pa_charsets.h, src/include/pa_common.h,
13766: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
13767: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
13768: src/include/pa_table.h, src/lib/cord/cordbscs.c,
13769: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
13770: src/lib/cord/include/cord.h, src/main/compile.tab.C,
13771: src/main/compile_tools.h, src/main/pa_charset.C,
13772: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
13773: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
13774: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
13775: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
13776: src/types/pa_vmail.C, src/types/pa_vmath.C,
13777: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
13778: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
13779:
13780: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
13781: functions aligned to that of eeparser3 look
13782:
13783: * src/lib/cord/cordprnt.c: removed warnings
13784:
13785: 2003-09-24 paf
13786:
13787: * src/: classes/file.C, classes/image.C, classes/mail.C,
13788: classes/op.C, classes/xdoc.C, classes/xnode.C,
13789: include/pa_cache_managers.h, include/pa_charset.h,
13790: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
13791: include/pa_sql_driver_manager.h, include/pa_string.h,
13792: include/pa_stylesheet_manager.h, include/pa_table.h,
13793: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
13794: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
13795: main/pa_sql_driver_manager.C, main/pa_string.C,
13796: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
13797: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
13798: types/pa_vstateless_class.h, types/pa_vstatus.C,
13799: types/pa_vxnode.C: v() functions of String::Body,
13800: String::Languages and String itself StringBody->String::Body
13801:
13802: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13803: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
13804: never optimized anything. todo: somehow speed up harder cases:
13805: concatenationA+concatenationB when last block of A and first of B
13806: contain same letters
13807:
13808: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13809: lib/cord/include/cord.h: langs: speed up by joining adjucent
13810: blocks of same char [CORD_append_block]
13811:
13812: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13813: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
13814: save space by extending blocks when appending block with c ==
13815: lastblock.c
13816:
13817: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
13818: working yet :( but more working &understood :)
13819:
13820: * src/: classes/table.C, include/pa_string.h,
13821: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
13822:
13823: 2003-09-23 paf
13824:
13825: * src/main/untaint.C: $a[ok!] $a works!
13826:
13827: * src/main/untaint.C: something even more works :)
13828:
13829: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13830: something more works :)
13831:
13832: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13833: lib/cord/cordxtra.c: something already works :)
13834:
13835: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
13836: serialize&deserialize
13837:
13838: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
13839: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
13840: main/untaint.C: main idea implemented, details left
13841:
13842: 2003-09-22 paf
13843:
13844: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
13845:
13846: * src/classes/xnode.C: copy/paste comment bugfix
13847:
13848: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
13849: allocator returns 0, just die.
13850: http://i2/tasks/edit/?id=4570798492410259445
13851:
13852: * src/classes/xdoc.C: copy/paste comment bugfix
13853:
13854: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
13855: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
13856: xnode: getAttributeNS setAttributeNS removeAttributeNS
13857: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
13858:
13859: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
13860: chars due to bitwise operation signed-char error]
13861:
13862: 2003-09-19 paf
13863:
13864: * src/types/pa_wcontext.C: output message: more practical
13865: suggestion
13866:
13867: * src/main/pa_common.C, operators.txt: merged
13868: $f[^file::load[binary;http://...]] $f.tables
13869:
13870: 2003-09-02 paf
13871:
13872: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
13873: flush stdout without referencing 'stdout' symbol. to hell with
13874: non-ansi libraries without 'stdout' symbol
13875:
13876: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
13877: unix (users reported problems with some old libc)
13878:
13879: * src/types/pa_vdate.h: forgot initializer
13880:
13881: 2003-09-01 paf
13882:
13883: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
13884: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
13885: zone]
13886:
13887: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
13888:
13889: 2003-08-19 paf
13890:
13891: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
13892: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
13893: simplified a little
13894:
13895: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
13896: [lost fix from 3.0.8]
13897:
13898: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
13899: visible here }
13900:
13901: bug fix
13902:
13903: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
13904:
13905: * src/main/compile.tab.C: initialized couple of variables about
13906: which user reported runtime problems when parser were compiled
13907: with VC7, warning level4. study shows that later in bison
13908: they've fixed that. would migrate to latest bison someday
13909:
13910: * src/types/pa_vmail.C: turned off recoding in gmime (were still
13911: recoding headers)
13912:
13913: * src/types/pa_vmail.C: works as before, same charset problems:
13914: gmime recodes to UTF-8 only headers, not body. so not recoding
13915: anything for now
13916:
13917: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
13918: problems with body
13919:
13920: * src/types/pa_vmail.C: mail_receive just compiled
13921:
13922: 2003-08-18 paf
13923:
13924: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13925: main/main.vcproj, types/types.vcproj: win32: continued process
13926: detaching from \parser3project directory
13927:
13928: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
13929: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
13930: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
13931: src/lib/pcre/pcre_dftables.dsp,
13932: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
13933: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
13934: src/types/types.dsp: moved to MSVC 7
13935:
13936: * gnu.vcproj.vspscc, parser3.vssscc,
13937: src/classes/classes.vcproj.vspscc,
13938: src/lib/cord/cord.vcproj.vspscc,
13939: src/lib/ltdl/libltdl.vcproj.vspscc,
13940: src/lib/md5/md5.vcproj.vspscc,
13941: src/lib/pcre/pcre_dftables.vcproj.vspscc,
13942: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
13943: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
13944: src/targets/isapi/parser3isapi.vcproj.vspscc,
13945: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
13946: moved to MSVC 7
13947:
13948: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
13949: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
13950: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
13951: src/lib/pcre/pcre_dftables.vcproj,
13952: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
13953: src/targets/cgi/parser3.vcproj,
13954: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13955: new VS project files
13956:
13957: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
13958: .NET to detect Jalindi Igloo capabilities.
13959:
13960: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 13961: src/classes/classes.awk, src/doc/footer.htm,
13962: src/include/pa_config_fixed.h, src/include/pa_version.h,
13963: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 13964: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
13965: src/types/pa_vmail.C: merged 3.1.0 latest changes
13966:
13967: 2003-08-15 paf
13968:
13969: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13970: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
13971:
13972: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13973: non-ascii <yyy> now encoded correctly
13974:
13975: 2003-07-29 paf
13976:
1.116 moko 13977: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
13978: dist
1.95 moko 13979:
13980: * src/types/pa_vmail.C: just started --with-mail-receive
13981:
13982: 2003-07-28 paf
13983:
1.116 moko 13984: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
13985: dependence in src/classes, src/lib/gc now in dist
1.95 moko 13986:
13987: * src/main/pa_string.C: ^cache bug fix [were not working at all]
13988:
13989: 2003-07-25 paf
13990:
13991: * src/doc/footer.htm: year
13992:
13993: 2003-07-24 paf
13994:
13995: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
13996: fix
13997:
13998: * src/include/pa_version.h: release
13999:
1.116 moko 14000: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 14001:
14002: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
14003: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
14004: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
14005: getting rid of win32xml pseudo project
14006:
14007: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
14008:
1.116 moko 14009: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
14010: configure.in, operators.txt, parser3.dsw,
1.95 moko 14011: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 14012: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 14013: src/classes/classes.C, src/classes/classes.awk,
14014: src/classes/classes.dsp, src/classes/classes.h,
14015: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14016: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14017: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14018: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14019: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14020: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14021: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
14022: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 14023: src/include/pa_array.h, src/include/pa_cache_managers.h,
14024: src/include/pa_charset.h, src/include/pa_charsets.h,
14025: src/include/pa_common.h, src/include/pa_config_auto.h.in,
14026: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
14027: src/include/pa_dictionary.h, src/include/pa_dir.h,
14028: src/include/pa_exception.h, src/include/pa_exec.h,
14029: src/include/pa_globals.h, src/include/pa_hash.h,
14030: src/include/pa_memory.h, src/include/pa_opcode.h,
14031: src/include/pa_operation.h, src/include/pa_pool.h,
14032: src/include/pa_pragma_pack_begin.h,
1.95 moko 14033: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
14034: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
14035: src/include/pa_sapi.h, src/include/pa_socks.h,
14036: src/include/pa_sql_connection.h,
14037: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
14038: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
14039: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14040: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 14041: src/include/pa_uue.h, src/lib/Makefile.am,
14042: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
14043: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
14044: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
14045: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 14046: src/lib/cord/include/ec.h,
14047: src/lib/cord/include/private/Makefile.am,
14048: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 14049: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
14050: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 14051: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 14052: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
14053: src/main/compile_tools.C, src/main/compile_tools.h,
14054: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
14055: src/main/pa_cache_managers.C, src/main/pa_charset.C,
14056: src/main/pa_charsets.C, src/main/pa_common.C,
14057: src/main/pa_dictionary.C, src/main/pa_dir.C,
14058: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 14059: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
14060: src/main/pa_request.C, src/main/pa_socks.C,
14061: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14062: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 14063: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
14064: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
14065: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
14066: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
14067: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
14068: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
14069: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 14070: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
14071: src/targets/isapi/parser3isapi.dsp,
14072: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 14073: src/types/pa_junction.h, src/types/pa_method.h,
14074: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 14075: src/types/pa_vclass.C, src/types/pa_vclass.h,
14076: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14077: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14078: src/types/pa_vdouble.h, src/types/pa_venv.h,
14079: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14080: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14081: src/types/pa_vimage.C, src/types/pa_vimage.h,
14082: src/types/pa_vint.h, src/types/pa_vjunction.h,
14083: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
14084: src/types/pa_vmath.h, src/types/pa_vmemory.h,
14085: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14086: src/types/pa_vobject.C, src/types/pa_vobject.h,
14087: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14088: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14089: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14090: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14091: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14092: src/types/pa_vstring.h, src/types/pa_vtable.C,
14093: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14094: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14095: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14096: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14097: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
14098: HEAD
14099:
14100: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
14101: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
14102: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
14103: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
14104: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
14105: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
14106: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
14107: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
14108: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
14109: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
14110: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
14111: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
14112: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
14113: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
14114: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
14115: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
14116: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
14117: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
14118: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
14119: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
14120: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14121: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
14122: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
14123: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
14124: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
14125: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
14126: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
14127: outputs/create-dir, results/001.processed, results/002.processed,
14128: results/003.processed, results/004.processed,
14129: results/005.processed, results/006.processed,
14130: results/007.processed, results/008.processed,
14131: results/009.processed, results/010.processed,
14132: results/011.processed, results/012.processed,
14133: results/013.processed, results/014.processed,
14134: results/015.processed, results/016.processed,
14135: results/017.processed, results/018.processed,
14136: results/019.processed, results/020.processed,
14137: results/021.processed, results/022.processed,
14138: results/023.processed, results/024.processed,
14139: results/025.processed, results/026.processed,
14140: results/027.processed, results/028.processed,
14141: results/029.processed, results/030.processed,
14142: results/031.processed, results/032.processed,
14143: results/033.processed, results/034.processed,
14144: results/035.processed, results/036.processed,
14145: results/037.processed, results/038.processed,
14146: results/039.processed, results/040.processed,
14147: results/041.processed, results/042.processed,
14148: results/043.processed, results/044.processed,
14149: results/045.processed, results/046.processed,
14150: results/047.processed, results/048.processed,
14151: results/049.processed, results/050.processed,
14152: results/051.processed, results/052.processed,
14153: results/053.processed, results/054.processed,
14154: results/055.processed, results/056.processed,
14155: results/057.processed, results/058.processed,
14156: results/059.processed, results/060.processed,
14157: results/061.processed, results/062.processed,
14158: results/063.processed, results/064.processed,
14159: results/065.processed, results/066.processed,
14160: results/067.processed, results/068.processed,
14161: results/069.processed, results/070.processed,
14162: results/071.processed, results/072.processed,
14163: results/073.processed, results/074.processed,
14164: results/075.processed, results/076.processed,
14165: results/077.processed, results/078.processed,
14166: results/079.processed, results/080.processed,
14167: results/081.processed, results/082.processed,
14168: results/083.processed, results/084.processed,
14169: results/085.processed, results/086.processed,
14170: results/087.processed, results/088.processed,
14171: results/089.processed, results/090.processed,
14172: results/091.processed, results/092.processed,
14173: results/093.processed, results/094.processed,
14174: results/095.processed, results/096.processed,
14175: results/097.processed, results/098.processed,
14176: results/099.processed, results/100.processed,
14177: results/101.processed, results/102.processed,
14178: results/103.processed, results/104.processed,
14179: results/105.processed, results/106.processed,
14180: results/107.processed, results/108.processed,
14181: results/109.processed, results/110.processed,
14182: results/111.processed, results/112.processed,
14183: results/113.processed, results/114.processed,
14184: results/115.processed, results/116.processed,
14185: results/117.processed, results/118.processed,
14186: results/119.processed, results/120.processed,
14187: results/121.processed, results/122.processed,
14188: results/123.processed, results/124.processed,
14189: results/125.processed, results/126.processed,
14190: results/127.processed, results/128.processed,
14191: results/129.processed, results/130.processed,
14192: results/131.processed, results/132.processed,
14193: results/133.processed, results/134.processed,
14194: results/135.processed, results/136.processed,
14195: results/137.processed, results/138.processed,
14196: results/139.processed, results/140.processed,
14197: results/141.processed: merged(copied) to HEAD from template_gc
14198:
14199: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
14200: towards \parser3project not having to be in root
14201:
14202: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
14203: module compiled [were minor unnecessary changes in lib/md5
14204: interface]
14205:
14206: * src/include/pa_version.h: release
14207:
14208: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
14209:
14210: * src/classes/math.C: merged uuid bugfix
14211:
14212: * tests/: 141.html, results/141.processed: fixed bug with
14213: too-small-a-buffer
14214:
14215: * src/classes/math.C: uuid bugfix
14216:
14217: * tests/: 141.html, Makefile, results/005.processed,
14218: results/030.processed, results/075.processed,
14219: results/078.processed: to reflect date format change (were -
14220: become ' ')
14221:
14222: * src/classes/math.C: uuid bugfix
14223:
14224: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
14225: debug/release changes
14226:
14227: * src/lib/md5/pa_md5c.c: PA_ -> pa_
14228:
14229: 2003-07-23 paf
14230:
14231: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14232: renamed a little [to move to comman naming conv]
14233:
1.116 moko 14234: * src/targets/Makefile.am: apache13 splitted to simplify apache
14235: build
1.95 moko 14236:
14237: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
14238: main/pa_request.C, main/pa_sql_driver_manager.C,
14239: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
14240: stack top_index() fixed
14241:
14242: * src/main/pa_globals.C: minor style changes
14243:
14244: * src/: classes/op.C, include/pa_sql_connection.h: connection
14245: closing/caching fixed [connections were not closed/put to cache]
14246:
14247: 2003-07-22 paf
14248:
14249: * INSTALL: gc part updated stightly
14250:
14251: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
14252: new sapi interface
14253:
14254: * src/classes/file.C: comment on OS
14255:
14256: * src/main/pa_string.C: removed reduntant invariant check [there is
14257: one deeper in cord lib]
14258:
14259: * src/main/pa_exec.C: on win32 bugfix in handling shbang
14260:
14261: * src/main/pa_memory.C: out of memory is no longer coredump
14262:
14263: * INSTALL: disable-threads adviced
14264:
14265: 2003-07-21 paf
14266:
1.116 moko 14267: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 14268:
14269: * src/classes/file.C: file::exec/cgi environment variables now must
14270: be UPPERCASE and A-Z 0-9 _-
14271:
14272: * src/classes/file.C: env passing fixed
14273:
14274: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
14275:
14276: * src/main/pa_common.C: http:// CRLF now
14277:
14278: 2003-07-02 paf
14279:
14280: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
14281: fields to reflect their real meaning
14282:
14283: 2003-06-27 paf
14284:
14285: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
14286: include/pa_hash.h, main/pa_charset.C: merged from HEAD
14287: file::exec/cgi .charset
14288:
14289: 2003-06-26 paf
14290:
14291: * ChangeLog, src/classes/file.C, src/classes/hash.C,
14292: src/classes/image.C, src/classes/op.C, src/classes/string.C,
14293: src/classes/table.C: fixed several uninitialized local
14294: structures. notably ^hash.foreach now inserts delimiters
14295: properly [were inserting it before first body]
14296:
14297: 2003-06-24 paf
14298:
14299: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
14300:
14301: 2003-06-20 paf
14302:
14303: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
14304: src/main/pa_globals.C: introducing
14305: $f[^file::load[binary;http://...]] $f.tables
14306:
14307: 2003-06-06 paf
14308:
14309: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
14310: table. [were method lookup: inconsistent]
14311:
14312: 2003-06-02 paf
14313:
14314: * src/include/pa_memory.h: empty string clone fixed to return
14315: writable memory
14316:
14317: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
14318: were not appended] which violated string invariant
14319:
14320: 2003-05-30 paf
14321:
14322: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
14323: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
14324:
14325: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
14326: GMT ; RFC 822, updated by RFC 1123
14327:
14328: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
14329: targets/isapi/parser3isapi.C: initialized request_info properly
14330:
14331: * src/classes/xnode.C: found minor bug, commended for future
14332:
14333: 2003-05-28 paf
14334:
14335: * src/classes/form.C: request_info.content_length can't be <0,
14336: size_t for some time
14337:
14338: 2003-05-26 paf
14339:
14340: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
14341: forgotten <0 changed to !=STRING_NOT_FOUND
14342:
14343: * src/classes/math.C: merged ffffu from HEAD
14344:
14345: 2003-05-11 paf
14346:
14347: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
14348:
14349: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
14350: premature doc free. transformed document had xmlDoc reference
14351: stored to non-gc-memory (libgdome) added holding-reference
14352:
14353: 2003-04-29 paf
14354:
14355: * src/main/pa_globals.C: started digging on double free. on win32
14356: found that that's perfectly normal.
14357:
14358: 2003-04-25 paf
14359:
14360: * src/classes/table.C: table.join bug fix [bad limit check]
14361:
14362: * src/classes/math.C: merged from HEAD: simpiler hash_string
14363:
14364: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
14365: print anything. changed to quicker and simplier code
14366:
14367: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
14368: strict a check]
14369:
14370: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
14371:
14372: 2003-04-24 paf
14373:
14374: * src/include/pa_table.h: too strict assert loosened
14375:
14376: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
14377: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
14378: report
14379:
14380: 2003-04-21 paf
14381:
1.116 moko 14382: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 14383:
14384: * src/main/pa_globals.C: pcre memory management changed to use GC
14385: memory
14386:
14387: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
14388: xmlMallocAtomic [author agreed to my suggestion], used that
14389:
14390: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
14391:
14392: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
14393: types/pa_vmail.C: attributed_meaning_to_string added
14394: L_UNSPECIFIED piece which was sortof OK, but violated string
14395: invariant [assertion barked on that] changed to L_PASS_APPEND,
14396: made that param obligatory
14397:
14398: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
14399: fixed [assert helped]
14400:
14401: * src/include/pa_string.h: assert added [looking for bug]
14402:
14403: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
14404: names on Win32 considered disk-global
14405:
14406: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
14407: considered disk-global
14408:
14409: 2003-04-18 paf
14410:
14411: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
14412: filenames
14413:
14414: * src/main/untaint.C: enabled '~' letter in filenames
14415:
14416: 2003-04-16 paf
14417:
14418: * src/classes/file.C: small bug introduced in autoptr times fixed
14419:
14420: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
14421: HEAD
14422:
1.116 moko 14423: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 14424:
14425: 2003-04-15 paf
14426:
14427: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14428: src/lib/md5/pa_md5c.c, tests/141.html,
14429: tests/results/141.processed: merged from head ^math:uuid[]
14430: ^math:uid64[] ^math:md5[string]
14431:
14432: test added: 141.html
14433:
14434: * operators.txt, src/classes/math.C: ^math:uid64[]
14435:
14436: * src/classes/math.C: ^math:uuid[]
14437:
14438: * operators.txt, src/classes/math.C: ^math:uuid[]
14439:
14440: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14441: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
14442:
14443: * operators.txt, src/classes/file.C, src/include/pa_common.h,
14444: src/include/pa_config_fixed.h, src/main/pa_common.C:
14445: ^file::load[mode;name; $.offset $.limit
14446:
14447: 2003-04-14 paf
14448:
14449: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14450: started ^math:md5
14451:
14452: * src/classes/table.C, src/include/pa_array.h,
14453: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
14454: tests/results/140.processed: table $.reverse option works in
14455: create&co table $.distinct[tables] bug fix merged
14456:
14457: * src/: classes/table.C, include/pa_table.h: table
14458: $.distinct[tables] bug fixed
14459:
14460: * src/classes/table.C: more warnings
14461:
14462: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
14463: removed checks in table::set_current, moved them back to
14464: table::locate implemented table::create/join ñ $.reverse
14465:
14466: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
14467: removed checks in table::set_current, moved them back to
14468: table::locate
14469:
14470: 2003-04-11 paf
14471:
14472: * operators.txt, src/classes/date.C, src/classes/table.C,
14473: src/include/pa_array.h, src/include/pa_common.h,
14474: src/include/pa_config_includes.h, src/include/pa_string.h,
14475: src/include/pa_table.h, src/main/pa_request.C,
14476: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14477: src/main/pa_table.C: merged from HEAD from
14478: before_append_array_limit_sense_change to
14479: after_append_array_limit_sense_change
14480:
14481: * src/classes/table.C: typo
14482:
14483: * operators.txt, src/classes/date.C, src/classes/table.C,
14484: src/include/pa_array.h, src/include/pa_common.h,
14485: src/include/pa_config_includes.h, src/include/pa_globals.h,
14486: src/include/pa_table.h, src/main/pa_array.C,
14487: src/main/pa_globals.C, src/main/pa_request.C,
14488: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14489: src/main/pa_table.C: append_array_limit_sense_change locate
14490: accepts options same as create new option: $.reverse(1) [do not
14491: work in table::create]
14492:
14493: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
14494: (stat xxx,
14495:
14496: * src/classes/: table.C: typo
14497:
14498: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
14499: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
14500: results/130.processed, results/131.processed,
14501: results/132.processed, results/133.processed,
14502: results/134.processed, results/135.processed,
14503: results/136.processed, results/137.processed,
14504: results/138.processed, results/139.processed: added few mustfail
14505: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
14506: date/time 132.html mustfail: access to junction outside of
14507: context 133.html mustfail: access to junction outside of context,
14508: case version 134.html mustfail: hash: adding a key inside of
14509: foreach 135.html mustfail: modifying system class 136.html
14510: mustfail: $.name outside of $hash[here] 137.html mustfail:
14511: appendChild without import 138.html mustfail: invalid encoding
14512: inside of xml 139.html mustfail: bad XPath
14513:
14514: * operators.txt, src/classes/table.C, tests/084.html,
14515: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
14516: tests/129.html, tests/results/125.processed,
14517: tests/results/126.processed, tests/results/127.processed,
14518: tests/results/128.processed, tests/results/129.processed: merged
14519: from HEAD ^table.hash[key][$.distinct[tables]]
14520:
14521: maked appropriate tests [changed one old nonconforming]
14522:
14523: * operators.txt, src/classes/table.C:
14524: ^table.hash[key][$.distinct[tables]]
14525:
14526: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14527: merged fix for found very old xml (dom) bug: were passing
14528: domString objects and later ERROREOUSLY freed them
14529:
14530: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
14531: src/main/pa_charset.C: re-added libgdome patch. regretfully
14532: libgdome bug can not be worked around
14533:
14534: 2003-04-10 paf
14535:
14536: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14537: found very old xml (dom) bug: were passing domString objects and
14538: later ERROREOUSLY freed them
14539:
14540: * src/doc/string.dox, src/include/pa_memory.h,
14541: src/include/pa_string.h, src/lib/cord/cordbscs.c,
14542: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
14543: tests/123.html, tests/124.html, tests/results/001.processed,
14544: tests/results/002.processed, tests/results/003.processed,
14545: tests/results/004.processed, tests/results/005.processed,
14546: tests/results/006.processed, tests/results/008.processed,
14547: tests/results/009.processed, tests/results/010.processed,
14548: tests/results/011.processed, tests/results/012.processed,
14549: tests/results/013.processed, tests/results/014.processed,
14550: tests/results/015.processed, tests/results/016.processed,
14551: tests/results/017.processed, tests/results/018.processed,
14552: tests/results/020.processed, tests/results/021.processed,
14553: tests/results/022.processed, tests/results/023.processed,
14554: tests/results/024.processed, tests/results/025.processed,
14555: tests/results/026.processed, tests/results/027.processed,
14556: tests/results/028.processed, tests/results/029.processed,
14557: tests/results/030.processed, tests/results/031.processed,
14558: tests/results/032.processed, tests/results/033.processed,
14559: tests/results/034.processed, tests/results/035.processed,
14560: tests/results/036.processed, tests/results/037.processed,
14561: tests/results/038.processed, tests/results/039.processed,
14562: tests/results/040.processed, tests/results/041.processed,
14563: tests/results/042.processed, tests/results/043.processed,
14564: tests/results/044.processed, tests/results/045.processed,
14565: tests/results/046.processed, tests/results/047.processed,
14566: tests/results/048.processed, tests/results/049.processed,
14567: tests/results/050.processed, tests/results/051.processed,
14568: tests/results/052.processed, tests/results/053.processed,
14569: tests/results/054.processed, tests/results/055.processed,
14570: tests/results/056.processed, tests/results/057.processed,
14571: tests/results/058.processed, tests/results/059.processed,
14572: tests/results/060.processed, tests/results/061.processed,
14573: tests/results/062.processed, tests/results/063.processed,
14574: tests/results/064.processed, tests/results/065.processed,
14575: tests/results/066.processed, tests/results/067.processed,
14576: tests/results/068.processed, tests/results/069.processed,
14577: tests/results/070.processed, tests/results/071.processed,
14578: tests/results/072.processed, tests/results/073.processed,
14579: tests/results/074.processed, tests/results/075.processed,
14580: tests/results/076.processed, tests/results/077.processed,
14581: tests/results/078.processed, tests/results/079.processed,
14582: tests/results/080.processed, tests/results/081.processed,
14583: tests/results/082.processed, tests/results/083.processed,
14584: tests/results/084.processed, tests/results/085.processed,
14585: tests/results/086.processed, tests/results/087.processed,
14586: tests/results/088.processed, tests/results/089.processed,
14587: tests/results/090.processed, tests/results/091.processed,
14588: tests/results/092.processed, tests/results/093.processed,
14589: tests/results/094.processed, tests/results/095.processed,
14590: tests/results/096.processed, tests/results/097.processed,
14591: tests/results/101.processed, tests/results/102.processed,
14592: tests/results/104.processed, tests/results/105.processed,
14593: tests/results/106.processed, tests/results/107.processed,
14594: tests/results/108.processed, tests/results/109.processed,
14595: tests/results/110.processed, tests/results/111.processed,
14596: tests/results/112.processed, tests/results/113.processed,
14597: tests/results/114.processed, tests/results/115.processed,
14598: tests/results/116.processed, tests/results/117.processed,
14599: tests/results/118.processed, tests/results/119.processed,
14600: tests/results/120.processed, tests/results/121.processed,
14601: tests/results/122.processed, tests/results/123.processed,
14602: tests/results/124.processed: new convention: char* never 0.
14603: assert in cord on that
14604:
14605: * src/main/pa_charset.C: couple more asserts
14606:
14607: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
14608: speedup
14609:
14610: * src/main/pa_charset.C: couple assertions on fantastic situations
14611: added [may be those is the case now?]
14612:
14613: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14614: that's memory from gc_malloc, not from g_malloc :(, but would
14615: hope]
14616:
14617: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14618: that's memory from gc_malloc, not from g_malloc :(, but would
14619: hope]
14620:
14621: * src/main/pa_charset.C: checked custom malloc for returning 0
14622:
14623: 2003-04-09 paf
14624:
14625: * src/classes/date.C: merged ^date.roll changes
14626:
14627: * src/classes/date.C: ^date.roll bug fix
14628:
14629: * src/classes/date.C: ^date.roll now throws less errors: month
14630: shifts handles end of month situation by reducing day number
14631: hour-hole shift reduces hour to recover
14632:
14633: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
14634: Sort by function time
14635:
14636: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
14637: http:// $.charset[] param done
14638:
14639: * tests/: 122.html, results/122.processed: 122 date test <= and ==
14640: added [after volatile fix. passes on win&intel-solaris]
14641:
14642: 2003-04-08 paf
14643:
14644: * src/: classes/file.C, classes/op.C, classes/table.C,
14645: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
14646: include/pa_common.h, include/pa_request_charsets.h,
14647: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14648: main/pa_exec.C, main/pa_request.C, main/untaint.C,
14649: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
14650: types/pa_vresponse.C: started http:// $.charset[] param and
14651: http response charset detection just compiled. todo:test
14652:
14653: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
14654:
14655: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
14656: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
14657: types/pa_vmail.C: changed transcode param converntion along with
14658: string creating convention -- all strings are zero-terminated,
14659: this allowed to fix one remaining String("123", 2) case
14660:
14661: * src/: classes/date.C, classes/file.C, classes/hash.C,
14662: classes/op.C, classes/string.C, classes/table.C,
14663: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
14664: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
14665: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14666: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
14667: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
14668: violated String::invariant. started fixing [not compiled now]
14669:
14670: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
14671: main/compile.tab.C, main/compile.y, main/pa_string.C,
14672: main/untaint.C, targets/cgi/parser3.C: number of string style
14673: improvements & optimizations
14674:
14675: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
14676: :(]
14677:
14678: * src/main/untaint.C: removed redundant & in CORD_pos param passing
14679: [for it's a pointer really]
14680:
14681: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
14682: 'n' param. worked that around
14683:
14684: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
14685: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
14686: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
14687: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
14688: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
14689:
14690: Thanks for the bug report and patch.
14691:
14692: I hadn't looked at this code in a while. Reading it now, it
14693: seems to me that the tests should also be ">= MAX_DEPTH" to
14694: comply with the invariant, though that may not matter a lot. I
14695: changed that, too.
14696:
14697: Hans
14698:
14699: 2003-04-07 paf
14700:
14701: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
14702: merged from head:safe mode error message now includes numbers
14703:
14704: * src/main/execute.C: n-th attempt to make a=a work with double.
14705: problem: as_double returns it's result in fp-register compiler
14706: optimizes access to that register after b->as_double, and just
14707: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14708: from memory. _SAME_ double values do not match here. when
14709: forced to REload fp-register, values do match.
14710:
14711: tried to make them volatile.
14712:
14713: * src/main/execute.C: n-th attempt to make a=a work with double.
14714: problem: as_double returns it's result in fp-register compiler
14715: optimizes access to that register after b->as_double, and just
14716: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14717: from memory. _SAME_ double values do not match here. when
14718: forced to REload fp-register, values do match.
14719:
14720: tried to make them volatile.
14721:
14722: * src/types/pa_vobject.h: small style change
14723:
14724: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
14725:
14726: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
14727: mode error message now includes numbers
14728:
14729: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
14730: now causes death
14731:
14732: 2003-04-04 paf
14733:
14734: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
14735: incorportated pa_exec patch by From: "Victor Fedoseev"
14736: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
14737: Sent: Thursday, January 23, 2003 9:14 AM
14738:
14739: huge speedup on ^file::cgi with big result
14740:
14741: * src/classes/table.C: sort table with 0 rows bug fixed
14742:
14743: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
14744: fix http://i2/tasks/edit/?id=4493701604654042676
14745:
14746: @main[] $with_default[ $.a[1] $._default[default from
14747: with_default] ] ^show[$with_default]
14748:
14749: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14750: =$to_add_to.xxx=<br>
14751:
14752: ^show[$to_add_to]
14753:
14754: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14755: ^show[$cloned]
14756:
14757: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14758:
14759: } <hr>
14760:
14761: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
14762: http://i2/tasks/edit/?id=4493701604654042676
14763:
14764: @main[] $with_default[ $.a[1] $._default[default from
14765: with_default] ] ^show[$with_default]
14766:
14767: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14768: =$to_add_to.xxx=<br>
14769:
14770: ^show[$to_add_to]
14771:
14772: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14773: ^show[$cloned]
14774:
14775: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14776:
14777: } <hr>
14778:
14779: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
14780: http://i2/tasks/edit/?id=4507350336410850921
14781:
14782: * src/classes/xdoc.C: memory allocation func bugfix
14783: http://i2/tasks/edit/?id=4499303470368629745
14784:
14785: * src/classes/math.C: allowed random 1...
14786:
14787: * src/classes/math.C: allowed random 0..
14788:
14789: * src/main/pa_globals.C: exif mem leak
14790: http://i2/tasks/edit/?id=4480590323629807263
14791:
14792: * src/: classes/classes.dsp, main/main.dsp,
14793: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
14794: fix http://i2/tasks/edit/?id=4493946731322521294
14795: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
14796:
14797: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14798: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
14799: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
14800: links to xml libs made relative, no need to unpack parser3project
14801: to /parser3project.
14802:
14803: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
14804: column more precise - tab handling bug fixed
14805:
14806: * src/main/: compile.tab.C, compile.y: more understandable error
14807: message in case @CLASS with more then one line inside
14808:
14809: * src/targets/cgi/parser3.C: more understandable error message in
14810: case of errors in @unhandled_exception
14811:
14812: 2003-04-03 paf
14813:
14814: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
14815: src/main/compile.tab.C, src/main/compile.y,
14816: src/main/compile_tools.C, src/main/compile_tools.h,
14817: src/main/execute.C, src/main/pa_request.C: debug info format
14818: simplified, now it's: OP_VALUE Operation::Origin << here value*
14819:
14820: higher limits: file number (max: 255) line number (max:
14821: 64535) column number (max: 255)
14822:
14823: * src/classes/math.C: top limit
14824:
14825: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
14826: precise parse error position in case of
14827:
14828: ^bug ]
14829:
14830: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
14831: changed to realities, and passed [bug fixed]
14832:
14833: * src/: classes/op.C, include/pa_request.h, main/compile.C,
14834: main/compile.tab.C, main/compile.y, main/compile_tools.C,
14835: main/compile_tools.h, main/pa_request.C: introducing
14836: ^process...[main-method-alias]
14837:
14838: * src/: classes/date.C, classes/image.C, classes/op.C,
14839: classes/string.C, classes/table.C, classes/xdoc.C,
14840: types/pa_vmethod_frame.h: MethodParams& now [methods without
14841: params receive zero reference, but they are expected not to look
14842: there]
14843:
14844: * operators.txt, src/classes/date.C, src/classes/double.C,
14845: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
14846: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14847: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14848: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14849: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14850: src/main/execute.C, src/types/pa_method.h: MethodParams& now
14851: [methods without params receive zero reference, but they are
14852: expected not to look there]
14853:
14854: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14855: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
14856: ^process...[filename] useful for better error reporting
14857: [file/line/col]
14858:
14859: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
14860: types/pa_vstring.h: slightly improved error messages text: 1. is
14861: '%s', it 2. method undefined in case of ^void[]
14862:
14863: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14864: include/pa_types.h, main/execute.C, main/pa_request.C: exception
14865: handling done. now we have error columns todo: test it
14866:
14867: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
14868: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
14869:
14870: this makes life easier: were: bad stack order -- were in
14871: exception catch unwind order, which didn't match execution order
14872:
14873: @main[] ^try{ ^first[] }{ ^throw[c;3] }
14874:
14875: @first[] ^throw[a;1]
14876:
14877: showed throw a first throw b try
14878:
14879: which is no good
14880:
14881: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14882: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
14883: trace reset after handled exception [old bug fixed]
14884:
14885: * src/main/: compile.tab.C, compile.y: parse position old bug
14886: fixed. position reporting made precise [both, in parse erros and
14887: runtime errors]
14888:
14889: 2003-04-02 paf
14890:
14891: * src/: include/pa_operation.h, include/pa_request.h,
14892: main/compile.C, main/compile.tab.C, main/compile.y,
14893: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14894: main/pa_exception.C, main/pa_request.C: debug info: started
14895: using. todo:complete
14896:
14897: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
14898: main/compile.C, main/compile.tab.C, main/compile.y,
14899: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14900: main/pa_request.C: prepared debug info todo:use it
14901:
14902: * src/include/pa_operation.h: strange mistake fixed: forgot to
14903: return Operation class->union after switching from autoptrs.
14904:
14905: * tests/: Makefile, results/108.processed, results/117.processed:
14906: meta considered OK [it's up to coder now to remove it not needed]
14907:
14908: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
14909: Dictionary constructor when moved to gc]
14910:
14911: * src/main/pa_common.C: uncommented http:// file loading
14912:
14913: * src/include/pa_array.h, src/main/execute.C,
14914: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
14915: fix [gdGrowingBuf]
14916:
14917: * configure.in, src/lib/Makefile.am: removed patches
14918:
14919: * configure, src/include/pa_config_auto.h.in,
14920: src/main/pa_charset.C: --enable-assertions autoconf-ed
14921:
14922: * src/main/pa_common.C: uncommented http:// file loading
14923:
14924: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
14925: xdoc::create/load
14926:
14927: * src/: classes/form.C, classes/hash.C, classes/image.C,
14928: classes/string.C, classes/table.C, classes/void.C,
14929: include/pa_common.h, main/pa_common.C, main/pa_request.C,
14930: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
14931: String::String(str,helper_length) are checked. found/fixed one
14932: place: $request:body now zero-terminated,
14933:
14934: * src/: classes/op.C, classes/table.C, include/pa_request.h,
14935: main/compile_tools.C, main/execute.C, types/pa_value.h,
14936: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
14937: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
14938: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14939: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
14940: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
14941: types/pa_vxnode.h: more locally scoped vars in execute (more
14942: easily optimizable)
14943:
14944: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
14945: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
14946:
14947: * src/: include/pa_array.h, include/pa_stack.h,
14948: include/pa_string.h, main/compile_tools.C, main/main.dsp,
14949: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
14950: become assertion iterator in methodframe filler
14951:
14952: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
14953: targets/cgi/parser3.C: array::get/put inlined
14954:
14955: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
14956: gc_substitute_memory_management_functions +installed CORD_oom
14957: function
14958:
14959: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
14960: src/include/pa_config_includes.h, src/include/pa_string.h,
14961: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
14962: src/targets/cgi/parser3.C: converted debug hacks to ANSI
14963: assertions started configure.in --enable-assertions
14964:
14965: 2003-04-01 paf
14966:
14967: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
14968: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
14969: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
14970: gdome uses glib memory, and stores last pointer to xmlDoc there,
14971: gc misses that and collects valid memory fixed by remembering
14972: xmlDoc from dom object in xdoc. todo: do something with
14973: premature free of xdoc with xnodes/node values referring into it
14974:
14975: * src/classes/: mail.C: typo fix
14976:
14977: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
14978: changes
14979:
14980: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
14981: main/pa_memory.C: moved memory debugging to global level: to
14982: pa_gc_malloc
14983:
14984: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
14985: debugging showed no errors. todo: debug parser memory
14986:
14987: * src/targets/cgi/: parser3.C, parser3.dsp: more build
14988: configurations
14989:
14990: * src/: classes/classes.dsp, include/pa_config_fixed.h,
14991: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
14992: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
14993: types/types.dsp: prepared xml-static configuration
14994:
14995: 2003-03-31 paf
14996:
14997: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
14998: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
14999: xml lib memory debugging, simple checks failed: it seems that
15000: library does realloc(bad ptr), and recording those ptrs in heap
15001: [for debugging] was bad: heap situation changes = everything
15002: works fine
15003:
15004: * src/: main/pa_charset.C, include/pa_charset.h: worked around
15005: xmlRegisterCharEncodingHandler limitation [currently imposed
15006: limit of 10 user-defined charsets]
15007:
15008: 2003-03-28 paf
15009:
15010: * src/main/execute.C: execution stack copied to local register
15011: variable, removed lots [~2e7) of memory accesses
15012:
15013: 2003-03-27 paf
15014:
15015: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
15016: works in debug, but fails in release todo: fix that
15017:
15018: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
15019: targets/cgi/parser3.C: forgot to merge XML memory funcs
15020: replacement from gc branch
15021:
15022: * src/main/pa_exec.C: introducing append_help_length [radical
15023: improvement here]
15024:
15025: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
15026: 'not recommened' in gc.h, on win32 noticed no difference]
15027:
15028: * src/include/pa_array.h: returned checked array get [were disabled
15029: for debugging] result:not slower [don't understand that, it were
15030: INLINED] todo: find out a way of inlining it!
15031:
15032: * src/: include/pa_string.h, lib/gc/include/gc.h,
15033: lib/gc/include/gc_fake.h, main/compile.tab.C,
15034: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
15035: convention changed: all resulting strings are zero-terminated
15036:
15037: * src/: classes/date.C, classes/file.C, classes/hash.C,
15038: classes/string.C, classes/table.C, classes/void.C,
15039: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
15040: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
15041: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
15042: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15043: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
15044: types/pa_vfile.C, types/pa_vmail.C: introducing
15045: append_help_length [radical improvement here]
15046:
15047: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
15048: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
15049: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
15050: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
15051: even slower
15052:
15053: * src/: classes/string.C, classes/table.C, include/pa_array.h,
15054: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
15055: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
15056: clients of &get(): most to use non-ref version, some[in tight
15057: places] to get_unchecked_ref
15058:
15059: * src/doc/memory.dox: forgot to add
15060:
15061: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
15062: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
15063: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
15064: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
15065: main/compile.y, main/compile_tools.C, main/compile_tools.h,
15066: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
15067: targets/cgi/parser3.dsp, types/pa_vmail.C,
15068: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
15069: T>>&<< removed after Stack::pop wiping removed [moved to separate
15070: func] other Array & removed
15071:
15072: 2003-03-26 paf
15073:
15074: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
15075: classes/table.C, include/pa_array.h, include/pa_charset.h,
15076: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
15077: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15078: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
15079: main/main.dsp, main/pa_charset.C, main/pa_common.C,
15080: main/pa_exec.C, main/pa_sql_driver_manager.C,
15081: main/pa_stylesheet_manager.C, main/pa_table.C,
15082: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15083: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
15084: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
15085: pre-evaluated .count() in some places
15086:
15087: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15088: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
15089: types/types.dsp: .dsp profiling updated
15090:
15091: * src/: classes/classes.dsp, lib/cord/cord.dsp,
15092: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
15093: targets/cgi/parser3.dsp, types/types.dsp: started profiling
15094:
15095: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
15096: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
15097: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
15098: use lib/gc,lib/cord
15099:
1.116 moko 15100: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
15101: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 15102: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
15103: src/include/pa_config_includes.h, src/include/pa_request.h,
15104: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15105: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 15106: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 15107: src/lib/cord/include/Makefile.am,
1.116 moko 15108: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
15109: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
15110: src/targets/cgi/Makefile.am, src/types/Makefile.am,
15111: src/types/pa_vclass.h, src/types/pa_vcookie.h,
15112: src/types/pa_vform.h, src/types/pa_vhash.h,
15113: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
15114: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
15115: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
15116: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
15117: funcs ported pa_exec
1.95 moko 15118:
15119: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
15120:
15121: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
15122: bundled gc includes
15123:
15124: * src/: classes/op.C, include/pa_array.h,
15125: include/pa_sql_connection.h, include/pa_string.h,
15126: include/pa_version.h, main/compile.tab.C, main/compile.y,
15127: main/execute.C, main/pa_common.C, main/pa_exception.C,
15128: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
15129: targets/cgi/parser3.dsp: a number of bugfixes [while testing
15130: first real site (aval)]
15131:
15132: 2003-03-25 paf
15133:
15134: * operators.txt, src/main/pa_sql_driver_manager.C,
15135: src/types/pa_vstatus.C: $status.memory used free since_compact
15136: process
15137:
15138: * src/: include/pa_sql_connection.h, main/pa_globals.C,
15139: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
15140:
15141: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
15142:
15143: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
15144: src/types/pa_value.h, src/types/pa_vfile.h,
15145: src/types/pa_vobject.C, src/types/pa_vobject.h,
15146: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
15147: tests/results/121.processed: untaint.C L_URI
15148:
15149: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
15150: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
15151: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
15152: src/types/pa_vmemory.h: ^memory:compact[]
15153:
15154: * tests/results/109.processed: it was a bug in parser. updated 109
15155: test result
15156:
15157: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
15158:
15159: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
15160: tests/results/107.processed: fixed dom language [values are now
15161: considered tainted. it was a bug in parser. updated 107 test
15162: result
15163:
15164: * src/classes/xdoc.C: fixed transform params
15165:
15166: * src/: include/pa_stylesheet_manager.h,
15167: main/pa_stylesheet_manager.C: fixed stylesheet caching
15168:
15169: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
15170: overloads for structure handling
15171:
15172: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
15173: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
15174: StringBody(0) ambiguilty, introducting static
15175: StringBody::Format(int)
15176:
15177: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
15178: linked
15179:
15180: * src/types/pa_vxdoc.C: vxdoc compiled
15181:
15182: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
15183: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
15184: finalizers isntalled
15185:
15186: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
15187: doc/exception.dox, doc/index.dox, include/pa_charset.h,
15188: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15189: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
15190: compiled todo: xnode.C / finalizers
15191:
15192: * src/doc/string.dox: updated: new string internals
15193:
15194: 2003-03-24 paf
15195:
15196: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15197: include/pa_charset.h, include/pa_config_fixed.h,
15198: include/pa_request.h, include/pa_stylesheet_connection.h,
15199: include/pa_stylesheet_manager.h, main/pa_charset.C,
15200: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
15201: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
15202: types/pa_vxnode.h: started XML
15203:
15204: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
15205:
15206: * src/: classes/file.C, classes/image.C, classes/mail.C,
15207: include/pa_string.h, main/pa_common.C,
15208: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
15209:
15210: * src/: classes/file.C, classes/image.C, classes/mail.C,
15211: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
15212: main/pa_request.C, main/pa_sql_driver_manager.C,
15213: types/pa_vimage.h: size_t pos everywhere checks changed to check
15214: for eq STRING_NOT_FOUND
15215:
15216: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
15217: optimize bit implemented
15218:
15219: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15220: String::ArrayFragment::append_positions fixed
15221:
15222: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
15223: String::this_starts fixed
15224:
15225: * src/main/pa_string.C, tests/Makefile: string::pos fixed
15226:
15227: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
15228: hashcode implemented fully, including per-char callback [it can
15229: be - substr CORD node]
15230:
15231: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
15232: rewritten to rewalloc with 100byte buf ahead
15233:
15234: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
15235: src/include/pa_string.h, src/main/compile.tab.C,
15236: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
15237: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
15238: CORD_ec [bad] would rewrite as realloc now
15239:
15240: * src/: classes/date.C, classes/file.C, classes/form.C,
15241: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
15242: include/pa_cache_managers.h, include/pa_charsets.h,
15243: include/pa_common.h, include/pa_request.h,
15244: include/pa_sql_driver_manager.h, include/pa_table.h,
15245: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
15246: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
15247: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
15248: types/pa_vmail.C, types/pa_vmethod_frame.C,
15249: types/pa_vstateless_class.h: 2*2 worked :)
15250:
15251: * parser3.dsw, src/classes/date.C, src/classes/file.C,
15252: src/include/pa_exec.h, src/include/pa_string.h,
15253: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
15254: passed OK
15255:
15256: * src/: classes/hash.C, classes/string.C, classes/table.C,
15257: types/pa_value.C: all linked todo: debug
15258:
15259: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
15260: types/pa_vstateless_class.C: all compiled. todo:link
15261:
15262: * src/types/pa_wcontext.C: pa_wcontext.C compiled
15263:
15264: * src/types/pa_vtable.C: pa_vtable.C compiled
15265:
15266: * src/types/pa_vstring.C: pa_vstring.C compiled
15267:
15268: * src/types/pa_vstatus.C: pa_vstatus.C compiled
15269:
15270: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
15271: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
15272: pa_vstateless_class.C, pa_vstateless_class.h:
15273: pa_vstateless_class.C compiled
15274:
15275: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
15276: types/pa_vmath.C: pa_vmail.C compiled
15277:
15278: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
15279:
15280: * src/types/pa_vform.C: pa_vform.C compiled
15281:
15282: * src/types/pa_vfile.C: pa_vfile.C compiled
15283:
15284: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
15285: pa_vstateless_class.C: pa_vcookie.C compiled
15286:
15287: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
15288: types/pa_vhash.h: pa_value.C compiled
15289:
15290: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
15291: classes.lib main.lib compiled
15292:
15293: * src/classes/void.C: void.C compiled
15294:
15295: * src/: classes/string.C, classes/table.C, include/pa_string.h,
15296: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
15297: compiled
15298:
15299: * src/: classes/string.C, include/pa_request.h,
15300: include/pa_string.h, main/pa_string.C: string.C compiled
15301:
15302: * src/: classes/op.C, classes/string.C, classes/table.C,
15303: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
15304: main/pa_request.C, main/pa_string.C: op.C compiled
15305:
15306: * src/classes/: math.C, op.C: math.C compiled
15307:
15308: * src/: classes/mail.C, classes/string.C, classes/table.C,
15309: types/pa_vmail.h: mail.C compiled
15310:
15311: * src/classes/: int.C, table.C: int.C compiled
15312:
15313: * src/: classes/hash.C, classes/image.C, classes/string.C,
15314: classes/table.C, include/pa_memory.h, include/pa_string.h,
15315: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
15316: compiled
15317:
15318: * src/: classes/hash.C, classes/string.C, classes/table.C,
15319: classes/void.C, classes/xdoc.C, include/pa_request.h,
15320: include/pa_sql_connection.h: hash.C compiled
15321:
15322: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
15323: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
15324: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15325: classes/math.C, classes/op.C, classes/response.C,
15326: classes/string.C, classes/table.C, classes/void.C,
15327: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
15328: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15329: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
15330: file.C table.C compiled
15331:
15332: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
15333: main/untaint.C: main.lib compiled
15334:
15335: 2003-03-21 paf
15336:
15337: * src/: classes/op.C, include/pa_cache_managers.h,
15338: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15339: include/pa_stylesheet_manager.h, main/pa_exception.C,
15340: main/pa_globals.C, main/pa_sql_driver_manager.C,
15341: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
15342: compiled
15343:
15344: * src/: classes/hash.C, classes/image.C, classes/op.C,
15345: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
15346: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15347: main/compile.C, main/pa_common.C, main/pa_request.C,
15348: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
15349: pa_request.C compiled
15350:
15351: * src/: classes/hash.C, classes/mail.C, classes/op.C,
15352: include/pa_request.h, main/execute.C, main/pa_request.C,
15353: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
15354: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
15355: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15356: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
15357: compiled
15358:
15359: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
15360: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
15361: on unix
15362:
15363: * src/: include/pa_charset.h, include/pa_charsets.h,
15364: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
15365: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
15366: pa_charsets.C compiled
15367:
15368: * src/: classes/image.C, classes/mail.C, classes/op.C,
15369: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
15370: main/compile.y, main/execute.C, main/pa_common.C,
15371: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
15372: types/pa_vcode_frame.h, types/pa_vimage.h,
15373: types/pa_vmethod_frame.h: execute.C compiled
15374:
15375: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15376: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15377: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15378: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
15379: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15380: include/pa_cache_managers.h, include/pa_charsets.h,
15381: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
15382: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
15383: include/pa_sql_driver_manager.h, include/pa_string.h,
15384: include/pa_stylesheet_connection.h,
15385: include/pa_stylesheet_manager.h, include/pa_table.h,
15386: main/compile.C, main/compile.tab.C, main/compile.y,
15387: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15388: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15389: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
15390: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
15391: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15392: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
15393: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
15394: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15395: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15396: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15397: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15398: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15399: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15400: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15401: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15402: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15403: types/pa_vresponse.h, types/pa_vstateless_class.C,
15404: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15405: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15406: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15407: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15408: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15409: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
15410: [C++ CORD wrapper]
15411:
15412: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
15413:
15414: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
15415: $file::exec/cgi[script; $.charset[this is script's charset]
15416:
15417: command line, env values, input got transcoded before call
15418: stdout, stderr got transcoded after call
15419:
15420: * src/classes/file.C: ^file::exec/cgi now does not pass post data
15421: by default. use: ^file::exec[...;$.stdin[$request.body]
15422:
15423: * src/main/pa_common.C: } typo bug fix
15424:
15425: * src/main/pa_common.C: } typo bug fix
15426:
15427: 2003-03-20 paf
15428:
15429: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
15430: main/untaint.C: cord bug fix, but still errors todo: clear out
15431:
15432: * src/include/pa_string.h: more tests
15433:
15434: * src/main/pa_string.C: string.pos fixed
15435:
1.116 moko 15436: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
15437: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
15438: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
15439: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
15440: replaces
1.95 moko 15441:
15442: * src/: classes/image.C, include/pa_dictionary.h,
15443: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15444: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
15445: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
15446: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
15447:
15448: * src/include/pa_string.h: warning
15449:
15450: * src/include/pa_string.h: this_starts fixed
15451:
15452: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
15453: new String ctor & append params convention
15454:
15455: * src/: classes/file.C, classes/hash.C, classes/image.C,
15456: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
15457: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
15458: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
15459: main/pa_exception.C, main/pa_exec.C,
15460: main/pa_sql_driver_manager.C, main/pa_string.C,
15461: main/pa_stylesheet_manager.C, main/untaint.C,
15462: targets/isapi/parser3isapi.C, types/pa_vimage.C,
15463: types/pa_vmail.C: more tests OK
15464:
15465: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
15466: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
15467: gc/exit runned OK
15468:
15469: * src/types/pa_vmail.C: another naming problem: should not name
15470: vars like that: unpredictable close caused problems with later
15471: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
15472: descriptors missing on startup: stdin; Bad file number
15473:
15474: todo: find out why so many filters(stream) here. probably wrong?
15475:
15476: * src/: include/pa_dictionary.h, include/pa_string.h,
15477: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
15478: main/untaint.C: test compiled
15479:
15480: * src/: classes/image.C, classes/mail.C, classes/math.C,
15481: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
15482: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
15483: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
15484: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
15485: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15486: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
15487: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
15488: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
15489: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
15490:
15491: * parser3.dsw, src/classes/file.C, src/classes/image.C,
15492: src/classes/op.C, src/classes/string.C, src/classes/table.C,
15493: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
15494: src/include/pa_memory.h, src/include/pa_request.h,
15495: src/include/pa_request_charsets.h,
15496: src/include/pa_sql_connection.h, src/include/pa_string.h,
15497: src/main/compile.tab.C, src/main/execute.C,
15498: src/main/pa_charset.C, src/main/pa_common.C,
15499: src/main/pa_exception.C, src/main/pa_exec.C,
15500: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15501: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
15502: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
15503: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
15504: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15505: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
15506: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15507: src/types/pa_vobject.C, src/types/pa_vresponse.C,
15508: src/types/pa_vstatus.C, src/types/pa_vstring.C,
15509: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15510: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
15511: pa_common.C [done, without http for now]
15512:
15513: 2003-03-19 paf
15514:
15515: * src/: classes/date.C, classes/form.C, classes/hash.C,
15516: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
15517: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
15518: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
15519: include/pa_string.h, include/pa_table.h, main/compile.C,
15520: main/compile_tools.C, main/execute.C, main/pa_charset.C,
15521: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
15522: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
15523: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15524: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
15525: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
15526: types/pa_vstateless_class.h, types/pa_vtable.C,
15527: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
15528: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15529: types/pa_wwrapper.h: started test
15530:
1.116 moko 15531: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
15532: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 15533:
15534: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
15535: include/pa_string.h, main/pa_string.C: string compiled todo: test
15536: it
15537:
15538: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
15539: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
15540: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
15541: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
15542: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
15543: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
15544: types/pa_vmethod_frame.h, types/types.dsp: string
15545: reimplementation with cord+array<fragment>: 70%
15546:
15547: 2003-03-18 paf
15548:
15549: * src/: classes/date.C, classes/file.C, classes/form.C,
15550: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
15551: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
15552: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
15553: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
15554: can ignore lang in cmp and pos really, but would
15555: split properly!
15556:
15557: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
15558: cord part made parser/src/lib: it's not compiled into libgc by
15559: default
15560:
15561: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
15562: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15563: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15564: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15565: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15566: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15567: src/classes/xnode.C, src/classes/xnode.h,
15568: src/include/Makefile.am, src/include/pa_cache_managers.h,
15569: src/include/pa_charset.h, src/include/pa_charsets.h,
15570: src/include/pa_common.h, src/include/pa_dictionary.h,
15571: src/include/pa_exception.h, src/include/pa_exec.h,
15572: src/include/pa_globals.h, src/include/pa_hash.h,
15573: src/include/pa_memory.h, src/include/pa_pool.h,
15574: src/include/pa_request.h, src/include/pa_request_charsets.h,
15575: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
15576: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15577: src/include/pa_stylesheet_connection.h,
15578: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
15579: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
15580: src/main/compile.C, src/main/compile.tab.C,
15581: src/main/compile_tools.C, src/main/compile_tools.h,
15582: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
15583: src/main/pa_charsets.C, src/main/pa_common.C,
15584: src/main/pa_dictionary.C, src/main/pa_exception.C,
15585: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
15586: src/main/pa_pool.C, src/main/pa_request.C,
15587: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15588: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
15589: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
15590: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
15591: src/types/pa_junction.h, src/types/pa_method.h,
15592: src/types/pa_value.C, src/types/pa_value.h,
15593: src/types/pa_vclass.C, src/types/pa_vclass.h,
15594: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15595: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15596: src/types/pa_vdouble.h, src/types/pa_venv.h,
15597: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
15598: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
15599: src/types/pa_vimage.C, src/types/pa_vimage.h,
15600: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
15601: src/types/pa_vmath.C, src/types/pa_vmath.h,
15602: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15603: src/types/pa_vobject.C, src/types/pa_vobject.h,
15604: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15605: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15606: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15607: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
15608: src/types/pa_vstatus.h, src/types/pa_vstring.C,
15609: src/types/pa_vstring.h, src/types/pa_vtable.C,
15610: src/types/pa_vtable.h, src/types/pa_vvoid.h,
15611: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15612: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
15613: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
15614: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
15615: gc: PA_Object done lots of replacements also
15616:
15617: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
15618: gc logging
15619:
15620: 2003-03-17 paf
15621:
15622: * src/: classes/date.C, classes/file.C, classes/form.C,
15623: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
15624: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
15625: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15626: include/pa_string.h, include/pa_types.h, main/compile.C,
15627: main/compile.tab.C, main/execute.C, main/pa_charset.C,
15628: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
15629: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15630: main/pa_sql_driver_manager.C, main/pa_string.C,
15631: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
15632: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
15633: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
15634: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
15635: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
15636: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15637: types/pa_vxnode.h: libgc attempt
15638:
15639: 2003-03-13 paf
15640:
15641: * src/: include/pa_sql_driver_manager.h,
15642: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
15643: called
15644:
15645: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
15646: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
15647: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
15648: types/pa_value.h, types/pa_vobject.h,
15649: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
15650: set_base, set_derived simplified [counter leaks fixed]
15651:
15652: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
15653: src/types/types.dsp: incorporated status class patch From:
15654: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
15655: 2003 8:14 AM
15656:
15657: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
15658: Win32 specific: QuotaPeakNonPagedPoolUsage
15659: QuotaPeakPagedPoolUsage PeakPagefileUsage]
15660:
15661: 2003-03-12 paf
15662:
1.116 moko 15663: * configure, configure.in, src/lib/ltdl/configure,
15664: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 15665: lib/ltdl/Makefile now created by /configure.in only [were by
15666: lib/ltdl/configure.in OVERWRITE]
15667:
1.116 moko 15668: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
15669: linkage fixed for g++ 3.2.2
1.95 moko 15670:
15671: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
15672: on using privately declared class [fixed]
15673:
15674: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
15675: 3.2 rightliy complained on using privately declared class [fixed]
15676:
15677: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
15678: sigpipe before request constructor now causes death
15679:
15680: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
15681: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
15682: not cause exception in exception handler
15683:
1.116 moko 15684: * configure, configure.in, src/targets/cgi/Makefile.am: configure
15685: now default links libstdc++ statically. that can be overriden by
15686: --with-dynamic-stdcpp
1.95 moko 15687:
15688: 2003-03-11 paf
15689:
15690: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
15691: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
15692: necessity of libstdc++
15693:
15694: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15695:
15696: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15697:
15698: 2003-03-08 paf
15699:
15700: * tests/Makefile: make install & co
15701:
15702: * src/: include/pa_request.h, classes/op.C: removing
15703: vclass,object.h -> pa_request.h dependency
15704:
15705: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
15706: main/pa_request.C: removing vform,response,cookie.h ->
15707: pa_request.h dependency
15708:
15709: * src/include/pa_request.h: removing vmail.h -> pa_request.h
15710: dependency [testing...]
15711:
15712: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
15713: return 0; fixed
15714:
15715: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
15716: types/pa_vmail.h: vmail.C received just compiled [not tested]
15717:
15718: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
15719:
15720: * src/main/pa_request.C: forgotten: ifdef XML
15721:
15722: * src/main/pa_request.C: forgotten: ifdef XML
15723:
15724: * src/targets/cgi/parser3.C: todo: move to latest xml version on
15725: win32 and run memleak tests again
15726:
15727: * src/targets/cgi/parser3.C: charsets: see some strange things with
15728: old xml lib-- it's internal memory handling has faults
15729:
15730: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
15731: problems when transcode from charset A to A.
15732:
15733: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
15734: todo: still problems when transcode from charset A to A.
15735:
15736: * src/: classes/hash.C, classes/mail.C, classes/string.C,
15737: classes/table.C, include/pa_array.h,
15738: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
15739: started full-scale-site-test [~ http://parser.ru sources]
15740:
15741: some fixes
15742:
15743: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
15744: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
15745: 117.html, 118.html, 119.html, 120.html, results/109.processed,
15746: results/110.processed, results/111.processed,
15747: results/112.processed, results/113.processed,
15748: results/114.processed, results/115.processed,
15749: results/116.processed, results/117.processed,
15750: results/118.processed, results/119.processed,
15751: results/120.processed: xml: tests 109 dom create/show 110 xpath
15752: selectSingle 111 xdoc.create from tainted & 112
15753: xdoc.create/output with russian attr value 113 xpath
15754: selectString/Number 114 dom attributes.count 115 xpath selectBool
15755: 116 output media-type change 117 transform by dom stylesheet 118
15756: empty transform result 119 dom setAttribute 120 nbsp letter
15757: output
15758:
15759: =END OF PREPARED XML TESTS=
15760:
15761: 2003-03-07 paf
15762:
15763: * src/classes/xdoc.C, src/include/pa_charset.h,
15764: src/include/pa_stylesheet_connection.h, tests/108.html,
15765: tests/108.xsl, tests/results/108.processed: xml: test 108
15766: transform with params [bugs fixed]
15767:
15768: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
15769: from copy/paste bug
15770:
15771: * src/classes/xdoc.C, src/include/pa_charset.h,
15772: src/include/pa_request.h, src/main/execute.C,
15773: src/main/pa_charset.C, src/main/pa_exception.C,
15774: src/main/pa_globals.C, src/main/pa_request.C,
15775: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15776: src/types/pa_vxnode.C, tests/107.html,
15777: tests/results/107.processed: xml: test: 107 bug fixes
15778:
15779: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15780: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15781: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
15782:
15783: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
15784: string
15785:
15786: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
15787: mem alloc functions used for different cases [libxml, libxsl]
15788:
15789: * src/classes/classes.C: fixed: prevent system classes from
15790: modification to lock ALL the classes, not only directly used
15791:
15792: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
15793: linked
15794:
15795: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
15796:
15797: 2003-03-06 paf
15798:
15799: * src/classes/xdoc.C: xdoc.C 50%
15800:
15801: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
15802: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15803: main/pa_globals.C, main/pa_request.C,
15804: main/pa_stylesheet_manager.C: xnode.C compiled
15805:
15806: * src/: include/pa_stylesheet_connection.h,
15807: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
15808: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
15809:
15810: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
15811: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
15812: xml: stylesheet&manager STARTED
15813:
15814: * src/: include/pa_globals.h, main/pa_charset.C,
15815: main/pa_exception.C, main/pa_globals.C: xml: exceptions
15816:
15817: * src/: include/pa_charset.h, include/pa_config_fixed.h,
15818: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
15819: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
15820: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
15821: charsets
15822:
15823: * tests/023.html: in some cases it rounded up badly. postponing
15824: solution of that problem, making more simple test
15825:
15826: * tests/: 058_paf2000.png, results/058.processed: .png added with
15827: -kb now
15828:
15829: * src/: include/pa_charset.h, include/pa_charsets.h,
15830: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
15831: moved to charsets.C
15832:
15833: 2003-03-05 paf
15834:
15835: * src/classes/string.C, src/include/pa_string.h,
15836: src/main/pa_string.C, tests/105.html,
15837: tests/results/105.processed: String::match bug fixed
15838:
15839: * src/classes/op.C, src/main/main.dsp, tests/104.html,
15840: tests/results/104.processed: ^bpt operator added [does int3 in
15841: debug build on win32]
15842:
15843: * tests/: 057.html, results/057.processed: test bug fixed
15844:
1.116 moko 15845: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 15846:
15847: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
15848: missing
15849:
1.116 moko 15850: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
15851: forgotten files added to Makes
1.95 moko 15852:
15853: * ltmain.sh: ltmain.sh added
15854:
15855: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15856: change undone ;(
15857:
15858: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15859: made static
15860:
15861: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 15862: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
15863: todo:make linker happy
1.95 moko 15864:
15865: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
15866: env param made optional
15867:
15868: 2003-03-04 paf
15869:
15870: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
15871: types/pa_vimage.h: number of gcc compiler bugs fixed
15872:
15873: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
15874: results/103.processed: tests: 103 image.copy transparence test
15875:
15876: * src/main/execute.C, tests/101.html, tests/102.html,
15877: tests/results/101.processed, tests/results/102.processed: tests:
15878: 101 method/variable name conflict test 102 form fields change
15879: should not not change anything [bug fix]
15880:
15881: * tests/: 057.html, 099.html, 100.html, results/057.processed,
15882: results/099.processed, results/100.processed: tests: 57 date
15883: create 2002: added 99,100 response:body/download
15884:
15885: * src/classes/image.C, tests/098.html, tests/098font.gif,
15886: tests/results/098.processed: test: 98 image font text [bug fixed]
15887:
15888: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
15889: tests/results/097.processed: test: 97 file::load http:// [bugs
15890: fixed]
15891:
15892: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
15893: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
15894: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
15895: image EXIF [bug fixed]
15896:
15897: * src/classes/table.C, src/main/execute.C, tests/061.dat,
15898: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
15899: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
15900: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
15901: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
15902: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
15903: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
15904: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
15905: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
15906: tests/094.html, tests/095.html, tests/results/061.processed,
15907: tests/results/062.processed, tests/results/063.processed,
15908: tests/results/064.processed, tests/results/065.processed,
15909: tests/results/066.processed, tests/results/067.processed,
15910: tests/results/068.processed, tests/results/069.processed,
15911: tests/results/070.processed, tests/results/071.processed,
15912: tests/results/072.processed, tests/results/073.processed,
15913: tests/results/074.processed, tests/results/075.processed,
15914: tests/results/076.processed, tests/results/077.processed,
15915: tests/results/078.processed, tests/results/080.processed,
15916: tests/results/081.processed, tests/results/082.processed,
15917: tests/results/083.processed, tests/results/084.processed,
15918: tests/results/085.processed, tests/results/086.processed,
15919: tests/results/087.processed, tests/results/088.processed,
15920: tests/results/089.processed, tests/results/090.processed,
15921: tests/results/091.processed, tests/results/092.processed,
15922: tests/results/093.processed, tests/results/094.processed,
15923: tests/results/095.processed, tests/079.html,
15924: tests/results/079.processed: tests: 61 file::stat size 62
15925: string->int autoconvert 63 double .int,dec,div,mul 64 date
15926: compare 65 file: basename,justname,justext 66 math:crypt 67
15927: string.match simple on long 68 string.match normalized simple on
15928: long 69 string.int 70 file::stat content-type 71 table.join 72
15929: hash parameter conditional pass 73 date daylightsaving,yearday 74
15930: date arithmetics 75 response date values/attributes 76 string.pos
15931: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
15932: with local 80 scientific numeric literal in string autoconvert 81
15933: xor: logical and numerical 82 for delims 83 menu delims 84
15934: table.hash distinct 85 long string replace 86 throw+catch
15935: current language preserve 87 bit shifts 88 junction tests +
15936: $caller test 89 hash.foreach selfmodification 90 int/void to int
15937: 91 $caller test 92 junction is + def junction tests 93 $caller
15938: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
15939:
15940: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
15941: fixed] 60 string eq string [bug fixed]
15942:
15943: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
15944: 058.html, 058_paf2000.png, 059.html, 060.html,
15945: results/053.processed, results/054.processed,
15946: results/055.processed, results/056.processed,
15947: results/057.processed, results/058.processed,
15948: results/059.processed, results/060.processed: test: 53
15949: string.replace 54 junctions 55 table.hash 56 call indirect 57
15950: date.create[string] 58 image.measure[png]
15951:
15952: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
15953: outputs/051.processed, results/052.processed: test: 52
15954: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
15955: task: fix that
15956:
15957: 2003-03-03 paf
15958:
15959: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
15960: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
15961: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
15962: outputs/049.processed, outputs/050.processed,
15963: outputs/051.processed, results/001.processed,
15964: results/002.processed, results/003.processed,
15965: results/005.processed, results/006.processed,
15966: results/008.processed, results/009.processed,
15967: results/011.processed, results/012.processed,
15968: results/013.processed, results/014.processed,
15969: results/015.processed, results/016.processed,
15970: results/017.processed, results/020.processed,
15971: results/021.processed, results/022.processed,
15972: results/024.processed, results/025.processed,
15973: results/026.processed, results/027.processed,
15974: results/028.processed, results/029.processed,
15975: results/030.processed, results/031.processed,
15976: results/049.processed, results/050.processed,
15977: results/051.processed, results/043.processed,
15978: results/044.processed, results/045.processed,
15979: results/046.processed, results/047.processed,
15980: results/048.processed: tests: 43,44,45 date rolls 46
15981: autoevaluating junction 47 table.select 48 name with subvar 49
15982: hash-creating switch 50 process 51 started parent/child, works as
15983: it were but it were NOT GOOD, created separate task to fix that
15984:
15985: * tests/: 042.html, results/042.processed: test: 42
15986: exception.handled
15987:
15988: * tests/: 041.html, results/041.processed: test: 41 table.locate by
15989: expression
15990:
15991: * tests/: 040.html, results/040.processed: test: 39 method result
15992: of type table 40 method param junction auto evaluate
15993:
15994: * tests/: 039.html, results/039.processed: test: 37 method result
15995: of type table
15996:
15997: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
15998: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
15999: tests/038.html, tests/results/033.processed,
16000: tests/results/034.processed, tests/results/035.processed,
16001: tests/results/036.processed, tests/results/037.processed,
16002: tests/results/038.processed: tests: 33 string.replace 34
16003: string.upper 35 table created 36 local/global vars with juntions
16004: 37 table clone 38 math PI & number formatting
16005:
16006: math class registring typo fixed
16007:
16008: * src/classes/op.C, src/include/pa_request.h,
16009: src/include/pa_string.h, src/main/execute.C,
16010: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
16011: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
16012: tests/032.html, tests/results/032.processed: uchar changed to
16013: String_UL in all places [was not everywhere] untaint test: 032
16014:
16015: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
16016: tests/results/004.processed, tests/parser-cygwin.sh,
16017: tests/parser-unix.sh: removed -H command line key, now testing
16018: using .sh file with SERVER_SOFTWARE=xxx
16019:
16020: 2003-02-26 paf
16021:
16022: * src/main/execute.C, src/types/pa_vstateless_class.h,
16023: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
16024: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
16025: tests/results/024.processed, tests/results/025.processed,
16026: tests/results/026.processed, tests/results/027.processed,
16027: tests/results/028.processed, tests/results/029.processed,
16028: tests/results/030.processed, tests/results/031.processed: fixed
16029: bug with name_cstr mutable CharPtr more tests
16030:
16031: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
16032: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
16033: << abort. die now just exits
16034:
16035: * src/classes/classes.awk, src/classes/classes.h,
16036: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16037: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16038: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16039: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16040: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16041: src/classes/xnode.C, src/include/pa_memory.h,
16042: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
16043: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
16044: src/types/pa_vform.C, tests/015.html, tests/016.html,
16045: tests/017.html, tests/018.html, tests/019.html,
16046: tests/019paf2001.gif, tests/020.html, tests/021.html,
16047: tests/022.html, tests/023.html, tests/022_dir/a.html,
16048: tests/022_dir/b.txt, tests/022_dir/c.htm,
16049: tests/results/015.processed, tests/results/016.processed,
16050: tests/results/017.processed, tests/results/018.processed,
16051: tests/results/019.processed, tests/results/020.processed,
16052: tests/results/021.processed, tests/results/022.processed,
16053: tests/results/023.processed: methoded_array now contains all Mxxx
16054: classes SAPI::get_env now returns info on pool more tests
16055:
16056: * src/include/pa_array.h, src/include/pa_hash.h,
16057: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
16058: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
16059: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
16060: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
16061: tests/014.html, tests/Makefile, tests/outputs/create-dir,
16062: tests/results/001.processed, tests/results/002.processed,
16063: tests/results/003.processed, tests/results/004.processed,
16064: tests/results/005.processed, tests/results/006.processed,
16065: tests/results/007.processed, tests/results/008.processed,
16066: tests/results/009.processed, tests/results/010.processed,
16067: tests/results/011.processed, tests/results/012.processed,
16068: tests/results/013.processed, tests/results/014.processed: hash
16069: cloning fixed
16070:
16071: 2003-02-25 paf
16072:
16073: * src/main/pa_common.C: typo fixed
16074:
16075: 2003-02-24 paf
16076:
16077: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
16078: [one remained]
16079:
16080: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
16081: [should have been get_string(&pool)] todo: check other such calls
16082:
16083: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
16084: test10, bad lookups
16085:
16086: xxx* xxx=smartptr.get(); << is bad style, after ";" original
16087: object got destructed, and xxx points to sky
16088:
16089: * ChangeLog, src/classes/string.C: match bug fixed
16090:
16091: * src/types/pa_vmail.C: body [text/html] transcoded to
16092: $.charset[specified] now
16093:
16094: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16095: which failed to handle sigsetjmp+throw: crashed inside of
16096: pre-throw code. rewritten simplier [though duplicating
16097: closesocket code]
16098:
16099: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16100: which failed to handle sigsetjmp+throw: crashed inside of
16101: pre-throw code. rewritten simplier [though duplicating
16102: closesocket code]
16103:
16104: 2003-02-21 paf
16105:
16106: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
16107: $cookie:name[$.expires[date << can be now]]
16108:
16109: written makefile with regression tests [raw]
16110:
16111: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
16112: tests' only [it's not forcing CGI mode now] now use -H to output
16113: CGI header when parser used in command line [useful for tests
16114: also]
16115:
16116: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
16117: switches on CGI mode, and is used in regression tests
16118:
16119: * src/: include/pa_request.h, main/pa_request.C,
16120: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
16121: fixed
16122:
16123: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
16124: handling pa_*
16125:
16126: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
16127: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
16128: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
16129: memory handling files
16130:
16131: * src/main/pa_array.C: pool::format_integer terminator fixed
16132:
16133: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
16134: compiles OK test to show benefits of free
16135:
16136: * src/: classes/file.C, classes/image.C, classes/mail.C,
16137: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
16138: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16139: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
16140: use pool [as the one in ^process]
16141:
16142: * src/classes/op.C: fixed process. sould now check for all cstr's
16143: -- some must use pool [as the one in ^process]
16144:
16145: 2003-02-20 paf
16146:
16147: * src/: classes/date.C, classes/double.C, classes/file.C,
16148: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16149: classes/math.C, classes/op.C, classes/response.C,
16150: classes/string.C, classes/table.C, classes/void.C,
16151: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
16152: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
16153: string cmp fixed
16154:
16155: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
16156: values passed OK now
16157:
16158: 2003-02-19 paf
16159:
16160: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
16161: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
16162: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
16163: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
16164: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
16165: all remaning leaks resulted from pooled::malloc calls [excluding
16166: in gd -- planning complete rewrite extremely ugly code]
16167:
16168: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
16169: files
16170:
16171: 2003-02-17 paf
16172:
16173: * src/: classes/date.C, classes/double.C, classes/file.C,
16174: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16175: classes/response.C, classes/string.C, classes/table.C,
16176: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
16177: include/pa_stylesheet_connection.h,
16178: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
16179: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16180: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
16181: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
16182: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
16183: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
16184: of unitialized simple-typed field
16185:
16186: * src/: classes/classes.C, classes/classes.h, main/execute.C,
16187: main/pa_charset.C, main/pa_request.C: another bug of unitialized
16188: simple-typed field fixed. todo: find&kill all like that one
16189:
16190: * src/: main/execute.C, targets/cgi/pa_pool.C,
16191: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
16192: debug output fixed
16193:
16194: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
16195: main/pa_request.C: stack-stored items need extra .ref to prevent
16196: object_ptr from delete[them]
16197:
16198: * src/: classes/date.C, classes/op.C, classes/table.C,
16199: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
16200: include/pa_charset.h, main/Makefile.am, main/main.dsp,
16201: main/pa_charset.C, main/pa_common.C,
16202: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16203: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16204: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
16205: calls
16206:
16207: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
16208: couple mem leaks rusulted from old pooled::malloc usage.
16209: todo:find more like those
16210:
16211: * src/main/: compile.C, compile_tools.C: 2*2!
16212:
16213: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
16214: stackItem fixed [there were no string on stack before]
16215:
16216: * src/: main/execute.C, main/pa_request.C,
16217: types/pa_vmethod_frame.C: first letters out OK
16218:
16219: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
16220: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
16221: main/pa_string.C, main/untaint.C, types/pa_value.h,
16222: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
16223: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
16224: type not initialized with zeros :( while class fields of class
16225: types initialized with default constructors. learn C++
16226:
16227: * src/: classes/classes.awk, classes/double.C, classes/file.C,
16228: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
16229: classes/math.C, classes/xdoc.C, classes/xnode.C,
16230: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
16231: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
16232:
16233: 2003-02-14 paf
16234:
16235: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
16236: 13 link errors
16237:
16238: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
16239: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
16240: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16241: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
16242: errors :)
16243:
16244: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
16245: classes/hash.C, classes/mail.C, classes/op.C,
16246: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
16247: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
16248: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
16249: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
16250:
16251: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
16252: classes/table.C, include/pa_common.h, include/pa_globals.h,
16253: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
16254: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
16255: types/pa_vint.h, types/types.dsp: op compiled
16256:
16257: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
16258: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
16259: main/untaint.C, types/pa_vtable.h: string, response compiled
16260:
16261: 2003-02-07 paf
16262:
16263: * src/: classes/table.C, types/pa_vtable.h: table compiled
16264:
16265: 2003-02-06 paf
16266:
16267: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
16268: mail compiled
16269:
16270: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
16271: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
16272: types/pa_vfile.h, types/pa_vimage.h: image compiled
16273:
16274: * src/classes/: file.C, form.C: form compiled
16275:
16276: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
16277: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
16278: types/pa_vfile.C, types/pa_vfile.h: file compiled
16279:
16280: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
16281: types/pa_vmath.h: math compiled [win32]
16282:
16283: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
16284: types/pa_vstring.h: hash compiled
16285:
16286: 2003-02-04 paf
16287:
16288: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
16289: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16290: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
16291: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
16292: types/pa_vhash.h: hash 50% compiled
16293:
16294: * src/: classes/date.C, classes/file.C, classes/hash.C,
16295: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
16296: classes/string.C, classes/table.C, classes/xdoc.C,
16297: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
16298: main/pa_string.C: date compiled
16299:
16300: * src/classes/: classes.dsp, double.C: double compiled
16301:
16302: * src/: classes/date.C, classes/double.C, classes/file.C,
16303: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
16304: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16305: classes/string.C, classes/table.C, classes/void.C,
16306: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
16307: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
16308: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
16309: compiled
16310:
16311: * src/: classes/date.C, classes/double.C, classes/file.C,
16312: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16313: classes/math.C, classes/op.C, classes/response.C,
16314: classes/string.C, classes/table.C, classes/void.C,
16315: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16316: types/pa_vvoid.h: void compiled :)
16317:
16318: * src/: include/pa_globals.h, main/pa_cache_managers.C,
16319: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16320: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16321: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
16322: main/pa_string.C, main/pa_uue.C, main/untaint.C,
16323: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
16324: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
16325: types/pa_vresponse.C, types/pa_vstateless_class.C,
16326: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
16327: types/pa_wcontext.C, types/types.dsp: removed stupid
16328: value_includes.h
16329:
16330: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
16331: trying to remove stupid value_includes.h
16332:
16333: * src/main/pa_exec.C: pa_exec compiled on win32
16334:
16335: * src/main/pa_exec.C: libmain.a compiled on six [unix]
16336:
16337: * src/: include/pa_globals.h, include/pa_request.h,
16338: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
16339: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
16340: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
16341: types/pa_vrequest.C, types/pa_vstateless_class.C,
16342: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
16343:
16344: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
16345: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
16346: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
16347:
16348: * src/: include/pa_array.h, include/pa_config_includes.h,
16349: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
16350: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
16351: compiled
16352:
16353: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
16354: name conflicts)
16355:
16356: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
16357: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
16358: yelds "virtual memory exhausted" while trying to compile
16359: execute.C [eating up to 127MB]
16360:
16361: 2003-02-03 paf
16362:
16363: * src/: include/pa_config_includes.h, include/pa_hash.h,
16364: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
16365: main/pa_common.C, types/pa_value.C, types/pa_value.h,
16366: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
16367: types/pa_vint.h, types/pa_vjunction.h,
16368: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
16369: started gcc compiling pa_common compiled
16370:
16371: * src/: include/pa_exception.h, include/pa_pool.h,
16372: main/pa_exception.C: exception gcc change #1
16373:
1.116 moko 16374: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
16375: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 16376:
16377: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
16378:
16379: * src/types/pa_vtable.C: vtable compiled
16380:
16381: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
16382:
16383: * src/: include/pa_cache_managers.h, main/pa_request.C,
16384: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
16385:
16386: * src/types/pa_vstateless_class.C: vstateless_class compiled
16387:
16388: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
16389:
16390: * src/types/pa_vrequest.C: vrequest compiled
16391:
16392: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
16393: pa_vobject.C, pa_vobject.h: vobject compiled
16394:
16395: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
16396: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16397: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
16398: compiled
16399:
16400: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
16401:
16402: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
16403: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
16404: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
16405: compiled
16406:
16407: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16408: main.lib - 0 error(s), 0 warning(s)
16409:
16410: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16411: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
16412:
16413: 2003-01-31 paf
16414:
16415: * src/: include/pa_array.h, include/pa_operation.h,
16416: include/pa_request.h, main/execute.C, main/main.dsp,
16417: types/pa_vjunction.h: started last file from main library:
16418: execute
16419:
16420: * src/: include/pa_request.h, include/pa_sapi.h,
16421: main/compile.tab.C, main/compile.y, main/compile_tools.h,
16422: main/pa_request.C, targets/cgi/parser3.C,
16423: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
16424: types/pa_vhash.h: pa_request compiled
16425:
16426: * src/: classes/op.C, classes/string.C, include/pa_common.h,
16427: include/pa_globals.h, include/pa_request.h,
16428: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
16429: main/execute.C, main/main.dsp, main/pa_common.C,
16430: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16431: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
16432: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
16433: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
16434: types/types.dsp: most pa_request compiled
16435:
16436: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16437: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16438: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16439: classes/op.C, classes/response.C, classes/string.C,
16440: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16441: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16442: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16443: include/pa_config_fixed.h, include/pa_config_includes.h,
16444: include/pa_dictionary.h, include/pa_dir.h,
16445: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16446: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
16447: include/pa_pool.h, include/pa_request.h,
16448: include/pa_request_charsets.h, include/pa_request_info.h,
16449: include/pa_sapi.h, include/pa_socks.h,
16450: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16451: include/pa_stack.h, include/pa_string.h,
16452: include/pa_stylesheet_connection.h,
16453: include/pa_stylesheet_manager.h, include/pa_table.h,
16454: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16455: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16456: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
16457: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
16458: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16459: main/compile.C, main/compile.tab.C, main/compile.y,
16460: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16461: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
16462: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16463: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16464: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16465: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16466: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16467: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
16468: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
16469: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16470: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
16471: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
16472: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
16473: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
16474: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16475: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16476: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16477: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16478: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16479: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16480: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16481: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16482: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16483: types/pa_vresponse.h, types/pa_vstateless_class.C,
16484: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16485: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16486: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16487: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16488: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16489: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
16490:
16491: * ChangeLog, src/classes/classes.h, src/classes/op.C,
16492: src/include/pa_cache_managers.h, src/include/pa_charset.h,
16493: src/include/pa_charsets.h, src/include/pa_common.h,
16494: src/include/pa_dictionary.h, src/include/pa_exception.h,
16495: src/include/pa_exec.h, src/include/pa_pool.h,
16496: src/include/pa_request.h, src/include/pa_sapi.h,
16497: src/include/pa_sql_connection.h,
16498: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16499: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
16500: src/main/compile.tab.C, src/main/compile_tools.C,
16501: src/main/compile_tools.h, src/main/main.dsp,
16502: src/main/pa_charset.C, src/main/pa_charsets.C,
16503: src/main/pa_common.C, src/main/pa_dictionary.C,
16504: src/main/pa_exception.C, src/main/pa_exec.C,
16505: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16506: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
16507: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
16508: src/types/pa_vclass.h, src/types/pa_vcookie.C,
16509: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16510: src/types/pa_vdouble.h, src/types/pa_venv.h,
16511: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
16512: src/types/pa_vhash.h, src/types/pa_vimage.C,
16513: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
16514: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
16515: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16516: src/types/pa_vobject.C, src/types/pa_vobject.h,
16517: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16518: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16519: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16520: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
16521: src/types/pa_vstring.h, src/types/pa_vtable.h,
16522: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
16523: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
16524: died, long live StringPtr
16525:
16526: 2003-01-30 paf
16527:
16528: * src/: include/pa_charset.h, include/pa_request.h,
16529: include/pa_sql_driver_manager.h, main/compile.tab.C,
16530: main/compile.y, main/compile_tools.h, main/pa_request.C,
16531: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
16532:
16533: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
16534: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
16535: types/pa_vhash.h, types/pa_vmethod_frame.h,
16536: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16537: types/types.dsp: vstateless_class compiled
16538:
16539: * src/main/compile.C: compile compiled
16540:
16541: * src/: include/pa_array.h, include/pa_operation.h,
16542: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
16543: main/pa_table.C: compile_tools compiled
16544:
16545: * src/: include/pa_operation.h, main/compile.y,
16546: main/compile_tools.C, main/compile_tools.h: started
16547: compile_tools. vagues ideas of how to free compiled code
16548:
16549: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
16550: main/main.dsp, types/pa_value.C, types/pa_value.h,
16551: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
16552: compiled
16553:
16554: 2003-01-29 paf
16555:
16556: * src/: include/pa_globals.h, include/pa_request.h,
16557: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16558: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
16559: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
16560: compiled
16561:
16562: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
16563: now
16564:
16565: * src/: include/pa_array.h, include/pa_exception.h,
16566: include/pa_pool.h, main/pa_exception.C: gd compiled
16567:
16568: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
16569: compiled
16570:
16571: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16572: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
16573: types/pa_vfile.h: vfile compiled
16574:
16575: * src/: include/pa_common.h, include/pa_globals.h,
16576: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
16577: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
16578: types/pa_vform.C, types/pa_vform.h: vcookie compiled
16579:
16580: * src/: include/pa_exception.h, main/pa_cache_managers.C,
16581: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
16582: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
16583: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16584: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
16585:
16586: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
16587: main/main.dsp, main/untaint.C: more compiled
16588:
16589: * src/: include/pa_charsets.h, include/pa_request.h,
16590: include/pa_request_info.h, include/pa_string.h,
16591: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
16592: types/pa_vresponse.h: vrequest compiled
16593:
16594: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
16595: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
16596: pa_vresponse.h, pa_wcontext.h: vrequest compiled
16597:
16598: * src/: classes/classes.h, include/pa_charset.h,
16599: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
16600: include/pa_request.h, include/pa_string.h, main/main.dsp,
16601: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
16602: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
16603: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
16604: types/pa_vrequest.C, types/pa_vrequest.h,
16605: types/pa_vstateless_class.h, types/pa_vstring.h,
16606: types/pa_vvoid.h: vrequest,vdouble,vint compiled
16607:
16608: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
16609: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
16610: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
16611: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
16612: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16613: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
16614: types/pa_vobject.h, types/pa_vstateless_class.h,
16615: types/pa_vstateless_object.h, types/pa_vstatus.h,
16616: types/pa_vstring.h, types/types.dsp: vmath compiled
16617:
16618: 2003-01-28 paf
16619:
16620: * src/: classes/classes.h, classes/date.C, classes/file.C,
16621: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
16622: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
16623: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
16624: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
16625: compile_tools
16626:
16627: * src/: include/pa_charset.h, include/pa_exception.h,
16628: include/pa_request.h, include/pa_string.h, main/untaint.C:
16629: untaint compiled
16630:
16631: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
16632: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
16633: more compiled. struck with string::store_to needing to know
16634: source/client charsets
16635:
16636: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
16637: types/pa_vfile.h: uue compiled
16638:
16639: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
16640: table compiled
16641:
16642: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
16643: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
16644:
16645: * src/: include/pa_charset.h, main/pa_charset.C,
16646: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
16647: introduced]
16648:
16649: * src/: classes/date.C, include/pa_charset.h,
16650: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
16651: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
16652: pa_charsets compiled
16653:
16654: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
16655: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
16656:
16657: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
16658: common compiled
16659:
16660: * src/: include/pa_charsets.h, main/pa_charsets.C,
16661: main/pa_sql_driver_manager.C: pa_charsets compiled
16662:
16663: * src/: include/pa_array.h, include/pa_charset.h,
16664: include/pa_charsets.h, include/pa_pool.h,
16665: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16666: include/pa_stack.h, include/pa_string.h,
16667: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
16668: sql_driver_manager compiled
16669:
16670: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
16671: letter i with two dots added to koi, all ukranian letters added
16672: to win1251.
16673:
16674: typographic simbol 0xb9 deleted from win1251 [strange one & were
16675: abscent from koi]
16676:
16677: 2003-01-27 paf
16678:
16679: * src/: include/pa_exception.h, include/pa_sql_connection.h,
16680: include/pa_sql_driver_manager.h, include/pa_string.h,
16681: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
16682: sql/pa_sql_driver.h: paused on sql_manager
16683:
16684: * src/: include/pa_cache_managers.h, include/pa_pool.h,
16685: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16686: include/pa_stack.h, main/pa_sql_driver_manager.C,
16687: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
16688:
16689: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
16690: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16691: include/pa_table.h, main/pa_sql_driver_manager.C,
16692: main/pa_table.C: table compiled
16693:
16694: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
16695: cache_managers compiled
16696:
16697: * src/: include/pa_array.h, include/pa_charset.h,
16698: include/pa_pool.h, main/pa_charset.C: charset compiled
16699:
16700: * src/: include/pa_pool.h, main/pa_common.C: common compiled
16701:
16702: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
16703: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16704: main/pa_string.C, types/pa_value.C, types/pa_value.h,
16705: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
16706: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
16707:
16708: 2003-01-24 paf
16709:
16710: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
16711: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
16712: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16713: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
16714: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
16715: types/pa_vint.h, types/pa_vjunction.h,
16716: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16717: types/pa_vstatus.h, types/pa_vstring.h: more patched
16718:
16719: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
16720: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
16721: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
16722: main/pa_string.C, main/pa_table.C: string compiled
16723:
16724: * src/: include/pa_array.h, include/pa_common.h,
16725: include/pa_dictionary.h, include/pa_exception.h,
16726: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
16727: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
16728: main/pa_string.C: dictionary compiled
16729:
16730: 2003-01-23 paf
16731:
16732: * src/: include/pa_array.h, include/pa_common.h,
16733: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
16734: include/pa_request.h, include/pa_string.h, main/pa_common.C,
16735: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
16736: types/pa_value.h: resurrected pool in new sense: now it's
16737: factory, producing&accounting memory chunks for read[autofree]
16738: buffers
16739:
16740: * src/: include/pa_array.h, include/pa_exception.h,
16741: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
16742: main/pa_exception.C, main/pa_table.C: table compiled
16743:
16744: * src/: classes/image.C, classes/op.C, include/pa_array.h,
16745: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
16746: include/pa_pool.h, include/pa_pragma_pack_begin.h,
16747: include/pa_pragma_pack_end.h, include/pa_sapi.h,
16748: include/pa_string.h, include/pa_table.h, include/pa_types.h,
16749: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
16750: main/pa_table.C: aint that easy
16751:
16752: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
16753: main/main.dsp: continued with Hash
16754:
16755: * src/main/pa_common.C: connect_string allocated on heap[wes on
16756: stack] now. and exception can be reported OK now [can be reported
16757: outside of pro c with that stack]
16758:
16759: 2003-01-22 paf
16760:
16761: * src/: include/pa_array.h, include/pa_charset.h,
16762: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
16763: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
16764: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
16765: base: contains references_count. auto_ptr template calls
16766: add_ref/release
16767:
16768: 2003-01-21 paf
16769:
16770: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16771: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16772: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16773: classes/op.C, classes/response.C, classes/string.C,
16774: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16775: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16776: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16777: include/pa_config_fixed.h, include/pa_config_includes.h,
16778: include/pa_dictionary.h, include/pa_dir.h,
16779: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16780: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16781: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16782: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16783: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16784: include/pa_stack.h, include/pa_string.h,
16785: include/pa_stylesheet_connection.h,
16786: include/pa_stylesheet_manager.h, include/pa_table.h,
16787: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16788: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16789: lib/pcre/pcre_parser_ctype.c, main/compile.C,
16790: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16791: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16792: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16793: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16794: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16795: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16796: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16797: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16798: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16799: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16800: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16801: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16802: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
16803: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
16804: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16805: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16806: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16807: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16808: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16809: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16810: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16811: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16812: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16813: types/pa_vstateless_object.h, types/pa_vstatus.C,
16814: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16815: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16816: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16817: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16818: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
16819: 2002->2003
16820:
16821: 2003-01-16 paf
16822:
16823: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
16824: src/main/pa_globals.C: http:// introducing $.any-status(1)
16825:
16826: * operators.txt, src/include/pa_config_fixed.h,
16827: src/main/pa_common.C: http request now return status. and not
16828: fail on status!=200
16829:
16830: 2003-01-15 paf
16831:
16832: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
16833:
16834: 2003-01-14 paf
16835:
16836: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
16837: mkinstalldirs: removed some ancient files [they in / really]
16838:
16839: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
16840: regretfully needed patch in two places. in config_fixed.h made
16841: stubs for lib to compile in MSVC
16842:
16843: 2003-01-13 paf
16844:
16845: * config.guess, config.sub, ltmain.sh: removed last piece of
16846: configure.in(libtool) hacks
16847:
1.116 moko 16848: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 16849: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
16850: ltdl.h: moved to latest libtool (1.4.3)
16851:
16852: 2003-01-10 paf
16853:
16854: * src/lib/ltdl/: configure, configure.in: PROG_NM
16855:
16856: * src/main/pa_globals.C: moved to latest xml lib versions, changed
16857: patches. libxml2 >= 2.5.1
16858: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
16859: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
16860: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16861:
16862: * INSTALL: moved to latest versions of xml libs libxml2 >=
16863: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
16864: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
16865: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16866:
16867: 2003-01-09 paf
16868:
16869: * INSTALL: xml,xslt,gdome lib urls updated
16870:
16871: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 16872: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 16873: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 16874: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
16875: 1.7.2
1.95 moko 16876:
16877: * depcomp: moving to automake 1.7.2
16878:
16879: 2002-12-27 paf
16880:
16881: * src/include/pa_version.h: 0007
16882:
16883: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
16884: outdated parts, made links to language docs
16885:
16886: * src/include/pa_config_auto.h.in: comment
16887:
16888: 2002-12-26 paf
16889:
16890: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
16891: not contain trailing / fixed.
16892:
16893: * INSTALL: changing SAFE_MODE politics
16894:
16895: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
16896:
16897: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
16898:
16899: 2002-12-25 paf
16900:
16901: * src/main/pa_globals.C: optimized-xml
16902:
16903: * src/main/pa_globals.C: optimized-as-is
16904:
16905: 2002-12-24 paf
16906:
16907: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
16908: fixed [were really called with zero size when .html?a=&b=]
16909:
16910: * src/classes/mail.C: $MAIL in @conf now invalid when configured
16911: with --with-sendmail
16912:
16913: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
16914: fixed]
16915:
16916: 2002-12-23 paf
16917:
16918: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
16919: ignoring parameters & were storing only string with default
16920: expires
16921:
16922: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
16923: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
16924: December 23, 2002 4:22 AM Subject: bug â
16925: Charset::transcode_buf2xchar
16926:
16927: 2002-12-20 paf
16928:
16929: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
16930: non-cgi [script] runs
16931:
16932: 2002-12-19 paf
16933:
16934: * INSTALL: --without-iconv recommended [it crashes on some systems
16935: [tested on elik]] moreover, it's not needed there [parser
16936: registers charsets itself]
16937:
16938: * INSTALL: --without-iconv recommended [it crashes on some systems
16939: [tested on elik]]
16940:
16941: * operators.txt, src/include/pa_globals.h,
16942: src/include/pa_request.h, src/main/pa_globals.C,
16943: src/main/pa_request.C: $response:download
16944:
16945: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
16946: compiler [win32]].
16947:
16948: 2002-12-18 paf
16949:
16950: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
16951:
16952: 2002-12-17 paf
16953:
16954: * src/targets/cgi/parser3.C: merged die&iis changes
16955:
16956: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
16957: to exit(1) 2. more flexible iilegal call check
16958:
16959: 2002-12-16 paf
16960:
16961: * ltmain.sh: some automakes silly insist on having this handy
16962:
16963: * src/main/untaint.C: filespec russian small 'r' changed to latin
16964: 'p' bug fix
16965:
16966: 2002-12-15 paf
16967:
16968: * src/main/untaint.C: filespec russian small 'r' changed to latin
16969: 'p'
16970:
16971: * configure.in, src/include/pa_config_auto.h.in,
16972: src/main/compile.C, src/main/pa_common.C: merged small changes
16973: from branch 6 to HEAD
16974:
16975: * src/main/compile.C: removed warning
16976:
16977: * src/main/pa_common.C: ftruncate having checked
16978:
16979: * configure.in, src/include/pa_version.h: new version
16980:
16981: 2002-12-14 paf
16982:
16983: * src/classes/table.C: removed unnecessary code
16984:
16985: * src/sql/pa_sql_driver.h: exception type fixed
16986:
16987: 2002-12-09 paf
16988:
16989: * src/types/pa_vvoid.h: $void.store[now] error
16990:
16991: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16992:
16993: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
16994: tries to write core dump
16995:
16996: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16997:
16998: * src/: classes/hash.C, classes/string.C, classes/table.C,
16999: classes/void.C, main/pa_sql_driver_manager.C,
17000: sql/pa_sql_driver.h: changed exception handling mech in sql
17001: handlers #2
17002:
17003: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
17004: exception handling mech in sql handlers
17005:
17006: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
17007: handlers
17008:
17009: * src/: classes/hash.C, classes/string.C, classes/table.C,
17010: classes/void.C, main/pa_sql_driver_manager.C,
17011: sql/pa_sql_driver.h: changed exception handling mech in sql
17012: handlers
17013:
1.116 moko 17014: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
17015: to write makefile which used libtool to install things, which is
17016: not needed
1.95 moko 17017:
17018: 2002-12-06 paf
17019:
17020: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
17021: $hash.fields -- pseudo field to make 'hash' more like 'table'
17022:
17023: 2002-12-05 paf
17024:
17025: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
17026: cc/bcc OK now
17027:
17028: * src/main/untaint.C: mail header closed properly
17029:
17030: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
17031: header ',' allowed. still bugs in smtp [only one receiptient
17032: works, cc, bcc ignored now, and MAILED ;)]
17033:
17034: [strncpy killed, memnchr used]
17035:
17036: * src/main/pa_table.C: table-copy now current=0
17037:
17038: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
17039: lowlevel proc
17040:
17041: * src/targets/cgi/parser3.C: more checks on
17042: http://domain/parser.cgi start [maybe some getenv returns "",
17043: checked that now
17044:
17045: * src/targets/cgi/parser3.C: more checks on
17046: http://domain/parser.cgi start [maybe some getenv returns "",
17047: checked that now
17048:
17049: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
17050: out-of-mem errors reached log]
17051:
17052: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
17053: mail:send MIME-Version default
17054:
17055: * src/main/main.dsp: pa_version included into main.dsp
17056:
17057: 2002-12-04 paf
17058:
17059: * src/types/pa_vform.C: $form:field string value cut by premature 0
17060:
17061: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
17062: lib/libltdl -> lib/ltdl Win32 changes. s
17063:
17064: * src/classes/classes.awk: more strict *.C$
17065:
17066: * gnu.dsp: restored
17067:
1.116 moko 17068: * configure.in, gnu.dsp, src/lib/Makefile.am,
17069: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
17070: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
17071: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
17072: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
17073: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
17074: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
17075: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
17076: now created with /configure, not ltdl/configure, so it does have
17077: no problems with automake. ltdl/configure
17078: AC_OUTPUT(Makefile<<removed)
1.95 moko 17079:
17080: 2002-12-02 paf
17081:
17082: * operators.txt: removed outdated status:db
17083:
17084: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
17085: src/main/pa_common.C, src/main/pa_request.C,
17086: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
17087: tainted parts becomes http-header
17088:
17089: 2002-11-29 paf
17090:
17091: * src/classes/date.C, src/classes/image.C, operators.txt: exif
17092: dates now objects of type date
17093:
17094: * src/classes/image.C: file.seek removed [it were used in image.C
17095: only, and for parser user this means that jpeg image has bad
17096: size in fragment's header] now used image.format
17097:
17098: * src/: include/pa_common.h, main/pa_common.C,
17099: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
17100: now handled exactly like $response:header values. e.g. can be
17101: hash [can have subattributes] & contain date values.
17102:
17103: * src/main/pa_common.C: http:// param values lang forced URI
17104:
17105: * src/main/pa_common.C: http:// tainted partes now %xx
17106:
17107: 2002-11-28 paf
17108:
17109: * operators.txt: http.timeout
17110:
17111: * src/classes/image.C: ^image.length now counts interchar space.
17112: plus space after last char
17113:
17114: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
17115:
17116: * src/classes/image.C: ^image.font width measurer now scans full
17117: height [were -1]
17118:
17119: * configure.in: stopped double libltdl/Makefile generation
17120:
17121: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
17122: chars [one top horizontal line of 1pixel height were missing]
17123:
17124: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
17125: 'false' to go into (Hash *) parameter
17126:
17127: 2002-11-27 paf
17128:
17129: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
17130: types/pa_vmail.C: response:body[file] if file nows it's name now
17131: returns content-disposition: >>attachment<<
17132:
17133: * src/classes/image.C: ^image.font << bad font file-size now
17134: properly reported
17135:
17136: 2002-11-26 paf
17137:
17138: * src/main/pa_request.C: fixed lang in reponse header
17139:
17140: * src/main/pa_common.C: utf8 prefix ignored @read text
17141:
17142: * operators.txt, src/main/pa_common.C: http:// response status!=200
17143: made exception: http.status with source=bad status#
17144:
17145: 2002-11-25 paf
17146:
17147: * configure.in, src/classes/image.C,
17148: src/include/pa_config_auto.h.in,
17149: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 17150: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
17151: const void related probs fixed
1.95 moko 17152:
17153: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
17154:
17155: $file[^file::load[http://there]] $file.SERVER
17156:
17157: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
17158: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
17159: http options [invalid onces now reported] made default
17160: user-agent: paf
17161:
17162: * operators.txt, src/classes/file.C, src/classes/table.C,
17163: src/classes/xdoc.C, src/include/pa_common.h,
17164: src/include/pa_globals.h, src/main/pa_common.C,
17165: src/main/pa_globals.C, src/main/pa_request.C,
17166: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
17167: now understand http:// prefix and additional params, sample:
17168: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
17169: $.USER-AGENT[parser3] ]]
17170:
17171: 2002-11-22 paf
17172:
17173: * src/classes/image.C, src/include/pa_globals.h,
17174: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
17175: src/types/pa_vimage.h, operators.txt: $image.exif support
17176: $image.exif.DateTime & co
17177:
17178: 2002-11-21 paf
17179:
17180: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
17181: _PASS_APPENDED)
17182:
17183: * src/classes/image.C: jpeg size measure fixed: were badly skipping
17184: EXIF information [were big block and it's size were considered
17185: negative :(]
17186:
17187: * operators.txt, src/classes/image.C, src/include/pa_common.h,
17188: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
17189: internals rewritten. no there's reader.seek, and all's ready for
17190: EXIF extraction [now we fail to measure files with EXIF info]
17191:
17192: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
17193: O_TRUNC truncates even exclusevely write-locked file [thanks to
17194: Igor Milyakov <virtan@rotabanner.com> for discovering]
17195:
17196: 2002-11-20 paf
17197:
17198: * src/targets/cgi/parser3.C: logging @signal += query_string
17199:
17200: * configure.in, src/include/pa_config_auto.h.in,
17201: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
17202: comment
17203:
17204: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
17205:
17206: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17207: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
17208: currently processed document SIGPIPE >> interrupts request
17209: processing [exception = DB rollback]
17210:
17211: * src/main/pa_exec.C: comment
17212:
17213: * src/main/pa_exec.C: pa_exec: data written only if size>0
17214:
17215: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
17216: << disable HTTP-POST repassing
17217:
17218: * src/: include/pa_config_fixed.h, main/pa_common.C,
17219: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
17220: pipe read errors now checked
17221:
17222: 2002-11-19 paf
17223:
17224: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
17225: CGI: Illegal call
17226:
17227: 2002-11-01 paf
17228:
17229: * src/main/execute.C: comment
17230:
17231: 2002-10-31 paf
17232:
17233: * src/main/execute.C: found out why, checked that for now. todo:
17234: find out a way for that user could do that
17235:
17236: * src/types/pa_vstateless_object.h: object put replaces static
17237: parent if any
17238:
17239: * src/types/pa_vobject.C: object put replaces static parent if any
17240:
17241: * src/: classes/form.C, classes/mail.C, classes/op.C,
17242: classes/xnode.h, main/compile.tab.C, main/execute.C,
17243: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17244: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17245: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17246: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17247: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17248: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17249: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17250: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17251: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17252: types/pa_vstateless_object.h, types/pa_vstatus.C,
17253: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17254: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17255: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17256: types/pa_wwrapper.h: static fix merged
17257:
17258: * src/: main/compile.tab.C, types/pa_vobject.C: killed
17259: $virtual_fields in dynamic, but one can reach derived
17260: static[class] variable from base
17261:
17262: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
17263: types/pa_vobject.C, types/pa_vobject.h,
17264: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
17265: statics, left $virtual_fields in dynamic
17266:
17267: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
17268: one can't remember derivates in base class: there's so many of
17269: them. also there can be no virtual method calls in static
17270: classes
17271:
17272: * src/: classes/form.C, classes/mail.C, classes/op.C,
17273: classes/xnode.h, main/execute.C, main/pa_request.C,
17274: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17275: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17276: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17277: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17278: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17279: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17280: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17281: types/pa_vresponse.C, types/pa_vresponse.h,
17282: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17283: types/pa_vstateless_object.h, types/pa_vstatus.C,
17284: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17285: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17286: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17287: types/pa_wwrapper.h: static call $self fixed
17288:
17289: * src/main/execute.C: comment
17290:
17291: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
17292: ^process[$caller.self]{...} now compiles to last derived object
17293: part of that 'self'
17294:
17295: 2002-10-29 paf
17296:
17297: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
17298: re-passing [iis to blame]
17299:
17300: * src/classes/string.C: changed string.save to pass current sql
17301: connection to cstr thus one can ^connect[some server]{
17302: $s[insert into table x (x) values (^taint[sql]{value})]
17303: ^s.save[some.sql] } and he'd get in some.sql file code with
17304: properly escaped. [tried in mssql->mysql export->import of
17305: binary data]
17306:
17307: 2002-10-25 paf
17308:
17309: * src/types/pa_vresponse.C: case insensitive response user fields
17310: get/put
17311:
17312: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17313: types/pa_vresponse.C: saving for maybe-future
17314:
17315: 2002-10-23 paf
17316:
17317: * operators.txt, src/classes/table.C: ^table.hash{code}...
17318: ^table.hash(expr)...
17319:
17320: * src/types/pa_vmail.C: email whitespace trimBoth-ed
17321:
17322: 2002-10-22 paf
17323:
17324: * src/types/: pa_vform.C, pa_vform.h: removed needless
17325: VForm::Append...(...Value)
17326:
17327: * src/main/execute.C: $.name outside of $name[...] checked
17328:
17329: * src/main/: compile.tab.C, compile.y: lexer changed to fix
17330: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
17331:
17332: 2002-10-21 paf
17333:
17334: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
17335: $form:qtail $form:imap.x/y
17336:
17337: * operators.txt, src/types/pa_vform.C: $form:nameless =
17338: "?value&...", "...&value&...", "...&value"
17339:
17340: * operators.txt, src/types/pa_vform.C: $form:image-map
17341:
17342: * operators.txt, src/classes/file.C: /some/page.html:
17343: ^file:fullpath[a.gif] => /some/a.gif
17344:
17345: 2002-10-17 paf
17346:
17347: * src/main/: compile.tab.C, compile.y: operators precedence changed
17348: a little: logical not and bitwise negation precedence made
17349: highest, << and >> bitshits precedence made equal [were << higher
17350: than >>]
17351:
17352: * src/classes/op.C: exception handling fixed [were bad with
17353: contexts]
17354:
17355: 2002-10-16 paf
17356:
17357: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17358: main/pa_request.C: Request::self considered equal to
17359: VMethodFrame::self, and removed, Request::get_self() mapped to
17360: VMethodFrame.self()
17361:
17362: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
17363: $hash in open field now gives old good error meesage
17364:
17365: 2002-10-15 paf
17366:
17367: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
17368: use ^if($junction is junction){was and now true}
17369:
17370: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
17371: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
17372: types/pa_vxnode.C: xml->parser strings now have origin, which
17373: points to place where value left xml library and came to parser:
17374: place of dom field extraction/call
17375:
17376: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
17377: main/compile.tab.C, main/compile.y, main/execute.C,
17378: types/pa_vmethod_frame.h: removed last pieces of old code
17379: allowing $junction.xxx at compile time
17380:
17381: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
17382: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
17383: objects also considered [were only classes]
17384:
17385: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
17386: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
17387: with CLASS self. [ (request&method_frame).self temporarily
17388: changed ]
17389:
17390: * src/classes/: hash.C, op.C: method_frame now always changed, with
17391: no exception to native calls. for&foreach changed to use
17392: method_frame.caller for their var's name context
17393:
17394: * src/: main/execute.C, targets/cgi/parser3.C,
17395: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
17396: compiling to system classes disabled
17397:
17398: * operators.txt, src/classes/op.C:
17399: ^process[$caller.CLASS]{code-string} added
17400:
17401: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
17402: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
17403: src/types/Makefile.am, src/types/pa_vjunction.C,
17404: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
17405: src/types/types.dsp: removed $junction.get $junction.set[]
17406: introducing $caller
17407:
17408: * src/types/pa_value.h: removed outdated comments. doxygen would
17409: find them lower by inheritance tree
17410:
17411: * src/types/pa_vjunction.C: ident
17412:
17413: 2002-10-14 paf
17414:
17415: * src/classes/op.C: process compiles to code's class class
17416:
17417: * src/: classes/form.C, classes/mail.C, classes/op.C,
17418: include/pa_request.h, main/compile.C, main/compile.tab.C,
17419: main/compile.y, main/execute.C, main/pa_request.C,
17420: types/pa_vstateless_class.h: operators now main-class-methods
17421:
17422: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
17423: better stack trace [has "call" & co there]
17424:
17425: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17426: operators @auto now executed in MAIN context
17427:
17428: * src/main/execute.C: operator execution context now = MAIN, not
17429: closest stack frame
17430:
17431: @touchit[] $i[after]
17432:
17433: ----t.html $i[before] << local ^touchit[] $i << now 'before',
17434: were 'after'
17435:
17436: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
17437: 'after'
17438:
17439: * src/main/execute.C: comment
17440:
17441: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
17442: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
17443: action]
17444:
17445: * src/types/pa_vxnode.C: misreplace fixed
17446:
17447: * configure, configure.in, src/include/pa_config_auto.h.in,
17448: src/types/pa_vstatus.C, operators.txt:
17449: $status:rusage.tv_secs/usecs introduced
17450:
17451: 2002-10-09 paf
17452:
17453: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
17454: on empty string [or uses (default)]
17455:
17456: 2002-10-08 paf
17457:
17458: * src/main/untaint.C: mail header quoted printable changed after
17459: RFC reread
17460:
17461: * operators.txt: plan on ^if(method
17462:
17463: * src/types/pa_vxnode.C: misreplace
17464:
17465: 2002-09-24 paf
17466:
1.116 moko 17467: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 17468:
17469: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
17470: mailreceive would compile on freebsd now
17471:
17472: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
17473: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 17474: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
17475: mailreceive would compile on freebsd now
1.95 moko 17476:
17477: * src/: classes/file.C, main/untaint.C: 1. file spec language
17478: changed: now there are only few chars are untainted: * ? ' " < >
17479: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
17480: one should use ^untaint[uri]{...} now]
17481:
17482: 2. $list[^file:list[dir]] now returns simply tainted names in
17483: $list.name, not tainted as filespec
17484:
17485: @russianindex[] #dir with files with russian-lang names
17486: $where[dir]
17487:
17488: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
17489: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
17490:
17491: 2002-09-23 paf
17492:
17493: * src/types/pa_vdouble.h: double->int round added
17494:
17495: * src/classes/date.C: date bug fix, now
17496: round(floatDays*secondsPerDay)
17497:
17498: * src/classes/date.C: date bug fix, now
17499: round(floatDays*secondsPerDay)
17500:
17501: 2002-09-20 paf
17502:
17503: * src/main/execute.C: code junction calls disabled [before: code
17504: was compiled in such a way, that there were no code-junctions in
17505: OP_CALL]
17506:
17507: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
17508:
17509: @badjunctioncallinside[code] ^code[]
17510:
17511: * src/main/: compile.tab.C, compile.y: changed grammer on junction
17512: expanding to include ^junction.method
17513:
17514: * src/main/pa_common.C: -d "DIR/" now true
17515:
17516: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
17517: as internal xdoc encoding, and after decoding attributes set by
17518: dom functions now encoded OK, not as digital entities
17519:
17520: * src/classes/xdoc.C: empty transform result, being taken as file
17521: now returns empty file, not raises stupid error about "stat-ed
17522: file"
17523:
17524: * src/types/pa_vhash.h: hash.foreach modification of existing keys
17525: allowed
17526:
17527: * src/types/types.dsp: introducing $junction.get/put(1) one can
17528: write iterators now:
17529:
17530: ^user-foreach[key;value]{$key=$value<br>}
17531:
17532: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17533: $code.value($i*2) $code }
17534:
17535: * src/main/compile_tools.h: mistype
17536:
1.116 moko 17537: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
17538: thus taking linking options configure changes into account [were:
17539: ignoring]
1.95 moko 17540:
17541: * src/types/: pa_vjunction.C, Makefile.am: introducing
17542: $junction.get/put(1) one can write iterators now:
17543:
17544: ^user-foreach[key;value]{$key=$value<br>}
17545:
17546: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17547: $code.value($i*2) $code }
17548:
17549: * src/: include/pa_opcode.h, include/pa_request.h,
17550: main/compile.tab.C, main/compile.y, main/execute.C,
17551: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
17552: introducing $junction.get/put(1) one can write iterators now:
17553:
17554: ^user-foreach[key;value]{$key=$value<br>}
17555:
17556: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17557: $code.value($i*2) $code }
17558:
17559: 2002-09-19 paf
17560:
1.116 moko 17561: * Makefile.am: new: make commit
1.95 moko 17562:
17563: * aclocal.m4: forced to be older
17564:
17565: 2002-09-18 paf
17566:
17567: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
17568: src/main/compile.y, src/main/execute.C: << >> int shifts
17569:
17570: * src/: include/pa_common.h, include/pa_request.h,
17571: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
17572: - now this - fatal error
17573:
17574: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
17575: that one can pass binary data there
17576:
17577: * src/: classes/date.C, classes/double.C, classes/file.C,
17578: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17579: classes/op.C, classes/response.C, classes/string.C,
17580: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17581: include/pa_request.h: pa_request contexts made privated, plus
17582: get_{self/method_frame} to read. Request_context_saver used in
17583: ^try to save flang too. [were not saved]
17584:
17585: * src/types/pa_vresponse.C: header value chains joined before
17586: output, this should help $.subject[$var $var] from being
17587: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
17588:
17589: 2002-09-17 paf
17590:
17591: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
17592: removed changes, operators executed with calling self. lots of
17593: code with ^include code relies on defined/defining self variables
17594:
17595: $a[1] ^include[print_a.p] print_a.p: $a
17596:
17597: ^include[set_a.p] a=$a set_a.p: $a[1]
17598:
17599: * src/: classes/op.C, main/execute.C, main/pa_request.C,
17600: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
17601: types/pa_vstateless_class.h: operators now executed with MAIN
17602: self. it's for ^include sake, too strong a change
17603:
17604: * src/classes/op.C: made place for ^process to compile it's code to
17605: in case of no self
17606:
17607: * src/main/execute.C: found ancient param to Junction, removed.
17608: allowed passing self to native_code_operators [for ^process to
17609: work, she needs self]
17610:
17611: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
17612: types/pa_vstateless_class.h: found ancient param to Junction,
17613: removed. allowed passing self to native_code_operators [for
17614: ^process to work, she needs self]
17615:
17616: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
17617: types/pa_value.h, types/pa_vmethod_frame.h,
17618: types/pa_vstateless_class.h: allowed Request.self to be 0,
17619: checked that in VMethodFrame get/put and $self.
17620:
17621: * src/classes/: table.C, xdoc.C: table::sql options table::create
17622: copy options options checked, wrong option now fatal error
17623:
17624: * src/main/pa_string.C: string.replace fixed [were missing words on
17625: pieces boundaries]
17626:
1.150 moko 17627: * configure, configure.in: .so now detected [can be .sl on hpux,
17628: .dll on cygwin, .so in other cases)
1.95 moko 17629:
17630: * configure, configure.in: .so now detected [can be .sl on hpux,
17631: .dll on cygwin, .so in other cases)
17632:
17633: * operators.txt, src/classes/hash.C, src/classes/table.C,
17634: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
17635: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
17636: record taken [were last]
17637:
17638: * src/: classes/hash.C, classes/table.C,
17639: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
17640: now errors
17641:
17642: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
17643:
17644: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
17645: ,2,3]
17646:
17647: 2002-09-16 paf
17648:
17649: * src/classes/file.C: file::cgi line ends can be both unix & dos.
17650: and they can be unix [\n\n] on win when 'use CGI' used, it causes
17651: stdout to be binary. now detected closest header break.
17652:
17653: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
17654: closed right
17655:
17656: 2002-09-13 paf
17657:
17658: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
17659: src/main/compile_tools.h: (expression #comment)
17660:
17661: (multiline expression #comment line2 #comment )
17662:
17663: (expression #comment with (brackets) comment) << OK
17664:
17665: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
17666: bitwise !|| numerical xor now [preparing for expression
17667: #comments]
17668:
17669: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
17670: error
17671:
17672: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
17673: cheched in pa_socks.C
17674:
1.116 moko 17675: * configure, configure.in, src/include/pa_config_auto.h.in:
17676: HAVE_WINSOCK_H created in configure.in
1.95 moko 17677:
17678: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
17679: cookie date now clean [were mistakenly tainted & that worked bad
17680: with opera -- 'happily' that worked OK with msie]
17681:
17682: 2002-09-12 paf
17683:
17684: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
17685: VClass get_element now first looks to fields, next to methods &
17686: co todo: the rest reason: more speed
17687:
17688: * src/main/untaint.C: quoted printable encoding stops before
17689: \s*<...>$
17690:
17691: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
17692: stops before <...>$
17693:
17694: 2002-09-11 paf
17695:
17696: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
17697: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
17698: forgot to check users of those funcs. not all were using that
17699: return value convention
17700:
17701: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
17702: windows-1254 added
17703:
17704: 2002-09-10 paf
17705:
17706: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
17707: VCodeFrame parent param were specified badly
17708:
17709: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
17710: WWrapper which used in constructing objects(second param to sql
17711: method) ^...sql{}[$.default{code}] now has parent, wich helps
17712: code in hash to survivi
17713:
17714: * src/: include/pa_request.h, main/execute.C: removed redundant
17715: param to execute [stack said 'thanks']
17716:
17717: * src/: classes/op.C, main/execute.C, types/pa_value.C,
17718: types/pa_value.h, types/pa_vcode_frame.h,
17719: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17720: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
17721: responsibility to wcontext
17722:
17723: * src/classes/file.C: decided not to log exec's with stderr, that
17724: could be warnings, and it's up to scritper to log/show them
17725:
17726: * src/: classes/double.C, main/execute.C: double:sql badly called
17727: write_assign_lang, not write_no_lang, thus doing unnecessary
17728: double/string converstion, which were loosing time&precesion
17729:
17730: * src/: main/pa_charset.C, types/pa_vmail.C:
17731: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
17732: case of unfinished in buffer processing, causing accidental
17733: transcode stop [in case that source enc != utf-8 & there is
17734: incomplete utf-8 sequence at the end of 16000block iside of
17735: libxml lib] tfm readed & code updated
17736:
17737: 2002-09-04 paf
17738:
17739: * configure: makes with sjlj
17740:
17741: * INSTALL, src/include/pa_config_fixed.h,
17742: src/include/pa_sql_connection.h,
17743: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
17744: checked. on win32 it made default
17745:
17746: * src/include/pa_config_auto.h.in: sjlj define
17747:
17748: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
17749: can not work with longjump/throw pair, and one must switch that
17750: on there. todo: detect that automatically]
17751:
17752: * src/types/pa_vxnode.C: removed too strong checks of
17753: xnode.elements. now, for instance, if element does not have any
17754: attributes, $xnode.attributes is void, not error
17755:
17756: 2002-09-02 paf
17757:
17758: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
17759: removed double_result, didn't help
17760:
17761: * src/main/execute.C: double_result made to move that var away from
17762: hungry g++ optimizer (-O2), before: it were optimized and
17763: comparison operators worked badly
17764:
17765: * src/types/pa_vdate.h: removed debug
17766:
1.116 moko 17767: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 17768:
17769: * src/main/execute.C: fixed numeric < & co so that thay now use
17770: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
17771: unknown reason.
17772:
17773: 2002-08-29 paf
17774:
17775: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
17776: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
17777: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
17778: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
17779: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
17780: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
17781: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
17782: [called less frequent, allowed to remove ugly
17783: Junction.change_context-s from many places, switch,
17784: mail:send..html{}, ..] request.root renamed to method_frame [more
17785: easyreading] ancient {...PUSH/POPs...} changed to stack vars
17786: [speed up]
17787:
17788: 2002-08-28 paf
17789:
17790: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
17791: tainted
17792:
17793: * src/types/pa_vcookie.C: fixed cookie delete when
17794: $cookie:name[$.value[]]
17795:
17796: * operators.txt, src/classes/string.C:
17797: ^string.split[delim[;options]]
17798:
17799: 2002-08-27 paf
17800:
1.116 moko 17801: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 17802:
17803: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
17804: delimiter
17805:
17806: * INSTALL: recommended latest gmime 1.0.5
17807:
17808: 2002-08-26 paf
17809:
17810: * configure, configure.in: apache13/hook added to make dist.
17811:
17812: 2002-08-23 paf
17813:
17814: * src/: include/pa_common.h, main/pa_common.C,
17815: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
17816: beside binary [cgi, isapi] not accessible [due to bad rights or
17817: whatever] it's error now
17818:
17819: 2002-08-21 paf
17820:
1.116 moko 17821: * Makefile.am: can use: make happy equals to make update install
1.95 moko 17822:
17823: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17824: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
17825: class". compiled as if here they named base class
17826:
17827: * src/main/pa_string.C: fixed bad language bug, [were wrong string
17828: cloning constructor]
17829:
17830: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
17831:
1.150 moko 17832: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 17833: $mail.received.file.value.content-type fixed
17834:
17835: 2002-08-20 paf
17836:
17837: * src/classes/file.C: fixed language of file:file result
17838:
17839: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
17840: from 3.0.0005
17841:
17842: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
17843:
17844: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
17845: 3.0.0005
17846:
17847: * src/classes/void.C, operators.txt: ^void.length[] = 0
17848:
17849: 2002-08-19 paf
17850:
17851: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
17852: work now
17853:
17854: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
17855: error in xnode, which were not catched in xdoc]
17856:
17857: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
17858: prepared: // validate each document after load/create (?)
17859: //xmlDoValidityCheckingDefaultValue = 1;
17860:
17861: 2002-08-15 paf
17862:
17863: * src/classes/classes.h: write to static var caused useless
17864: Exception, introduced Methoded::put_element wich consumes those
17865:
17866: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
17867: src/types/pa_vcookie.C, src/types/pa_vdate.h,
17868: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
17869: $response:field[date] $response:field[$.xxx[date]]
17870:
17871: * src/: classes/hash.C, classes/string.C, classes/table.C,
17872: classes/void.C, include/pa_sql_connection.h: fixed source of
17873: ^hash::sql{bad}
17874:
17875: * operators.txt: $request:body unprecessed POST request body
17876:
17877: * src/types/pa_vrequest.C: $request:body unprecessed POST request
17878:
17879: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
17880: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
17881:
17882: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
17883: src/include/pa_request.h, src/main/pa_pool.C,
17884: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
17885: $request:body r.post_data now const
17886:
17887: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
17888: classes/xnode.C, main/execute.C, types/pa_value.h,
17889: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
17890: types/pa_vtable.h: instead of type() checking everywhere used
17891: Value.as now user descendants can be used in params.
17892:
17893: VObject::as_*, is_defined now taken from bases. xtable(table)
17894: ^if($xtable) now OK
17895:
17896: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
17897: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
17898: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
17899:
17900: 2002-08-14 paf
17901:
17902: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
17903: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17904: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17905: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17906: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17907: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17908: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17909: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17910: types/pa_vresponse.C, types/pa_vresponse.h,
17911: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17912: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17913: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17914: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17915: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
17916: & VClass
17917:
17918: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
17919:
17920: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
17921: removed fixopt stupidity. on stupid linux use cd /document/root
17922: ../cgi/parser3 script
17923:
17924: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
17925: params, splitting them by space, excluding argv[0], argv[argc-1]
17926:
17927: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
17928: fixopt.h: fixopt now preprocesses command line params, splitting
17929: them by space, excluding argv[0], argv[argc-1]
17930:
17931: * src/targets/cgi/parser3.C: -f config file
17932:
17933: * src/targets/cgi/parser3.C: fixed .log file dir
17934:
17935: 2002-08-13 paf
17936:
17937: * src/types/pa_vobject.C: allow override parent variables, useful
17938: for form descendants [in vobject too, were in vclass]
17939:
17940: * src/types/pa_vclass.C: allow override parent variables, useful
17941: for form descendants
17942:
17943: * src/types/pa_vclass.C: checked: form[vclass]fields can be
17944: overwritten in derived(table)
17945:
17946: * src/: classes/form.C, classes/mail.C, classes/op.C,
17947: classes/xnode.h, include/pa_request.h, main/execute.C,
17948: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17949: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17950: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17951: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17952: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17953: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17954: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17955: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17956: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17957: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17958: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17959: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17960: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
17961: Value::get_element(..., bool looking_down) [needed to exclude
17962: endless recoursion]
17963:
17964: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
17965: fix bug with put endless recoursion todo: check 'as'
17966:
17967: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
17968: reorganized modules todo: fix bug with put endless recoursion
17969: todo: check 'as'
17970:
17971: * src/types/pa_vobject.h: checked: table fields can be overwritten
17972: in derived(table)
17973:
17974: * src/types/pa_vobject.h: derived classes can have fields of their
17975: own now
17976:
17977: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
17978: fixed error message on using non-created table
17979:
17980: * src/: classes/form.C, classes/hash.C, classes/mail.C,
17981: classes/op.C, classes/xnode.h, include/pa_request.h,
17982: main/compile.C, main/compile.tab.C, main/execute.C,
17983: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17984: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17985: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17986: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17987: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
17988: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17989: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17990: types/pa_vresponse.C, types/pa_vresponse.h,
17991: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17992: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17993: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17994: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17995: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
17996: looking down/up tree todo: fix error message on non-constructed
17997: parents
17998:
17999: 2002-08-12 paf
18000:
18001: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
18002: derived OK
18003:
18004: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
18005: thorough testing
18006:
18007: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
18008: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18009: types/pa_vobject.h, types/pa_vstateless_class.h,
18010: types/pa_vstateless_object.h, types/pa_wcontext.h,
18011: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
18012: ^base:create[] dynamic call rewritten todo: thorough testing
18013:
18014: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
18015: now instantates base class, remembers it and saves child in
18016: parent VObject.get_class now returns last child = downward
18017: virtual calls OK
18018:
18019: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18020: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
18021: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
18022: types/pa_vobject.h, types/pa_vresponse.h,
18023: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18024: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
18025: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
18026: VAliased [redundant], moved $CLASS to VObject only [parser class
18027: instance]
18028:
18029: * src/main/pa_request.C: $response:body[file] content-type check
18030: fixed [were bad when content-type is hash]
18031:
18032: 2002-08-09 paf
18033:
18034: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18035: types/pa_vobject.h, types/pa_vxdoc.h: started as()
18036:
18037: 2002-08-08 paf
18038:
18039: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
18040: src/main/pa_globals.C: year column in month calendar [week year]
18041:
18042: * src/main/execute.C: error reporting on object writes to MAIN
18043: improved [were ruind with fixing $obj[^if(1){$obj}] ]
18044:
18045: * operators.txt, src/types/pa_vdate.h: $date.yearday
18046: $date.daylightsaving
18047:
18048: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
18049: use tainted data now. only she must specify the language.
18050:
18051: ^mail:send[ $.from[paf@mail.design.ru]
18052: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
18053: $.text[^taint[uri][ìîñêâà]=] ]
18054:
18055: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
18056: now prints more precise origin
18057:
18058: * src/include/pa_string.h: String::first_char now not fails on
18059: empty strings ^if(-f '') now ok and in 3 other places.
18060:
18061: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
18062: String::first_char now not fails on empty strings ^if(-f '') now
18063: ok and in 3 other places.
18064:
18065: 2002-08-07 paf
18066:
18067: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
18068: fixed
18069:
18070: * src/main/pa_string.C: ^string.mid(0;bad) fixed
18071:
18072: * src/: main/execute.C, types/pa_vcode_frame.h,
18073: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18074: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
18075: mistakenly not completely transparent to object writes.
18076: $hash[^if(1){$hash}] now works
18077:
18078: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
18079: now erasing cache file [there were bad check on that]
18080:
18081: * src/: classes/classes.dsp, classes/table.C,
18082: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
18083: all Debug dirs in .dsp now named 'Debug'
18084:
1.116 moko 18085: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 18086:
18087: * operators.txt, src/classes/mail.C: exception_type email.send
18088:
18089: * operators.txt, src/types/pa_vmail.C: exception_type email.format
18090:
18091: * src/types/pa_vmail.C: mail:send empty email checked
18092:
18093: 2002-08-06 paf
18094:
18095: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18096: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18097: ^table::create[$source;$.options] ^table::join[$source;$.options]
18098:
18099: * operators.txt, src/classes/hash.C, src/classes/string.C,
18100: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
18101: # $.default() }
18102:
18103: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
18104:
18105: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
18106: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
18107: $file.content-type [instead of .mime-type] now works for
18108: file::stat also
18109:
18110: * src/main/pa_request.C: case insensitive mime_type_of
18111:
18112: 2002-08-05 paf
18113:
18114: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
18115:
18116: * src/types/pa_vmail.C: file buffer relocated to parser heap
18117:
18118: * operators.txt: comment on date:calendar week column
18119:
18120: * src/main/pa_common.C: write checked
18121:
18122: * src/main/: pa_common.C: write checked
18123:
18124: * src/classes/date.C: +1 buf size for stupid snprintfs
18125:
18126: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
18127: month calendar week column [ISO 8601 Week Numbers]
18128:
18129: 2002-08-02 paf
18130:
18131: * src/: include/pa_config_fixed.h, main/pa_string.C,
18132: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
18133: DEBUG*
18134:
18135: * configure, configure.in, src/include/pa_version.h: release
18136: 3_0_0005
18137:
18138: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
18139: multipart post fixed
18140:
18141: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
18142: response transcoded source->client only when text/* or simple
18143: onoverridden $response:body
18144:
18145: 2002-08-01 paf
18146:
18147: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18148: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18149: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
18150: classes/op.C, classes/response.C, classes/string.C,
18151: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18152: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
18153: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18154: include/pa_config_fixed.h, include/pa_dictionary.h,
18155: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
18156: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
18157: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
18158: include/pa_socks.h, include/pa_sql_connection.h,
18159: include/pa_sql_driver_manager.h, include/pa_stack.h,
18160: include/pa_string.h, include/pa_stylesheet_connection.h,
18161: include/pa_stylesheet_manager.h, include/pa_table.h,
18162: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18163: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
18164: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
18165: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18166: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
18167: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
18168: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
18169: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
18170: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
18171: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18172: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
18173: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
18174: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
18175: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18176: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18177: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
18178: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
18179: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18180: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
18181: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
18182: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
18183: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18184: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
18185: types/pa_vmethod_frame.h, types/pa_vobject.h,
18186: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18187: types/pa_vresponse.h, types/pa_vstateless_class.C,
18188: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18189: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18190: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18191: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18192: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 18193: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 18194:
18195: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
18196: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
18197: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18198: classes/math.C, classes/op.C, classes/response.C,
18199: classes/string.C, classes/table.C, classes/void.C,
18200: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18201: include/pa_array.h, include/pa_cache_managers.h,
18202: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18203: include/pa_config_fixed.h, include/pa_config_includes.h,
18204: include/pa_dictionary.h, include/pa_dir.h,
18205: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18206: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18207: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18208: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18209: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18210: include/pa_stack.h, include/pa_string.h,
18211: include/pa_stylesheet_connection.h,
18212: include/pa_stylesheet_manager.h, include/pa_table.h,
18213: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18214: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
18215: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18216: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
18217: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18218: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
18219: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
18220: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18221: main/pa_sql_driver_manager.C, main/pa_string.C,
18222: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
18223: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18224: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18225: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
18226: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18227: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18228: targets/isapi/pool_storage.h, types/pa_valiased.C,
18229: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
18230: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18231: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
18232: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
18233: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18234: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
18235: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
18236: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18237: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18238: types/pa_vresponse.C, types/pa_vresponse.h,
18239: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18240: types/pa_vstateless_object.h, types/pa_vstatus.C,
18241: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
18242: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18243: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18244: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
18245: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
18246: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
18247: types/Makefile.am: ident.C* removed
18248:
18249: * operators.txt, src/classes/file.C, src/main/pa_request.C:
18250: file:find[/can/do/this/now.txt]
18251:
18252: * src/targets/cgi/parser3.C: usage to stdout now
18253:
18254: 2002-07-31 paf
18255:
18256: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
18257:
18258: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
18259: default "postmaster"
18260:
18261: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
18262: -f postmaster now default sendmail key word "postmaster"
18263: replaced to $.from
18264:
18265: 2002-07-30 paf
18266:
1.116 moko 18267: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
18268: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 18269:
18270: * src/main/pa_charset.C: comment
18271:
18272: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
18273: table, &#decimal;
18274:
18275: * src/main/pa_request.C: comment
18276:
18277: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
18278: paragraf]
18279:
18280: 2002-07-11 paf
18281:
18282: * src/main/pa_exec.C: build command line badly added params twice
18283: [and first time without ' ']. double wrong. fixed.
18284:
18285: * src/main/pa_exec.C: invalid .exe caused error message with params
18286: wich parser did not provide = reported badly. fixed that.
18287:
18288: * src/classes/mail.C: $MAIL[ # xxx ]
18289:
18290: now ok
18291:
18292: * operators.txt: plan: sql detailed exception
18293:
18294: 2002-07-01 paf
18295:
18296: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
18297: [MForm.configure_admin were called when request.main_class ==0
18298:
18299: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
18300:
18301: * src/classes/form.C: content_length type fix
18302:
18303: 2002-06-30 paf
18304:
18305: * src/classes/mail.C: merged from 4
18306:
18307: * src/classes/mail.C: restored $MAIL
18308:
18309: 2002-06-28 paf
18310:
18311: * configure, configure.in: removed paths.h
18312:
1.116 moko 18313: * configure, src/include/pa_version.h,
1.95 moko 18314: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
18315: merged, makes updated
18316:
18317: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
18318: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18319: src/include/pa_pool.h, src/include/pa_version.h,
18320: src/main/pa_charset.C, src/main/pa_pool.C,
18321: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
18322: src/types/pa_vmail.C: merged latest updates to head
18323:
18324: 2002-06-27 paf
18325:
18326: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
18327: not error now
18328:
18329: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
18330: src/include/pa_config_fixed.h, src/include/pa_pool.h,
18331: src/main/pa_charset.C, src/main/pa_pool.C:
18332: ^xdoc::create[[uri]]... base uri for document being created,
18333: imports and other relative file names would be relative to this
18334: uri default uri=path_translated
18335:
18336: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
18337:
18338: 2002-06-26 paf
18339:
18340: * configure, configure.in, src/include/pa_version.h:
18341: release_3_0_0004
18342:
18343: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
18344: 0 now
18345:
18346: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
18347:
18348: 2002-06-25 paf
18349:
18350: * src/main/pa_string.C: emtpy string, or string of whitespaces
18351: considered bad number now
18352:
18353: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
18354: now
18355:
18356: * operators.txt, src/classes/string.C: ^string.normalize [old
18357: name: optimize
18358:
18359: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
18360: library configured
18361:
18362: * src/main/pa_request.C: configure_admin forced if no @conf
18363:
1.150 moko 18364: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
18365: ^math:crypt updated to generate random salt when needed and to
18366: call system crypt() if not $apr1$ prefix
1.95 moko 18367:
18368: 2002-06-24 paf
18369:
18370: * INSTALL: --with-static/shared-mailreceive described
18371:
18372: * src/include/pa_config_fixed.h: ssize_t fixed
18373:
1.116 moko 18374: * configure, configure.in, src/include/pa_config_auto.h.in,
18375: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 18376: src/types/pa_vmail.C: $mail:received makes update
18377:
18378: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
18379: WITH_MAILRECEIVE
18380:
18381: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
18382:
18383: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
18384: option, for $mail:receive
18385:
18386: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
18387: introducting $message:received ^mail:send rewritten with backward
18388: comp
18389:
18390: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18391: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18392: types/types.dsp: win32xml win32mailreceive pseudomodules paths
18393: now
18394:
18395: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
18396: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18397: src/include/pa_request.h, src/include/pa_string.h,
18398: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
18399: src/main/pa_globals.C, src/main/pa_request.C,
18400: src/main/pa_string.C, src/main/pa_uue.C,
18401: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
18402: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
18403: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
18404: uue to separate file introducting $message:received ^mail:send
18405: rewritten with backward comp
18406:
18407: 2002-06-21 paf
18408:
1.116 moko 18409: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
18410: co changes
1.95 moko 18411:
1.116 moko 18412: * configure, configure.in, src/lib/md5/Makefile.am,
18413: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
18414: restructure .in and .am files appropriate changes
1.95 moko 18415:
18416: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
18417: pcre to libs/ added libs/md5 which is linked to non-apache
18418: targets ^math:crypt[password;$apr1$salt]
18419:
18420: * INSTALL, configure.in, operators.txt, parser3.dsw,
18421: src/Makefile.am, src/classes/Makefile.am,
18422: src/classes/classes.dsp, src/classes/math.C,
18423: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 18424: src/lib/pcre/Makefile.am, src/lib/pcre/README,
18425: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
18426: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
18427: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
18428: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
18429: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
18430: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
18431: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 18432: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
18433: src/lib/pcre/pcre_parser_ctype.dsp,
18434: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
18435: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
18436: src/main/compile.tab.C, src/main/main.dsp,
18437: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
18438: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
18439: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
18440: to libs/ added libs/md5 which is linked to non-apache targets
18441: ^math:crypt[password;$apr1$salt]
18442:
18443: 2002-06-20 paf
18444:
1.150 moko 18445: * INSTALL, configure, configure.in, operators.txt,
18446: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
18447: src/include/pa_globals.h, src/include/pa_request.h,
18448: src/main/execute.C, src/main/pa_request.C,
18449: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18450: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
18451: file:justname&co & @auto/conf[filespec
1.95 moko 18452:
18453: * operators.txt, src/classes/file.C:
18454: !^file:dirname[/a/some.tar.gz]=/a
18455: !^file:dirname[/a/b/]=/a
18456: !^file:basename[/a/some.tar.gz]=some.tar.gz
18457: !^file:justname[/a/some.tar.gz]=some.tar
18458: !^file:justext[/a/some.tar.gz]=gz
18459:
18460: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18461: main/pa_request.C, types/pa_vmethod_frame.h: introducing
18462: @conf/auto[filespec]
18463:
1.116 moko 18464: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 18465:
1.150 moko 18466: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 18467: src/include/pa_globals.h, src/targets/cgi/parser3.C,
18468: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
18469:
18470: 2002-06-18 paf
18471:
18472: * configure, configure.in, src/include/pa_version.h: version to
18473: configure.in
18474:
18475: * INSTALL: reflected .conf.dist dir change
18476:
1.150 moko 18477: * Makefile.am, configure, configure.in,
1.116 moko 18478: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 18479: .in & *.am updated
18480:
18481: * src/classes/file.C: strncasecmp
18482:
18483: * src/classes/file.C: strcasecmp
18484:
1.150 moko 18485: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 18486:
18487: * src/classes/file.C: ^file::exec[script;$.bad error case
18488: insensitive check now
18489:
18490: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
18491:
18492: * configure, configure.in, src/include/pa_pool.h,
18493: src/include/pa_types.h: pack configure.in detection simplified.
18494: figured out that gcc on sparc not that stupid as thought
18495: previously: on sparc: when it sees packed class it modifies it's
18496: field-access-code to byte operations [stb, ldub] instead of 4byte
18497: operations [st, lduh] so packed must be all parts of packed
18498: class, i.e. it's parents&fields(classes). for now it's only
18499: String that packed and what was wrong is that it's parent -
18500: Pooled, were not packed. fixed that.
18501:
18502: 2002-06-14 paf
18503:
18504: * operators.txt: more precise xml-to-text options
18505:
18506: * operators.txt, src/types/pa_vxnode.C: xnode
18507: attribute_node.name/value xnode pi.node.data
18508:
18509: 2002-06-12 paf
18510:
1.116 moko 18511: * configure, configure.in, src/targets/cgi/Makefile.am,
18512: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 18513:
18514: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
18515: src/include/pa_globals.h, src/include/pa_request.h,
18516: src/main/compile.tab.C, src/main/pa_globals.C,
18517: src/main/pa_request.C, src/targets/cgi/parser3.C,
18518: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
18519:
18520: * src/classes/mail.C: sendmail -ti [default now]
18521:
18522: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
18523: to be strings. for convinient #ing
18524:
18525: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
18526: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
18527:
18528: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
18529: main/pa_globals.C, main/pa_request.C: @conf
18530:
18531: 2002-06-11 paf
18532:
18533: * src/classes/file.C: check simplified
18534:
18535: * src/: classes/file.C, targets/cgi/parser3.dsp,
18536: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
18537: valid prefix
18538:
18539: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
18540: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
18541: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
18542:
18543: 2002-06-10 paf
18544:
18545: * operators.txt, src/classes/op.C, src/include/pa_common.h,
18546: src/main/pa_common.C: lock failures reported now
18547:
18548: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
18549: string->double @ compile time were not-enough-checking...
18550:
18551: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
18552: autoconvert now ignored
18553:
18554: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
18555: check
18556:
18557: * src/classes/mail.C: mail netscape attachment name fixed. todo:
18558: $response:body content-type:name
18559:
18560: * configure, configure.in: hpux check, nsl link, no socket
18561:
18562: * operators.txt: old merge conflict removed
18563:
18564: * configure, configure.in: pack even address access on sparc&co
18565: arch checked in configure
18566:
18567: * configure, src/include/pa_version.h: makes
18568:
18569: * configure, configure.in, src/include/pa_version.h: makes
18570:
18571: * src/main/untaint.C: (bug#2) mail subject got always prepended
18572: with charset even when all letters were 7bit one
18573:
18574: * src/main/pa_common.C: merged fixed -d (bug)
18575:
18576: * src/main/pa_common.C: fixed -d (bug)
18577:
18578: 2002-06-03 paf
18579:
18580: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
18581: src/classes/classes.dsp, src/main/compile.tab.C,
18582: src/main/main.dsp, src/main/pa_globals.C,
18583: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
18584: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
18585: .dsp-s along with reorganized cvs modules dirs structure
18586:
18587: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18588: main/pa_globals.C, targets/cgi/parser3.dsp,
18589: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
18590: modules
18591:
18592: 2002-05-28 paf
18593:
18594: * src/targets/cgi/parser3.C: info.uri now ""
18595:
18596: 2002-05-17 paf
18597:
18598: * src/classes/: table.C: ^table.save << checked empty
18599: pre/match/post columns
18600:
18601: 2002-05-16 paf
18602:
18603: * src/classes/image.C: image::measure can png now
18604:
18605: 2002-05-15 paf
18606:
18607: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
18608: added
18609:
18610: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
18611:
18612: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
18613: %H[:%M[:%S]]]]]] [-%m now
18614:
18615: 2002-05-14 paf
18616:
18617: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
18618:
18619: 2002-05-07 paf
18620:
18621: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
18622: src/include/pa_globals.h, src/include/pa_request.h,
18623: src/include/pa_table.h, src/main/compile.tab.C,
18624: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
18625: src/main/pa_request.C, src/main/pa_table.C,
18626: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
18627: src/targets/isapi/parser3isapi.dsp,
18628: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
18629: name2number field now &. main_method_name now on Request pool
18630: rather on global_pool [Junction+VJunction created on same pool as
18631: name = were created on global pool, causing mem leaks]
18632:
18633: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
18634: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
18635: main/compile.y, main/main.dsp, main/pa_globals.C,
18636: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
18637: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18638: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
18639: field now &. main_method_name now on Request pool rather on
18640: global_pool [Junction+VJunction created on same pool as name =
18641: were created on global pool, causing mem leaks]
18642:
18643: 2002-05-06 paf
18644:
18645: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18646: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18647: 100*40 bytes per request memory leak [nonpool malloc in globals]
18648:
18649: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18650: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18651: 100*40 bytes per request memory leak [nonpool malloc in globals]
18652:
18653: 2002-04-30 paf
18654:
18655: * configure, src/include/pa_version.h: version now not b
18656:
18657: * src/targets/cgi/parser3.C: request.uri now never 0
18658:
18659: 2002-04-29 paf
18660:
18661: * configure.in: removed b
18662:
18663: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
18664: Exception::comment/type checked in (), no there's no empty
18665: type/comment by default
18666:
18667: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
18668: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
18669: src/doc/value.dox, src/include/pa_exception.h,
18670: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
18671: 0001
18672:
18673: 2002-04-26 paf
18674:
18675: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
18676: size reduced
18677:
18678: 2002-04-25 paf
18679:
18680: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
18681: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
18682: now that took into account
18683:
18684: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
18685: 01:03:04]
18686:
18687: * ChangeLog, operators.txt, src/classes/date.C:
18688: ^date::create[2002-12-33 01:03:04]
18689:
18690: * ChangeLog: updated changelog
18691:
18692: * src/classes/table.C: removed restriction on column count to
18693: ^table.hash to work, now must be >0 [were >1]
18694:
18695: 2002-04-24 paf
18696:
18697: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18698: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
18699: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
18700: targets
18701:
18702: 2002-04-23 paf
18703:
18704: * operators.txt, src/classes/string.C:
18705: int/double/string:sql{}[$.default{code}] fixed [were barking:
18706: "junction used outside of context"]
18707:
18708: 2002-04-22 paf
18709:
18710: * types.txt, src/classes/string.C, src/include/pa_string.h,
18711: src/main/pa_string.C, src/types/pa_vstring.C,
18712: src/types/pa_vstring.h: ^string.optimize[]
18713:
18714: * src/: include/pa_globals.h, include/pa_table.h,
18715: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
18716: table template
18717:
18718: * src/classes/: string.C: optimize removed from string
18719: .left/right/pos
18720:
18721: * src/main/execute.C: rolled back to
18722: before_killing_userjunction_contexts
18723:
18724: * src/main/execute.C: user junctions context killed
18725:
18726: * src/main/execute.C: junctions to local contexts got
18727: cleanized&checked later
18728:
18729: 2002-04-19 paf
18730:
18731: * src/: classes/string.C, include/pa_request.h,
18732: include/pa_string.h, main/pa_request.C, main/pa_string.C,
18733: types/pa_vstring.C, types/pa_vstring.h: string now optimized
18734: prior to .left .right .mid .pos .match when that is profitable,
18735: and always before .replace when $ORIGINS(1) optimization disabled
18736: economy from not wasting mem on lots of strings which occur by
18737: lots of String:mid calls to get parts of source string between
18738: found_occurances
18739:
18740: * src/classes/file.C: ovector now local economy: 16 bytes per
18741: ^file:list
18742:
18743: * src/: include/pa_globals.h, include/pa_table.h,
18744: main/pa_globals.C, main/pa_string.C: String::match table columns
18745: globalized, not created @ each ^match anymore economy:
18746: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
18747:
18748: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
18749: removed from each String::match replace iteration, and made
18750: stacked sizeof(VTable)=12bytes economy on each replace code
18751:
18752: * src/doc/footer.htm: 2001,
18753:
18754: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
18755: string.match[]['] option enables generation of $match.prematch
18756: .match .postmatch columns
18757:
18758: * src/main/pa_string.C: String::match options analized without
18759: cstr-ing them now
18760:
18761: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
18762: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
18763: config updated to doxygen 1.2.15, created helper which fixes
18764: minor bugs in chm project files & htm tree. changed extension to
18765: .htm
18766:
18767: 2002-04-18 paf
18768:
18769: * src/doc/doxygen.cfg: .chi generation disabled
18770:
18771: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
18772: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
18773: fields&methods
18774:
18775: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
18776: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
18777: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
18778: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
18779: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
18780: types/pa_vresponse.h, types/pa_vstateless_class.h,
18781: types/pa_vstateless_object.h, types/pa_vstatus.h,
18782: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
18783: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
18784: VStateless_class to VObject
18785:
18786: * src/: main/pa_request.C, types/pa_valiased.h,
18787: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18788: types/pa_vstring.h: VStateless_string_object speicalized light
18789: version of VStateless_object
18790:
18791: * src/classes/op.C: ^throw comment param made optional
18792:
18793: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
18794: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
18795: and implemented down in VClass, fclass_alias removed,
18796:
18797: * src/types/pa_value.C: forced to cut that from .h because of
18798: VStateless_class usage [undefined in .h]
18799:
18800: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18801: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18802: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
18803: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
18804: on each CALL]
18805:
18806: * src/: classes/classes.h, classes/date.C, classes/double.C,
18807: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
18808: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
18809: classes/response.C, classes/string.C, classes/table.C,
18810: classes/void.C, classes/xnode.C, include/pa_globals.h,
18811: include/pa_request.h, main/execute.C, main/pa_globals.C,
18812: main/pa_request.C, types/Makefile.am, types/pa_value.h,
18813: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
18814: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18815: types/pa_vstateless_class.h, types/pa_wcontext.C,
18816: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
18817: removed Value::fname
18818:
18819: 2002-04-17 paf
18820:
18821: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
18822: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
18823: doc/pooled.dox, doc/string.dox, doc/targets.dox,
18824: include/pa_pool.h, include/pa_types.h: dox updated to current
18825: state, PTHROW freshen to throw & co
18826:
18827: * src/types/pa_vhash.h: vstring wrong parent fixed
18828:
18829: * src/classes/op.C: taint local result var bug fixed
18830:
18831: 2002-04-16 paf
18832:
18833: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
18834: Attic asm.txt as most interesting
18835:
18836: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
18837: check, preventing content-length: 0 from appearing
18838:
18839: * src/main/execute.C: $result in @main now taken into account as in
18840: usual functions
18841:
18842: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
18843: & @unhandled_exception now taken into account as in usual
18844: functions
18845:
18846: * src/doc/postbuild.txt: instructions on post .html build
18847:
18848: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
18849:
18850: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
18851: tainted
18852:
18853: * src/main/pa_request.C: uri in error log
18854:
18855: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
18856: cheched date:create(days) param for validity [later were assumed
18857: valid and crashed on invalid onces]
18858:
18859: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18860: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
18861: and used that for removing VString wrapper
18862:
18863: * src/classes/op.C: exception2vhash file now tainted
18864:
18865: * src/classes/op.C: _process pseudo origin copied from local var to
18866: heap
18867:
18868: * src/classes/op.C: extra check on empty file in origin in _execute
18869:
18870: 2002-04-15 paf
18871:
18872: * src/: main/execute.C, types/pa_value.h: fixed name update
18873:
18874: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
18875: functions
18876:
18877: * src/: classes/file.C, classes/hash.C, classes/op.C,
18878: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
18879: started dual write_xxx_lang functions, if checked & works
18880:
18881: * src/: classes/date.C, classes/file.C, classes/mail.C,
18882: classes/string.C, classes/xnode.C, include/pa_request.h,
18883: types/pa_value.h, types/pa_wcontext.h: removed absolutely
18884: unnecessary VString shells
18885:
18886: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
18887: prev changes]
18888:
18889: * src/: classes/image.C, classes/op.C, classes/string.C,
18890: classes/table.C, include/pa_request.h, main/execute.C,
18891: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
18892: StringOrValue wcontext result, now ready for dual writes
18893:
18894: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
18895: checked that
18896:
18897: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18898: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
18899: changed to OP_WRITE_VALUE in var get cases
18900:
18901: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
18902: include/pa_request.h, main/compile.tab.C, main/compile.y,
18903: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18904: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
18905: switch in hash constructor fixed [were problems with using of
18906: stacked wwrapper after it's death]
18907:
18908: 2002-04-12 paf
18909:
18910: * operators.txt, src/classes/table.C: table.select(expression) 0
18911:
18912: 2002-04-11 paf
18913:
18914: * src/: classes/string.C, include/pa_request.h, main/execute.C:
18915: Request::process_internal codeFrame & wwrapper stacked [not
18916: wasting heap anymore]
18917:
18918: 2002-04-10 paf
18919:
18920: * src/: classes/double.C, classes/file.C, classes/hash.C,
18921: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
18922: classes/string.C, classes/table.C, classes/void.C,
18923: classes/xdoc.C, include/pa_request.h, main/execute.C,
18924: main/pa_string.C: killed Request::process() wrapping
18925: VString(String) in case we need only String
18926:
18927: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18928: killed 8 bytes from String.head
18929:
18930: 2002-04-09 paf
18931:
18932: * src/: main/compile.tab.C, targets/cgi/parser3.C,
18933: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
18934: local*/char b[...]; a=b; situations
18935:
18936: * operators.txt, src/classes/xdoc.C: xslt params made literal
18937:
18938: * src/classes/xdoc.C: xslt params fixed
18939:
18940: * src/: main/pa_common.C, targets/cgi/parser3.C,
18941: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
18942: not pool.malloc(MAX_NUMBER) but really neaded
18943:
18944: * operators.txt, src/classes/double.C, src/classes/int.C:
18945: int/double.int/double(default)
18946:
18947: 2002-04-04 paf
18948:
18949: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
18950: [when reconstructing pieces were split by
18951: max_integral(piece.size), thus some strings to replace happen to
18952: be split into two = not replaced)
18953:
18954: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
18955: standalone version = current dir
18956:
18957: * src/targets/cgi/parser3.C: document root in standalone version =
18958: current dir
18959:
18960: 2002-04-03 paf
18961:
18962: * configure, configure.in: more checks on nonexistent charset
18963:
1.116 moko 18964: * INSTALL, configure, configure.in: root config configure options
1.95 moko 18965:
18966: 2002-04-02 paf
18967:
18968: * src/main/compile.C: parser.compile [exception name more like in
18969: doc]
18970:
18971: 2002-04-01 paf
18972:
18973: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
18974: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
18975: .content-type.charset, not .charset
18976:
18977: 2002-03-29 paf
18978:
18979: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
18980:
18981: * operators.txt, src/classes/date.C: ^date::create now may not
18982: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
18983: days' year. | 31.05->31.04 roll
18984:
18985: 2002-03-28 paf
18986:
18987: * operators.txt, src/classes/date.C, src/classes/op.C,
18988: src/include/pa_globals.h, src/include/pa_hash.h,
18989: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
18990: ^cache(seconds) ^cache[date] }
18991:
18992: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
18993: param
18994:
18995: 2002-03-27 paf
18996:
18997: * operators.txt, src/classes/date.C, src/classes/double.C,
18998: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
18999: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
19000: src/classes/math.C, src/classes/op.C, src/classes/string.C,
19001: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
19002: src/classes/xnode.C, src/include/pa_exception.h,
19003: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
19004: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
19005: src/main/pa_array.C, src/main/pa_charset.C,
19006: src/main/pa_charsets.C, src/main/pa_common.C,
19007: src/main/pa_dictionary.C, src/main/pa_exception.C,
19008: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
19009: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
19010: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
19011: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19012: src/types/pa_value.h, src/types/pa_vcookie.C,
19013: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
19014: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
19015: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
19016: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
19017: src/types/pa_wwrapper.h: assigned exception types
19018:
19019: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
19020: src/include/pa_request.h, src/main/execute.C,
19021: src/main/pa_request.C: decided agains resetting exception_trace,
19022: just changed name
19023:
19024: 2002-03-26 paf
19025:
19026: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
19027: fixed
19028:
19029: * src/classes/op.C: forced language of $source field of exception
19030: to 'tainted', so that sql-langed-frags could be outputed outside
19031: of connect
19032:
19033: * operators.txt: removed date.roll limit of +-1 offset
19034:
19035: * src/classes/date.C: removed date.roll limit of +-1 offset
19036:
19037: * operators.txt, src/classes/date.C: fixed date roll on
19038: daylightsaving days mktime took into account tm_isdst flag, which
19039: remained from BEFORE roll, but should have been reset
19040:
19041: 2002-03-25 paf
19042:
19043: * operators.txt, src/targets/cgi/parser3.C:
19044: http_site_config_filespec
19045:
19046: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
19047: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
19048: with any/both --disable-foreign-group-files --disable-execs
19049:
19050: * INSTALL: "--with=sendmail=COMMAND" comment
19051:
19052: * INSTALL, configure, configure.in, src/classes/mail.C,
19053: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 19054: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
19055: disables execs also. introducing --sendmail
1.95 moko 19056:
19057: * operators.txt: pgsql options comment
19058:
19059: * INSTALL: comment on --disable-link-stdcpp
19060:
1.116 moko 19061: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19062: libstdc++ link skipping configure option
1.95 moko 19063:
19064: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
19065: with error were put to cache with 'marked_to_rollback' flag, all
19066: consequent even OK requests rolled back
19067:
19068: 2002-03-22 paf
19069:
19070: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
19071: false return
19072:
19073: * operators.txt: few comments on sets
19074:
19075: 2002-03-18 paf
19076:
19077: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
19078: src/include/pa_globals.h, src/include/pa_request.h,
19079: src/include/pa_stack.h, src/main/pa_globals.C,
19080: src/main/pa_request.C: introducing ^try
19081:
19082: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
19083: types/pa_vdouble.h: removed some tested @tests
19084:
19085: 2002-03-15 paf
19086:
19087: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
19088:
19089: 2002-03-13 paf
19090:
19091: * src/main/pa_exception.C: checked not-pooled malloc
19092:
19093: 2002-03-11 paf
19094:
19095: * INSTALL, configure, configure.in,
19096: src/include/pa_config_auto.h.in: --disable-foreign-group-files
19097:
19098: * src/main/pa_common.C: --disable-foreign-group-files
19099:
19100: * INSTALL: --disable-execs
19101:
19102: * src/main/pa_exec.C: --disable-execs
19103:
19104: * configure, configure.in, src/include/pa_config_auto.h.in:
19105: --disable-execs
19106:
19107: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
19108:
19109: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
19110: file::exec/cgi linebreaks "0D0A" changed to 0A onces
19111:
19112: 2002-03-05 paf
19113:
19114: * operators.txt, src/classes/date.C: date week calendar columns
19115: named
19116:
19117: * operators.txt, src/classes/date.C: date week calendar columns
19118: named
19119:
19120: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
19121: requires headers to be terminated with \r\n manually [refuses to
19122: separate header/body itself]
19123:
19124: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19125: targets/isapi/parser3isapi.C: isapi site config beside .dll
19126:
19127: 2002-03-04 paf
19128:
19129: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
19130: in PASS language
19131:
19132: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
19133: deserialize checks on broken file
19134:
19135: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
19136: parser3isapi.dsp: isapi updated
19137:
19138: 2002-03-01 paf
19139:
19140: * src/main/pa_exec.C: execle -> execve, now argc OK
19141:
19142: 2002-02-28 paf
19143:
19144: * src/main/untaint.C: removed some debug comments
19145:
19146: * src/main/pa_charsets.C: when placing charset to cache using
19147: global name now [were request]
19148:
19149: * configure, configure.in: apache module updated
19150:
19151: * src/main/pa_string.C: origin by first piece preferred before last
19152: piece
19153:
19154: 2002-02-27 paf
19155:
19156: * src/main/pa_charset.C: size_t
19157:
19158: * INSTALL: shared/static-xml with-pathlink
19159:
19160: * operators.txt: SMTP comment
19161:
19162: 2002-02-26 paf
19163:
19164: * src/main/pa_exec.C: more precise names for vars, cosmetic
19165:
19166: * src/classes/xnode.C: in some situation, xpath query returned
19167: result with type NODESET, but empty nodeset member field, checked
19168: that
19169:
19170: 2002-02-22 paf
19171:
19172: * INSTALL: without-zlib comment
19173:
19174: * etc/parser3.charsets/windows-1251.cfg: °
19175:
19176: * configure, configure.in: glib###.a detection fixed
19177:
19178: * INSTALL: hashfile removed from INSTALL
19179:
1.116 moko 19180: * Makefile.am: make update
1.95 moko 19181:
19182: * src/main/pa_string.C: string iterators fixed again, so were
19183: String::join_chain
19184:
19185: * src/main/pa_string.C: string iterators fixed again, so were
19186: String::join_chain
19187:
19188: * src/: include/pa_string.h, main/pa_string.C: string iterators
19189: fixed again, so were String::join_chain
19190:
19191: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
19192:
19193: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
19194: "session"
19195:
1.116 moko 19196: * configure, configure.in, src/include/pa_config_auto.h.in:
19197: --with-shared-xml --with-static-xml
1.95 moko 19198:
19199: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19200: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19201: types/types.dsp: *.dsp: removed refereces to win32db & ancient
19202: xalan&xml
19203:
19204: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
19205:
19206: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
19207: src/types/types.dsp: removed hashfile support from sources for
19208: now
19209:
1.116 moko 19210: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 19211: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 19212: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
19213: src/include/pa_db_manager.h, src/include/pa_db_table.h,
19214: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 19215: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 19216: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
19217: src/types/Makefile.am, src/types/pa_vhashfile.C,
19218: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 19219:
19220: 2002-02-21 paf
19221:
19222: * src/main/untaint.C: removed debug code, activated commented-for
19223: debug parts
19224:
1.116 moko 19225: * Makefile.am: make cvsupdate
1.95 moko 19226:
19227: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19228: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
19229: append_row, not at link zero now string to string appending works
19230:
19231: 2002-02-20 paf
19232:
19233: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
19234: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
19235: DEBUG_STRING_APPENDS_VS_EXPANDS
19236:
19237: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19238: economy: 22%
19239:
19240: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19241: space uptimized: string::link_row removed
19242:
19243: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
19244: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
19245: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19246: types/pa_vstring.h: speed uptimized: string::is_empty
19247:
19248: * operators.txt, src/include/pa_common.h,
19249: src/include/pa_config_fixed.h, src/include/pa_string.h,
19250: src/include/pa_types.h, src/main/compile.tab.C,
19251: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
19252: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
19253: string append optimiziation idea and estimates
19254:
19255: 2002-02-19 paf
19256:
19257: * src/classes/math.C: not used directly [but erroreously reported
19258: that 'is', thus registering twice&other probs]
19259:
19260: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
19261: to node [element]
19262:
19263: * src/main/compile.C: without string_origins parse error
19264: file+line+col possible
19265:
19266: * src/main/: compile.C: without string_origins not worked
19267:
19268: 2002-02-18 paf
19269:
19270: * src/types/pa_vdouble.h: since we have in_expression removed that
19271: trick i've installed into double::as_string
19272:
19273: * src/main/pa_globals.C: extern "C" was removed too fast
19274:
19275: * src/: include/pa_opcode.h, include/pa_request.h,
19276: main/compile.tab.C, main/compile.y, main/execute.C,
19277: types/pa_wcontext.h: in_expression aimed to solve old problem
19278: with string/nonstring values, now in expressions double/int
19279: values are passed as-is, without stupid tostring/fromstring
19280: conversions
19281:
19282: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
19283: __cplusplus } #endif
19284:
19285: * src/main/compile.tab.C: bison env set so one could compile
19286: without cygwin installed
19287:
19288: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19289: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
19290: gnome xml libs parser .dsp-s changed accordingly
19291:
19292: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
19293:
19294: * operators.txt, src/classes/date.C: date::create [were date::set,
19295: with backward comp
19296:
19297: * src/classes/math.C: math:random range check fixed
19298:
19299: * src/main/: compile.tab.C, compile.y: integer division stops name
19300:
19301: * INSTALL: local install comment
19302:
1.116 moko 19303: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 19304:
1.116 moko 19305: * acinclude.m4, aclocal.m4, configure, configure.in,
19306: src/include/pa_config_auto.h.in,
19307: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
19308: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 19309:
19310: * operators.txt: \ comment
19311:
19312: 2002-02-13 paf
19313:
19314: * src/include/pa_config_includes.h: sys/time time both included
19315: now. vaguely remember confilicts on this on some system [not on
19316: six|ablv] so when would see them again would think up proper
19317: check
19318:
1.116 moko 19319: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19320: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 19321:
19322: * src/main/pa_common.C: truncation never occured when writing files
19323: on unix [since i've changed cache mech] fix
19324:
19325: * src/main/pa_common.C: strnchr: sanity check added
19326:
19327: * etc/parser3.charsets/windows-1257.cfg: id added
19328:
19329: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
19330: baltic charset file generated, in generation script ispunct check
19331: added
19332:
19333: 2002-02-08 paf
19334:
1.116 moko 19335: * src/: include/Makefile.am, sql/Makefile.am,
19336: targets/isapi/Makefile.am: forgotten makes
1.95 moko 19337:
19338: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
19339: forgotten
19340:
19341: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
19342:
19343: * INSTALL, README: install&others updated
19344:
19345: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
19346:
1.116 moko 19347: * Makefile.am, configure, configure.in,
19348: etc/parser3.charsets/Makefile.am, src/Makefile.am,
19349: src/classes/Makefile.am, src/main/Makefile.am,
19350: src/main/pa_status_provider.C, src/targets/Makefile.am,
19351: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
19352: works
1.95 moko 19353:
19354: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19355: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19356: classes/hashfile.C, classes/int.C, classes/mail.C,
19357: classes/math.C, classes/op.C, classes/response.C,
19358: classes/string.C, classes/table.C, classes/void.C,
19359: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19360: include/pa_array.h, include/pa_cache_managers.h,
19361: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19362: include/pa_config_fixed.h, include/pa_config_includes.h,
19363: include/pa_db_connection.h, include/pa_db_manager.h,
19364: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19365: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19366: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19367: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19368: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19369: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19370: include/pa_stack.h, include/pa_string.h,
19371: include/pa_stylesheet_connection.h,
19372: include/pa_stylesheet_manager.h, include/pa_table.h,
19373: include/pa_threads.h, include/pa_types.h, main/compile.C,
19374: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19375: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
19376: main/pa_db_connection.C, main/pa_db_manager.C,
19377: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19378: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
19379: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19380: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19381: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
19382: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19383: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
19384: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19385: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
19386: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19387: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19388: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19389: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
19390: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
19391: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19392: types/pa_vmethod_frame.h, types/pa_vobject.h,
19393: types/pa_vrequest.h, types/pa_vresponse.h,
19394: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19395: types/pa_vstateless_object.h, types/pa_vstatus.C,
19396: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
19397: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
19398: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
19399: classes/image.C, main/pa_common.C, main/pa_exec.C,
19400: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19401: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
19402: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
19403: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
19404: types/pa_vxnode.C, main/pa_charset.C: name spelling
19405:
19406: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19407: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19408: classes/hashfile.C, classes/image.C, classes/int.C,
19409: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19410: classes/string.C, classes/table.C, classes/void.C,
19411: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19412: include/pa_array.h, include/pa_cache_managers.h,
19413: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19414: include/pa_config_fixed.h, include/pa_config_includes.h,
19415: include/pa_db_connection.h, include/pa_db_manager.h,
19416: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19417: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19418: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19419: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19420: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19421: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19422: include/pa_stack.h, include/pa_string.h,
19423: include/pa_stylesheet_connection.h,
19424: include/pa_stylesheet_manager.h, include/pa_table.h,
19425: include/pa_threads.h, include/pa_types.h, main/compile.C,
19426: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19427: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
19428: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
19429: main/pa_db_connection.C, main/pa_db_manager.C,
19430: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19431: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19432: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19433: main/pa_socks.C, main/pa_sql_driver_manager.C,
19434: main/pa_status_provider.C, main/pa_string.C,
19435: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19436: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19437: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19438: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19439: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19440: targets/isapi/pool_storage.h, types/pa_valiased.C,
19441: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19442: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19443: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19444: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19445: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19446: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19447: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19448: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19449: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
19450: types/pa_vresponse.h, types/pa_vstateless_class.C,
19451: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19452: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
19453: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19454: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
19455: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
19456: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
19457:
19458: 2002-02-07 paf
19459:
19460: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
19461:
1.116 moko 19462: * configure, configure.in, src/include/pa_config_auto.h.in,
19463: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
19464: added yet another locking function: fcntl
1.95 moko 19465:
19466: * config.sub: on cygwin configure passes it with strange i1586
19467: const, hacked it to mean i586
19468:
19469: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
19470: disabled $if reference due to conflicts with local variables
19471:
19472: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
19473: xdoc::set obsolete now, now xdoc::create, with both sences
19474:
19475: * operators.txt, src/classes/table.C, src/include/pa_array.h,
19476: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
19477: table::create now // 'set' name obsolete now table clone.
19478:
19479: * operators.txt, src/classes/string.C,
19480: src/include/pa_config_fixed.h, src/main/compile.tab.C:
19481: ^int/double/string.format now can be called with normal []
19482: brackets, not stupid {} as it were implemented for some strange
19483: reason. retaining backward compatibility due to some
19484: already-implemented servers
19485:
19486: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
19487: main/compile.y, main/compile_tools.C, main/compile_tools.h:
19488: operators now detected by check at name_without_curly_rdive_read
19489: rule whether diving code constists only of
19490: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
19491: with OP_GET_ELEMENT_OR_OPERATOR to form
19492: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
19493:
19494: 2002-02-06 paf
19495:
19496: * configure, configure.in: prefix expanded, grr
19497:
19498: * operators.txt, src/classes/mail.C: mail:send config changed
19499:
19500: 2002-02-05 paf
19501:
19502: * operators.txt: regex options commented
19503:
19504: * src/main/: pa_exec.C: argv0 now correct
19505:
19506: * src/types/pa_vstatus.C: status:rusage 3
19507:
19508: * src/types/pa_vstatus.C: status:rusage 2
19509:
19510: * operators.txt: status:rusage described int operators
19511:
19512: * src/types/pa_vstatus.C: status:rusage 1
19513:
19514: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
19515: src/types/types.dsp: status:rusage
19516:
19517: * configure.in, operators.txt, src/classes/file.C,
19518: src/classes/op.C, src/include/pa_common.h,
19519: src/include/pa_config_includes.h, src/main/compile.tab.C,
19520: src/main/pa_common.C: rewritten ^cache to use
19521: non-blocking-exclusive-caches
19522:
19523: * src/main/pa_common.C: text file read mode on win32 adjusted
19524: [speed impact. was off for debugging purpose, but forgotten
19525: afterwards]
19526:
19527: 2002-02-01 paf
19528:
19529: * src/classes/op.C: file_write does EX lock after create, while
19530: file_read does SH after open, so there's a moment after create
19531: but before EX lock when read can sneak into, and read
19532: just-created-for-writing-and-not-yet-locked file, added a check
19533: for that in ^cache...read
19534:
19535: 2002-01-31 paf
19536:
19537: * src/main/: compile.y, compile.tab.C: disabled operator call after
19538: ^xxx:
19539:
19540: * src/main/: compile.tab.C, execute.C: made operators lookup first
19541: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
19542:
19543: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
19544: main/compile.tab.C, main/compile.y, main/compile_tools.C,
19545: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
19546: operators check 6.1 rewritten. now check is done at compile time
19547:
19548: * src/main/execute.C: operators check 5 floated up old error of
19549: staying in 'entered class/object' state after $a($a..) it
19550: prevented operators from being called thereafter
19551:
19552: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19553: main/execute.C: operators check 4 floated up old error of staying
19554: in 'entered object' state after ^a.a(a) it prevented operators
19555: from being called thereafter
19556:
19557: * src/main/execute.C: operators check 3 floated up old error of
19558: staying in 'entered class' state after $a:a(a) it prevented
19559: operators from being called thereafter
19560:
19561: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
19562: floated up old error of staying in 'entered class' state after
19563: $a:a[a] it prevented operators from being called thereafter
19564:
19565: * src/main/execute.C: operators check, thay mistakenly seen in
19566: $class:operator $object.operators contexts
19567:
19568: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
19569: win32
19570:
1.116 moko 19571: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
19572: src/classes/Makefile.am, src/main/Makefile.am,
19573: src/targets/cgi/Makefile.am,
1.95 moko 19574: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 19575: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 19576:
1.116 moko 19577: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
19578: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
19579: configure, configure.in, form.txt, ident.awk, install-sh,
19580: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
19581: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 19582: etc/parser3.charsets/Makefile.am,
19583: etc/parser3.charsets/koi8-r.cfg,
19584: etc/parser3.charsets/windows-1250.cfg,
19585: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 19586: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
19587: src/main/Makefile.am, src/targets/cgi/Makefile.am,
19588: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
19589: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 19590: straightened installation scripts procedure made
19591: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
19592: change
19593:
19594: 2002-01-30 paf
19595:
19596: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
19597: removed] those comments were a mistake, and prevented libltdl
19598: from function properly
19599:
19600: 2002-01-29 paf
19601:
1.116 moko 19602: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
19603: creation [modified acinclude.m4 which were creating int into just
19604: assignment LIBTOOL=../libtool] added default system
19605: config&charsetts prepared 'make install', now it installs
19606: targets/cgi/parser3 into bin directory etc/parser3.conf &
19607: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 19608: $sysconfdir/parser3.charsets respectively
19609:
19610: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
19611: main/pa_globals.C: few forgotten ifdef XML added
19612:
19613: 2002-01-28 paf
19614:
1.116 moko 19615: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 19616: removed
19617:
19618: * src/main/pa_exception.C: dom|generic error output fix
19619:
19620: * src/classes/xnode.C: xdoc.importNode 3 [check err]
19621:
19622: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
19623:
19624: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
19625: [fixed as_node helper func to accept docs]
19626:
19627: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
19628: xdoc.importNode 0
19629:
19630: * src/classes/xdoc.C: xdoc::set now untaints OK
19631:
19632: 2002-01-25 paf
19633:
19634: * src/main/: compile.tab.C, compile.y: #comment before @ after
19635: @SPECIAL now works OK
19636:
19637: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
19638:
19639: * src/main/pa_exec.C: max arg count now 10, and proper message on
19640: violation that added
19641:
19642: * src/classes/hash.C: unified hash::sql, now
19643: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
19644:
19645: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
19646: ^file:lock[filename]{code}
19647:
19648: * src/: classes/file.C, classes/op.C, classes/string.C,
19649: classes/table.C, classes/xdoc.C, include/pa_common.h,
19650: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
19651: to some pa_common funcs
19652:
19653: * src/: include/pa_charset.h, main/pa_globals.C:
19654: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
19655:
19656: * src/: include/pa_charset.h, main/pa_charset.C,
19657: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
19658: not stupid illegal define
19659:
19660: 2002-01-24 paf
19661:
19662: * src/include/pa_version.h: changed version number
19663:
19664: * src/: classes/hashfile.C, include/pa_db_table.h,
19665: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19666: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19667: main/pa_db_connection.C, main/pa_db_table.C,
19668: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
19669: hashfile without logfiles
19670:
19671: * src/: classes/hashfile.C, include/pa_db_table.h,
19672: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
19673: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
19674: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
19675: DB_INIT_TXN init bits, thus got rid of huge log files, which
19676: cluttered disk without huge need]
19677:
19678: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
19679: handy macro, which is strangly abscent in dome lib
19680:
19681: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
19682:
19683: * src/classes/xdoc.C: checked empty response
19684:
19685: * src/classes/xnode.C: xdoc.select fixed context node [were always
19686: /, not self node]
19687:
19688: * src/classes/xnode.C: xnode.select returns array always now, in
19689: case 'nothing found' returns empty array
19690:
19691: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
19692: be more tender with ctrl/c/v
19693:
19694: 2002-01-23 paf
19695:
19696: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
19697: substituted. // 2. when dom tree with entites goes under
19698: transform text nodes // got [erroreosly] cut on first
19699: entity occurance
19700:
19701: * src/types/pa_vdouble.h: double prec. todo: get rid of
19702: twice-converting
19703:
19704: * src/types/pa_vdouble.h: %.20E now float format when %g produced
19705: 'e' in output this is for regretful twice-converting here:
19706: $a(double value) when they write double falue they convert it to
19707: string first, thus %g were losing precesion.
19708:
19709: todo: think up some way to remove double->string string->double
19710: twice-converting
19711:
19712: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
19713: %.20E now default float format this is for regretful
19714: twice-converting here: $a(double value) when they write double
19715: falue they convert it to string first, thus %g were losing
19716: precesion.
19717:
19718: todo: think up some way to remove double->string string->double
19719: twice-converting
19720:
19721: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19722: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
19723: reasons in comment inside
19724:
19725: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
19726: statically linked]
19727:
19728: * src/: include/pa_exception.h, main/compile.tab.C,
19729: main/pa_exception.C: removed exception va_list constructor. 1.
19730: not needed anymore 2. there were a conflict[causing errors]
19731: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
19732: never detected an ambiguilty here, compiling ctor(, "hello") into
19733: ctor(, va_list) which, of course, caused gpf
19734:
19735: * src/main/pa_globals.C: removed debug xslt messages
19736:
19737: 2002-01-22 paf
19738:
19739: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19740: main/pa_globals.C: xsl stylesheet load: parsed entities, this
19741: helps compiling stylesheet properly. example: this refused to
19742: work, <b>«<xsl:value-of select="@title"
19743: />»</b> stranly worked only this way:
19744: <b>«<xsl:value-of select="@title" />»</b>
19745:
19746: docs says "set it to 1", never going into details, so I decided
19747: to try NOT to do that
19748:
19749: * src/classes/table.C: join behaived badly in case named tables
19750: structure mismatched: 0 strings sneaked into dest failing
19751: afterwards. replaced them with empty strings
19752:
19753: 2002-01-21 paf
19754:
19755: * src/main/pa_charset.C: checked empty transcoders in
19756: transcode_cstr|buf
19757:
19758: * src/classes/xdoc.C: xdoc::load error source = filespec
19759:
19760: * src/classes/xdoc.C: transform error source now
19761: stylesheet_filespec
19762:
1.116 moko 19763: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 19764: include/pa_stylesheet_connection.h, main/pa_charset.C,
19765: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 19766: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
19767: gnome
1.95 moko 19768:
19769: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19770: include/pa_globals.h, include/pa_stylesheet_connection.h,
19771: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
19772: xslt generic error 1
19773:
19774: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
19775: xml generic message 1
19776:
19777: * src/classes/table.C: ^table::load empty lines or #comments before
19778: headline
19779:
19780: * src/: include/pa_array.h, include/pa_globals.h,
19781: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
19782: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
19783: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
19784: errors 0
19785:
19786: 2002-01-16 paf
19787:
19788: * src/: classes/hash.C, classes/op.C, classes/string.C,
19789: classes/table.C, classes/void.C, classes/xdoc.C,
19790: include/pa_db_connection.h, include/pa_request.h,
19791: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19792: include/pa_stylesheet_connection.h,
19793: include/pa_stylesheet_manager.h, main/pa_request.C,
19794: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19795: targets/cgi/pool_storage.h: auto closers to sql_connection,
19796: stylesheet_connection auto destroyers to remaining gnome objects
19797:
19798: * src/classes/xdoc.C: few comments
19799:
19800: 2002-01-15 paf
19801:
19802: * src/classes/xdoc.C: xdoc file save string
19803:
19804: ready. todo: error handling
19805:
19806: * src/classes/xdoc.C: xdoc save rewritten using
19807: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
19808: result
19809:
19810: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
19811: started output options parsing
19812:
19813: 2002-01-14 paf
19814:
19815: * src/classes/xdoc.C: method
19816:
19817: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19818: include/pa_pool.h, include/pa_stylesheet_connection.h,
19819: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
19820: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
19821: xslt transform0. TODO: use output options handle errors
19822:
19823: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
19824:
19825: 2002-01-11 paf
19826:
19827: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19828: main/compile_tools.C, main/compile_tools.h, main/execute.C:
19829: partial logical && || evaluation
19830:
19831: * src/classes/xnode.C: xpath selectNodes
19832:
19833: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
19834: string/number/bool
19835:
19836: * src/classes/xnode.C: xpath selectNode 2
19837:
19838: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
19839: xpath selectNode 1
19840:
19841: 2002-01-10 paf
19842:
19843: * src/classes/xnode.C: xpath selectNode -100 [just written]
19844:
19845: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19846: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
19847: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
19848: refcounter]
19849:
19850: 2001-12-29 paf
19851:
19852: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
19853: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
19854: glib works 0
19855:
19856: 2001-12-28 paf
19857:
19858: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
19859: main/pa_exception.C: started glib transcoders
19860:
19861: * src/main/pa_globals.C: renamed gdome to libgdome.dll
19862:
19863: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
19864: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
19865: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
19866: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
19867: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
19868: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
19869: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
19870: libs just compiled in. no refcounting no xpath no xslt yet
19871:
19872: 2001-12-27 paf
19873:
19874: * src/: include/pa_charset.h, include/pa_common.h,
19875: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
19876: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
19877: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
19878: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
19879: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
19880: from xalan&xerces, started the process. globals [initialization
19881: pool [charset update charset [transcodings vxnode vxdoc [DOM
19882: calls
19883:
19884: * src/classes/Makefile.am: going away from xalan&xerces, not needed
19885: anymore
19886:
19887: 2001-12-26 paf
19888:
19889: * src/: include/pa_charset.h, include/pa_charsets.h,
19890: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
19891: key globalized [bug]
19892:
19893: 2001-12-25 paf
19894:
19895: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
19896: main/pa_string.C: table set & append changed splitting languages,
19897: separators now can be clean AND as-is same to mail command line
19898: $MAIN:MAIL.progX arguments
19899:
19900: 2001-12-24 paf
19901:
19902: * src/classes/mail.C: one parted text messages - no multipart
19903: mime-type anymore. for convinient if $.attach-ments
19904:
19905: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
19906: main/pa_string.C: read from cache size check updated
19907:
19908: * src/main/: pa_string.C: String::join_chain another ugly bug :(
19909:
19910: 2001-12-21 paf
19911:
19912: * src/classes/date.C: date:sql-string now returns localtime
19913:
19914: * src/main/pa_request.C: $result in @main actually not working, to
19915: hell with it for now
19916:
19917: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
19918: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
19919: @postprocess @exception
19920:
19921: * src/main/execute.C: junction evaluation canceled - endless
19922: recursion detected
19923:
19924: 2001-12-19 paf
19925:
19926: * src/main/pa_charset.C: charset->charset transcoding via unicode
19927: intermediate
19928:
19929: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
19930:
19931: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
19932:
19933: * src/classes/op.C: ^cache keypath now relative
19934:
19935: * src/classes/mail.C: changed weighting prior to sort
19936:
19937: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
19938: were missing
19939:
19940: 2001-12-17 paf
19941:
19942: * src/main/pa_charset.C: ifndef XML were bad type
19943:
19944: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
19945: outdated unset services_pool
19946:
19947: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
19948: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
19949: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
19950:
19951: * src/main/untaint.C: allowed space in filespec
19952:
19953: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
19954:
19955: * src/classes/image.C: no govno
19956:
19957: * src/classes/image.C: govno
19958:
19959: 2001-12-16 paf
19960:
19961: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
19962:
19963: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
19964: charset_connection&manager replaced by charset&charsets
19965:
19966: * src/main/pa_charset.C: name_cstr 0
19967:
19968: * src/main/untaint.C: uri lang now knows about client/source
19969: charsets
19970:
19971: * src/: classes/file.C, classes/math.C, classes/op.C,
19972: classes/string.C, classes/table.C, classes/xdoc.C,
19973: include/pa_array.h, include/pa_cache_managers.h,
19974: include/pa_charset_connection.h, include/pa_charset_manager.h,
19975: include/pa_common.h, include/pa_db_connection.h,
19976: include/pa_db_manager.h, include/pa_db_table.h,
19977: include/pa_dictionary.h, include/pa_exception.h,
19978: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
19979: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
19980: include/pa_sapi.h, include/pa_socks.h,
19981: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19982: include/pa_string.h, include/pa_stylesheet_connection.h,
19983: include/pa_stylesheet_manager.h, include/pa_table.h,
19984: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
19985: main/pa_charset.C, main/pa_charset_connection.C,
19986: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
19987: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
19988: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
19989: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
19990: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
19991: types/types.dsp: introducing Charset
19992:
19993: 2001-12-14 paf
19994:
19995: * src/: include/pa_request.h, include/pa_transcoder.h,
19996: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
19997: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
19998: uri lang
19999:
20000: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
20001:
20002: * src/targets/cgi/Makefile.am: -I../../pcre to .am
20003:
20004: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
20005: defalts_name global
20006:
20007: * src/: include/pa_charset_connection.h, include/pa_pool.h,
20008: include/pa_request.h, main/main.dsp,
20009: main/pa_charset_connection.C, main/pa_charset_manager.C,
20010: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
20011: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
20012: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
20013: changed charset model. now important: $request:charset
20014: $response:charset while $response:content-type.charset become
20015: unimportant [informational]
20016:
20017: 2001-12-13 paf
20018:
20019: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
20020:
20021: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
20022: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
20023: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
20024: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
20025: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
20026: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
20027:
20028: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
20029: auto_ptr part other way, because of stupid gcc 2.96
20030: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
20031: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
20032: FormatterListener] /usr/include/g++-3/memory:48:
20033: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
20034: _Tp1 = FormatterListener, _Tp = FormatterListener]
20035:
20036: * src/classes/xdoc.C: removed extra inc
20037:
20038: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
20039:
20040: * src/include/pa_types.h: msvc head debugging flag
20041:
20042: * src/classes/xdoc.C: freed up listener
20043:
20044: * src/classes/string.C: change msg '... code is not code'
20045:
20046: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
20047: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20048: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
20049: [past/future prob]
20050:
20051: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20052: include/pa_config_fixed.h, include/pa_db_manager.h,
20053: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20054: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
20055:
20056: * src/: include/pa_config_fixed.h, main/pa_common.C,
20057: main/pa_string.C: removed signed mismatch warnings
20058:
20059: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
20060: 'expires' from header outputs
20061:
20062: * src/main/pa_string.C: string::recustruct erroreusly used outdated
20063: row ptr
20064:
20065: * src/classes/file.C: file::cgi bug, request_method were passed to
20066: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
20067:
20068: * src/classes/xdoc.C: lang list updated
20069:
20070: 2001-12-10 paf
20071:
20072: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
20073:
20074: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
20075: erase files like that, knowing their full name introducing //
20076: theoretical problem with, for instance, "_2B" and "." fragments,
20077: // they would yield the same // because
20078: need_file_encode('_')=false // but we need to delete such files
20079: somehow, getting names from ^index
20080:
20081: * src/main/pa_string.C: ^string.replace bug fixed [bad
20082: string::join_chank break]
20083:
20084: 2001-12-07 paf
20085:
20086: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
20087: include/pa_common.h, include/pa_config_auto.h.in,
20088: include/pa_config_fixed.h, include/pa_config_includes.h,
20089: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
20090: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
20091: types/pa_vhashfile.C: merged from r14_simple_cache
20092:
20093: * src/main/pa_string.C: stupid sparc architecture failed to access
20094: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
20095: lduh [ %i2 + 1 ], %l0
20096:
20097: bus error, fixed that
20098:
20099: * src/main/pa_string.C: strange string deserialize bug on
20100: client[pmts], a bit shortened,
20101:
20102: * src/include/pa_config_auto.h.in: makes
20103:
20104: * src/: include/pa_common.h, include/pa_config_fixed.h,
20105: include/pa_config_includes.h, main/pa_common.C: exclusive lock
20106: file write shared lock file read
20107:
20108: * src/: classes/op.C, include/pa_common.h,
20109: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
20110:
20111: 2001-12-06 paf
20112:
20113: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20114: main/pa_request.C: #ifdef RESOURCES_DEBUG
20115:
20116: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
20117: info
20118:
20119: * src/classes/hashfile.C: removed transaction from ^cache
20120:
20121: 2001-12-05 paf
20122:
20123: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
20124: IIS5 there were a prob with illegal call check
20125:
20126: 2001-12-04 paf
20127:
20128: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20129: main/pa_request.C: measures to log
20130:
20131: 2001-11-23 paf
20132:
20133: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20134: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
20135: types/pa_vhashfile.C: merged from _0014, 1
20136:
20137: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20138: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
20139: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
20140: ^cache(33) would change
20141:
20142: 0660 bits in file_write & hashfile create
20143:
20144: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
20145: after pa_string optimization]
20146:
20147: 2001-11-22 paf
20148:
20149: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20150: table.offset[whence]
20151:
20152: * src/classes/op.C: process cstr(,connection)
20153:
20154: * src/classes/op.C: process now gets its body on current language,
20155: not as-is
20156:
20157: * src/main/untaint.C: ORIGINS mode removed UHTML
20158:
20159: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
20160: bit
20161:
1.116 moko 20162: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 20163:
20164: 2001-11-21 paf
20165:
20166: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
20167: <xsl:output output options made identical to xsl:output
20168: attributes exclusion: cdata-section-elements what xalan can do
20169: but that not used now: it can escape and remove CDATA sections
20170:
20171: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
20172: produced by xslt
20173:
20174: * src/targets/cgi/parser3.C: removed debug cgi||1
20175:
20176: * src/main/: pa_string.C, untaint.C: cached some string::size() es
20177:
20178: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
20179: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
20180: default language for {code}, it happen to change it's language
20181: from CLEAN, so later refused to split by CLEAN \t
20182:
20183: 2001-11-20 paf
20184:
1.116 moko 20185: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
20186: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 20187: bottom of dependeces, so that errors would popup quicklier, fixed
20188: line numbering in table::sql
20189:
20190: 2001-11-19 paf
20191:
20192: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
20193: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
20194: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20195: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
20196: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
20197: at wcontext.write
20198:
1.116 moko 20199: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 20200: _set_new_handler
20201:
1.116 moko 20202: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
20203: set_new_handler in apache&isapi
1.95 moko 20204:
20205: 2001-11-16 paf
20206:
20207: * src/targets/cgi/parser3.C: pool debug @ die
20208:
20209: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
20210: removed 8 bytes from String, 2 bytes from
20211: string::chunk::row::item
20212:
20213: * src/main/pa_string.C: removed 1+4 bytes from String
20214:
20215: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20216: types/pa_vstring.C: removed 1+4 bytes from String
20217:
20218: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
20219: 0
20220:
20221: * src/: include/pa_globals.h, include/pa_string.h,
20222: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
20223: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
20224: targets/cgi/parser3.C: introducing estimating
20225: String::cstr_bufsize, 0
20226:
20227: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
20228:
20229: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
20230:
20231: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
20232: include/pa_pool.h: die in pool::fail
20233:
20234: 2001-11-15 paf
20235:
20236: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
20237: main/pa_exception.C, targets/cgi/parser3.C: exception with
20238: dynamic buffer re-back now with counter
20239:
20240: * src/: include/pa_exception.h, main/pa_exception.C: exception with
20241: static buffer back
20242:
20243: * src/targets/cgi/parser3.C: std::
20244:
20245: * src/: classes/classes.awk, include/pa_config_auto.h.in,
20246: include/pa_config_includes.h: setnewhandler check
20247:
1.116 moko 20248: * src/include/pa_config_auto.h.in: makes
1.95 moko 20249:
20250: * src/targets/cgi/parser3.C: set_new_handler started
20251:
20252: 2001-11-14 paf
20253:
20254: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20255: was wrong
20256:
20257: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20258: was wrong
20259:
20260: * src/main/pa_request.C: z
20261:
20262: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
20263: full returns win32 -1 solaris >buffer_size
20264:
20265: checked all that
20266:
20267: * src/classes/op.C: ^untaint{body} as-is default now
20268:
20269: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20270: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
20271: with no_bad_constructors_try
20272:
20273: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20274: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
20275: this: $bred[^string::length[]] $bred[^response::clear[]]
20276: $bred[^int::int[]]
20277:
20278: now VObject creation moved into overriden
20279: VClass::create_new_value, thus 0 from create_new_value means that
20280: class has no ctors
20281:
20282: 2001-11-13 paf
20283:
20284: * src/classes/classes.C: returned accedently removed if in foreach
20285: callbacks [when hash no-0-restructure]
20286:
20287: 2001-11-12 paf
20288:
20289: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
20290: passed as-is to method, xalan makes & into & itself
20291:
20292: * src/classes/date.C: date.roll parser2 alg used
20293:
20294: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
20295: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20296: main/pa_dictionary.C, main/pa_hash.C,
20297: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
20298: now does not containt 0 values. put 0 actullay removes. no check
20299: on 0 value in foreach now required
20300:
20301: 2001-11-11 paf
20302:
20303: * src/sql/pa_sql_driver.h: removed extra constructor, doc
20304:
20305: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
20306:
20307: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
20308: driver initialize not const
20309:
20310: 2001-11-10 paf
20311:
20312: * src/main/pa_exec.C: doc
20313:
20314: 2001-11-09 paf
20315:
20316: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
20317: param properly
20318:
20319: * src/classes/string.C: string.save now does untainting before
20320: saving
20321:
20322: * src/main/pa_common.C: line endings fixing fixed last piece[was
20323: still cstr oriented]
20324:
20325: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20326: line endings fixing got rid of cstr, now must work ok with post
20327: multipart
20328:
20329: * src/types/pa_vform.C: line endings fixed at post / multipart /
20330: not file also now
20331:
20332: 2001-11-08 paf
20333:
20334: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20335: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20336: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
20337: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
20338: main/pa_stylesheet_manager.C: restructured Cache manager to be
20339: simple parent, not second parent [gcc 2.96 strangly refused to
20340: call virtual from second parent]
20341:
1.116 moko 20342: * src/: include/pa_common.h, main/Makefile.am,
20343: targets/cgi/pa_pool.C: makes
1.95 moko 20344:
20345: * src/: include/pa_request.h, main/pa_request.C,
20346: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
20347: 'status' class enabler
20348:
20349: <Location /parser-status.html> ParserStatusAllowed </Location>
20350:
20351: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20352: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20353: include/pa_stylesheet_manager.h, main/main.dsp,
20354: main/pa_cache_managers.C, main/pa_charset_manager.C,
20355: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20356: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20357: types/pa_vstatus.h: cache_managers, maybe-expiring every request
20358: todo: apache 'status' class enabler
20359:
20360: 2001-11-05 paf
20361:
20362: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
20363: debug to normal
20364:
20365: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
20366: hence i removed skipping 0 values in hash::for_each-es we need to
20367: check cleaned cache items manually. few more checks.
20368:
20369: expiring to 0 time was wrong, changed to 'now' time
20370:
20371: * src/targets/cgi/parser3.C: read can return 0, that means sort of
20372: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
20373: on apache already done :)
20374:
20375: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
20376: skipping 0 values in hash::for_each-es we need to check cleaned
20377: cache items manually
20378:
20379: * src/main/: pa_db_connection.C, pa_db_table.C:
20380: parser_multithreaded check was wrong
20381:
20382: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20383: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20384: classes/hashfile.C, classes/image.C, classes/int.C,
20385: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20386: classes/string.C, classes/table.C, classes/void.C,
20387: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20388: include/pa_array.h, include/pa_charset_connection.h,
20389: include/pa_charset_manager.h, include/pa_common.h,
20390: include/pa_config_fixed.h, include/pa_config_includes.h,
20391: include/pa_db_connection.h, include/pa_db_manager.h,
20392: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20393: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20394: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20395: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20396: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20397: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20398: include/pa_stack.h, include/pa_string.h,
20399: include/pa_stylesheet_connection.h,
20400: include/pa_stylesheet_manager.h, include/pa_table.h,
20401: include/pa_threads.h, include/pa_types.h, main/compile.C,
20402: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20403: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
20404: main/pa_charset_manager.C, main/pa_common.C,
20405: main/pa_db_connection.C, main/pa_db_manager.C,
20406: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20407: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20408: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20409: main/pa_socks.C, main/pa_sql_driver_manager.C,
20410: main/pa_status_provider.C, main/pa_string.C,
20411: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20412: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20413: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20414: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20415: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20416: targets/isapi/pool_storage.h, types/pa_valiased.C,
20417: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20418: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20419: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20420: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20421: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20422: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20423: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20424: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20425: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20426: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20427: types/pa_vstateless_object.h, types/pa_vstatus.h,
20428: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
20429: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
20430: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20431: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
20432: $status:db fixed used not initialized in db_connection & db_table
20433:
20434: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
20435: $status:charset
20436:
20437: * src/: classes/xdoc.C, include/pa_db_connection.h,
20438: include/pa_stylesheet_connection.h,
20439: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
20440: types/pa_vstatus.h: $status:stylesheet
20441:
20442: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
20443: include/pa_request.h, include/pa_sql_connection.h,
20444: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20445: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
20446: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20447: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20448: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
20449: types/pa_vxnode.C, types/types.dsp: started status parser class
20450:
20451: 2001-11-01 paf
20452:
20453: * src/include/pa_config_auto.h.in: makes
20454:
20455: * src/main/pa_hash.C: removed old extra include
20456:
20457: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
20458: checks [for hp, there are such in math.h]
20459:
20460: * src/classes/op.C: ^for endless loop check strightened
20461:
20462: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
20463: behavior in native calls. it left unchanged, so ^for ^foreach &
20464: co can use r.root to write their i & key,value there
20465:
20466: * src/classes/op.C: detected for var storage bug, fixed.
20467: todo:foreach
20468:
20469: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
20470: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
20471: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
20472: changing of hash inside of foreach
20473:
20474: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
20475: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
20476: were hash.foreach
20477:
20478: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
20479: types/pa_vstring.C, types/pa_vstring.h:
20480: ^foreach[key|value]{body}[[separator]|{separator}]
20481:
20482: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
20483: types/pa_vcookie.C: ^hash.delete[key]
20484:
20485: 2001-10-31 paf
20486:
20487: * src/main/: compile.C, pa_common.C: completely empty file now
20488: considered "read", not ignored [not perfect trick used]
20489:
20490: * src/main/pa_common.C: simplier common ifdefs
20491:
20492: * src/main/pa_common.C: typing bug in common - bad ifdeff
20493:
20494: * src/main/pa_db_connection.C: z
20495:
20496: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
20497: lockdetector flags
20498: dbenv.lk_detect=DB_LOCK_RANDOM;
20499:
20500: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
20501: from accidental show [imagine user forgot @exception]
20502:
20503: * src/classes/table.C: ^table.save[[nameless|+append;]path]
20504:
20505: * src/: classes/file.C, classes/image.C, classes/mail.C,
20506: classes/string.C, classes/xnode.C, include/pa_common.h,
20507: main/pa_common.C: ^string.save[[append;]path]
20508:
20509: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20510: main/execute.C: \ in expression: int divide 10/3=3
20511:
20512: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
20513: inside of ^cache
20514:
20515: * src/: include/pa_threads.h, main/pa_db_connection.C,
20516: main/pa_db_table.C, targets/cgi/pa_threads.C,
20517: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
20518: needed
20519:
20520: 2001-10-30 paf
20521:
20522: * src/: classes/classes.dsp, main/main.dsp,
20523: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20524: types/types.dsp: enabled debug incremental compile
20525:
20526: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20527: form post data line endings not reformatted now.
20528:
20529: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
20530: now required [had bug when file= has no value]
20531:
20532: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
20533: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
20534: cstr(asis) default param removed
20535:
20536: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
20537:
20538: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
20539:
20540: * src/include/pa_dir.h: LOAD_DIR fixed
20541:
20542: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
20543: was broken} fix_line_breaks
20544:
20545: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
20546: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
20547: packed with #pragma pack
20548:
1.116 moko 20549: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 20550:
20551: 2001-10-29 paf
20552:
20553: * src/types/pa_wcontext.h: bitfield syntax stricter
20554:
20555: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
20556: string hash.puts
20557:
20558: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
20559:
20560: * src/include/pa_sql_connection.h: there were one wrong
20561: SQL_CONNECTION_FUNC_GUARDED [failed]
20562:
20563: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
20564: param.someday either ifdef or remove it
20565:
20566: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
20567:
20568: * src/main/untaint.C: optimizing returned after debugging
20569:
20570: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
20571: main/untaint.C: memory hunging #pragma pack(1)
20572:
20573: 16 419 844 13 169 394
20574:
20575: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20576: targets/cgi/pa_pool.C: String size_t replace to uint in proper
20577: places [todo:Array]
20578:
20579: * src/: main/execute.C, targets/cgi/pa_pool.C,
20580: targets/cgi/parser3.dsp, types/pa_wcontext.h,
20581: types/pa_wwrapper.h: debugging memory WContext flags to bits
20582:
20583: total 5 652 652/158731 total 5 469 332/158731
20584:
20585: * src/: include/pa_array.h, main/pa_array.C: debugging memory
20586: Array:: without cache in get/put now
20587:
20588: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
20589: 18:25:27 2001] total 5 652 652/158731
20590:
20591: * src/: include/pa_string.h, main/pa_string.C,
20592: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
20593: now
20594:
20595: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
20596: 18:11:53 2001] total 5796092/158731
20597:
20598: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
20599: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
20600: key ref now
20601:
20602: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
20603: 17:11:17 2001] total 16867948/202658
20604:
20605: * src/: classes/file.C, classes/image.C, classes/string.C,
20606: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
20607: main/execute.C, main/pa_array.C, main/pa_common.C,
20608: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20609: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
20610: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
20611: string::as_int/double now usually uses stack, not heap [200K out
20612: of 17M :)] VString(String&) not copies reference [29M -> 17M]
20613:
20614: * src/main/pa_sql_driver_manager.C: ping to have services [old
20615: hiding bug]
20616:
20617: * src/Makefile.am: .am order
20618:
20619: * src/: include/pa_array.h, include/pa_charset_manager.h,
20620: include/pa_db_connection.h, include/pa_db_manager.h,
20621: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
20622: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20623: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
20624: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
20625: required "friend class"
20626:
20627: ../include/pa_request.h:51: friend declaration requires
20628: class-key, i.e. `friend class Temp_lang'
20629:
20630: * src/: include/pa_exception.h, include/pa_sql_connection.h,
20631: main/pa_exception.C, main/pa_sql_driver_manager.C,
20632: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
20633:
20634: the idea is to #1 jump to C++ some function to main body, where
20635: every function stack frame has exception unwind information and
20636: from there... #2 propagate_exception()
20637:
20638: 2001-10-28 paf
20639:
20640: * src/main/pa_db_connection.C: removed old consts
20641:
20642: * src/main/pa_db_connection.C: expire table [was accidently pasted
20643: with wrong type/cast]
20644:
20645: * src/main/: pa_db_connection.C, pa_db_table.C: exception
20646: translation
20647:
1.116 moko 20648: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 20649: remember to build DB2 with -fexceptions!!!
20650:
20651: * src/main/pa_db_table.C: DB_RMW defed
20652:
20653: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
20654: include/pa_db_connection.h, include/pa_db_manager.h,
20655: include/pa_db_table.h, main/pa_db_connection.C,
20656: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
20657:
20658: 2001-10-27 paf
20659:
20660: * src/: classes/hashfile.C, include/pa_db_connection.h,
20661: include/pa_db_table.h, main/pa_db_connection.C,
20662: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
20663: types/pa_vhashfile.C: DB2 ifdefs
20664:
1.116 moko 20665: * src/: classes/Makefile.am, include/pa_config_fixed.h,
20666: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 20667: makes with DB2
20668:
1.116 moko 20669: * src/: include/pa_config_auto.h.in, main/Makefile.am,
20670: types/Makefile.am: makes db
1.95 moko 20671:
20672: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
20673: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
20674: globals.C
20675:
20676: * src/: classes/hashfile.C, include/pa_db_connection.h,
20677: include/pa_db_table.h, main/pa_db_connection.C,
20678: main/pa_db_table.C: ^hashfile.clear[]
20679:
20680: * src/classes/classes.awk: no $ in var names
20681:
20682: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
20683: connection&table [forgotten calls]
20684:
20685: 2001-10-26 paf
20686:
20687: * src/main/pa_db_connection.C: db checkpoints
20688:
20689: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
20690: checkpoints
20691:
20692: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
20693: default. but entities still reparsed. todo: tothink
20694:
20695: * src/main/pa_db_connection.C: db recover mech 2
20696:
20697: * src/: classes/hashfile.C, include/pa_db_connection.h,
20698: include/pa_db_manager.h, include/pa_db_table.h,
20699: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20700: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
20701: types/pa_vhashfile.h: db connections & tables now cached at
20702: create time & multithreaded
20703:
20704: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
20705: parsed_source
20706:
20707: * src/main/pa_db_connection.C: about to remove connection from
20708: vhashfile
20709:
20710: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
20711: transaction commit/rollback responsibility left to parent [as it
20712: sould - else there were a bug with double free]
20713:
20714: * src/include/pa_db_table.h: db: child transaction commit/rollback
20715: responsibility left to parent [as it sould - else there were a
20716: bug with double free]
20717:
20718: 2001-10-25 paf
20719:
20720: * src/: classes/hashfile.C, include/pa_common.h,
20721: include/pa_db_connection.h, include/pa_db_manager.h,
20722: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
20723: types/pa_vhashfile.C, types/pa_vhashfile.h,
20724: include/pa_db_table.h, main/pa_db_table.C: started db_home
20725: [multiple, cached] todo: autorecover [tried, but not succeded,
20726: yet]
20727:
20728: * src/include/pa_dir.h: ancient gpf on dir not found fixed
20729:
20730: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
20731: transaction parent passed
20732:
20733: 2001-10-24 parser
20734:
1.116 moko 20735: * src/classes/Makefile.am: makes
1.95 moko 20736:
20737: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
20738: isapi/pool_storage.h: pool_storage fixed
20739:
20740: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
20741: types/pa_vform.h: form fix_line_breaks
20742:
1.116 moko 20743: * src/targets/cgi/pool_storage.h: makes
1.95 moko 20744:
20745: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
20746: targets/cgi/pool_storage.h: makes
20747:
20748: * src/sql/pa_sql_driver.h: version
20749:
20750: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
20751: types/pa_vform.C, types/pa_vform.h: .am
20752:
20753: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
20754: this: DB_RMW Acquire write locks instead of read locks when doing
20755: the retrieval. Setting this flag may decrease the likelihood of
20756: deadlock during a read-modify-write cycle by immediately
20757: acquiring the write lock during the read part of the cycle so
20758: that another thread of control acquiring a read lock for the same
20759: item, in its own read-modify-write cycle, will not result in
20760: deadlock
20761:
20762: * src/targets/isapi/parser3isapi.dsp: doc
20763:
20764: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
20765:
20766: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
20767:
20768: * src/: classes/hashfile.C, include/pa_db_connection.h,
20769: main/pa_db_connection.C: hashfile expired deleted from db when
20770: get & iterate
20771:
20772: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
20773: expiring 1
20774:
20775: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
20776:
20777: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
20778: db_connection not bothers with key when not returning expired
20779: data
20780:
20781: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20782: types/pa_vhashfile.C: db_cursor constructor public now
20783:
20784: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20785: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
20786: stamped, todo: put_element analize
20787:
20788: * src/: include/pa_db_connection.h, include/pa_string.h,
20789: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
20790: serialize. todo stamp
20791:
20792: 2001-10-23 parser
20793:
20794: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
20795: classes/image.C, classes/mail.C, classes/response.C,
20796: classes/string.C, classes/table.C, classes/xdoc.C,
20797: include/pa_config_fixed.h, include/pa_db_connection.h,
20798: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
20799: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
20800: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
20801: types/pa_vtable.C: ^hashfile.hash[]
20802:
20803: * src/: classes/hashfile.C, classes/xdoc.C,
20804: include/pa_config_fixed.h, main/pa_db_manager.C,
20805: main/pa_globals.C: ifdefs so it compiled without db
20806:
20807: * src/: classes/hashfile.C, include/pa_db_connection.h,
20808: include/pa_db_manager.h, main/pa_db_connection.C,
20809: main/pa_db_manager.C, types/pa_vhashfile.h:
20810: ^hashfile.transaction{code} ^hashfile:clear[filename]
20811: ^hashfile.delete[key]
20812:
20813: 2001-10-22 parser
20814:
20815: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
20816: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
20817:
20818: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
20819: classes/xnode.C, include/pa_charset_connection.h,
20820: include/pa_db_connection.h, include/pa_db_manager.h,
20821: include/pa_exception.h, include/pa_sapi.h,
20822: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20823: include/pa_stylesheet_connection.h,
20824: include/pa_stylesheet_manager.h,
20825: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20826: main/pa_db_connection.C, main/pa_db_manager.C,
20827: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
20828: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20829: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
20830: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
20831: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
20832: types/types.dsp: hashfile 0
20833:
20834: * src/types/pa_vhashfile.C: z
20835:
20836: * src/: classes/classes.dsp, classes/hashfile.C,
20837: include/pa_config_fixed.h, main/execute.C,
20838: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
20839: types/pa_vhashfile.h, types/types.dsp: hashfile -100
20840:
20841: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
20842:
20843: * src/: include/pa_exception.h, include/pa_request.h,
20844: main/execute.C, main/pa_exception.C, main/pa_request.C,
20845: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20846: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
20847:
20848: 2001-10-19 parser
20849:
20850: * src/include/pa_pool.h: header
20851:
20852: * src/main/pa_pool.C: auto compiled on gcc
20853:
20854: * src/classes/image.C: comment
20855:
1.116 moko 20856: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 20857:
20858: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20859: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20860: types/pa_vxnode.h: xnode clone got freed
20861:
20862: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20863: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
20864: can free up xalandomstring resulting from pool::transcode
20865:
20866: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
20867: include/pa_config_fixed.h, include/pa_exception.h,
20868: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
20869: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
20870: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
20871: to c++ exceptions 1xml configure fixed to exclude xalan-patch
20872: from non-xml compile
20873:
20874: * src/main/pa_request.C: pool:: context - get_context
20875:
20876: * src/: classes/classes.h, classes/date.C, classes/double.C,
20877: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
20878: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
20879: classes/string.C, classes/table.C, classes/void.C,
20880: include/pa_config_fixed.h, include/pa_exception.h,
20881: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
20882: main/compile.C, main/compile_tools.C, main/execute.C,
20883: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
20884: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
20885: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
20886: main/pa_string.C, main/pa_table.C, main/untaint.C,
20887: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20888: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
20889: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
20890: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
20891: types/pa_vstateless_class.h, types/pa_vtable.C,
20892: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
20893: exceptions 0
20894:
20895: * src/classes/classes.awk: $ removed
20896:
20897: 2001-10-18 parser
20898:
20899: * src/types/pa_vcookie.C: cookie:CLASS
20900:
20901: * src/main/main.dsp: project
20902:
20903: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
20904: set_document & ctor question "who owns document" solved
20905:
20906: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
20907:
20908: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20909: main/pa_pool.C: encoding in dom creating funcs
20910:
20911: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
20912: be transformed now
20913:
20914: * src/classes/xdoc.C: dom created by create can be transformed now
20915:
20916: * src/classes/xdoc.C: z
20917:
20918: * src/classes/xdoc.C: comment
20919:
20920: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
20921: create now uses XercesDocumentBridge, appendChild&co now works
20922:
20923: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
20924: @ recompile
20925:
20926: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
20927: $origin @exception[
20928:
20929: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
20930: tag names forced to XML lang
20931:
20932: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
20933: leechy-found bugs in code&doc fixed
20934:
20935: 2001-10-17 parser
20936:
20937: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
20938: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
20939: n functionality preserved
20940:
20941: * src/types/pa_vimage.h: removed unused vimage::save
20942:
20943: 2001-10-16 parser
20944:
20945: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
20946:
20947: * src/classes/: xnode.C: removed few dom returns & changed op.txt
20948:
20949: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
20950:
20951: * src/classes/image.C: image.copy tolerance
20952:
20953: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
20954: ineffective, but works for small paleted image
20955:
20956: * src/types/pa_vimage.C: comment
20957:
20958: * src/classes/image.C: gd size/resize bugfix
20959:
20960: * src/: classes/classes.dsp, main/main.dsp,
20961: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20962: types/types.dsp: ident >nul 2>&1
20963:
20964: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
20965: systems
20966:
20967: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
20968: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
20969:
20970: 2001-10-15 parser
20971:
20972: * src/main/execute.C: z
20973:
20974: * src/classes/: xdoc.C: !::create{qualifiedName}
20975:
20976: * src/types/pa_vxnode.C: document_type_node.
20977: !readonly attribute DOMString name
20978: !notation_node.
20979: !readonly attribute DOMString publicId
20980: !readonly attribute DOMString systemId
20981:
1.116 moko 20982: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
20983: ::write badly passed string too transparently [failed to
20984: intercept it]
1.95 moko 20985:
20986: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
20987: include/pa_request.h, main/pa_sql_driver_manager.C,
20988: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20989: types/pa_vxnode.h: DOM1 major addtion, only few
20990: attributes/methods left
20991:
20992: 2001-10-13 parser
20993:
20994: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
20995: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
20996: in main handler
20997:
20998: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
20999: cleanups & frees order
21000:
21001: * src/types/pa_vcode_frame.h: couple comments
21002:
21003: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
21004: transparent enough to handle hash if creation&passing
21005:
21006: * src/: include/pa_config_fixed.h, main/execute.C,
21007: main/pa_exception.C: noticed that vcodeframe not transparent
21008: enough, would change now
21009:
21010: 2001-10-12 parser
21011:
21012: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
21013: fixed. initialization&free on each thread!
21014:
21015: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
21016: handling changed: now type of default param analized always, not
21017: only at problem time, thus helping early problem spotting
21018:
21019: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
21020: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
21021: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21022: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
21023: multithread bug fixed. initialization&free on each thread!
21024:
21025: 2001-10-11 parser
21026:
21027: * src/classes/xnode.C: xnode.selectSingle now
21028:
21029: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
21030: include/pa_pool.h, include/pa_stylesheet_connection.h,
21031: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
21032: convertors out of Pool into Exception
21033:
21034: * src/main/pa_string.C: const
21035:
21036: * src/: include/pa_string.h, main/pa_string.C: restructured string:
21037: linked pieces of same language together prior to String::replace
21038:
21039: * src/classes/hash.C: !^hash.add[addme]
21040: !^hash.sub[subme]
21041: !^a.union[b] = new
21042: !^a.intersection[b] = new
21043: !^a.intersects[b] = bool
21044:
21045: * src/classes/hash.C: !^hash::append[append_from]
21046:
21047: * src/: classes/hash.C, types/pa_vhash.h:
21048: !^hash::create[[copy_from]]
21049:
21050: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21051: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
21052: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
21053: fixed. got rid of empty_string, which caused errors - it hasnt
21054: exception but somebody[value.bark] tried to throw it on it's pool
21055:
1.116 moko 21056: * src/include/pa_config_auto.h.in: makes
1.95 moko 21057:
21058: 2001-10-10 parser
21059:
21060: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
21061:
21062: * src/main/: compile.tab.C, compile.y: ^a[
21063:
21064: @next_method << now unclosed ] would be reported here
21065:
21066: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
21067: compile error
21068:
21069: 2001-10-09 parser
21070:
1.116 moko 21071: * src/: classes/Makefile.am, main/Makefile.am,
21072: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 21073:
21074: * src/classes/Makefile.am: makes
21075:
21076: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
21077: win32 errors intercepted [xalan transformer patched and
21078: incorporated]
21079:
21080: * src/: classes/classes.dsp, classes/xdoc.C,
21081: include/pa_stylesheet_connection.h, main/main.dsp,
21082: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21083: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
21084: patches starting
21085:
21086: * src/classes/: string.C, table.C: ^string.save[file]
21087:
21088: * src/classes/: date.C, table.C: calendar moved to date
21089:
21090: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
21091: string/table] now
21092:
21093: * src/classes/: op.C, table.C: z
21094:
21095: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
21096: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
21097: types/pa_vxnode.h: table:menu & op for delims made allowed not to
21098: be code [be string..]
21099:
21100: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
21101: table.C: lots of
21102: params->as_int/double/as_string/as_junction/as_no_junction
21103: messages added
21104:
21105: 2001-10-08 parser
21106:
21107: * src/: classes/date.C, classes/image.C, classes/string.C,
21108: classes/table.C, classes/void.C, include/pa_request.h:
21109: params->as_int/double message added
21110:
21111: * src/classes/image.C: image:circle [and round arc] uses Bresenham
21112:
21113: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
21114: image:sector removed image:html internal "line-*" attribs
21115:
21116: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
21117: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
21118:
21119: * src/types/pa_vcookie.C: removing cookie made more netscape-like
21120: way
21121:
21122: * src/: classes/file.C, classes/form.C, main/pa_common.C,
21123: main/untaint.C: header untainting to UL_HTTP_HEADER,
21124: UL_MAIL_HEADER made nonforced [only tainted pieces]
21125:
21126: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
21127: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
21128: @ SAPI::log
21129:
21130: * src/main/untaint.C: \r to ' ' in origins mode
21131:
21132: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
21133: set]
21134:
21135: * src/: classes/xdoc.C, include/pa_config_fixed.h,
21136: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
21137: nonstandard liaison freed up
21138:
21139: 2001-10-07 parser
21140:
21141: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
21142: project
21143:
21144: 2001-10-05 parser
21145:
21146: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
21147: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
21148: from outputing to cerr. lots of "todos"
21149:
21150: * src/main/untaint.C: http_header tainting more gentle with
21151: enquoting now
21152:
21153: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
21154: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
21155: xml errorhandler. fixed string.replace a little, read @test
21156:
21157: * src/main/pa_string.C: found replace bug - first_that_starts(char
21158: *) does not have limit, and looks further eos, fixing....
21159:
21160: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
21161:
21162: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
21163:
21164: * src/main/: pa_charset_connection.C: ctype another mem clear
21165: bugfix
21166:
1.116 moko 21167: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
21168: $result[^[$p^]z] now works fine
1.95 moko 21169:
21170: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
21171: wrong. fixed it
21172:
21173: * src/main/pa_charset_connection.C: unicode zero pair at the beging
21174: of totable appered to be vital
21175:
21176: 2001-10-04 parser
21177:
21178: * src/classes/image.C: ^image.length[text]
21179:
21180: 2001-10-03 parser
21181:
21182: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
21183:
21184: * src/main/pa_request.C: restored pcre defaulting in request
21185: [mindlessly "optimized" yesterday] comment left
21186:
21187: 2001-10-02 parser
21188:
21189: * src/: main/pa_charset_manager.C,
21190: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
21191: needed
21192:
21193: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
21194: forgot non-xml pool.*charset needed
21195:
21196: * src/classes/table.C: # config comments fixed
21197:
21198: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
21199: charset_connection #comment now
21200:
21201: * src/: classes/classes.dsp, types/types.dsp: release projects
21202: options fixed to use release msvcrt lib
21203:
21204: * src/main/pa_charset_connection.C: pcre tables now const inside
21205: removed default - pcre handles that internally fixed bug on
21206: not-cleaning tables [previously was calloced, now member]
21207:
21208: * src/: include/pa_request.h, main/pa_charset_connection.C,
21209: main/pa_request.C, types/pa_vstring.h: pcre tables now const
21210: inside removed default - pcre handles that internally fixed bug
21211: on not-cleaning tables [previously was calloced, now member]
21212:
21213: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
21214: tested charset reload on file change @ apache version = OK tested
21215: freeing up prev encoding on adding new = OK
21216:
21217: 2001-10-01 parser
21218:
21219: * src/main/pa_charset_connection.C: removed entitify external hack
21220: [internal installed]
21221:
1.116 moko 21222: * src/main/Makefile.am: makes+removed dtd
1.95 moko 21223:
21224: * src/: include/pa_charset_connection.h,
21225: include/pa_charset_manager.h,
21226: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21227: main/pa_charset_connection.C, main/pa_charset_manager.C,
21228: main/pa_request.C: charset loading & caching mech 0
21229:
21230: * src/: include/pa_stylesheet_connection.h,
21231: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21232: main/pa_globals.C, main/pa_request.C: would make charset loading
21233: & caching mech now
21234:
21235: 2001-09-30 parser
21236:
21237: * src/main/pa_request.C: forgot to fill toTable
21238:
21239: * src/: include/pa_config_fixed.h, main/pa_request.C: started
21240: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
21241: failed on win32 for now..
21242:
21243: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
21244: now charsets table configuration variable is: CHARSETS
21245:
21246: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
21247: ctype with unicode 1. todo: no П entities on output somehow
21248:
21249: * src/: classes/file.C, classes/op.C, classes/string.C,
21250: include/pa_request.h, main/pa_request.C: started ctype with
21251: unicode values
21252:
21253: 2001-09-28 parser
21254:
21255: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
21256: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
21257: string passed AS-IS now
21258:
21259: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
21260: way of user-configuring... todo: implement
21261:
21262: 2001-09-27 parser
21263:
21264: * src/classes/table.C: table.sort changed to sort table itself
21265:
21266: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
21267: X^.getElementsByTagName[tagname] = array of xnode
21268: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
21269: nodes removed - regretfully not supported @ xalan. maybe someday
21270: would reimplement, if needed.
21271:
21272: win32build system: solved long waiting anti-non-started-apache
21273: problem
21274:
21275: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
21276: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21277: types/types.dsp: win32 ident make system so not to rebuild
21278: library [ident.C.new]
21279:
21280: 2001-09-26 parser
21281:
21282: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
21283: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
21284: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21285: types/pa_vxnode.C, types/types.dsp: z
21286:
21287: * src/classes/classes.C: forgot one non-xml check
21288:
1.116 moko 21289: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21290: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 21291:
21292: * src/targets/cgi/parser3.C: z
21293:
21294: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
21295: targets/isapi/parser3isapi.C: #ifdef SMTP
21296:
21297: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
21298: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21299: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
21300: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
21301: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21302: types/types.dsp: xdoc&xnode now
21303:
21304: * src/: classes/classes.C, classes/classes.awk,
21305: classes/classes.dsp, classes/classes.h, classes/date.C,
21306: classes/dnode.C, classes/dnode.h, classes/dom.C,
21307: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21308: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
21309: classes/op.C, classes/response.C, classes/string.C,
21310: classes/table.C, classes/void.C, include/pa_array.h,
21311: include/pa_common.h, include/pa_config_fixed.h,
21312: include/pa_config_includes.h, include/pa_dictionary.h,
21313: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
21314: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21315: include/pa_socks.h, include/pa_sql_connection.h,
21316: include/pa_sql_driver_manager.h, include/pa_stack.h,
21317: include/pa_string.h, include/pa_stylesheet_connection.h,
21318: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
21319: include/pa_xslt_stylesheet_manager.h, main/compile.C,
21320: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21321: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
21322: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
21323: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
21324: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
21325: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21326: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
21327: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21328: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21329: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
21330: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21331: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
21332: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
21333: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21334: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
21335: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
21336: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
21337: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
21338: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
21339: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
21340: types/pa_vmethod_frame.h, types/pa_vobject.h,
21341: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21342: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21343: types/pa_vstateless_object.h, types/pa_vstring.C,
21344: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
21345: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
21346: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
21347: main.dsp splitted to main+classes+types along to .am
21348:
21349: * src/classes/Makefile.am: removed useless var
21350:
21351: * src/: classes/classes.cmd, main/main.dsp,
21352: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
21353: main.dsp
21354:
21355: 2001-09-25 parser
21356:
21357: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
21358: 1251 though, todo ICU
21359:
1.116 moko 21360: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 21361: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 21362: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
21363: types/pa_vdom.h: xml configure makes
1.95 moko 21364:
21365: 2001-09-24 parser
21366:
1.116 moko 21367: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
21368: types/Makefile.am: makes
1.95 moko 21369:
1.116 moko 21370: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 21371:
21372: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
21373: started unix makes update
21374:
21375: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
21376: started unix makes update
21377:
21378: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
21379:
21380: * src/types/pa_value.h: z
21381:
21382: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
21383: bugs with usinge hash/table in expressions
21384:
21385: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
21386: resolved conflicts fixed [const]
21387:
21388: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
21389: classes/table.C, include/pa_request.h, include/pa_sapi.h,
21390: main/compile.C, main/compile.tab.C, main/compile.y,
21391: main/compile_tools.h, main/main.dsp, main/pa_common.C,
21392: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21393: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
21394: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
21395: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
21396: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
21397: with before_xml [merge2 actually didn't happen - i've created
21398: tags on wrong branch. so this merge is in fact re-merge]
21399:
21400: 2001-09-21 parser
21401:
21402: * src/: main/main.dsp, targets/cgi/parser3.dsp,
21403: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
21404: produced "" in make file and sadly wrong interpreted on load]
21405:
1.116 moko 21406: * src/: classes/classes.h, classes/hash.C, classes/op.C,
21407: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
21408: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21409: include/pa_sql_driver_manager.h, include/pa_string.h,
21410: main/compile.tab.C, main/main.dsp, main/pa_common.C,
21411: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
21412: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 21413:
21414: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
21415: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
21416: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
21417: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21418: main/pa_pool.C, main/pa_request.C,
21419: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
21420: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21421: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
21422: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
21423: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
21424: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
21425: types/pa_vrequest.C, types/pa_vresponse.h,
21426: types/pa_vstateless_class.C, types/pa_vstring.C,
21427: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
21428: created new projects for sql drivers [planning to remove sql
21429: drivers from main cvs project] first, will join latest changes
21430:
21431: * src/classes/: dom.C: defaulted dom writing methods encoding to
21432: pool.get_charset
21433:
21434: * src/classes/dom.C: defaulted dom writing methods encoding to
21435: pool.get_charset
21436:
21437: * src/include/pa_pool.h: defaulted dom writing methods encoding to
21438: pool.get_charset
21439:
21440: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
21441: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
21442: methods encoding to pool.get_charset
21443:
21444: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
21445: transcoder were created right "unsupported encoding" message.
21446: not @ set time, but @ use time, so until xml output functions
21447: .string, .file, .save used - no encoding name check occur
21448:
21449: reduced transcode buffer size to 60 fixed pool cleanup - no
21450: registration needed, pools are officially destructured
21451:
21452: 2001-09-20 parser
21453:
21454: * src/classes/image.C: 20K preload on jpg measure [image::measure]
21455:
21456: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
21457: $MAIN:DEFAULTS.content-type[$.charset[here]]
21458:
21459: * src/: classes/dnode.C, classes/dom.C,
21460: include/pa_config_includes.h, include/pa_globals.h,
21461: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21462: main/pa_pool.C, targets/cgi/parser3.dsp,
21463: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
21464: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
21465: Pool::transcode 0
21466:
21467: * src/classes/dom.C: dom. string save file moved output xml options
21468: to last param and made it optional
21469:
21470: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
21471: dnodes
21472: !$attributenode.specified = boolean
21473: true if the attribute received its value explicitly
21474: in the XML document,
21475: or if a value was assigned programatically with the
21476: setValue function.
21477: false if the attribute value came from the default value
21478: declared in the document's DTD.
21479: !$pinode.target = target of this processing instruction
21480: XML defines this as being the first token following the
21481: markup
21482: that begins the processing instruction.
21483: XPath:
21484: !^node.select[xpath/query/expression] = hash of 0->node0
21485: 1->node1
21486: !^node.select-single[xpath/query/expression] = first node if
21487: any
21488:
21489: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
21490: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
21491: some 'const's added
21492:
21493: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
21494: expression context now, there value = size and boolean value
21495: size!=0
21496:
21497: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
21498: can be used in expression context now, there value = size and
21499: boolean value size!=0
21500:
21501: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
21502: types/pa_vstring.h: dnode .file .string .save moved back to dom
21503: due to strange xalan bug
21504:
21505: 2001-09-18 parser
21506:
21507: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
21508: classes/image.C, classes/op.C, classes/table.C,
21509: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
21510: include/pa_sql_driver_manager.h, main/compile.C,
21511: main/compile.tab.C, main/compile.y, main/compile_tools.h,
21512: main/execute.C, main/pa_common.C, main/pa_request.C,
21513: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21514: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21515: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
21516: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
21517: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
21518: before_xml branch ^if(def $hash) now true only when
21519: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
21520:
21521: * src/: classes/op.C, main/execute.C: operators self changed to
21522: root ^for variable context changed to self
21523:
21524: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
21525: dnode 1
21526:
21527: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
21528: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
21529:
21530: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
21531: poly* fixed
21532:
21533: 2001-09-17 parser
21534:
21535: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
21536: types/pa_vdom.h: started dnode+dom
21537:
21538: dnode DOM methods: $node.name $node.value
21539: ...others...
21540:
21541: ^node.xpath[/rates/USD] = hash
21542: $hash[
21543: $.0[node0]
21544: $.1[node1]
21545: ]
21546:
21547: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
21548: applies to all linear primitives
21549:
21550: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
21551: include/pa_stylesheet_connection.h, main/main.dsp,
21552: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
21553: types/pa_vimage.h: started dnode DOM: $node.name
21554: $node.value ...others... ^node.xpath[/rates/USD] = hash
21555: dom(dnode)
21556:
21557: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
21558: main/compile.y, main/compile_tools.h, main/execute.C,
21559: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
21560: in expression compound($aa.zz.xx) names now can have minus '-' in
21561: name after '.'
21562:
21563: 2001-09-15 parser
21564:
21565: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
21566: image: $line-width ^line(...)[**** style]
21567:
21568: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
21569: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
21570: pool_storage - cleanups first, allocations second. apache wisely
21571: does just like that
21572:
21573: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
21574: rewritten using template, no bugs now
21575:
21576: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
21577: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
21578: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
21579: poorly started isapi pool_storage, would rewrite using template
21580: now
21581:
21582: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
21583: include/pa_stylesheet_connection.h, main/main.dsp,
21584: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
21585: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
21586: xalan objects freed up [introducing Pool::register_cleanup]
21587:
21588: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
21589: comments
21590:
21591: 2001-09-14 parser
21592:
21593: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
21594: z
21595:
21596: * src/: classes/dom.C, classes/file.C, classes/image.C,
21597: classes/mail.C, include/pa_common.h,
21598: include/pa_sql_driver_manager.h, include/pa_string.h,
21599: include/pa_stylesheet_connection.h,
21600: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21601: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
21602: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
21603: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
21604: compiled&cached
21605:
21606: 2001-09-13 parser
21607:
21608: * src/: classes/dom.C, classes/file.C, classes/image.C,
21609: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
21610:
21611: * src/classes/dom.C: dom:file content-type(.method)
21612:
21613: * src/: include/pa_common.h, include/pa_globals.h,
21614: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
21615: string now more informative error messages
21616:
21617: * src/: include/pa_globals.h, include/pa_request.h,
21618: main/pa_request.C, targets/cgi/parser3.C,
21619: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
21620: ParserSiteConfig .../parser3.conf
21621:
21622: cgi&isapi looks for {configure|c:\windows}/parser3.conf
21623:
21624: 2001-09-12 parser
21625:
21626: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21627: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
21628: precise error reporting: "connection string must start with
21629: protocol://" now
21630:
21631: * src/main/compile.tab.C: fixed - subname code parts actually []
21632: braced
21633:
21634: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
21635: lexer on LS_USER level did [] matching without setting nestage,
21636: introduced special LS_NAME_SQUARE_PART state
21637:
21638: 2001-09-11 parser
21639:
21640: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
21641: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
21642: languages+=xml
21643:
21644: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
21645:
21646: * src/classes/dom.C: ^dom:save/string/file[output options] output
21647: options: $.method[xml|html|text] detection fixed
21648:
21649: * src/types/pa_vdom.h: messages
21650:
21651: * src/classes/dom.C: ^dom:save/string/file[output options] output
21652: options: $.method[xml|html|text] detection fixed
21653:
21654: 2001-09-10 parser
21655:
21656: * src/classes/dom.C: ^dom:save/string/file[output options] output
21657: options: $.method[xml|html|text] $.encoding[windows-1251|...]
21658:
21659: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
21660: added]
21661:
21662: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21663: ^dom.xslt[stylesheet filename] 0
21664:
21665: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21666: ^dom.xslt[stylesheet filename] -1 doc is lying
21667:
21668: * src/classes/dom.C: ^dom.file[encoding] = file
21669:
21670: * src/classes/: dom.C: ^dom.string[encoding] 1
21671: ^dom.save[encoding;filename]
21672:
21673: * src/classes/dom.C: ^dom.string[] 0
21674:
21675: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
21676:
21677: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
21678: types/pa_vform.h: ^dom.save[b.xml] 0
21679:
21680: 2001-09-08 parser
21681:
21682: * src/types/pa_vform.C: $form:tables.name.field
21683:
21684: 2001-09-07 parser
21685:
21686: * src/classes/table.C: table:empty removed, superceded by ^if(def
21687: $table)...
21688:
21689: * src/targets/cgi/parser3.C: z
21690:
21691: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
21692: from '' to int/double is 0]
21693:
21694: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
21695: $table) is false when table is empty
21696:
21697: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
21698: !$form:tables $atable[$form:tables.a]
21699: ^atable.menu{a=$atable.element}[,]
21700:
21701: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
21702: types/pa_vform.h, types/pa_vhash.h: !$form:fields
21703:
1.116 moko 21704: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21705: types/pa_vdom.h, types/pa_vform.C: merged with successful start
21706: of dom
21707:
21708: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
21709: types/pa_vform.C, types/pa_vform.h: z
21710:
21711: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
21712: element [not last]
21713:
1.116 moko 21714: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21715: types/pa_vdom.h: introducing dom. dom:load[a.xml]
21716:
21717: 2001-09-06 parser
21718:
21719: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21720: table with one column 'element' and two rows: 1 and 2
21721:
21722: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21723: table with one column 'element' and two rows: 1 and 2
21724:
21725: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
21726: bad int/double conversions, and now $form:nonexistent.int(88)
21727: would return 88
21728:
21729: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
21730: types/pa_vhash.h: now there's special hash key '_default'
21731: [instead of ^_default method] $hash[ $.a[1] $.b[2]
21732: $._default[xx] ] $hash.c
21733:
21734: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
21735: fixed [thanks, fif], ^; were treated there non-literally
21736:
21737: * src/doc/doxygen.cfg: merged new default options from 1.2.10
21738: doxygen
21739:
21740: * src/: classes/image.C, classes/op.C, classes/string.C,
21741: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
21742: types/pa_vtable.C: few #ifndef DOXYGEN
21743:
21744: 2001-09-05 parser
21745:
21746: * src/classes/: string.C, table.C: sql options can be void [same as
21747: image:html the other day]
21748:
21749: * src/targets/cgi/Makefile.am: .am undo
21750:
21751: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21752: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
21753: macro expantion on param, simply qoutes whatever passed, undone
21754:
21755: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21756: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
21757: STRINGIZE(name) #name invented
21758:
21759: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21760: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
21761: MAIN_SQL_DRIVERS_NAME "drivers"
21762:
21763: moved to be availible to all users
21764:
21765: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
21766: SQL_DRIVER_CREATE_FUNC_NAME
21767:
21768: * src/classes/mail.C: MAIN:MAIL check fixed
21769:
21770: 2001-09-04 parser
21771:
21772: * src/classes/image.C: image.html now can accept void params
21773:
21774: * src/targets/isapi/parser3isapi.C: z
21775:
21776: * src/targets/cgi/parser3.C: full_file_spec bug
21777:
21778: * src/targets/cgi/parser3.C: getenvcheck
21779:
21780: * src/targets/cgi/parser3.C: zz
21781:
21782: * src/targets/cgi/parser3.C: zzz
21783:
21784: * src/classes/date.C: date
21785:
21786: * src/classes/date.C: date:sql-string is now without ''
21787:
1.116 moko 21788: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 21789: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
21790: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
21791:
1.116 moko 21792: * src/include/pa_config_auto.h.in: makes
1.95 moko 21793:
21794: 2001-09-03 parser
21795:
21796: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
21797:
21798: 2001-09-01 parser
21799:
21800: * src/classes/image.C: letter_spacing
21801:
21802: * src/classes/image.C: image: font params changed
21803:
21804: * src/classes/image.C: image: as_int as_string used
21805:
21806: * src/types/pa_vmethod_frame.h: $result[] now gets properly
21807: analized
21808:
21809: 2001-08-31 parser
21810:
21811: * src/targets/cgi/parser3.C: z
21812:
1.116 moko 21813: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
21814: cygwin
1.95 moko 21815:
21816: * src/classes/void.C: void:int/double += (default)
21817:
21818: * src/classes/image.C: image:font added space param image:font
21819: changed charwidth alg, added kerning const[for now]
21820:
21821: * src/classes/: string.C, table.C: string:int/double (defaults)
21822:
21823: 2001-08-29 parser
21824:
21825: * src/main/pa_exception.C: exception redundant debug info
21826:
21827: 2001-08-28 parser
21828:
21829: * src/classes/image.C: image error msgs
21830:
21831: * src/classes/image.C: image: gifsize little endian
21832:
21833: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
21834: doxygeneration
21835:
21836: * src/: classes/Makefile.am, main/Makefile.am,
21837: targets/cgi/Makefile.am, types/Makefile.am: .am-s
21838:
21839: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
21840: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
21841:
21842: * src/main/compile.C: NO_STRING_ORIGIN check2
21843:
21844: * src/classes/table.C: NO_STRING_ORIGIN check
21845:
21846: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
21847: storage class specifiers invalid in friend function declarations
21848:
21849: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
21850: main/untaint.C, targets/cgi/parser3.C,
21851: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
21852: case of limit
21853:
21854: * src/: classes/file.C, main/pa_common.C: file:move
21855: autocreate/remove dest/src dir
21856:
21857: * src/: classes/string.C, include/pa_dictionary.h,
21858: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
21859: main/untaint.C: pa_directory speeded up. moved zero 'from' check
21860: to directory constructor. string:replace
21861:
21862: 2001-08-27 parser
21863:
21864: * src/classes/image.C: fixed jpgsize alg
21865:
21866: * src/classes/image.C: fixed jpgsize alg
21867:
21868: * src/main/pa_exception.C: z
21869:
21870: * src/main/pa_common.C: removed debug info from pa_common
21871:
21872: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
21873: [auto.p from current dir loading]
21874:
1.116 moko 21875: * src/: main/pa_common.C, main/pa_exception.C,
21876: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
21877: for solaris -lsocket
1.95 moko 21878:
21879: 2001-08-24 parser
21880:
21881: * src/targets/cgi/parser3.C: not cgi extra \n 3
21882:
21883: * src/targets/cgi/parser3.C: not cgi extra \n 2
21884:
21885: * src/targets/cgi/parser3.C: not cgi extra \n
21886:
21887: * src/main/pa_sql_driver_manager.C: z
21888:
21889: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
21890: sql* removed services from disconnect - cross-request ideological
21891: probs.
21892:
21893: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
21894: cross-request ideological probs. oracle - fixed bug: cs
21895: allocated on request.pool and got freed before disconnect
21896:
21897: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
21898: mallocs fixed
21899:
21900: 2001-08-23 parser
21901:
21902: * src/classes/file.C: minor bug in file:save fixed
21903:
21904: * src/main/pa_sql_driver_manager.C: oracle: dlink
21905:
21906: 2001-08-22 parser
21907:
21908: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
21909: types/pa_vfile.h: file:load|save[text|binary;
21910:
21911: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
21912:
21913: 2001-08-21 parser
21914:
21915: * src/classes/: file.C, table.C: ^file:list
21916:
21917: 2001-08-20 parser
21918:
21919: * src/: main/compile.tab.C, main/compile.y,
21920: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
21921: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
21922: recousively caused problems: inc incremeted 123 literal!! fixed
21923:
21924: 2001-08-10 parser
21925:
21926: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
21927:
21928: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21929: added
21930:
21931: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21932: added
21933:
21934: * src/classes/table.C: table:sort restored [it was bad test :(]
21935:
21936: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
21937: ''
21938:
21939: * src/main/: pa_request.C: wanted to make const int
21940: MAX_EXECUTE_SECONDS=1;
21941:
21942: but couldnt, set_callback_and_alarm appeared to be not exported
21943: :(
21944:
21945: * src/main/pa_string.C: string.match hanged on. there were a hang
21946: check but it weren't wise enough
21947:
21948: @parse[dateString][tmp]
21949: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
21950: #end
21951:
21952: @main[] ^parse[2001-02-03]
21953:
21954: * src/classes/: table.C: table:sort now default desc
21955:
21956: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
21957: table.sort now creates new sorted table
21958:
21959: 2001-08-09 parser
21960:
21961: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
21962:
21963: * src/classes/hash.C: hash:_default now [was hash:default]
21964:
21965: * src/classes/op.C: case without switch check added
21966:
21967: * src/types/pa_vcookie.C: cookie name&value origins added, more
21968: precise $ORIGINS(1)
21969:
21970: * src/main/Makefile.am: .am
21971:
21972: * src/classes/void.C: void: int double copy/paste from int: bug
21973: fixed
21974:
21975: * src/classes/void.C: void: int double copy/paste from int: bug
21976: fixed
21977:
21978: 2001-08-07 parser
21979:
21980: * src/: classes/double.C, classes/int.C, classes/string.C,
21981: classes/table.C, include/pa_globals.h, main/pa_globals.C:
21982: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
21983: string, table
21984:
21985: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
21986: srand made working
21987:
21988: 2001-08-06 parser
21989:
21990: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
21991: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
21992: main/compile.tab.C, main/compile.y, main/pa_array.C,
21993: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
21994: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
21995:
21996: * src/main/pa_exec.C: exec win32 real filename
21997:
21998: * src/classes/file.C: exec stderr out
21999:
22000: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
22001:
22002: 2001-08-03 parser
22003:
22004: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
22005:
22006: 2001-08-02 parser
22007:
22008: * src/: classes/string.C, classes/table.C, include/pa_array.h,
22009: main/execute.C, main/pa_exec.C: introducing Array_iter
22010:
22011: * src/main/execute.C: detected quick_get recursion bug. changed to
22012: get@execute, but needs array iterator, separate from array to
22013: avoid it & use caching
22014:
22015: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
22016: bug fixed
22017:
22018: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
22019: main/execute.C, main/pa_globals.C: found another multithread bug
22020: in op.C (last, last global var killed) :)
22021:
22022: 2001-08-01 parser
22023:
22024: * src/: include/pa_dictionary.h, include/pa_globals.h,
22025: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
22026: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22027: main/untaint.C: speeded up typo-html replacements. introducing
22028: Dictionary with first-char caching
22029:
22030: 2001-07-31 parser
22031:
22032: * src/types/Makefile.am: pa_vtable.C added to .am
22033:
22034: * src/main/compile.tab.C: added, so that could be compiled even on
22035: non-bison-enabled platforms
22036:
22037: 2001-07-28 parser
22038:
22039: * src/classes/table.C: table:hash always produces hash, when can't
22040: - empty
22041:
22042: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
22043: skipped \n
22044:
22045: 2001-07-27 parser
22046:
22047: * src/classes/: double.C, int.C, string.C: provided meaningful msg
22048: on int/double/string :sql without result and default
22049:
22050: 2001-07-26 parser
22051:
22052: * src/classes/op.C: fixed bad multithread bug with strangly global
22053: OP
22054:
22055: * src/main/compile.y: $man[$.age[zzz]] 0
22056:
22057: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
22058: creation syntax problem persists. restored $: for a while.
22059: thinking of $man[$.age[zzz]] syntax now
22060:
22061: * src/: classes/double.C, classes/int.C, classes/string.C,
22062: include/pa_opcode.h, main/compile.C, main/compile.y,
22063: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
22064: types/pa_vmethod_frame.h, types/pa_wcontext.h,
22065: types/pa_wwrapper.h: fixing :: realization #1
22066:
22067: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
22068: main/compile_tools.h, main/execute.C, main/pa_request.C,
22069: types/pa_vmethod_frame.h: introducing :: this is constructor call
22070: prefix. ordinary : remains for static accesses
22071:
22072: 2001-07-25 parser
22073:
22074: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
22075: fields 2. methods 3. columns
22076:
22077: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
22078: quote. optimized double&int tostring-s
22079:
22080: * src/main/: compile.C, compile.y, compile_tools.h: allowed
22081: whitespace before first method decl
22082:
22083: * src/classes/table.C: allowed nontable result in table:sql,
22084: results in empty table
22085:
22086: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
22087: lines before first method decl
22088:
22089: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
22090: types/pa_vtable.h: ^table.record[] now $table.fields
22091:
22092: * src/main/compile.y: $var[] is now empty string, not void
22093:
22094: * src/main/: compile.y, execute.C: $var[] is now empty string, not
22095: void
22096:
22097: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
22098: main/pa_globals.C: match replace code context moved to implicit
22099: $match context
22100:
22101: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
22102: main/compile_tools.h, main/execute.C: with killed, code storage
22103: introduced with former 'with' syntax
22104:
22105: 2001-07-24 parser
22106:
22107: * src/: main/compile.C, main/execute.C, main/pa_string.C,
22108: types/pa_value.h: first get_element, next get operator
22109:
22110: * src/main/compile.y: removed @end handling
22111:
22112: * src/main/: compile.C, compile.y: @end handling method2
22113:
22114: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
22115: file:move
22116:
22117: * src/main/pa_common.C: file_read close @ eof when imgsize bug
22118: fixed
22119:
22120: 2001-07-23 parser
22121:
22122: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
22123: driver
22124:
22125: * src/classes/hash.C: changed sql driver query interface
22126:
22127: * src/: classes/hash.C, classes/string.C, classes/table.C,
22128: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
22129: changed sql driver query interface
22130:
22131: 2001-07-20 parser
22132:
22133: * src/types/pa_vrequest.C: X!$browser:type
22134:
22135: * src/: classes/file.C, classes/string.C, include/pa_string.h,
22136: main/execute.C, main/pa_string.C, types/pa_valiased.C,
22137: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
22138: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
22139: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
22140: types/pa_vobject.h, types/pa_vrequest.C,
22141: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
22142: ^class:method dynamic calls allowed. ^BASE.method call disabled.
22143: BASE element globally removed
22144:
22145: 2001-07-18 parser
22146:
22147: * src/classes/file.C: file:exec/cgi msg
22148:
22149: * src/classes/file.C: $file:exit-code renamed to 'status'
22150:
22151: * src/: classes/file.C, main/pa_exec.C: file:exec
22152:
1.116 moko 22153: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
22154: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
22155: removed $id from *.in *.am
1.95 moko 22156:
22157: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
22158: abbrevations
22159:
22160: * src/: classes/date.C, classes/mail.C, classes/math.C,
22161: classes/string.C, classes/table.C, include/pa_globals.h,
22162: include/pa_string.h, main/execute.C, main/pa_globals.C,
22163: main/pa_request.C, main/pa_string.C, main/untaint.C,
22164: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
22165: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
22166: $ORIGINS(1) output tracing mode
22167:
22168: 2001-07-13 parser
22169:
22170: * src/: classes/double.C, classes/int.C, classes/string.C,
22171: include/pa_request.h, main/execute.C, main/pa_request.C:
22172: auto.p[@auto], /news/auto.p[no @auto], so that initializing
22173: second would not call first @auto
22174:
22175: * src/main/: execute.C, pa_request.C: order of MAIN parents was
22176: wrong, fixed
22177:
22178: 2001-07-12 parser
22179:
22180: * src/types/pa_value.h: pa_value.putelement modification of system
22181: classes prevented
22182:
22183: 2001-07-11 parser
22184:
22185: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
22186: table $piece
22187:
22188: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22189: types/pa_vstateless_class.h: $file created by file:state +=
22190: .atime .mtime .ctime +found&fixed bug with exceptions on
22191: get_junction-created objects [they were on wrong pool]
22192:
22193: 2001-07-09 parser
22194:
22195: * src/main/untaint.C: qp wrong name
22196:
22197: * src/: classes/date.C, classes/string.C, classes/table.C,
22198: main/compile.y: date format 0
22199:
22200: 2001-07-07 parser
22201:
22202: * src/: classes/date.C, classes/table.C, include/pa_common.h,
22203: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
22204: roll table calendar
22205:
22206: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
22207: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
22208: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
22209: include/pa_request.h, main/main.dsp, types/pa_value.h,
22210: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
22211: string. todo: sql, calendar
22212:
22213: 2001-07-06 parser
22214:
22215: * src/: classes/math.C, include/pa_request.h, main/execute.C,
22216: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
22217:
22218: 2001-07-03 parser
22219:
22220: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
22221: classes/random.C, main/main.dsp: class random renamed to math,
22222: operators became methods
22223:
22224: * src/classes/op.C: pow sqrt
22225:
22226: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
22227:
22228: 2001-07-02 parser
22229:
22230: * src/classes/table.C: ^table.columns column renamed from 'name' to
22231: 'column'
22232:
22233: * src/classes/hash.C: ^hash.keys[]
22234:
22235: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
22236:
22237: * src/main/: compile.y, compile_tools.h: in expressions now allowed
22238: 'strings'
22239:
22240: 2001-06-29 parser
22241:
22242: * src/main/: execute.C: /0 %0 checkes ver 2
22243:
22244: * src/main/execute.C: /0 %0 checke
22245:
22246: * src/classes/Makefile.am: nothing - void
22247:
22248: * src/classes/table.C: empty strings @ sql
22249:
22250: 2001-06-28 parser
22251:
22252: * src/: classes/double.C, classes/file.C, classes/form.C,
22253: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22254: classes/op.C, classes/random.C, classes/response.C,
22255: classes/string.C, classes/table.C, classes/void.C,
22256: main/compile.C, main/compile_tools.C, main/execute.C,
22257: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22258: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22259: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22260: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22261: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
22262: targets/isapi/parser3isapi.C, main/compile.y: */ static const
22263: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
22264: $";
22265:
22266: * src/: classes/double.C, classes/file.C, classes/form.C,
22267: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22268: classes/op.C, classes/random.C, classes/response.C,
22269: classes/string.C, classes/table.C, classes/void.C,
22270: main/compile.C, main/compile.y, main/compile_tools.C,
22271: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22272: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22273: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22274: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22275: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 22276: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 22277:
22278: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
22279: $class:name: == ${class:name}:
22280:
22281: * src/classes/string.C: exactly one
22282:
22283: 2001-06-27 parser
22284:
22285: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
22286: types/pa_vvoid.h: nothing renamed to void
22287:
22288: * src/classes/op.C: ^switch ^case
22289:
22290: * src/main/compile.y: nothing renamed to void
22291:
22292: * src/: classes/hash.C, classes/table.C, main/compile.y,
22293: main/execute.C, main/main.dsp, main/pa_request.C,
22294: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
22295: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
22296: void
22297:
22298: * src/main/compile.y: lexer: $zzzz^zzzz were name part
22299:
22300: 2001-05-28 parser
22301:
22302: * src/doc/html2chm.cmd: removed >a
22303:
22304: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
22305: project options [some bugs]
22306:
22307: * src/doc/sources2html.cmd: z
22308:
22309: * src/: classes/classes.C, main/compile.C, main/compile.y,
22310: main/execute.C: operators are not in root class again
22311:
22312: 2001-05-24 parser
22313:
22314: * src/targets/cgi/parser3.dsp: project file
22315:
22316: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
22317: ^log ^exp
22318:
22319: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
22320: conversions in @exception[params]
22321:
22322: * src/main/pa_request.C: // no _ conversions in @exception[params]
22323:
22324: 2001-05-23 parser
22325:
22326: * src/main/pa_string.C: string cmp bug
22327:
22328: * src/classes/: mail.C, op.C: rem max 1000
22329:
22330: * src/: classes/op.C, main/compile.y: allow one empty line before
22331: LS_DEF_NAME
22332:
22333: 2001-05-22 parser
22334:
22335: * src/classes/op.C: if params code-required
22336:
22337: 2001-05-21 parser
22338:
22339: * src/types/pa_vstring.C: eoleof
22340:
22341: * src/classes/Makefile.am: .AM
22342:
22343: * src/classes/nothing.C: resultless ^sql moved to nothing:
22344:
22345: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
22346:
22347: * src/: classes/double.C, classes/nothing.C, classes/string.C,
22348: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
22349: types/pa_vunknown.h, classes/hash.C, main/compile.y,
22350: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
22351: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
22352: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
22353: 'nothing'
22354:
22355: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
22356: vstring::set_string
22357:
22358: * src/classes/: double.C, int.C, string.C: int,double;sql
22359:
22360: * src/: classes/hash.C, classes/int.C, classes/string.C,
22361: classes/table.C, include/pa_string.h, main/pa_string.C,
22362: types/pa_vstring.C, types/pa_vstring.h: started int:sql
22363:
22364: * src/: classes/classes.C, classes/hash.C, classes/op.C,
22365: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
22366: hash:sql moved to main trunc. operators.txt updated
22367:
22368: * src/classes/: hash.C, op.C, table.C: hash:sql
22369:
22370: * src/classes/op.C: z
22371:
22372: * src/: main/compile.C, classes/classes.C: 1
22373:
22374: * src/: classes/classes.C, main/compile.C, main/compile.y,
22375: main/execute.C: 0
22376:
22377: * src/main/execute.C: z
22378:
22379: * src/targets/cgi/parser3.C: z
22380:
22381: * src/targets/cgi/parser3.C: argv can be just "parser3". made
22382: site_auto_path "." in that case
22383:
22384: * src/targets/cgi/: parser3.C: z
22385:
22386: * src/main/pa_request.C: .am
22387:
22388: * src/: main/pa_request.C, targets/cgi/parser3.C:
22389: pcre_tables=pcre_default_tables;
22390:
22391: 2001-05-19 parser
22392:
22393: * src/main/pa_string.C: z
22394:
22395: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
22396: introducing String::cstr_bufsize, returns just size+1 for as_is
22397: target.
22398:
22399: * src/: main/untaint.C, targets/cgi/pa_pool.C,
22400: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
22401: used, 4* mem wasted
22402:
22403: * src/classes/string.C: root context in match replace body now
22404: unchanged
22405:
22406: * src/types/pa_value.h: parameter # 1 based
22407:
22408: * src/main/pa_common.C: common: actual filename '%s'
22409:
22410: * src/classes/string.C: z
22411:
22412: * src/classes/Makefile.am: classes/.am
22413:
22414: * src/classes/: Makefile.am: classes/.am
22415:
22416: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
22417: targets/cgi/pa_pool.C: classes/.am
22418:
22419: 2001-05-18 parser
22420:
1.116 moko 22421: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
22422: pa_threads.C ins
1.95 moko 22423:
22424: * src/targets/cgi/Makefile.am: .am pa_threads.C added
22425:
22426: 2001-05-17 parser
22427:
22428: * src/: classes/string.C, include/pa_config_fixed.h,
22429: include/pa_config_includes.h, main/compile.y,
22430: main/compile_tools.h, main/execute.C, main/pa_array.C,
22431: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
22432: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
22433: types/pa_vform.C: #include "pa_config_includes.h" removed from
22434: most .C
22435:
22436: * src/doc/html2chm.cmd: z
22437:
22438: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
22439: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
22440:
22441: * src/main/pa_sql_driver_manager.C: moved expiration to
22442: get_connection_from_cache
22443:
22444: * src/main/pa_sql_driver_manager.C: cache expiration bf
22445:
22446: * src/: classes/classes.h, include/pa_sql_connection.h,
22447: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
22448: cache expiration[use SQL_Driver::disconnect]
22449:
22450: * src/main/pa_table.C: table.locate current restored on "not found"
22451:
22452: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
22453: line no
22454:
22455: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22456: ANTI_ENDLESS_EXECUTE_RECOURSION
22457:
22458: * src/: classes/op.C, include/pa_sql_connection.h,
22459: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
22460: sql/pa_sql_driver.h: fixed problem at last: 2connections own
22461: 1driver and set_services fight for driver::fservices. before fix
22462:
22463: * src/: classes/op.C, include/pa_config_fixed.h,
22464: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
22465: main/pa_sql_driver_manager.C: found problem at last: 2connections
22466: own 1driver and set_services fight for driver::fservices. before
22467: fix
22468:
22469: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22470: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22471: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
22472: pa_threads.C
22473:
22474: * src/include/pa_threads.h: removed targets/parser
22475:
22476: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
22477: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
22478: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
22479: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
22480: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
22481: headers
22482:
22483: * src/: classes/image.C, include/pa_sql_driver_manager.h,
22484: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
22485: order prevented sqlmanager to see MULTYTHREAD define
22486:
22487: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22488: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
22489: put/gets
22490:
22491: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
22492: from hash.h
22493:
22494: * src/: classes/op.C, include/pa_sql_connection.h,
22495: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
22496: from cache ->set_services(&services);
22497:
22498: 2001-05-16 parser
22499:
22500: * src/targets/cgi/parser3.C: z
22501:
22502: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
22503: debug, #ifdefed some. would debug later, on more precise sample
22504: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
22505: $name.$tail[$tail!] $name.$tail } ok3
22506:
22507: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
22508: removed array debug. before vstring rebasing
22509:
22510: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
22511: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
22512: array debugged; adjusted
22513:
22514: * src/main/: pa_sql_driver_manager.C, pa_string.C:
22515: SQL_Driver_manager line no for connect/charset errors
22516:
22517: 2001-05-15 parser
22518:
22519: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
22520: main/pa_string.C: string+array made linear grows
22521:
22522: * src/: include/pa_string.h, main/pa_string.C,
22523: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
22524: grow lineary, not exponentialy
22525:
22526: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
22527: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
22528: with fullchunk cmps
22529:
22530: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
22531: 70041= 81
22532:
22533: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
22534: targets/cgi/parser3.C: detected huge mem allocation: size/times
22535: malloc 27809390/368771, calloc 3232/83. would test now
22536:
22537: * src/: classes/random.C, main/compile.y, main/execute.C,
22538: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
22539: numbered params had wrong name - for instance: bad error message
22540: in ^for[] bad body type. fixed
22541:
22542: 2001-05-14 parser
22543:
22544: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
22545: main/untaint.C: ^string.upper|lower[]
22546:
22547: 2001-05-11 parser
22548:
22549: * src/: classes/double.C, classes/image.C, classes/op.C,
22550: classes/string.C, classes/table.C, classes/unknown.C,
22551: main/execute.C, types/pa_value.h, types/pa_vbool.h,
22552: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
22553: types/pa_vunknown.h: op: MAX_LOOPS as_int
22554:
22555: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
22556: .dsp for win32tools
22557:
22558: 2001-05-11 paf
22559:
22560: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
22561: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
22562: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
22563: targets/isapi/kill.pl: moved win32 helpers to /win32tools
22564:
22565: 2001-05-10 paf
22566:
22567: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
22568: for C++, that's all
22569:
1.116 moko 22570: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
22571: pa_config_includes.h: inline wonders
1.95 moko 22572:
22573: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
22574: doc/doxygen.cmd: hash.C added
22575:
22576: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
22577:
22578: * src/main/compile.y: @end grammar: allowed zero strings in control
22579: menthod
22580:
22581: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
22582: pa_vstateless_object.h: changed priority: field before method
22583: lookup in vclass & vobject
22584:
22585: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
22586: grammar: priorities changes [lowerd && prior] vobject: now first
22587: fields, next methods
22588:
22589: 2001-05-08 paf
22590:
22591: * src/main/pa_table.C: table columnname2item on nameless ignored
22592: bark=false. fixed
22593:
22594: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
22595: types/pa_vmethod_frame.h: hash:default works at last!
22596:
22597: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
22598: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
22599: hash:default
22600:
22601: * src/classes/table.C: z
22602:
22603: * src/classes/table.C: table:hash always hash of hash now
22604:
22605: * src/classes/table.C: table:empty return bool now
22606:
22607: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
22608: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22609: types/pa_vtable.h: table:hash
22610:
22611: * src/classes/table.C: table:record have name
22612:
22613: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
22614: returns vunknown
22615:
22616: * src/classes/: double.C, int.C, op.C, string.C:
22617: int,double,string:int[] double[] string:length[] results now have
22618: hames
22619:
22620: * src/: classes/op.C, classes/table.C, main/main.dsp,
22621: types/pa_vtable.h: removed table:find. table:locate and op:eval
22622: now return bool
22623:
22624: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
22625: in method checkparams again. fixed
22626:
22627: 2001-05-07 paf
22628:
22629: * src/doc/chm.cmd: cmd
22630:
22631: * src/: classes/image.C, classes/mail.C, classes/string.C,
22632: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
22633: types/pa_value.h: method reported errors on wrong pool
22634:
22635: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
22636: now
22637:
22638: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
22639: include/code.h, include/pa_opcode.h, main/compile.C,
22640: main/compile_tools.h, main/execute.C, types/pa_value.h,
22641: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22642: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22643: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
22644: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22645: types/pa_vmethod_frame.h, types/pa_vobject.h,
22646: types/pa_vrequest.h, types/pa_vresponse.h,
22647: types/pa_vstateless_class.h, types/pa_vstring.h,
22648: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22649: types/pa_wwrapper.h: pa_code.h
22650:
22651: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
22652:
22653: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
22654: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
22655: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22656: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
22657: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22658: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
22659: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
22660: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
22661: types/pa_vtable.h: dox, split by not clean parts also
22662:
22663: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22664: types/pa_vtable.h: table: fields, then methods. so to enable
22665: 'dir' fields & co. more
22666:
22667: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
22668: so to enable 'dir' fields & co.
22669:
22670: * src/main/compile.y: grammar: @end
22671:
22672: 2001-05-04 paf
22673:
22674: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
22675: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
22676:
22677: * src/: classes/classes.h, classes/double.C, classes/file.C,
22678: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22679: classes/op.C, classes/random.C, classes/response.C,
22680: classes/string.C, classes/table.C, classes/unknown.C,
22681: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
22682: method dox
22683:
22684: 2001-05-03 paf
22685:
22686: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
22687: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22688: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
22689: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22690: doc/string.dox, doc/targets.dox, doc/value.dox,
22691: main/pa_request.C: dox splitted .dox files and added some
22692:
22693: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
22694:
22695: 2001-05-02 paf
22696:
22697: * src/classes/: image.C, table.C: table:dir result are not tainted
22698: by file_name language now
22699:
22700: 2001-04-28 paf
22701:
22702: * src/classes/classes.inc: removed classes.inc
22703:
22704: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
22705: from .am
22706:
22707: * src/classes/classes.awk: skipped classes in .awk
22708:
22709: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
22710: classes/classes.inc, classes/double.C, classes/file.C,
22711: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
22712: classes/string.C, classes/table.C, classes/unknown.C,
22713: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
22714: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
22715: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
22716: pa_methoded back to classes/classes.h
22717:
22718: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
22719:
22720: * src/: classes/Makefile.am, classes/classes.awk,
22721: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
22722: classes/ls.exe, main/bison.exe: classes.inc autogenerator
22723:
22724: * src/: classes/classes.C, classes/classes.h, classes/double.C,
22725: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
22726: classes/response.C, classes/string.C, classes/table.C,
22727: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
22728: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
22729: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
22730: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
22731: include|main/pa_methoded
22732:
22733: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
22734: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
22735:
22736: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
22737: moved some configured data to request::classes_conf moved some
22738: string crations from globals to M... [works]
22739:
22740: * src/: classes/form.C, classes/mail.C, classes/op.C,
22741: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
22742: main/pa_request.C: moved some configured data to
22743: request::classes_conf moved some string crations from globals to
22744: M...
22745:
22746: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
22747: about to move configured data to special request hash
22748:
22749: * src/: classes/classes.C, classes/classes.h, classes/file.C,
22750: classes/form.C, classes/mail.C, include/pa_request.h,
22751: main/pa_request.C: configure started
22752:
22753: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
22754: 2. todo: methoded-configure
22755:
22756: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22757: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22758: classes/_random.h, classes/_response.h, classes/_string.h,
22759: classes/_table.h, classes/_unknown.h, classes/classes.inc,
22760: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22761: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22762: classes/random.C, classes/response.C, classes/string.C,
22763: classes/table.C, classes/unknown.C, include/pa_globals.h,
22764: include/pa_request.h, main/compile.y, main/execute.C,
22765: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22766: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22767: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
22768: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
22769: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22770: types/pa_vrequest.h, types/pa_vresponse.h,
22771: types/pa_vstateless_class.h, types/pa_vstring.h,
22772: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22773: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
22774: methoded-configure
22775:
22776: * src/: classes/file.C, classes/table.C, main/compile.y,
22777: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
22778: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
22779: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
22780:
22781: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
22782: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22783: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22784: classes/random.C, classes/response.C, classes/string.C,
22785: classes/table.C, classes/unknown.C, include/pa_request.h,
22786: main/compile.y, main/execute.C, main/pa_globals.C,
22787: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
22788: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
22789: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
22790: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
22791: beautifying just compiled. todo: debug, configure
22792:
22793: 2001-04-27 paf
22794:
22795: * src/: classes/file.C, classes/image.C, classes/table.C,
22796: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
22797: beautifying -99
22798:
22799: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
22800: classes/_response.h, classes/_unknown.h, classes/classes.C,
22801: classes/classes.h, classes/double.C, classes/file.C,
22802: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22803: classes/op.C, classes/random.C, classes/response.C,
22804: classes/string.C, include/pa_globals.h, main/main.dsp,
22805: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
22806: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22807: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
22808: types/pa_vunknown.h: beautifying -100
22809:
22810: * src/main/compile.y: serge@ found @CLASS bug. fixed
22811:
22812: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
22813: classes/_op.h, classes/_random.h, classes/_table.h,
22814: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
22815: classes/op.C, classes/random.C, classes/response.C,
22816: classes/string.C, classes/table.C, classes/unknown.C,
22817: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22818: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22819: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
22820: beautifying
22821:
22822: 2001-04-26 paf
22823:
22824: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
22825:
22826: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
22827: documentation ++
22828:
22829: * src/: classes/_exec.h, doc/doxygen.cfg,
22830: include/pa_config_fixed.h, include/pa_config_includes.h,
22831: targets/cgi/pa_pool.C: code documentation ++
22832:
22833: * src/: classes/_image.h, classes/op.C, classes/random.C,
22834: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22835: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22836: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
22837: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22838: types/pa_vmethod_frame.h, types/pa_vobject.h,
22839: types/pa_vrequest.C, types/pa_vrequest.h,
22840: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
22841: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
22842: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
22843: code documentation ++
22844:
22845: * src/: classes/image.C, classes/mail.C, classes/string.C,
22846: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
22847: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
22848: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
22849: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22850: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
22851: types/pa_vobject.h, types/pa_vstateless_class.h,
22852: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
22853:
22854: * src/main/: pa_request.C, pa_string.C: z
22855:
22856: * src/: include/pa_common.h, include/pa_types.h,
22857: main/pa_sql_driver_manager.C: module [and, guess, isapi]
22858: connection caching fixed. request-pooled-url were stored into
22859: global connectioncache
22860:
22861: 2001-04-25 paf
22862:
22863: * src/: doc/doxygen.cfg, doc/doxygen.txt,
22864: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
22865:
22866: * src/: include/code.h, include/pa_common.h, main/compile.y,
22867: main/execute.C, main/pa_common.C: -d
22868:
22869: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
22870: illegal call check a bit improved, but still under iis no mapping
22871: of dir with parser allowed!
22872:
22873: 2001-04-24 paf
22874:
22875: * src/targets/Makefile.am: apache module lib .am
22876:
22877: * src/main/pa_exec.C: windows32 buildCommand
22878:
22879: 2001-04-23 paf
22880:
22881: * src/targets/cgi/Makefile.am: win32 conditional
22882:
22883: * src/targets/cgi/Makefile.am: win32 conditional
22884:
22885: * src/targets/cgi/Makefile.am: liblink
22886:
22887: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
22888: vfile fields return type
22889:
22890: * src/types/pa_vfile.h: vfile fields return type
22891:
22892: * src/include/pa_config_auto.h.in: .h.in
22893:
22894: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
22895: types/Makefile: makefiles removed
22896:
22897: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
22898: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
22899:
22900: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
22901: [tested: i & g ]
22902:
22903: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
22904: @test noticed series in isapi, check how initialize_random_class
22905: is called! [must be called only once]
22906:
22907: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
22908: would not be 'unknown column'
22909:
22910: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
22911: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
22912:
22913: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
22914: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
22915: [now doesnt]
22916:
22917: * src/targets/cgi/parser3.C: cgi cmdline ver
22918:
22919: * src/targets/cgi/parser3.C: cgi /// @test disable
22920: /cgi-bin/parser3/auto.p
22921:
22922: * src/main/untaint.C: untaint without charset
22923:
22924: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
22925: main/pa_common.C: common: file_write /// @test mkdirs
22926: file_delete rmdirs
22927:
22928: * src/main/untaint.C: mail header only once to =?
22929:
22930: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
22931: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
22932: main/untaint.C: untaint - @test optimize whitespaces for
22933: all but 'html'
22934:
22935: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
22936: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22937: main/untaint.C: untaint - @test mail-header
22938:
22939: 2001-04-20 paf
22940:
22941: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
22942: include/pa_request.h, include/pa_string.h, main/compile.y,
22943: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22944: targets/cgi/parser3.C: $MAIN:LOCALE
22945:
22946: * src/main/untaint.C: z
22947:
22948: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
22949:
22950: 2001-04-19 paf
22951:
22952: * src/main/compile_tools.h: $a$b bugfix
22953:
22954: * src/targets/cgi/parser3.C: z
22955:
22956: * src/classes/file.C: z
22957:
22958: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
22959: done: header to $fields. waits for header '\' tricks
22960:
22961: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22962: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
22963: changed urlencode here and in untaint.C to HTTP standard's " and
22964: \" mech
22965:
22966: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
22967: http://alx/~paf/ doesnt load /auto.p
22968:
22969: 2001-04-18 paf
22970:
22971: * src/main/pa_request.C: 1
22972:
22973: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
22974: linux @alx
22975:
22976: 2001-04-17 paf
22977:
22978: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
22979: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
22980: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
22981: enabled
22982:
22983: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22984: classes/_exec.h, classes/_file.h, classes/_form.h,
22985: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22986: classes/_random.h, classes/_response.h, classes/_string.h,
22987: classes/_table.h, classes/_unknown.h, classes/file.C,
22988: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
22989: include/pa_config_fixed.h, include/pa_config_includes.h,
22990: include/pa_hash.h, include/pa_sql_driver_manager.h,
22991: include/pa_version.h, main/Makefile.am, main/compile.y,
22992: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
22993: main/pa_sql_driver_manager.C, sql/Makefile.am,
22994: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
22995: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
22996: types/pa_vform.C, types/pa_vimage.h: exec @jav
22997:
22998: * src/: include/pa_sql_driver_manager.h,
22999: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
23000: types/pa_vimage.h: sql driver interface now has initialize(client
23001: .so)
23002:
23003: 2001-04-16 paf
23004:
23005: * src/Makefile.am: compile2 cygwin
23006:
23007: * src/: include/pa_config_includes.h, main/pa_exec.C,
23008: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
23009:
23010: * src/targets/cgi/Makefile.am: compile0 jav
23011:
23012: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23013: classes/_exec.h, classes/_file.h, classes/_form.h,
23014: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23015: classes/_random.h, classes/_response.h, classes/_string.h,
23016: classes/_table.h, classes/_unknown.h, classes/image.C,
23017: classes/mail.C, classes/op.C, classes/random.C,
23018: include/pa_config_fixed.h, include/pa_config_includes.h,
23019: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
23020: main/compile.y, main/pa_common.C, main/pa_exec.C,
23021: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
23022: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
23023: compile-1
23024:
23025: 2001-04-15 paf
23026:
23027: * src/classes/op.C: z
23028:
23029: * src/classes/table.C: table:empty +=process
23030:
23031: * src/types/pa_value.h: MethodParams !junction
23032:
23033: * src/: classes/_string.h, classes/double.C, classes/file.C,
23034: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23035: classes/random.C, classes/response.C, classes/string.C,
23036: classes/table.C, classes/unknown.C, main/pa_request.C:
23037: MethodParams everywhere
23038:
23039: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
23040: types/pa_vmethod_frame.h: MethodParams in op.C
23041:
23042: 2001-04-12 paf
23043:
23044: * src/: classes/image.C, types/pa_vimage.h: image:font :text
23045:
23046: * src/: classes/_unknown.h, classes/unknown.C,
23047: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23048: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
23049:
23050: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
23051:
23052: * src/classes/image.C: image:gif now does not have params
23053:
23054: * src/classes/image.C:
23055: image:line/fill/rectangle/bar/replace/polygon/polybar
23056:
23057: * src/: classes/image.C, classes/op.C, main/execute.C,
23058: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
23059: for var now written not to r.wcontext, but to r.root cleared
23060: "entered_object" state
23061:
23062: 2001-04-11 paf
23063:
23064: * src/classes/image.C: image:create image:load
23065:
23066: * src/: classes/image.C, main/main.dsp: gd with mem write + image
23067: just compiled
23068:
23069: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23070: todo: gif without file
23071:
23072: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23073: started porting to Pooled descendant
23074:
23075: * src/: classes/image.C, main/execute.C, main/main.dsp,
23076: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
23077: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
23078: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
23079:
23080: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
23081: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
23082: end. switching to python imaging lib
23083:
23084: * src/main/main.dsp: gd+smtp made separate libs
23085:
23086: * src/: include/pa_globals.h, include/pa_string.h,
23087: main/pa_common.C, main/pa_request.C, main/untaint.C,
23088: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
23089: length
23090:
23091: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
23092: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
23093: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
23094: UL_FILE_NAME of posted file name
23095:
23096: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
23097: post [broke when moved post read to core]
23098:
23099: 2001-04-10 paf
23100:
23101: * src/classes/image.C: image:html done
23102:
23103: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
23104:
23105: * src/classes/image.C: z
23106:
23107: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
23108: forgotten!
23109:
23110: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23111: main/pa_request.C, main/pa_string.C, main/untaint.C,
23112: types/pa_vimage.h: image:measure -90
23113:
23114: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23115: classes/_int.h, classes/_mail.h, classes/_op.h,
23116: classes/_random.h, classes/_response.h, classes/_string.h,
23117: classes/_table.h, classes/file.C, classes/mail.C,
23118: include/pa_common.h, include/pa_globals.h, main/execute.C,
23119: main/main.dsp, main/pa_common.C, main/pa_globals.C,
23120: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
23121: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
23122: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
23123: compiled
23124:
23125: * src/classes/mail.C: minor bug with unclear from/to
23126:
23127: * src/classes/mail.C: sendmail unix skipping defaults
23128:
23129: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
23130: sendmail unix added defaults
23131:
23132: * src/classes/mail.C: unix sendmail compiled. todo:testing
23133:
23134: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
23135:
23136: 2001-04-09 paf
23137:
23138: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
23139: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
23140: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
23141: targets/isapi/parser3isapi.dsp: all targets exec
23142:
23143: * src/: include/pa_sapi.h, include/pa_string.h,
23144: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23145: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
23146: args in apache:util.script
23147:
23148: * src/include/pa_string.h: written but not tested exec with env for
23149: unix
23150:
23151: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
23152: targets/cgi/parser3.C: exec win32 env
23153:
23154: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
23155: 0
23156:
23157: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
23158: main/execute.C, main/main.dsp, main/pa_globals.C,
23159: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
23160: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
23161:
23162: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
23163: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
23164:
23165: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
23166: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
23167:
23168: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
23169: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
23170: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23171: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23172: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
23173: exec class just compiled. moved post read to request core
23174:
23175: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
23176: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
23177: main/pa_globals.C, targets/cgi/parser3.C,
23178: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
23179: are already read by vform
23180:
23181: 2001-04-08 paf
23182:
23183: * src/: classes/file.C, classes/mail.C, classes/string.C,
23184: include/pa_request.h, include/pa_string.h, main/pa_request.C:
23185: uuencode. string<<
23186:
23187: 2001-04-07 paf
23188:
23189: * src/classes/mail.C: z
23190:
23191: * src/classes/mail.C: z
23192:
23193: * src/classes/mail.C: ^mail[$attach
23194:
23195: * src/classes/mail.C: ^attach dead end
23196:
23197: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
23198: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23199: targets/isapi/parser3isapi.C: mail:send 1
23200:
23201: * src/: classes/mail.C, main/pa_request.C: z
23202:
23203: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
23204: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
23205: compiled
23206:
23207: * src/classes/mail.C: +=
23208:
23209: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
23210: prepared
23211:
23212: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
23213: include/pa_globals.h, include/pa_string.h, main/main.dsp,
23214: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23215: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
23216:
23217: 2001-04-06 paf
23218:
23219: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
23220: main/pa_string.C: table:dir 1
23221:
23222: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
23223: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
23224:
23225: * src/: classes/_op.h, classes/_root.h, classes/op.C,
23226: classes/root.C, include/pa_globals.h, include/pa_request.h,
23227: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
23228: main/pa_request.C: renamed 'root' to 'op'
23229:
23230: * src/classes/: _op.h, op.C: renamed from 'root'
23231:
23232: * src/types/pa_valiased.C: another root inherititance skipped
23233:
23234: * src/main/: compile.C, compile.y, execute.C: operators are now not
23235: root methods of parent class. just 'ROOT' class
23236:
23237: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
23238: @office
23239:
23240: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
23241:
23242: 2001-04-05 paf
23243:
23244: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
23245: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
23246: constructor flag dropped at get_method_frame and remembered into
23247: method_frame
23248:
23249: * src/: classes/file.C, classes/root.C, classes/string.C,
23250: classes/table.C, main/pa_request.C: junction to code&expression
23251: in errors
23252:
23253: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23254: main/pa_string.C, targets/isapi/parser3isapi.dsp:
23255: $LOCALE:ctype[Russian_Russia.1251]
23256:
23257: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23258: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
23259: main/pa_table.C: hash now not thread-safe.
23260:
23261: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23262: main/untaint.C: z
23263:
23264: * src/: classes/random.C, classes/root.C, classes/table.C,
23265: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
23266: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
23267: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
23268: types/pa_wcontext.h: sql quote. string untaint UL_SQL
23269:
23270: * src/: classes/table.C, include/pa_sql_connection.h,
23271: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
23272:
23273: * src/classes/table.C: select * from hren error contains statement
23274:
23275: * src/: classes/table.C, include/pa_sql_connection.h,
23276: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
23277: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
23278:
23279: * src/: classes/root.C, include/pa_sql_connection.h,
23280: include/pa_sql_driver.h, main/main.dsp,
23281: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
23282: services for conv memory & error reporting
23283:
23284: 2001-04-04 paf
23285:
23286: * src/doc/doxygen.cfg: z
23287:
23288: * src/include/pa_sql_driver.h: mysql connect
23289:
23290: * src/include/pa_sql_driver.h: mysql info
23291:
23292: * src/: classes/root.C, include/pa_sql_driver.h,
23293: include/pa_sql_driver_manager.h, main/main.dsp,
23294: main/pa_sql_driver_manager.C: more manager&connection&driver
23295:
23296: * src/sql/Makefile.am: forgot to add mysql client
23297:
23298: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
23299: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
23300: [forgot to add libltdl, added]
23301:
23302: * src/: Makefile.am, classes/root.C, classes/string.C,
23303: classes/table.C, include/pa_globals.h, include/pa_hash.h,
23304: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
23305: include/pa_string.h, include/pa_table.h, main/main.dsp,
23306: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23307: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
23308: -1000 just compiled
23309:
23310: * src/: classes/random.C, classes/root.C, classes/table.C,
23311: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
23312: main/pa_request.C, types/pa_vclass.h: sql frame -10
23313:
23314: 2001-04-03 paf
23315:
23316: * src/types/pa_vform.C: z
23317:
23318: * src/: classes/string.C, types/pa_vform.C: string:match replace
23319: assigned lang
23320:
23321: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
23322: {}[]< empty []
23323:
23324: * src/: classes/file.C, classes/string.C, classes/table.C,
23325: include/pa_string.h, main/pa_common.C, main/pa_string.C,
23326: main/untaint.C: string:match replace 2. string.cstr(forced lang)
23327:
23328: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23329: string:match replace strange matches
23330:
23331: * src/classes/string.C: string:match replace 0
23332:
23333: * src/: classes/string.C, main/pa_string.C: string:match replace
23334: prepared 2
23335:
23336: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23337: string:match replace prepared
23338:
23339: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23340: string:match replace -11
23341:
23342: * src/: classes/string.C, include/pa_globals.h,
23343: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
23344: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
23345:
23346: * src/: classes/string.C, include/pa_globals.h,
23347: include/pa_string.h, main/main.dsp, main/pa_globals.C,
23348: main/pa_string.C: string:match [search] -1 just compiled
23349:
23350: * src/types/pa_vstring.C: z
23351:
23352: * src/: classes/double.C, classes/file.C, classes/form.C,
23353: classes/int.C, classes/response.C, classes/root.C,
23354: classes/string.C, classes/table.C, include/pa_string.h,
23355: main/pa_string.C: string:match -10 [frame]
23356:
23357: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
23358: main/pa_request.C: z
23359:
23360: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
23361: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
23362: todo/tests
23363:
23364: * src/include/pa_common.h: z
23365:
23366: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
23367: main/pa_request.C, targets/cgi/parser3.C,
23368: targets/isapi/parser3isapi.C, types/pa_vfile.C:
23369: content-disposition
23370:
23371: * src/: include/pa_common.h, include/pa_globals.h,
23372: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23373: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
23374:
23375: * src/: include/pa_common.h, include/pa_request.h,
23376: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
23377: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23378: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
23379: response:body
23380:
23381: * src/classes/table.C: table:append now uses string::split
23382:
23383: * src/classes/table.C: z
23384:
23385: * src/: classes/file.C, classes/root.C, classes/string.C,
23386: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
23387: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
23388: include/pa_string.h, main/execute.C, main/pa_string.C,
23389: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
23390: string::pos & cmp & piece bugs fixed. string::split new
23391: table:load separated from set table:set implemented with clean \n
23392: \t searches
23393:
23394: 2001-04-02 paf
23395:
23396: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23397: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
23398: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23399: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
23400: it in table:set/load
23401:
23402: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
23403: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
23404:
23405: * src/classes/random.C: random:generate 1
23406:
23407: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
23408: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23409: types/pa_value.h: random:generate
23410:
23411: 2001-03-30 paf
23412:
23413: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
23414: todo: table flip and append. string::pos
23415:
23416: * src/: classes/double.C, classes/file.C, classes/int.C,
23417: classes/response.C, classes/root.C, classes/string.C,
23418: classes/table.C, main/compile.y, main/execute.C,
23419: types/pa_value.h, types/pa_vstateless_class.C,
23420: types/pa_vstateless_class.h: static|dynamic|any method
23421: registration
23422:
23423: * src/: classes/file.C, classes/table.C, include/pa_table.h,
23424: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
23425: table:flip
23426:
23427: 2001-03-29 paf
23428:
23429: * src/classes/string.C: string:xsplit forgot that they must result
23430: in 1 row N column [not vice versa]
23431:
23432: * src/classes/string.C: z
23433:
23434: * src/classes/string.C: string: rsplit
23435:
23436: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23437: string: lsplit
23438:
23439: * src/: classes/string.C, include/pa_string.h, main/execute.C,
23440: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
23441: lsplit -1
23442:
23443: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
23444: string: pos
23445:
23446: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23447: string: pos -1
23448:
23449: * src/: classes/string.C, classes/table.C, include/pa_string.h,
23450: main/compile.y, main/pa_request.C, main/pa_string.C,
23451: main/untaint.C: string: left right mid
23452:
23453: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
23454: main/compile_tools.h, main/main.dsp, types/pa_value.h,
23455: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
23456: and [;] are different now.
23457:
23458: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23459: main/untaint.C: pool.request undone
23460:
23461: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23462: main/untaint.C: pool.request
23463:
23464: 2001-03-28 paf
23465:
23466: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23467: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23468: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
23469: $request:browser [.type .version]; unknown.get_double now = 0.
23470:
23471: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23472: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
23473: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
23474: types/pa_vform.C: file:load autodetection of mime-type by
23475: user-file-name
23476:
23477: * src/: classes/file.C, main/execute.C, main/pa_common.C,
23478: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
23479: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
23480:
23481: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
23482: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
23483: write. must be self.set
23484:
23485: * src/: classes/file.C, classes/root.C, classes/table.C,
23486: include/pa_table.h, main/pa_table.C: table:locate1, file:test
23487:
23488: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
23489: include/pa_table.h, main/pa_array.C, main/pa_table.C,
23490: types/pa_vtable.h: table:locate just compiled
23491:
23492: 2001-03-27 paf
23493:
23494: * src/main/: execute.C, pa_common.C: fixed r/w context of
23495: code-params2, fixed ntfs hardlink slow dir update
23496:
23497: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
23498: types/pa_wcontext.h: fixed r/w context of code-params
23499:
23500: * src/: classes/table.C, main/execute.C: about to change junction
23501: rcontext!!
23502:
23503: * src/: classes/double.C, classes/int.C, classes/root.C,
23504: classes/string.C, classes/table.C, main/compile_tools.C,
23505: main/execute.C, main/pa_request.C, main/untaint.C,
23506: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
23507: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23508: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
23509: types/pa_vunknown.h: sort 0
23510:
23511: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
23512: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
23513: renamed to are_static_calls_disabled
23514:
23515: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
23516: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
23517: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23518: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
23519:
23520: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
23521:
23522: * src/: classes/table.C, include/pa_common.h, main/compile.y:
23523: started table:sort fixed minor bug in #...^{
23524:
23525: * src/: classes/table.C, include/pa_common.h, main/compile.y,
23526: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
23527: decided to have as it were. stepped back. grammar: added 'in'
23528: 'is' 'lt'&co follow-space check
23529:
23530: 2001-03-26 paf
23531:
23532: * src/: classes/file.C, classes/root.C, classes/table.C,
23533: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
23534: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23535: main/pa_table.C: moved ::save to pa_table. disabled @auto
23536: invocation in ^process
23537:
23538: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
23539:
23540: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
23541: main/pa_array.C: table:record
23542:
23543: * src/: main/untaint.C, targets/cgi/parser3.C,
23544: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23545: targets/isapi/pool_storage.h, types/pa_valiased.h,
23546: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
23547: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
23548: types/pa_vtable.h: z
23549:
23550: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
23551: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
23552: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23553: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
23554: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
23555: method realisations on 'self' validity - they now can simply
23556: assume that 'self' is V{Proper} .
23557:
23558: 2001-03-25 paf
23559:
23560: * src/main/untaint.C: z
23561:
23562: * src/main/: pa_request.C, untaint.C: moved default typo-table to
23563: lowlevel - it initialization could be skipped if failed in @auto.
23564: so that exception report would use some table
23565:
23566: * src/main/pa_request.C: table empty lines ignored. system-default
23567: content type assigned in output:result [can fail in main:auto and
23568: skipped normal defaults extraction]
23569:
23570: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
23571: bug
23572:
23573: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
23574: processing to table [except preliminary \r\n \r \n replacements
23575: to "\n"]
23576:
23577: * src/: classes/table.C, main/untaint.C: html-typo - decided to
23578: move all the processing to table
23579:
23580: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
23581: main/pa_table.C, main/untaint.C: returned table originating.
23582: useful for reporting typo table problems origin. think would be
23583: useful somewhere else
23584:
23585: * src/main/untaint.C: typo \r \r\n \n properly handled
23586:
23587: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
23588: include/pa_table.h, main/compile.y, main/compile_tools.C,
23589: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
23590: main/pa_string.C, main/pa_table.C, main/untaint.C,
23591: types/pa_vcookie.h: typo & typo-default
23592:
23593: 2001-03-24 paf
23594:
23595: * src/main/pa_common.C: z
23596:
23597: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
23598: targets/cgi/parser3.C: html-typo 2
23599:
23600: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
23601: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
23602: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
23603: main/execute.C, main/pa_array.C, main/pa_globals.C,
23604: main/pa_request.C, main/pa_string.C, main/untaint.C,
23605: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23606: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
23607: noticed double default content-type prob. run cgi.cmd tomorrow
23608: first html-typo sample. detected << problem: they become ltlt too
23609: fast
23610:
23611: * src/main/compile.y: z
23612:
23613: * src/main/: compile.y, compile_tools.h: #comment
23614:
23615: * src/: classes/file.C, classes/root.C, classes/table.C,
23616: include/pa_common.h, include/pa_request.h, main/compile.y,
23617: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23618: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
23619: stringified
23620:
23621: * src/types/pa_valiased.C: decided to String-ify file_read
23622:
23623: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
23624: isapi/parser3isapi.dsp: cgi: sapi::log
23625:
23626: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
23627: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
23628: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
23629: error log experiments failed - cgi under iis got no access to
23630: log. registereventsource simply failed with 5(illegal call) code,
23631: while worked OK as standalone executable. isapi: used
23632: HSE_APPEND_LOG_PARAMETER feature
23633:
23634: * src/: include/pa_common.h, include/pa_globals.h,
23635: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23636: targets/isapi/parser3isapi.C: fixed default content-type
23637: allocation storage
23638:
23639: * src/: include/pa_globals.h, include/pa_request.h,
23640: main/pa_globals.C, main/pa_request.C: z
23641:
23642: * src/: include/pa_array.h, include/pa_hash.h,
23643: include/pa_request.h, main/compile.y, main/pa_array.C,
23644: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23645: types/pa_vcookie.C: cyclic uses ignored. defaulted default
23646: content-type
23647:
23648: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
23649: sanity
23650:
23651: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
23652: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
23653: away freeze mech. no danger now for you can't do
23654: ^request:process[@new-method[] body] trick anymore. still
23655: remains $some_instance.process[@new-method[] possibility] but
23656: would leave it as a feature. see index for sample
23657:
23658: * src/: include/pa_common.h, main/pa_common.C,
23659: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
23660: monkey every target
23661:
23662: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23663: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
23664: types/pa_vform.C, types/pa_vform.h: auto.p monkey
23665:
23666: 2001-03-23 paf
23667:
23668: * src/: include/pa_pool.h, main/pa_request.C,
23669: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
23670: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23671: targets/isapi/pool_storage.h: isapi: dumb pool storage
23672:
23673: * src/targets/isapi/pa_pool.C: decided to continue with extension
23674:
23675: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
23676: it would be better to rewrite as filter then to deal with pool
23677:
23678: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
23679: now like in cgi, not from APPL_PHYSICAL_PATH
23680:
23681: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23682: include/pa_config_fixed.h, include/pa_config_includes.h,
23683: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
23684: include/pa_version.h, main/compile.y, main/execute.C,
23685: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23686: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23687: main/untaint.C, targets/cgi/parser3.C,
23688: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
23689: cgi: reinvent document_root and request_uri under iis. autoconf
23690: updated. introducing ap_config_includes
23691:
23692: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
23693:
23694: * src/targets/cgi/parser3.C: cgi: only one pool now
23695:
23696: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
23697: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23698: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23699: types/pa_venv.h, types/pa_vform.C: sapi made object
23700:
23701: * src/: include/pa_globals.h, main/pa_request.C,
23702: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23703: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23704: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
23705:
23706: * src/: main/pa_request.C, targets/cgi/parser3.C,
23707: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23708: isapi minor env beauty
23709:
23710: * src/: main/pa_request.C, targets/cgi/parser3.C,
23711: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23712: isapi document_root 0
23713:
23714: 2001-03-22 paf
23715:
23716: * src/targets/isapi/parser3isapi.C: isapi keep-alive
23717:
23718: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
23719: isapi/parser3isapi.C: z
23720:
23721: * src/: include/pa_pool.h, main/pa_request.C,
23722: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
23723:
23724: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
23725: kill.pl: isapi added utils
23726:
23727: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
23728: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23729: types/pa_vform.C: isapi 0
23730:
23731: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
23732: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23733: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
23734: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
23735: started isapi
23736:
23737: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
23738: some comments
23739:
23740: * src/: include/pa_globals.h, include/pa_request.h,
23741: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
23742: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
23743: parser_root_auto_path parser_site_auto_path
23744:
23745: * src/types/pa_vcookie.C: cookie attr decoded
23746:
23747: 2001-03-21 paf
23748:
23749: * src/targets/cgi/parser3.C: z
23750:
23751: * src/include/pa_globals.h: post. todo: config of auto.p path
23752:
23753: * src/: include/pa_globals.h, targets/cgi/parser3.C,
23754: types/pa_venv.h: in cookie & env. todo:post
23755:
23756: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
23757: classes/root.C, classes/table.C, include/pa_array.h,
23758: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
23759: include/pa_request.h, include/pa_string.h, main/Makefile.am,
23760: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
23761: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23762: main/pa_table.C, main/untaint.C, targets/Makefile.am,
23763: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23764: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
23765: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
23766: shifted apache branch on main trunc
23767:
23768: * src/: include/pa_common.h, include/pa_globals.h,
23769: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23770: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
23771: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
23772: starting mod_parser3
23773:
23774: * src/targets/cgi/parser3.C: starting mod_parser3
23775:
23776: 2001-03-20 paf
23777:
23778: * src/: main/pa_common.C, targets/cgi/Makefile.am,
23779: targets/cgi/parser3.C: automake compiled and works. todo:make
23780: win32 ifdefs work and add ifdef unistd
23781:
23782: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
23783: main/Makefile.am, main/pa_common.C, main/pa_request.C,
23784: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
23785: z
23786:
23787: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
23788: main/execute.C, main/pa_common.C, types/Makefile.am: removing
23789: locking
23790:
23791: * src/: classes/Makefile.am, types/Makefile.am: z
23792:
23793: * src/: Makefile.am, classes/file.C, classes/root.C,
23794: classes/table.C, include/pa_array.h, include/pa_request.h,
23795: include/pa_string.h, main/Makefile.am, main/execute.C,
23796: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23797: main/pa_string.C, main/untaint.C, targets/Makefile.am,
23798: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23799: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
23800:
23801: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23802: main/pa_request.C, types/pa_vfile.h: ^table:save
23803:
23804: * src/: classes/file.C, classes/table.C, include/pa_array.h,
23805: include/pa_common.h, include/pa_request.h, include/pa_string.h,
23806: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
23807: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
23808: types/pa_vform.h: z
23809:
23810: * src/include/pa_string.h: z
23811:
23812: * src/: classes/_request.h, classes/request.C, main/main.dsp,
23813: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
23814: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23815: :Value
23816:
23817: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
23818: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23819: :VStateless_object
23820:
23821: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
23822: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
23823: :VStateless_object
23824:
23825: * src/: main/main.dsp, targets/cgi/parser3.dsp,
23826: types/pa_valiased.C, types/pa_vform.h: commented VForm
23827:
23828: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
23829: types/pa_valiased.h, types/pa_value.h,
23830: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
23831: types/pa_vstateless_object.h: moved common get_element part from
23832: stateless object&class into VAliased
23833:
23834: * src/: classes/_env.h, classes/_table.h, classes/env.C,
23835: classes/table.C, main/execute.C, main/main.dsp,
23836: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
23837: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
23838: now :Value
23839:
23840: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
23841: main/execute.C, main/main.dsp, main/pa_globals.C,
23842: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
23843:
23844: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
23845: doxx
23846:
23847: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
23848: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23849: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
23850: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
23851: and ^file:save
23852:
23853: 2001-03-19 paf
23854:
23855: * src/types/pa_vfile.C: z
23856:
23857: * src/: classes/file.C, classes/request.C, classes/table.C,
23858: include/pa_string.h, main/main.dsp, main/pa_pool.C,
23859: main/pa_request.C, main/untaint.C, types/pa_value.h,
23860: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
23861:
23862: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
23863: include/pa_string.h, include/pa_table.h, main/main.dsp,
23864: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
23865: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
23866: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
23867: classes/_file.h, classes/file.C, types/pa_vfile.C,
23868: types/pa_vfile.h: file class just compiled
23869:
23870: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
23871: include/pa_table.h, include/pa_types.h, main/execute.C,
23872: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23873: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
23874: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
23875:
23876: * src/include/pa_pool.h: z
23877:
23878: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
23879: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
23880: Hash::Value to Val so to doxygen would finlly stop confusing
23881: those Value-s
23882:
23883: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
23884: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
23885: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23886: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23887: include/pa_types.h, main/compile.C, main/compile.y,
23888: main/compile_tools.C, main/compile_tools.h, main/execute.C,
23889: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
23890: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
23891: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23892: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
23893:
23894: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
23895: derivates somehow unlinked. don't know why yet
23896:
23897: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
23898: include/pa_string.h, include/pa_threads.h, main/compile.C,
23899: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23900: main/execute.C, main/pa_array.C, main/pa_common.C,
23901: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
23902: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23903: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
23904:
23905: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
23906: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
23907: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
23908: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
23909: types/pa_vrequest.h: doc: detected Value derivates prob
23910:
23911: * src/include/pa_globals.h: z
23912:
23913: * src/: classes/_request.h, classes/request.C, include/code.h,
23914: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
23915: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
23916: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
23917: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
23918: main/execute.C, main/pa_pool.C, main/pa_request.C,
23919: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23920: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
23921:
23922: 2001-03-18 paf
23923:
23924: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
23925: cookie: allowed access to hash-assigned
23926:
23927: * src/targets/cgi/parser3.C: z
23928:
23929: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
23930: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
23931: include/pa_types.h, main/main.dsp, main/pa_common.C,
23932: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23933: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23934: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
23935: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
23936: types/pa_vunknown.h: cookie class
23937:
23938: * src/main/pa_request.C: zero length output allowed
23939:
23940: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
23941: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
23942:
23943: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
23944: lang switch
23945:
23946: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
23947: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23948: types/pa_value.h, types/pa_vhash.h:
23949: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
23950:
23951: * src/main/execute.C: z
23952:
23953: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
23954: targets/cgi/parser3.C: taint[uri
23955:
23956: * src/: classes/request.C, classes/response.C, classes/root.C,
23957: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
23958: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
23959: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
23960:
23961: * src/: classes/root.C, classes/string.C, include/pa_string.h,
23962: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23963: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
23964: types/pa_vstateless_class.C: convinient string(pool, char *src,
23965: bool tainted) ctor
23966:
23967: * src/: include/pa_hash.h, include/pa_request.h,
23968: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
23969: main/pa_request.C, main/pa_string.C, main/untaint.C,
23970: targets/cgi/parser3.C: proper @exceptions params tainting
23971:
23972: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
23973: response fields to header
23974:
23975: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
23976: z
23977:
23978: * src/: classes/_response.h, classes/response.C,
23979: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
23980: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
23981: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23982: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
23983: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
23984: $response: 0 request::core exception rethrow
23985:
23986: 2001-03-16 paf
23987:
23988: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
23989: types/pa_vrequest.h: native method' class call with less params
23990: then needed error reporting
23991:
23992: * src/: classes/_request.h, classes/request.C,
23993: include/pa_globals.h, include/pa_request.h, main/execute.C,
23994: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23995: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
23996: types/pa_vrequest.h: $request : query :uri
23997:
23998: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
23999: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
24000: types/pa_wcontext.h: $result
24001:
24002: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
24003:
24004: * src/: classes/double.C, include/code.h, main/compile.y,
24005: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
24006: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
24007:
24008: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
24009: main/compile.y, main/execute.C, types/pa_value.h,
24010: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
24011: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
24012: wcontext conflict
24013:
24014: * src/: main/execute.C, types/pa_value.h,
24015: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
24016: $string.field
24017:
24018: 2001-03-15 paf
24019:
24020: * src/main/pa_request.C: news sample
24021:
24022: * src/: main/compile.y, main/execute.C, main/pa_request.C,
24023: targets/cgi/parser3.C, types/pa_vstring.h: @exception
24024:
24025: * src/main/: compile.y, execute.C: z
24026:
24027: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
24028: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
24029: pre pre works
24030:
24031: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24032: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
24033: fillfields just compiled
24034:
24035: 2001-03-14 paf
24036:
24037: * src/: include/pa_request.h, main/pa_request.C,
24038: targets/cgi/parser3.C: z
24039:
24040: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24041: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
24042: types/pa_vstring.h: limits -1
24043:
24044: * src/: include/pa_globals.h, include/pa_request.h,
24045: include/pa_types.h, main/main.dsp, main/pa_globals.C,
24046: main/pa_request.C, targets/cgi/parser3.C,
24047: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
24048: request_info -1
24049:
24050: * src/: include/pa_globals.h, main/pa_globals.C,
24051: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24052: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
24053: vform_fields_fill
24054:
24055: * src/targets/cgi/parser3.C: # if MSVC
24056:
24057: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
24058: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
24059:
24060: * src/targets/cgi/parser3.C: z
24061:
24062: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
24063: include/pa_string.h, include/pa_types.h, main/compile.y,
24064: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
24065: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
24066: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
24067: types/pa_vunknown.h: global handler, exceptions in parser3
24068:
24069: 2001-03-13 paf
24070:
24071: * src/: classes/form.C, main/compile.y, main/core.C,
24072: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
24073: types/pa_vform.h, types/pa_vstateless_class.C,
24074: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
24075: instead
24076:
24077: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24078: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
24079: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
24080: started cgi target
24081:
24082: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24083: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
24084: before error show with parser
24085:
24086: * src/: classes/_form.h, classes/form.C, include/core.h,
24087: include/pa_request.h, main/core.C, main/pa_request.C,
24088: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
24089:
24090: * src/targets/cgi/: parser.dsp, parser3.dsp: z
24091:
24092: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
24093: parser3.C: renamed targets/ parser to cgi
24094:
24095: * src/: classes/double.C, classes/env.C, classes/int.C,
24096: classes/root.C, classes/string.C, classes/table.C,
24097: include/pa_request.h, types/pa_vhash.h: z
24098:
24099: * src/: classes/_env.h, classes/env.C, classes/root.C,
24100: include/core.h, include/pa_pool.h, include/pa_request.h,
24101: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
24102: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24103: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
24104: [historical moment :)]
24105:
24106: * src/: include/code.h, include/pa_string.h, main/compile.y,
24107: main/execute.C, main/pa_string.C: 'value is type' expr operator
24108:
24109: * src/types/pa_venv.h: $ENV 1
24110:
24111: * src/main/execute.C: z
24112:
24113: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
24114: future methods of ENV constructor if
24115:
24116: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
24117: class
24118:
24119: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24120: classes/_root.h, classes/_string.h, classes/_table.h,
24121: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24122: classes/string.C, classes/table.C, include/pa_request.h,
24123: main/compile.C, main/compile_tools.h, main/core.C,
24124: main/execute.C, main/main.dsp, main/pa_request.C,
24125: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24126: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24127: types/pa_vobject.h, types/pa_vstateless_class.C,
24128: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24129: types/pa_wcontext.h: $ENV: re 0, stateless classes
24130:
24131: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24132: classes/_root.h, classes/_string.h, classes/_table.h,
24133: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24134: classes/string.C, classes/table.C, include/pa_request.h,
24135: main/compile.C, main/compile_tools.h, main/core.C,
24136: main/execute.C, main/main.dsp, main/pa_request.C,
24137: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24138: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24139: types/pa_vobject.h, types/pa_vstateless_class.C,
24140: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24141: types/pa_wcontext.h: $ENV: re 0, stateless classes
24142:
24143: * src/: include/pa_request.h, main/compile.C, main/execute.C,
24144: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
24145: yesterdays bad decision on execute_static_method
24146:
24147: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
24148:
24149: * src/: classes/double.C, classes/int.C, classes/root.C,
24150: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
24151:
24152: * src/main/pa_request.C: z
24153:
24154: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24155: include/pa_pool.h: skipped_restructure_exceptions_dead_end
24156:
24157: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24158: include/pa_pool.h, main/pa_request.C:
24159: restructure_exceptions_dead_end
24160:
24161: * src/: classes/root.C, main/compile.y: ^if required junctions.
24162: allowed ; inside {} to break params
24163:
24164: * src/classes/root.C: ^eval
24165:
24166: * src/: classes/_string.h, classes/double.C, classes/int.C,
24167: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
24168: string ^format
24169:
24170: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
24171: 'bad' but not 'enough'
24172:
24173: * src/: classes/double.C, classes/root.C, classes/table.C,
24174: include/pa_common.h, include/pa_types.h, main/compile.y,
24175: main/pa_common.C, main/pa_request.C, main/untaint.C,
24176: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
24177: types/pa_wwrapper.h: think constructing flag as is is bad
24178:
24179: * src/: classes/double.C, classes/int.C, classes/root.C,
24180: classes/string.C, classes/table.C, main/core.C, main/execute.C,
24181: types/pa_vint.h: ^for
24182:
24183: 2001-03-12 paf
24184:
24185: * src/classes/table.C: table ^empty
24186:
24187: * src/: classes/table.C, include/pa_table.h: table ^menu
24188:
24189: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
24190: ^offset ^line ^count
24191:
24192: * src/classes/root.C: ^round() ^floor() ^ceiling()
24193: ^abs() ^sign()
24194:
24195: * src/classes/: root.C, table.C: ^use
24196:
24197: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24198: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
24199: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
24200: ^while. switched off wcontext.constructing after write(value) or
24201: auto-vhash-constructing
24202:
24203: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24204: main/pa_request.C: fail_if_junction_ helper func
24205:
24206: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24207: include/pa_request.h, main/execute.C, main/main.dsp,
24208: main/pa_common.C, main/pa_request.C: ^process error point by
24209: actual method_name, not source. ^load
24210:
24211: * src/types/pa_vtable.h: table: no, better with string in cells...
24212:
24213: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
24214: classes/_table.h, classes/table.C, main/untaint.C: z
24215:
24216: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
24217: include/pa_table.h, main/core.C, main/execute.C,
24218: main/pa_common.C, main/pa_request.C, main/pa_table.C,
24219: types/pa_value.h: table:set 0
24220:
24221: * src/: classes/root.C, include/core.h, include/pa_array.h,
24222: include/pa_request.h, include/pa_table.h, main/core.C,
24223: main/main.dsp, main/pa_request.C, main/pa_table.C,
24224: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
24225: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
24226: types/pa_vstring.h: freeze, ^table:create[] -1
24227:
24228: * src/: classes/root.C, types/pa_value.h: z
24229:
24230: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
24231: get_method in couple places optimizing them
24232:
24233: * src/classes/root.C: z
24234:
24235: * src/: classes/root.C, types/pa_vclass.h: process temp main
24236: zeroing
24237:
24238: * src/: classes/double.C, classes/int.C, classes/root.C,
24239: classes/string.C, include/pa_common.h, include/pa_request.h,
24240: include/pa_string.h, include/pa_types.h, main/compile.C,
24241: main/compile.y, main/compile_tools.h, main/execute.C,
24242: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24243: types/pa_vmframe.h: ^process. actual names to store param and
24244: check_actual_numbered_params for better place diagnostics
24245:
24246: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
24247: method-junctions bug fixed
24248:
24249: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
24250: pa_vstateless_object.h, pa_vstring.h: stateless_object
24251:
24252: 2001-03-11 paf
24253:
24254: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
24255: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
24256: VDouble VInt base now VObject_base - without fields
24257:
24258: * src/: classes/root.C, include/core.h, main/core.C: z
24259:
24260: * src/: classes/double.C, classes/int.C, classes/root.C,
24261: classes/string.C, include/core.h, include/pa_hash.h,
24262: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
24263: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
24264:
24265: * src/: classes/double.C, classes/int.C, classes/root.C,
24266: include/pa_request.h, main/execute.C: intercept_string
24267:
24268: * src/: classes/double.C, classes/int.C, classes/root.C,
24269: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
24270:
24271: * src/: classes/double.C, classes/int.C, include/pa_request.h:
24272: ^inc-s(expr)
24273:
24274: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24275: classes/_root.h, classes/_string.h, classes/double.C,
24276: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24277: include/code.h, include/core.h, include/pa_array.h,
24278: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24279: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24280: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24281: include/pa_types.h, main/compile.C, main/compile.y,
24282: main/compile_tools.C, main/compile_tools.h, main/core.C,
24283: main/execute.C, main/pa_array.C, main/pa_common.C,
24284: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
24285: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24286: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24287: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24288: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24289: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24290: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24291: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
24292:
24293: * src/: main/pa_request.C, types/pa_vhash.h: z
24294:
24295: * src/: include/core.h, include/pa_request.h, main/core.C,
24296: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
24297:
24298: * src/: include/pa_valiased.h, include/pa_value.h,
24299: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24300: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24301: include/pa_vjunction.h, include/pa_vmframe.h,
24302: include/pa_vobject.h, include/pa_vstring.h,
24303: include/pa_vunknown.h, include/pa_wcontext.h,
24304: include/pa_wwrapper.h, main/compile.y, main/core.C,
24305: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
24306: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
24307: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24308: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24309: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24310: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24311: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24312: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
24313: include/
24314:
24315: 2001-03-10 paf
24316:
24317: * src/: include/core.h, include/pa_request.h, main/core.C,
24318: main/pa_request.C: run+auto=run
24319:
24320: * src/: classes/root.C, include/pa_request.h: minor if junction bug
24321:
24322: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24323: classes/_root.h, classes/_string.h, classes/double.C,
24324: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24325: include/code.h, include/core.h, include/pa_array.h,
24326: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24327: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24328: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24329: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
24330: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24331: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24332: include/pa_vjunction.h, include/pa_vmframe.h,
24333: include/pa_vobject.h, include/pa_vstring.h,
24334: include/pa_vunknown.h, include/pa_wcontext.h,
24335: include/pa_wwrapper.h, main/compile.C, main/compile.y,
24336: main/compile_tools.C, main/compile_tools.h, main/core.C,
24337: main/execute.C, main/pa_array.C, main/pa_cframe.C,
24338: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
24339: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24340: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
24341: main/pa_wcontext.C: sources header
24342:
24343: * src/main/pa_request.C: auto..
24344:
24345: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24346: main/pa_request.C: auto tree0
24347:
24348: * src/: include/core.h, include/pa_request.h, main/compile.y,
24349: main/core.C, main/pa_request.C: names to core.C
24350:
24351: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
24352: include/pa_request.h, main/core.C, main/execute.C,
24353: main/pa_common.C, main/pa_request.C: root auto.p loaded
24354:
24355: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
24356: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
24357: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24358: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
24359:
24360: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
24361: @auto[] realised. auto.p scan togo
24362:
24363: * src/: include/pa_request.h, main/execute.C: autocalc
24364: code-junctions result now have names
24365:
24366: * src/: classes/double.C, classes/int.C, classes/root.C,
24367: classes/string.C, include/pa_request.h, include/pa_string.h,
24368: include/pa_wcontext.h, main/compile.y, main/execute.C,
24369: main/pa_string.C, main/pa_wcontext.C: tainting 0
24370:
24371: * src/classes/env.C: env:file/line
24372:
24373: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
24374: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
24375: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
24376: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
24377: main/compile_tools.C, main/compile_tools.h, main/core.C,
24378: main/execute.C, main/main.dsp, main/pa_cframe.C,
24379: main/pa_request.C, main/pa_wcontext.C: const fight finished
24380:
24381: * src/include/pa_vclass.h: const fight to go
24382:
24383: * src/: classes/_env.h, classes/env.C, classes/root.C,
24384: include/pa_request.h, include/pa_vclass.h, main/core.C,
24385: main/main.dsp: env0
24386:
24387: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
24388: classes/_string.h, classes/double.C, classes/int.C,
24389: classes/root.C, classes/string.C, include/pa_request.h,
24390: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
24391: include/pa_wcontext.h, main/core.C, main/main.dsp,
24392: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
24393: main/pa_wcontext.C: ^lang prepare0
24394:
24395: 2001-03-09 paf
24396:
24397: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
24398: construct proper naming
24399:
24400: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
24401: classes/double.C, classes/int.C, classes/root.C,
24402: classes/string.C, include/code.h, include/pa_value.h,
24403: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
24404: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24405: main/compile.y, main/compile_tools.C, main/core.C,
24406: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
24407: and ^double[]. fixed expr type
24408:
24409: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24410: ^string.length[]
24411:
24412: 2001-03-08 paf
24413:
24414: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
24415:
24416: * src/: include/pa_vclass.h, include/pa_vstring.h,
24417: include/pa_wcontext.h, main/compile.y, main/core.C,
24418: main/execute.C, main/main.dsp: dead end: vstring can't be
24419: derivated from vobject
24420:
24421: * src/: include/pa_vclass.h, include/pa_vhash.h,
24422: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
24423:
24424: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
24425: remained clone conseqs
24426:
24427: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
24428:
24429: * src/main/pa_vclass.C: wow! vclass were out of vcs
24430:
24431: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
24432: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
24433: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
24434: include/pa_vobject.h, include/pa_vstring.h,
24435: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24436: main/execute.C: withoud cloning. didn't need it actually, params
24437: got passed from out unnamed ewpool
24438:
24439: * src/: include/pa_vdouble.h, include/pa_vhash.h,
24440: include/pa_vjunction.h, include/pa_vobject.h,
24441: include/pa_vunknown.h, main/compile.y: cloning dead end
24442:
24443: * src/: include/pa_bool.h, include/pa_double.h,
24444: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
24445: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
24446: include/pa_vjunction.h, include/pa_vmframe.h,
24447: include/pa_vobject.h, include/pa_vstring.h,
24448: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24449: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
24450: to give params proper names
24451:
24452: * src/main/pa_wcontext.C: z
24453:
24454: * src/: include/pa_vmframe.h, main/execute.C: added names to
24455: unknown values in get_element and unfilled params. removed wrong
24456: name change in get_element
24457:
24458: * src/main/execute.C: z
24459:
24460: * src/main/execute.C: fixed problems calling operators in
24461: constructors
24462:
24463: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
24464: detected problems calling operators in constructors
24465:
24466: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24467: autocalc def to string
24468:
24469: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
24470: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
24471:
24472: * src/classes/root.C: added root.c
24473:
24474: * src/: include/pa_request.h, include/pa_value.h,
24475: include/pa_vcframe.h, include/pa_vmframe.h,
24476: include/pa_wcontext.h, main/compile.C, main/compile.y,
24477: main/core.C, main/execute.C, main/pa_cframe.C,
24478: main/pa_wcontext.C: 'if' just compiled
24479:
24480: * src/: include/pa_vbool.h, include/pa_vdouble.h,
24481: include/pa_vjunction.h, include/pa_vmframe.h,
24482: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
24483: main/pa_wcontext.C: z
24484:
24485: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
24486: main/core.C, main/execute.C, main/main.dsp: z. detected probs
24487: with parameter names in operator methods
24488:
24489: * src/main/compile.y: minor renamings in .y
24490:
24491: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24492: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
24493: @BASE. changed 'RUN' assignment mech
24494:
24495: * src/main/execute.C: z
24496:
24497: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24498: main/compile_tools.h, main/execute.C: made class: dynamic, not
24499: static. so to enable runtime ^use
24500:
24501: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
24502:
24503: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24504: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
24505:
24506: * src/main/execute.C: root root in code-junction
24507:
24508: 2001-03-07 paf
24509:
24510: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
24511: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
24512:
24513: * src/: include/pa_stack.h, include/pa_value.h,
24514: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
24515: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
24516: fixed rwcontext of {} params up
24517:
24518: * src/main/: compile.y, compile_tools.h: ^func(params)
24519:
24520: * src/main/compile.y: .y priorities syntax shaped up a bit
24521:
24522: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
24523: include/pa_vunknown.h, main/compile.y, main/execute.C,
24524: main/pa_hash.C: expr def in -f
24525:
24526: * src/main/: compile.y, execute.C: expr calls
24527:
24528: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
24529: fixed
24530:
24531: * src/main/compile.y: expr quoted code
24532:
24533: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
24534: support0
24535:
24536: * src/main/compile.y: expr string comparisons 0
24537:
24538: * src/: include/pa_string.h, main/compile.y, main/execute.C,
24539: main/pa_string.C: just compiled lt&co
24540:
24541: * src/main/execute.C: ^var.menu{$field} problem detected. that
24542: $field not a $var.field
24543:
24544: 2001-03-06 paf
24545:
24546: * src/main/compile.y: .y expr visible-shorter
24547:
24548: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
24549: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
24550: logical
24551:
24552: * src/: include/pa_vstring.h, main/compile.y: problems with
24553: skipping whitespace in yylex
24554:
24555: * src/include/pa_vbool.h: forgot this
24556:
24557: * src/: include/code.h, main/compile.y, main/execute.C: without
24558: string ops in expressions 0
24559:
24560: * src/: include/pa_value.h, include/pa_vdouble.h,
24561: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
24562: main/execute.C, main/main.dsp: !~
24563:
24564: * src/: include/pa_vcframe.h, include/pa_vclass.h,
24565: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
24566: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24567: include/pa_vunknown.h, include/pa_wcontext.h,
24568: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24569: main/compile_tools.h, main/execute.C: +-*/
24570:
24571: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
24572: main/compile_tools.h: grammar-1.1 $a(z) $a=0
24573:
24574: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
24575: main/execute.C: expr grammar-1 2*2=4.000000 :)
24576:
24577: * src/main/compile.y: expr grammar-1
24578:
24579: * src/main/compile.y: expr lexx1
24580:
24581: * src/main/: compile.y, execute.C, main.dsp: z
24582:
24583: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
24584: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
24585: main/execute.C: expr lex0 exec-1
24586:
24587: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
24588:
24589: 2001-02-26 paf
24590:
24591: * src/main/compile.y: max_string in yyerror bug fix
24592:
24593: 2001-02-25 paf
24594:
24595: * src/: include/pa_value.h, include/pa_vmframe.h,
24596: include/pa_wcontext.h, main/execute.C: VAliased3
24597:
24598: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
24599:
24600: * src/main/execute.C: VAliased1
24601:
24602: * src/: include/pa_request.h, include/pa_value.h,
24603: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
24604: VAliased0
24605:
24606: * src/: include/pa_pool.h, include/pa_request.h,
24607: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
24608: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
24609: VAliased just compiled
24610:
24611: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
24612: include/pa_vobject.h, main/execute.C: alias dead end
24613:
24614: * src/: include/pa_value.h, include/pa_vclass.h,
24615: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24616: main/main.dsp: no not get fields into interm VFielded class.
24617: fields & staticfields 1
24618:
24619: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
24620: include/pa_vobject.h, include/pa_wcontext.h,
24621: include/pa_wwrapper.h, main/core.C, main/execute.C,
24622: main/main.dsp: would now get fields into interm VFielded class
24623:
24624: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24625: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24626: include/pa_wcontext.h, main/compile.y, main/core.C,
24627: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
24628: main/pa_wcontext.C: virtuals2
24629:
24630: * src/main/compile.y: : 1
24631:
24632: * src/main/compile.y: rethought to $class:static.field.subfield
24633:
24634: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
24635: $class:element
24636:
24637: * src/: include/pa_value.h, include/pa_vmframe.h,
24638: include/pa_wwrapper.h, main/compile.y, main/execute.C,
24639: main/pa_wcontext.C: before execute class calls rewrite
24640:
24641: * src/: include/pa_request.h, main/compile.C, main/core.C: default
24642: name RUN, also alias
24643:
24644: * src/main/compile.y: escaping bug
24645:
24646: * src/: include/pa_request.h, include/pa_value.h,
24647: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
24648: main/core.C, main/execute.C, main/pa_common.C: vobject1
24649:
24650: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24651: include/pa_vmframe.h, include/pa_vobject.h,
24652: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24653: main/compile_tools.h, main/execute.C: ^class:method() just
24654: compiled
24655:
24656: 2001-02-24 paf
24657:
24658: * src/main/main.dsp: no bison -d
24659:
24660: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
24661: class' err msg wrong
24662:
24663: * src/main/compile.y: z
24664:
24665: * src/main/: compile.y, core.C: yylex need some @special lines adj
24666:
24667: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
24668: main/compile.y, main/compile_tools.h, main/core.C: modules0
24669:
24670: * src/: include/pa_vclass.h, main/core.C: z
24671:
24672: * src/: include/pa_value.h, include/pa_vclass.h,
24673: include/pa_vobject.h, main/main.dsp: vobject00
24674:
24675: * src/main/pa_array.C: minor bug in expanding very small arrays.
24676: 60% from 1 were 0
24677:
24678: * src/: include/pa_value.h, include/pa_wcontext.h,
24679: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
24680: as bad as you've named it: wcontext.value() was not a perfect
24681: idea
24682:
24683: * src/main/execute.C: codeframe1
24684:
24685: * src/: include/pa_value.h, include/pa_vcframe.h,
24686: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
24687: include/pa_vjunction.h, include/pa_vmframe.h,
24688: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24689: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
24690: just compiled
24691:
24692: * src/: include/pa_vframe.h, main/compile.y: found junction
24693: ideology @: ^x{$a()) must construct current wcontext element, so
24694: smart wcontext handling needed
24695:
24696: * src/main/compile.y: fixed grammar bugs in constructor/params
24697: klinch
24698:
24699: * src/main/: compile.y, execute.C: fixed empty constructor
24700: optimized empty case. failed on calls - produced empty string
24701: param
24702:
24703: * src/main/compile.y: fixed last \n macrotemplate strip bug
24704:
24705: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
24706: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
24707: main/compile_tools.C, main/compile_tools.h, main/core.C,
24708: main/execute.C: code junctions0. something wrong with last \n
24709: macrotemplate strip
24710:
24711: * src/: include/pa_value.h, main/compile.C, main/core.C,
24712: main/pa_value.C: minor error reporting format beautifyings
24713:
24714: * src/: include/pa_value.h, include/pa_vclass.h,
24715: include/pa_vframe.h, main/core.C, main/execute.C,
24716: main/pa_value.C: get_method RIP. junctions everywhere. call with
24717: junctions0
24718:
24719: 2001-02-23 paf
24720:
24721: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
24722: pa_wwrapper.h: lara came, can't work, sorry :(
24723:
24724: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
24725: junction
24726:
24727: * src/: include/pa_vframe.h, include/pa_vunknown.h,
24728: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
24729: main/execute.C, main/main.dsp, main/pa_value.C: call0
24730:
24731: * src/: include/pa_hash.h, include/pa_value.h,
24732: include/pa_wcontext.h, main/core.C, main/execute.C,
24733: main/main.dsp, main/pa_hash.C: started call. store param, vframe
24734: done
24735:
24736: * src/include/pa_wcontext.h: z
24737:
24738: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
24739: wrong grammar in complex constructor case
24740:
24741: * src/main/: compile.y, execute.C: empty constructor bug fixed
24742:
24743: * src/main/execute.C: with result rwpool
24744:
24745: * src/: include/pa_value.h, main/core.C, main/execute.C,
24746: main/main.dsp: value named
24747:
24748: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
24749: strign 2 value in 2 places in execute
24750:
24751: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
24752: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
24753: wcontext.put_element when wcontext fvalue==0
24754:
24755: 2001-02-22 paf
24756:
24757: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24758: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
24759: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
24760:
24761: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
24762: erroreos checkout
24763:
24764: * src/: include/pa_request.h, main/compile.y: $self.put(val)
24765:
24766: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
24767: main/compile_tools.h, main/pa_array.C: $self.get
24768:
24769: * src/main/: compile.C, compile.y, compile_tools.C: z
24770:
24771: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
24772: bit. finished now.
24773:
24774: * src/main/compile.y: $: finished
24775:
24776: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
24777:
24778: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
24779: main/execute.C: OP_STRING better then some xxx _VALUE
24780:
24781: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
24782: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24783: string to vstring it .y all
24784:
24785: * src/: include/pa_request.h, include/pa_stack.h,
24786: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
24787: all
24788:
24789: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
24790: precise parse error line:col
24791:
24792: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
24793: main/pa_hash.C, main/pa_pool.C: TRY...
24794:
24795: * src/: include/pa_exception.h, include/pa_pool.h,
24796: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
24797: main/compile.C, main/compile.y, main/compile_tools.C,
24798: main/core.C, main/pa_array.C, main/pa_exception.C,
24799: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
24800: main/pa_table.C: removed exception from request
24801:
24802: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
24803: some forgotten
24804:
24805: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24806: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
24807: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
24808: get/put simple vars to VClass works0
24809:
24810: * src/: include/pa_array.h, include/pa_wcontext.h,
24811: main/pa_string.C: in process, but found that exceptions are too
24812: global
24813:
24814: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
24815: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
24816: main/execute.C, main/pa_string.C: write_value write_string 0 it
24817: seems wcontext must write strings regardles of fvalue!=0
24818:
24819: 2001-02-21 paf
24820:
24821: * src/main/execute.C: tired :)
24822:
24823: * src/main/: compile.C, compile.y, execute.C: store0
24824:
24825: * src/: include/compile.h, include/execute.h, include/pa_array.h,
24826: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
24827: include/pa_wcontext.h, main/compile.C, main/compile.y,
24828: main/execute.C, main/main.dsp, main/pa_array.C,
24829: main/pa_request.C: get put -1 [just compiled]
24830:
24831: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
24832: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
24833: main/main.dsp, main/pa_request.C: request core methods0
24834:
24835: * src/: include/compile.h, include/pa_array.h, main/compile.C,
24836: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
24837: execute
24838:
24839: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
24840: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
24841: methods and one_big_piece. now compile returns array<method*>
24842:
24843: * src/main/compile.y: more straightforward yylex[end]
24844:
24845: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
24846: string.operator==(char*)
24847:
24848: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
24849: main/execute.C, main/pa_array.C: after array.const get wonders
24850:
24851: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
24852: pa_string.h, pa_value.h: struck with const array.gets
24853:
24854: * src/main/: execute.C: z
24855:
24856: * src/main/: compile.y, execute.C: z
24857:
24858: * src/main/: compile.C, compile.y, compile_tools.h: error
24859: processing in eval & yyerror so it wouldn't cause memleaks.
24860:
24861: * src/main/: compile.C, compile.y: failed to add absolute precies
24862: parse error positions. leaving RIGHTMOST position as
24863: @file[line:col]
24864:
24865: * src/: include/compile.h, main/compile.C, main/compile.y,
24866: main/compile_tools.h: line numbers needed. would add them to .y
24867: now internally. externally it's not as precise as needed
24868:
24869: * src/: include/code.h, include/pa_types.h, main/compile.C,
24870: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24871: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
24872: compiler works ok
24873:
24874: 2001-02-20 paf
24875:
24876: * src/main/: compile.C, compile.y, compile_tools.C,
24877: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
24878: not perfect
24879:
24880: * src/: include/code.h, include/compile.h, include/execute.h,
24881: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
24882: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24883: main/compile.C, main/compile.y, main/compile_tools.C,
24884: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
24885: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24886: main/pa_string.C, main/pa_table.C: bison[yacc] first time
24887: compiled. execute=dump for now
24888:
24889: * src/main/core.C: core rewrite using yacc investigations now will
24890: be compile[yacc]/execute[opcodes]
24891:
24892: 2001-02-15 paf
24893:
24894: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
24895: rewrite as turing machine? for it seems it would be it's too many
24896: ifs with this syntax now
24897:
24898: 2001-02-14 paf
24899:
24900: * src/main/core.C: get_params 1
24901:
24902: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
24903: :( ]
24904:
24905: * src/main/core.C: varios breaks
24906:
24907: * src/main/core.C: get names 3
24908:
24909: * src/main/core.C: get names 2
24910:
24911: * src/main/core.C: get names 1
24912:
24913: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
24914: names 0
24915:
24916: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
24917: text repassing2 operator static vars
24918:
24919: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
24920: main/pa_string.C: process text repassing
24921:
24922: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24923: module:calls changes
24924:
24925: 2001-02-13 paf
24926:
24927: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24928: ^class:calls[] started
24929:
24930: * src/: include/pa_value.h, main/core.C: z
24931:
24932: * src/main/core.C: operators : and self. prefixes
24933:
24934: * src/main/core.C: z
24935:
24936: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24937: tested
24938:
24939: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24940: optimized
24941:
24942: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
24943: would change privates to better support optimization
24944:
24945: * src/: include/pa_string.h, main/pa_string.C:
24946: String_iterator::skip_to todo:optimize
24947:
24948: 2001-02-12 paf
24949:
24950: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
24951: String_iterator
24952:
24953: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
24954: comments
24955:
24956: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
24957: self/methodref joined
24958:
24959: 2001-02-11 paf
24960:
24961: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
24962: main/main.dsp: core started. core.C, context&value .h
24963:
24964: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24965: include/pa_string.h, main/main.dsp, main/pa_array.C,
24966: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
24967:
24968: 2001-01-30 paf
24969:
24970: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
24971: comments
24972:
24973: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
24974: main/pa_pool.C: moved pa_pool.C to be target specific
24975:
24976: * src/: include/pa_exception.h, include/pa_pool.h,
24977: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
24978: to & changes
24979:
24980: * src/: include/pa_exception.h, include/pa_pool.h,
24981: include/pa_request.h, include/pa_table.h, main/pa_array.C,
24982: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
24983: re-associated. that's much better even removed 'die' necessety
24984:
24985: * src/: include/pa_error.h, include/pa_exception.h,
24986: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24987: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
24988: targets/Makefile.am: lowered targets/parser into subdir, added
24989: parser_Pool(Pool) failed to add. would think..
24990:
24991: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
24992: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
24993: main/pa_string.C, main/pa_table.C: Table more like C++ style
24994: hence lots of 'const'
24995:
24996: * src/: include/pa_error.h, include/pa_request.h,
24997: include/pa_string.h, include/pa_table.h, main/pa_error.C,
24998: main/pa_table.C: Error fixed
24999:
25000: 2001-01-29 paf
25001:
25002: * src/: include/pa_array.h, include/pa_common.h,
25003: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
25004: include/pa_request.h, include/pa_string.h, include/pa_table.h,
25005: main/Makefile.am, main/pa_array.C, main/pa_common.C,
25006: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
25007:
25008: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25009: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25010: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
25011: main/pa_string.C, main/pa_table.C: Request Error Table
25012:
25013: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
25014: templates"
25015:
25016: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
25017: main/main.dsp, main/pa_array.C: templates failed no template
25018: specializations [VC6], no library auto instantation [VC6, GNU c++
25019: 2.95.2-6 from latest cygwin]
25020:
25021: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25022: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25023: main/main.dsp, main/pa_array.C, main/pa_string.C,
25024: main/pa_table.C: Table started would test template Array now
25025:
25026: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25027: String originating
25028:
25029: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
25030: main/pa_hash.C: made local Hash-es not thread safe=quicker by
25031: SYNCHRONIZED(thread_safe)
25032:
25033: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
25034: parts to top
25035:
25036: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
25037: main/pa_threads.C: decided on one global_mutex, like PHP as I can
25038: see: needed only in global Hash now, made Hash:: put/get
25039: SYNCHRONIZED
25040:
25041: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
25042: main/pa_threads.C: added pa_threads
25043:
25044: Mutex
25045:
25046: * src/include/pa_hash.h: some comments
25047:
25048: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
25049: Array& operator += (Array& src)
25050:
25051: * src/main/pa_array.C: expand not convinient, would rewrite
25052:
25053: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
25054: (Array& src)
25055:
25056: rethought, would change now
25057:
25058: 2001-01-27 paf
25059:
25060: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
25061: caching
25062:
25063: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25064: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
25065: cache rethought to chunk caching
25066:
25067: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25068: include/pa_string.h, main/main.dsp, main/pa_array.C,
25069: main/pa_hash.C, main/pa_string.C: Array 0
25070:
25071: * src/main/pa_string.C: String::operator ==
25072:
25073: * src/main/pa_hash.C: String(&String)
25074:
25075: * src/main/pa_hash.C: added pa_hash.C [forgotten]
25076:
25077: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
25078: main/main.dsp, main/pa_string.C: uint, and added pa_types &
25079: pa_hash[forgotten]
25080:
25081: 2001-01-26 paf
25082:
25083: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25084: removed templates [vc++ suxx]
25085:
25086: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
25087: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
25088:
25089: * src/include/: pa_pool.h, pa_string.h: pa_pool split
25090:
1.119 moko 25091: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 25092:
1.119 moko 25093: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 25094: check
25095:
25096: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
25097: dynamic row_count
25098:
25099: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25100: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25101: targets/Makefile.am: Initial revision
25102:
25103: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25104: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25105: targets/Makefile.am: creating parser3 module
25106:
E-mail: