Annotation of parser3/ChangeLog, revision 1.190
1.190 ! moko 1: 2024-05-11 moko
! 2:
! 3: * tests/: 099.html, 100.html, results/099.processed,
! 4: results/100.processed: a test for non-UTF-8 filename* added
! 5: (related to feature #1240)
! 6:
! 7: * tests/: 293.html, results/293.processed: tainting modes tests
! 8: added
! 9:
! 10: * tests/results/: 099.processed, 100.processed, 205.processed,
! 11: 309.processed, 310.processed, 419.processed: tests results
! 12: updated after filename* added (related to feature #1240)
! 13:
! 14: * src/: include/pa_common.h, main/pa_request.C: The filename*
! 15: parameter was added to the Content-Disposition header to conform
! 16: with RFC 6266, with code provided by Sumo (implements feature
! 17: #1240)
! 18:
! 19: 2024-05-10 moko
! 20:
! 21: * src/main/pa_http.C: Testing shows that TCP_NODELAY has no
! 22: positive performance effect in our case
! 23:
1.189 moko 24: 2024-03-27 moko
25:
26: * src/lib/pcre/pcre_internal.vcproj: pa_config_includes.h used
27: (related to feature #1236)
28:
29: 2024-03-15 moko
30:
31: * tests/: 413.html, results/413.processed: test for object still
32: can be used as file parameter (related to bug #1218)
33:
34: * src/types/: pa_vobject.C, pa_vobject.h: regression fix: object
35: still can be used in file context (fixes bug #1218)
36:
37: 2024-03-14 moko
38:
39: * src/include/pa_string.h: ArrayString get() null result assert
40: also added (related to bug #1238)
41:
42: * src/types/: pa_vstring.h, pa_vtable.C: VString() optimized;
43: VString::empty() used instead of new VString()
44:
45: 2024-03-12 moko
46:
47: * tests/: 379-curl.html, 379.html, results/379-curl.processed,
48: results/379.processed: test added for cookie without value
49: (related to bug #1238)
50:
51: * src/include/pa_string.h: In assertions enabled mode, ArrayString
52: values are now required to be non-null (related to bug #1238)
53:
54: * src/main/pa_http.C: cookies without value are now parsed
55: correctly (fixed bug #1238)
56:
57: 2024-03-11 moko
58:
59: * tests/run_parser.sh: for better error reporting
60:
1.188 moko 61: 2023-12-30 moko
62:
63: * tests/: 038.html, results/038.processed: test for atan2 added
64:
65: 2023-12-29 moko
66:
67: * src/classes/math.C: atan2(y,x) math function added
68:
1.187 moko 69: 2023-12-14 moko
70:
71: * tests/212.html: pcre2 compatibility (related to feature #1236)
72:
73: * tests/: 425.html, results/425.processed: test for pcre/pcre2
74: exceptions and behavour added (related to feature #1236)
75:
76: 2023-12-13 moko
77:
78: * buildall: by default parser is now bundled with pcre2 10.42,
79: --without-pcre2 option added to build with pcre-8.45 (related to
80: feature #1236)
81:
82: 2023-12-12 moko
83:
84: * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
85: support added (implements feature #1236)
86:
87: * src/: include/pa_charset.h, include/pa_config_includes.h,
88: lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
89: main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
90: types/pa_vregex.h: Adopted patch from Yavor Doganov
91: <yavor@gnu.org> to add pcre2 library support (implements feature
92: #1236)
93:
1.186 moko 94: 2023-11-28 moko
95:
96: * src/include/pa_config_includes.h: warnings war continues
97:
98: * src/include/pa_config_includes.h: warning war
99:
100: * tests/: 424.html, results/424.processed: tests for '+' and '-'
101: number strings, whitespace and sign in exception messages
102: (related to bug #1234)
103:
1.185 moko 104: 2023-11-26 moko
105:
106: * tests/: 274.html, results/224.processed, results/274.processed:
107: tests for date double, int, bool added (related to feature #1235)
108:
109: * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
110: added for date class (implements feature #1235)
111:
112: 2023-11-23 moko
113:
114: * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
115: and '-' strings are no longer can be treated as number 0,
116: exception thrown (fixes bug #1234)
117:
1.184 moko 118: 2023-11-18 moko
119:
120: * src/include/pa_types.h: minor
121:
122: * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
123:
124: * tests/: 389.html, results/389.processed: error messages for some
125: OS differs a bit, reducing failing tests for them
126:
127: 2023-11-17 moko
128:
129: * tests/: 423.html, results/423.processed: test for optional
130: @auto[] inheritance added (related to feature #1233)
131:
132: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
133: types/pa_vstateless_class.C: optional @auto[] inheritance
134: implemented if defined with two args (path, class name)
135: (implements feature #1233)
136:
137: * src/: classes/double.C, classes/int.C, classes/math.C,
138: include/pa_random.h, include/pa_types.h, main/pa_common.C,
139: types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
140: sync double->int overflow behavour under different architectures
141: (fixes bug #1232)
142:
143: * tests/: 422.html, results/422.processed: int clipping added
144:
145: 2023-11-16 moko
146:
147: * tests/: 422.html, results/422.processed: test for int and uint
148: overflow in ^n.format[d/u/x]
149:
150: * src/classes/math.C: bugfix: crc32 should not be negative (under
151: Apple M1 when negative double converts to uint the result is 0)
152: and crc32 should be 32 bits
153:
154: * src/main/pa_common.C: avoid (uint)<negative double> conversion as
155: on Apple M1 it's 0
156:
157: * src/classes/file.C: bugfix: crc32 should not be negative (under
158: Apple M1 when negative double converts to uint the result is 0)
159: and crc32 should be 32 bits
160:
1.183 moko 161: 2023-10-07 moko
162:
163: * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
164: behavour with other OP_NUM_*, related to bug #1230
165:
166: 2023-10-06 moko
167:
168: * tests/: 338.html, results/338.processed: test for bug #1230 added
169:
170: * src/: main/execute.C, types/pa_vdate.h: force double operands to
171: be converted to double to avoid 80 bit operations in x87 mode
172: (fixes bug #1230)
173:
174: 2023-10-05 moko
175:
176: * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
177: compatibility
178:
179: * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
180:
181: * tests/: 421.html, results/421.processed: test to cover all
182: classes and objects nonexistent method and field exceptions
183: (related to feature #1080 and #1227)
184:
185: * tests/results/: 182.processed, 324.processed: undefined method ->
186: <type> method not found exception (related to feature #1080)
187:
188: * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
189: pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
190: "element can not be fetched from" for them, "field not found" for
191: all other types (related to bug #1227)
192:
193: 2023-10-03 moko
194:
195: * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
196: <type> method not found" exception now thrown for static calls
197: instead of "undefined method" without class name (related to
198: feature #1080)
199:
200: 2023-10-02 moko
201:
202: * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
203: pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
204: <method name>, Comment: <type> method not found" exception now
205: thrown for all dynamic objects instead of "undefined method"
206: without class name (implements feature #1080)
207:
1.182 moko 208: 2023-10-01 moko
209:
210: * src/classes/json.C: we don't have a dynamic json object.
211:
212: 2023-09-28 moko
213:
214: * tests/: 420.html, results/261.processed, results/420.processed:
215: tests updated after bug #1228 fix reverted
216:
217: * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
218: whitespace string is hash compatible, so we don't want $s.key to
219: return a junction
220:
221: * tests/: 261.html, 420.html, results/261.processed,
222: results/420.processed: test for bug #1227 added, test updated
223: after bug #1228 fixed
224:
225: * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
226: now throws exception as $non-empty-string.field (fixes bug #1227)
227:
228: * src/types/pa_vstring.h: allow $string.method access (fixes bug
229: #1228)
230:
231: 2023-09-26 moko
232:
233: * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
234: src/classes/classes.C, src/classes/classes.awk,
235: src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
236: src/classes/double.C, src/classes/file.C, src/classes/form.C,
237: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
238: src/classes/inet.C, src/classes/int.C, src/classes/json.C,
239: src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
240: src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
241: src/classes/regex.C, src/classes/response.C,
242: src/classes/string.C, src/classes/table.C, src/classes/void.C,
243: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
244: src/include/pa_array.h, src/include/pa_base64.h,
245: src/include/pa_cache_managers.h, src/include/pa_charset.h,
246: src/include/pa_charsets.h, src/include/pa_common.h,
247: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
248: src/include/pa_dictionary.h, src/include/pa_dir.h,
249: src/include/pa_exception.h, src/include/pa_exec.h,
250: src/include/pa_globals.h, src/include/pa_hash.h,
251: src/include/pa_http.h, src/include/pa_memory.h,
252: src/include/pa_opcode.h, src/include/pa_operation.h,
253: src/include/pa_os.h, src/include/pa_pool.h,
254: src/include/pa_random.h, src/include/pa_request.h,
255: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
256: src/include/pa_sapi.h, src/include/pa_socks.h,
257: src/include/pa_sql_connection.h,
258: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
259: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
260: src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
261: src/include/pa_table.h, src/include/pa_threads.h,
262: src/include/pa_types.h, src/include/pa_uue.h,
263: src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
264: src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
265: src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
266: src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
267: src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
268: src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
269: src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
270: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
271: src/main/compile.tab.C, src/main/compile.y,
272: src/main/compile_tools.C, src/main/compile_tools.h,
273: src/main/execute.C, src/main/pa_base64.C,
274: src/main/pa_cache_managers.C, src/main/pa_charset.C,
275: src/main/pa_charsets.C, src/main/pa_common.C,
276: src/main/pa_dictionary.C, src/main/pa_dir.C,
277: src/main/pa_exception.C, src/main/pa_exec.C,
278: src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
279: src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
280: src/main/pa_request.C, src/main/pa_socks.C,
281: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
282: src/main/pa_stylesheet_connection.C,
283: src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
284: src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
285: src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
286: src/main/untaint.C, src/main/helpers/simple_folding.pl,
287: src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
288: src/targets/apache/mod_parser3_core.C,
289: src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
290: src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
291: src/types/pa_method.h, src/types/pa_property.h,
292: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
293: src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
294: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
295: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
296: src/types/pa_vcookie.h, src/types/pa_vdate.C,
297: src/types/pa_vdate.h, src/types/pa_vdouble.h,
298: src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
299: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
300: src/types/pa_vhash.C, src/types/pa_vhash.h,
301: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
302: src/types/pa_vimage.C, src/types/pa_vimage.h,
303: src/types/pa_vint.h, src/types/pa_vjunction.C,
304: src/types/pa_vjunction.h, src/types/pa_vmail.C,
305: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
306: src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
307: src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
308: src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
309: src/types/pa_vobject.h, src/types/pa_vregex.C,
310: src/types/pa_vregex.h, src/types/pa_vrequest.C,
311: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
312: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
313: src/types/pa_vstateless_class.h,
314: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
315: src/types/pa_vstatus.h, src/types/pa_vstring.C,
316: src/types/pa_vstring.h, src/types/pa_vtable.C,
317: src/types/pa_vtable.h, src/types/pa_vvoid.C,
318: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
319: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
320: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
321: src/types/pa_wwrapper.h: copyright, authors actualized
322:
1.181 moko 323: 2023-08-20 moko
324:
325: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
326: commited (related to feature #1219)
327:
328: 2023-08-16 moko
329:
330: * src/main/pa_random.C: replaced clock precision with monotonicity
331: counter, good for Windows version with low clock frequency
332: (related to feature #1229)
333:
334: 2023-08-15 moko
335:
336: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
337: fixes related to feature #1229
338:
339: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
340: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
341: (implements feature #1229)
342:
1.180 moko 343: 2023-08-02 moko
344:
345: * tests/: results/417.processed, 417.html: test for empty string
346: match after last char added (related to bug #1224)
347:
348: * src/main/pa_string.C: avoid prestart++ after last char on zero
349: length match (related to bug #1224)
350:
1.179 moko 351: 2022-11-22 moko
352:
353: * tests/: 419.html, results/419.processed: test for L_URI and path
354: removeal from filename added (related to bug #1204)
355:
356: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
357: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
358: attribute value, L_URI should be used
359:
1.178 moko 360: 2022-09-21 moko
361:
362: * src/targets/cgi/parser3.C: more clear error messages
363:
364: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
365: SAPI_Info will return 0 in read_post and post_size !=
366: content_length will be thrown
367:
1.177 moko 368: 2022-08-23 moko
369:
370: * src/types/pa_vmail.C: .tables addes as .raw contains only last
371: header value
372:
373: 2022-08-22 moko
374:
375: * tests/: 418.html, results/418.processed: test for
376: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
377: to #1225)
378:
379: * src/classes/hash.C: keep old behavoir by default
380:
381: * src/classes/hash.C: ^hash_a.intersection[hash_b;
382: $.order[self|arg] ] added (implements #1215)
383:
1.176 moko 384: 2022-03-21 moko
385:
386: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
387: xmlInitCharEncodingHandlers is called in libxml static
388: initializers before gc_substitute_memory_management_functions in
389: pa_globals and thus gc may not see reference to our
390: xmlCharEncodingHandler and free it.
391:
1.175 moko 392: 2022-01-26 moko
393:
394: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
395:
1.174 moko 396: 2021-12-28 moko
397:
398: * tests/: 417.html, results/417.processed: test for empty string
399: match added (related to bug #1224)
400:
401: * src/main/pa_string.C: empty string match now works (fixes bug
402: #1224)
403:
1.173 moko 404: 2021-12-24 moko
405:
406: * tests/: 415_dir/29.p, results/415.processed: yet another test
407:
408: 2021-12-23 moko
409:
410: * src/: classes/table.C, main/pa_request.C: warnings war
411:
412: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
413: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
414:
415: 2021-12-21 moko
416:
417: * tests/: 416.html, results/416.processed: test for ^break[] in
418: ^hash/table.select[] (related to feature #1222)
419:
420: * src/classes/: hash.C, table.C: ^break[] support for
421: ^hash/table.select[] (implements feature #1222)
422:
1.172 moko 423: 2021-11-30 moko
424:
425: * src/targets/cgi/parser3.C: default sock_ready interval changed to
426: 0.5 sec
427:
1.171 moko 428: 2021-11-10 moko
429:
430: * tests/results/415.processed: more syntax errors tests added
431:
432: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
433: 28.p: minor syntax error tests
434:
435: * src/main/pa_exception.C: pa_strdup added for compatibility
436:
437: * src/classes/curl.C: hint to call ^curl:options[
438: $.library[correct.libcurl.so.name] ] added if default load fails.
439:
440: 2021-11-09 moko
441:
442: * src/main/compile.y: error message can be on stack
443:
444: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
445:
446: * src/main/pa_charset.C: memcpy is more correct and efficient in
447: this case then strncpy
448:
449: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
450: instead of strcpy where possible
451:
452: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
453: used to avoid MAX_STRING limit in Exception comment
454:
455: * tests/results/415.processed: compiler exceptions are no longer
456: limited to MAX_STRING
457:
458: * src/main/: compile.y, compile_tools.h: Parse_control uses const
459: char * instead of fixed buffer
460:
461: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
462: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
463: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
464: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
465: results/415.processed: tests for parser.compile exceptions added
466:
467: 2021-11-08 moko
468:
469: * src/: classes/math.C, include/pa_common.h, main/compile.y,
470: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
471: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
472: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
473: drawbacks
474:
1.170 moko 475: 2021-11-06 moko
476:
477: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
478: (implements feature #1219)
479:
480: * tests/: 414.html, results/414.processed: test for
481: ^hash.rename[from;to] added (related to feature #1144)
482:
483: 2021-11-05 moko
484:
485: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
486: (related to feature #1144)
487:
488: 2021-11-04 moko
489:
490: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
491: added (implements feature #1144)
492:
1.169 moko 493: 2021-10-19 moko
494:
495: * tests/: 413.html, results/413.processed: test for hash no longer
496: is accepted as file parameter (related to bug #1218)
497:
498: * src/: classes/curl.C, classes/file.C, classes/image.C,
499: classes/math.C, classes/xdoc.C, types/pa_value.C,
500: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
501: longer is accepted as file parameter (fixes bug #1218)
502:
1.168 moko 503: 2021-07-19 moko
504:
505: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
506: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
507:
1.167 moko 508: 2021-04-16 moko
509:
510: * src/types/pa_vmail.C: message can be null when e-mail is broken,
511: processing it leads to assertions.
512:
1.166 moko 513: 2021-03-25 moko
514:
515: * tests/: 412.html, results/412.processed: test to demonstrate bug
516: #1213
517:
1.165 moko 518: 2021-02-12 moko
519:
520: * tests/: 360.html, results/360.processed, results/363.processed:
521: parser method call in expression mode no longer differs from call
522: in string mode (related to feature #1211)
523:
524: 2021-02-11 moko
525:
526: * src/types/pa_vmail.C: mail parsing with Windows line endings
527: fixed (bug #1212)
528:
529: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
530: when called $v[^test[]] vs $v(^test[]), numbers are converted to
531: strings in both calls (implements feature #1211)
532:
1.164 moko 533: 2021-01-28 moko
534:
535: * buildall, etc/auto.p.in: to remove last patch in debian package
536:
537: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
538: 3.4.7b
539:
1.162 moko 540: 2021-01-21 moko
541:
542: * src/main/pa_http.C: no alarm() in file::load when web server mode
543: is MULTITHREADED
544:
1.157 moko 545: 2021-01-20 moko
546:
1.161 moko 547: * src/targets/apache/mod_parser3.c: it is more correct to recommend
548: 'a2enmod mpm_prefork'
549:
1.160 moko 550: * src/targets/apache/mod_parser3.c: prefork name is now
551: 'libapache2-mpm-itk'
552:
553: * src/targets/apache/mod_parser3_core.C: last regular malloc
554: removed
555:
1.159 moko 556: * src/targets/isapi/Makefile.am: -pa_threads.C
557:
1.158 moko 558: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
559: 3.4.6
560:
1.157 moko 561: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
562:
563: * etc/auto.p.in: @config[result] added to simplify $cfg change in
564: /httpd.p
565:
566: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
567: ^use[/httpd.p] + optional ^preprocess[] (related to feature
568: #1203)
569:
570: 2021-01-19 moko
571:
572: * buildall: --disable-parallel-mark added to avoid "number of
573: processors" threads creation for heap marking as it conflicts
574: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
575: limits threads)
576:
1.156 moko 577: 2021-01-16 moko
578:
579: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
580: main/pa_globals.C, main/pa_memory.C,
581: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
582: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
583: feature #1209)
584:
585: 2021-01-15 moko
586:
587: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
588: 3.4.6rc
589:
590: * src/classes/json.C: get_delim added for delimiter caching (10%
591: faster on large json)
592:
593: 2021-01-14 moko
594:
595: * operators.txt: updated with 3.4.6 changes
596:
597: * tests/results/224.processed: test result modified after
598: today(shift) implemented
599:
600: * tests/: 407.html, results/407.processed: test for ^hash.select
601: option $.default(bool) added (related to feature #1172)
602:
603: * src/classes/hash.C: ^hash.select option $.default(bool) added
604: (related to feature #1172)
605:
606: * tests/: 141.html, results/141.processed: test modified for
607: feature #1185.
608:
609: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
610: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
611: options $.lower(bool) (implements feature #1185)
612:
613: 2021-01-11 moko
614:
615: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
616: #1192)
617:
618: * tests/: 411.html, results/411.processed: test for ^date::today(N)
619: added (related to feature #1192)
620:
1.155 moko 621: 2021-01-05 moko
622:
623: * tests/: 270.html, results/270.processed: test modified to work
624: under Windows
625:
626: * tests/: 390.html, 395.html, results/395.processed: tests updated
627: 4 windows
628:
629: * tests/: 410.html, results/410.processed: test for
630: $CLASS-GETTER-PROTECTED(false) added
631:
632: 2021-01-04 moko
633:
634: * tests/: 409.html, results/409.processed, results/auto.p: test for
635: $MAIN:LOCALS(true) added
636:
1.154 moko 637: 2021-01-03 moko
638:
639: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
640: types/pa_vclass.h, types/pa_vstateless_class.C,
641: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
642: +LOCALS. $main -> $MAIN in exception texts (implements feature
643: #1207)
644:
645: 2021-01-02 moko
646:
647: * etc/auto.p.in: minor
648:
649: * src/main/pa_request.C: sending headers only after opening file to
650: allow error reporting if file was not opened (foreign group,
651: etc).
652:
653: 2020-12-31 moko
654:
655: * src/: include/pa_request.h, main/pa_request.C,
656: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
657:
658: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
659: main/pa_request.C: get_class_ref added and used
660:
661: * etc/auto.p.in: @CLASS httpd added
662:
663: * etc/auto.p.in: @auto[] is now first
664:
665: 2020-12-30 moko
666:
667: * tests/: 408.html, results/408.processed: test for bug #1166
668: (windows only) added
669:
670: * src/main/pa_common.C: create_dir_for_file should not create dir
671: for trailing / (fixes bug #1166)
672:
673: * tests/: 341.html, results/341.processed: tests for
674: ^nameless_table.hash[] added (related to feature #1138)
675:
676: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
677: (implements feature #1138), extra fields in named tables no
678: longer ignored (implements feature #1138)
679:
680: * tests/results/390.processed: updated after exception text change
681:
682: 2020-12-29 moko
683:
684: * tests/: 407.html, results/407.processed: +$._default check
685:
686: * src/classes/hash.C: keep $_default in ^hash.reverse[]
687:
688: * tests/: 407.html, results/407.processed: test for ^hash.select[]
689: and ^hash.reverse[] added (releated to feature #1172)
690:
691: * src/classes/hash.C:
692: ^hash.select[key;value](bool-condition)[options hash] +
693: ^hash.reverse[] added (implements feature #1172)
694:
695: * src/types/pa_vtable.h: warning war
696:
697: * src/include/pa_config_fixed.h: win32 fix
698:
1.153 moko 699: 2020-12-27 moko
700:
701: * tests/: 406.html, results/406.processed: test results updated
702:
703: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
704: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
705: spelling
706:
707: 2020-12-26 moko
708:
709: * tests/: 406.html, results/406.processed: tests for
710: ^table.rename[] added (related to feature #1148)
711:
712: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
713: ^table.rename[column name from;column name to], ^table.rename[
714: $.[column name from][column name to] ... ] added (implements
715: feature #1148)
716:
717: 2020-12-25 moko
718:
719: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
720: request_info now on stack to avoid yet another THREAD_LOCAL
721: memory deallocation issue (now with cookies), explained in #1203
722:
723: * src/types/pa_vcookie.C: fields should be inited
724:
725: 2020-12-24 moko
726:
727: * src/include/pa_stylesheet_connection.h: looks like
728: xsltFreeStylesheet leads to memory double-free. If so, it's for
729: sure libxml bug, but we have GC anyway, so we just remove this
730: call and see...
731:
732: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
733: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
734: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
735: abort.c:65:8 frame #3: 0x00000000004da663
736: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
737: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
738: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
739: malloc.c:617:9 frame #5: 0x0000000000577f0c
740: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
741: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
742: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
743: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
744: frame #8: 0x000000000050d35c
745: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
746: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
747: frame #10: 0x00000000004436e5
748: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
749: [inlined]
750: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
751: pa_stylesheet_connection.h:62:3
752:
753: 2020-12-23 moko
754:
755: * src/classes/image.C: ^image::measure[; $.video() ] option added
756:
757: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
758: ^image::measure[; $.video(true) ] added
759:
760: * src/main/pa_exec.C: not cleared automatically in multithreaded
761: httpd mode for unknown reasons
762:
763: 2020-12-22 moko
764:
765: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
766: error_log uri of currently processed document", but never used
767: and conflicts with how libgc stops threads on FreeBSD (#define
768: SIG_SUSPEND SIGUSR1), thus removed.
769:
770: 2020-12-21 moko
771:
772: * src/main/pa_request.C: +comment
773:
1.151 moko 774: 2020-12-20 moko
775:
1.152 moko 776: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
777: it is more safe to have versions of pa_strdup with one and two
778: arguments, as helper_length=0 not always mean that strlen()
779: should be called, but means zero.
780:
781: * src/targets/isapi/parser3isapi.C: minor
782:
783: * src/main/pa_http.C: +valid_http_method
784:
1.151 moko 785: * src/: include/pa_http.h, main/pa_http.C,
786: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
787:
788: 2020-12-17 moko
789:
790: * tests/: 405.html, results/405.processed: test for split by regex
791: added (related to feature #1160)
792:
793: * src/classes/string.C: split by regex implemented (feature #1160)
794:
795: * src/classes/string.C: minor
796:
797: * tests/: 404.html, results/404.processed: test for whitespace
798: string is now OK for table argument (related to feature #1169)
799:
800: * src/: classes/image.C, classes/string.C, classes/table.C,
801: types/pa_vmethod_frame.C: whitespace string is now OK for table
802: argument (as with hash) (implements feature #1169)
803:
804: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
805: limit for comment (fixes bug #1102)
806:
807: * src/targets/cgi/parser3.C: +HAVE_TLS check
808:
809: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
810:
811: * src/include/pa_config_includes.h: HAVE_TLS used
812:
813: * configure.ac: +TLS check
814:
815: * src/main/pa_http.C: content logging added
816:
817: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
818: clear_response_headers added
819:
820: 2020-12-16 moko
821:
822: * buildall: as we now use threads, libatomic_ops still required for
823: some OS.
824:
825: * src/main/pa_request.C: whitespace
826:
827: * src/: include/pa_request.h, main/pa_request.C:
828: Request::Exception_trace::table extracted and used
829:
830: * src/main/pa_request.C: moving output_result call outside of try
831: as network exceptions should not be handled by parser code
832:
833: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
834: logging network exchange
835:
836: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
837: via network if it was network write error.
838:
839: * src/targets/cgi/parser3.C: log -> pa_log
840:
841: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
842:
843: * src/main/pa_threads.C: getpid() if no gettid() found
844:
845: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
846: we need to ignore "void" connections from browsers (browsers open
847: connections in advance and they will be empty if user does not
848: request more pages)
849:
850: 2020-12-15 moko
851:
852: * src/targets/cgi/parser3.C: avoid previous uri in logs
853:
854: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
855: RequestController not needed in httpd mode
856:
857: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
858: classes/classes.h, classes/curl.C, classes/date.C,
859: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
860: classes/hashfile.C, classes/image.C, classes/inet.C,
861: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
862: classes/memcached.C, classes/memory.C, classes/op.C,
863: classes/reflection.C, classes/regex.C, classes/response.C,
864: classes/string.C, classes/table.C, classes/void.C,
865: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
866: include/pa_array.h, include/pa_base64.h,
867: include/pa_cache_managers.h, include/pa_charset.h,
868: include/pa_charsets.h, include/pa_common.h,
869: include/pa_config_fixed.h, include/pa_config_includes.h,
870: include/pa_dictionary.h, include/pa_dir.h,
871: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
872: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
873: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
874: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
875: include/pa_request_charsets.h, include/pa_request_info.h,
876: include/pa_sapi.h, include/pa_socks.h,
877: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
878: include/pa_stack.h, include/pa_string.h,
879: include/pa_stylesheet_connection.h,
880: include/pa_stylesheet_manager.h, include/pa_symbols.h,
881: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
882: include/pa_uue.h, include/pa_xml_exception.h,
883: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
884: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
885: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
886: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
887: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
888: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
889: main/compile.tab.C, main/compile.y, main/compile_tools.C,
890: main/compile_tools.h, main/execute.C, main/pa_base64.C,
891: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
892: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
893: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
894: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
895: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
896: main/pa_sql_driver_manager.C, main/pa_string.C,
897: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
898: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
899: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
900: main/untaint.C, sql/pa_sql_driver.h,
901: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
902: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
903: targets/isapi/parser3isapi.C, types/pa_junction.h,
904: types/pa_method.h, types/pa_property.h, types/pa_value.C,
905: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
906: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
907: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
908: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
909: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
910: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
911: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
912: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
913: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
914: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
915: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
916: types/pa_vmemory.h, types/pa_vmethod_frame.C,
917: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
918: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
919: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
920: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
921: types/pa_vstateless_object.h, types/pa_vstatus.C,
922: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
923: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
924: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
925: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
926: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
927:
928: * src/main/pa_request.C: old compilers support
929:
930: * tests/: 362.html, results/362.processed: test updated after
931: changes after upgrade to libxml2-2.9.9 were made (related to bug
932: #1108)
933:
934: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
935: removed, as xsltFreeStylesheet has side effects on original doc.
936: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
937: not updated after xdoc modification (part 3 of test 362).
938: (related to bug #1108)
939:
940: * src/targets/isapi/parser3isapi.C: +pa_strcat
941:
942: * src/: classes/memory.C, include/pa_memory.h,
943: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
944: PA_GC_GCOLLECT used
945:
946: * src/include/pa_memory.h: +PA_GC_COLLECT
947:
948: * src/targets/cgi/parser3.C: msvs support fixes
949:
950: * src/lib/gc/include/gc.h: more cleanup
951:
952: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
953:
954: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
955: targets/cgi/parser3.C: $main:HTTPD.mode implemented
956:
957: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
958:
959: * configure.ac: pthread.h added to checked headers
960:
961: * src/classes/table.C: string stream is back :)
962:
963: * src/classes/memory.C: GC_generate_random_backtrace no longer
964: exists
965:
966: * src/main/pa_globals.C: GC_dont_gc replaced
967:
968: * src/lib/gc/include/gc.h: major cleanup, only used functions are
969: left to simplify adding new functions. depricated GC_dont_gc
970: replaced with GC_disable and GC_enable calls.
971:
972: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
973: CORD_from_file* not used and thus removed
974:
975: * src/lib/gc/include/gc_allocator.h: minor cleanup
976:
977: 2020-12-14 moko
978:
979: * src/classes/: curl.C, memory.C, table.C: every TLS should be
980: referenced elsewhere, or GC will collect it.
981:
982: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
983: main/pa_xml_io.C: bugfix: TLS variables should be referenced
984: elsewhere, or GC will collect them (and we'll get GPF in
985: multithreaded enviroment). May be it can be also fixed by some
986: GC call, not sure. But this fix costs nothing (but hours of
987: debugging to find the issue :).
988:
1.150 moko 989: 2020-12-11 moko
990:
991: * configure.ac: gettid() check added
992:
993: * src/main/pa_threads.C: HAVE_GETTID used
994:
995: * src/include/pa_config_auto.h.in: +HAVE_GETTID
996:
997: * src/: include/pa_threads.h, main/pa_threads.C: now unified
998: version for isapi/cgi/apache
999:
1000: * buildall: threads are now required.
1001:
1002: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
1003: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1004: main/main.vcproj: pa_threads.C moved to main
1005:
1006: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
1007: isapi/pa_threads.C: pa_threads.C moved to main
1008:
1009: * src/: main/Makefile.am, targets/cgi/Makefile.am,
1010: targets/apache/Makefile.am: pa_threads.C moved to main
1011:
1012: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
1013:
1014: * src/: include/pa_stylesheet_connection.h,
1015: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
1016: and weird GPF in multithreaded httpd is gone
1017:
1018: * src/include/: pa_stylesheet_connection.h,
1019: pa_sql_driver_manager.h: whitespace
1020:
1021: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
1022:
1023: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
1024: main/pa_stylesheet_manager.C: whitespace, warning war
1025:
1026: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
1027: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
1028: parser_multithreaded never used
1029:
1030: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
1031:
1032: 2020-12-10 moko
1033:
1034: * src/: include/pa_config_includes.h, include/pa_http.h,
1035: main/pa_http.C, targets/cgi/parser3.C: initial support for
1036: MULTITHREADED and PARALLEL httpd server modes
1037:
1038: * src/main/pa_globals.C: GC_java_finalization is depricated
1039:
1040: 2020-12-09 moko
1041:
1042: * etc/auto.p.in: + @httpd-main
1043:
1044: * src/: include/pa_common.h, main/pa_request.C,
1045: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
1046: work
1047:
1048: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1049: slow file_read_binary no longer used, send_range added
1050:
1051: 2020-12-08 moko
1052:
1053: * src/main/pa_request.C: >4Gb support
1054:
1055: * src/targets/cgi/parser3.C: msvc warning war
1056:
1057: * src/: include/pa_config_includes.h, main/pa_http.C,
1058: main/pa_request.C: msvc warnings war
1059:
1060: * src/classes/image.C: warning war
1061:
1062: * src/classes/table.C: MSVC warning war
1063:
1064: * src/targets/cgi/parser3.C: msvc warnings war
1065:
1066: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
1067: added
1068:
1.149 moko 1069: 2020-12-07 moko
1070:
1.150 moko 1071: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
1072: avoid logging beside system-wide auto.p
1073:
1074: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
1075:
1076: * configure, configure.ac, src/include/pa_config_auto.h.in:
1077: configure options added:
1078:
1079: --with-system-cfg=FILE to specify system-wide auto.p
1080: --with-system-log=FILE to specify system-wide parser3.log
1081:
1082: * Makefile.am: bin no longer exists
1083:
1084: * configure, configure.ac: auto.p moved to etc to simplify debian
1085: package
1086:
1087: * buildall: auto.p and parser3.charsets moved to their default
1088: location after install
1089:
1090: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
1091:
1092: * aclocal.m4, configure: automake 1.15 -> 1.16.1
1093:
1.149 moko 1094: * src/targets/cgi/parser3.C: locate_config call returned to
1095: original place as it requires pa_thread_request() under Windows
1096:
1097: * src/targets/cgi/parser3.C: renaming
1098:
1099: 2020-12-06 moko
1100:
1101: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
1102: check added
1103:
1104: 2020-12-04 moko
1105:
1106: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
1107: main/pa_request.C: unified uint64_t lseek implemented to support
1108: >4Gb files under x86, including Windows
1109:
1110: 2020-12-02 moko
1111:
1112: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
1113: with max_file_size
1114:
1115: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1116: support for processing files sized >4Gb on 32 bit planforms
1117:
1118: * tests/399.html: file moved
1119:
1120: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
1121:
1122: * src/targets/cgi/pa_sapi_info.h: warning war
1123:
1124: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
1125: warning war
1126:
1127: 2020-12-01 moko
1128:
1129: * src/classes/image.C: mp4 extended size (>4Gb) support added
1130:
1131: * src/classes/image.C: for "size not found" exception to be shown
1132: if size not found until eof
1133:
1134: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
1135: bit linux)
1136:
1137: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
1138: #1188)
1139:
1140: 2020-11-30 moko
1141:
1142: * src/classes/image.C: definitions moved closer to code
1143:
1144: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
1145: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
1146: 395_dir/3_VP8X.webp, results/395.processed,
1147: results/396.processed: tests for ^image::measure[] .webp support
1148: added, all image files moved into one directory (related to
1149: feature #1188)
1150:
1151: * src/classes/image.C: ^image::measure[] now supports webp (feature
1152: #1188)
1153:
1.148 moko 1154: 2020-11-29 moko
1155:
1156: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
1157: processing, unnessesary defines removed
1158:
1159: 2020-11-24 moko
1160:
1161: * tests/results/: 099.processed, 100.processed, 205.processed,
1162: 309.processed, 310.processed: Content-Disposition: inline
1163: returned
1164:
1165: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
1166: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
1167: ] added (related to bug #1204)
1168:
1169: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
1170: ] supported to avoid Content-Disposition: inline;
1171: filename="<file>.ext" but still set Content-Type for ext (related
1172: to bug #1204)
1173:
1.147 moko 1174: 2020-11-22 moko
1175:
1176: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
1177: types/pa_vfile.C: pa_filename added to avoid useless rsplit
1178:
1179: * src/main/pa_request.C: content_disposition_inline returned.
1180:
1181: 2020-11-17 moko
1182:
1183: * src/main/pa_request.C: empty main method name support
1184:
1185: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
1186: config_handler added, stdout flush added.
1187:
1188: 2020-11-16 moko
1189:
1190: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
1191:
1192: * tests/results/: 099.processed, 205.processed, 237.processed,
1193: 309.processed, 310.processed: Content-Disposition: inline is not
1194: required and should not contain filename="<name>"
1195:
1196: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
1197: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1198: targets/isapi/parser3isapi.C: pa_strcat implemented and used
1199:
1.146 moko 1200: 2020-11-14 moko
1201:
1202: * src/targets/cgi/parser3.C: spelling
1203:
1204: * src/targets/cgi/parser3.C: renaming
1205:
1206: * src/targets/cgi/parser3.C: args_skip removed, locate_config
1207: relocated
1208:
1209: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
1210: before request processing, which is weired
1211:
1212: 2020-11-13 moko
1213:
1214: * src/main/pa_http.C: pa_recv added with timeout support, thus read
1215: copied in httpd.
1216:
1217: 2020-11-12 moko
1218:
1219: * src/main/pa_http.C: ALARM code unified to be used in httpd
1220:
1221: * src/: include/pa_request.h, main/pa_request.C,
1222: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
1223:
1224: * src/main/pa_http.C: URI validation added
1225:
1226: * src/targets/cgi/parser3.C: filespec_to_process now variable,
1227: can't be empty but can be null. httpd-main is now main method
1228: name for httpd mode
1229:
1230: 2020-11-11 moko
1231:
1232: * src/main/pa_request.C: path_translated can be null in httpd mode
1233:
1234: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
1235: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
1236: classes/xdoc.C, include/pa_request.h, main/execute.C,
1237: main/pa_request.C: r.absolute -> r.full_disk_path
1238:
1239: * src/targets/cgi/parser3.C: if filename to process is not
1240: specified, auto.p should be present.
1241:
1.145 moko 1242: 2020-11-03 moko
1243:
1244: * src/: classes/op.C, include/pa_request.h: unused argument removed
1245:
1246: * src/main/pa_request.C: content_disposition_inline is the default,
1247: not required.
1248:
1.144 moko 1249: 2020-10-29 moko
1250:
1251: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
1252: ^use[file; $.main(true) ] implemented for auto.p processing and
1253: path_translated changing to correct relative files path
1254: calculation in httpd mode
1255:
1256: * src/: include/pa_request.h, main/pa_request.C:
1257: fail_on_read_problem removed, as it allways true, as if should
1258: be.
1259:
1260: * src/: include/pa_request.h, main/pa_request.C,
1261: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1262: targets/isapi/parser3isapi.C: clearing config_filespec when
1263: config was not found, thus flag not required and removed.
1264:
1265: 2020-10-28 moko
1266:
1267: * tests/: 402.html, results/402.processed: error reporting test
1268:
1269: * src/main/execute.C: better error reporting when
1270: $result[^hash::create[]] in @main.
1271:
1272: * src/main/: execute.C, pa_request.C: frame.result() should be used
1273: + minor optimization
1274:
1275: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
1276: main/pa_xml_io.C: execute_*_method simplified and unified
1277:
1278: 2020-10-27 moko
1279:
1280: * tests/: 306.html, results/306.processed: a bit more testing. :)
1281:
1282: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
1283: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
1284: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
1285: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
1286: types/pa_vmethod_frame.h, types/pa_vobject.C,
1287: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
1288: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
1289: longer used in object-prototype mode
1290:
1291: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
1292: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
1293: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
1294: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
1295: $form:name[value] features
1296:
1.143 moko 1297: 2020-10-18 moko
1298:
1299: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
1300:
1301: 2020-10-15 moko
1302:
1303: * src/main/pa_http.C: url no longer needed as
1304: ALTER_EXCEPTION_SOURCE is used
1305:
1306: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
1307: main/pa_http.C: check_file_size filespec is now optional
1308:
1309: * src/: classes/curl.C, include/pa_exception.h,
1310: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
1311: ALTER_EXCEPTION_COMMENT added for better error reporting
1312:
1313: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
1314: results/346-curl.processed, results/379-curl.processed,
1315: results/379.processed: test results updated as load now provides
1316: better error reporting + curl responses updated
1317:
1318: 2020-10-14 moko
1319:
1320: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
1321: main/pa_string.C, targets/apache/mod_parser3_core.C,
1322: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
1323: checked. 10 is now default base, no hex autodetect by default
1324:
1325: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1326: connection socket closing in destructor + accept exception
1327: handling
1328:
1329: * src/targets/cgi/parser3.C: warning war
1330:
1331: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
1332: main/pa_request.C, targets/apache/mod_parser3_core.C,
1333: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
1334: exception handling unified
1335:
1336: 2020-10-13 moko
1337:
1338: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
1339: autodetection
1340:
1341: * src/targets/apache/mod_parser3_core.C: reverted to atoi
1342:
1343: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
1344:
1345: * src/main/pa_http.C: warning war
1346:
1.142 moko 1347: 2020-10-12 moko
1348:
1.143 moko 1349: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
1350: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
1351: unhandled exception code optimization
1352:
1353: * src/targets/cgi/parser3.C: request_info now global variable
1354:
1355: * src/main/pa_http.C: http_read_response moved to HTTP_response
1356: class
1357:
1358: * src/: include/pa_http.h, main/pa_http.C,
1359: targets/cgi/pa_sapi_info.h: read_post implemented
1360:
1.142 moko 1361: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1362: [host:]port syntax support in httpd mode
1363:
1364: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
1365: targets/cgi/parser3.C: populate_env added
1366:
1367: * src/include/pa_hash.h: to make get(char *) compiling in
1368: HashStringString
1369:
1370: 2020-10-10 moko
1371:
1372: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
1373: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
1374:
1375: * src/: include/pa_http.h, include/pa_request_info.h,
1376: main/pa_http.C, main/pa_string.C,
1377: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
1378: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1379: types/pa_vrequest.C: initial httpd mode implementation
1380:
1.141 moko 1381: 2020-10-04 moko
1382:
1383: * src/targets/cgi/parser3.C: options together
1384:
1385: 2020-09-30 moko
1386:
1387: * src/main/pa_http.C: renamed
1388:
1.140 moko 1389: 2020-08-14 moko
1390:
1391: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
1392: src/targets/cgi/Makefile.am: no httpd as separate library
1393:
1394: 2020-08-13 moko
1395:
1396: * src/targets/cgi/parser3.C: SAPI::die used in exception in
1397: unhandled exception handler to report 500 instead of 200 it was
1398: before.
1399:
1400: * src/targets/apache/mod_parser3_core.C: minor cleanup
1401:
1402: * src/: include/pa_sapi.h, main/untaint.C,
1403: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1404: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
1405: thus replaced with SAPI::die and removed
1406:
1407: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
1408: cgi/parser3.C: whitespace
1409:
1410: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
1411:
1412: 2020-08-12 moko
1413:
1414: * src/targets/cgi/parser3.C: duplicate info in signal logging
1415: removed, whitespace was: SIGPIPE received while executing code.
1416: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
1417: cl=0]
1418:
1419: * parser3.sln: + httpd.vcproj
1420:
1421: 2020-08-11 moko
1422:
1423: * src/targets/cgi/Makefile.am: +libhttpd
1424:
1425: * configure.ac, src/lib/Makefile.am: +libhttpd
1426:
1.139 moko 1427: 2020-07-13 moko
1428:
1429: * tests/: 401.html, results/401.processed: test for hash key does
1430: not keep language, but tainted in foreach.
1431:
1.138 moko 1432: 2020-07-01 moko
1433:
1434: * tests/: 235.html, results/235.processed: test result updated as
1435: messages before attachments implemented (feature #1176)
1436:
1.137 moko 1437: 2020-06-27 moko
1438:
1439: * tests/: 400.html, results/400.processed: test updated to check
1440: ^return{code}
1441:
1442: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
1443: fixed
1444:
1445: 2020-06-26 moko
1446:
1447: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
1448: added (related to https://www.parser.ru/forum/?id=85319)
1449:
1450: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
1451: when $result assignment was last statement in the method
1452: (https://www.parser.ru/forum/?id=85319)
1453:
1.136 moko 1454: 2020-05-23 moko
1455:
1456: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
1457: whitespace, unused level removed
1458:
1459: 2020-05-19 moko
1460:
1461: * src/types/pa_vmail.C: whitespace
1462:
1463: * src/types/pa_vmail.C: files should be processed last (related to
1464: feature #1176)
1465:
1.135 moko 1466: 2020-05-12 moko
1467:
1468: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
1469: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
1470:
1471: * configure.ac: FreeBSD1X.X check added to avoid
1472: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
1473:
1.134 moko 1474: 2020-02-26 moko
1475:
1476: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
1477: compilation issue (related to bug #1201)
1478:
1479: * src/main/pa_common.C: entry_readable -> entry_exists,
1480: undocumented access(fname, R_OK) call removed (fixes bug #1201)
1481: -f and -d now works under Windows in UTF-8 with Russian
1482: filenames.
1483:
1484: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
1485: advice (related to feature #1199)
1486:
1487: 2020-02-25 moko
1488:
1489: * buildall: --silent removed
1490:
1491: * configure.ac: gmime-3.0 support
1492:
1493: * buildall: --with-system-mailreceive option added to build with
1494: system libgmime
1495:
1496: * src/types/pa_vmail.C: avoiding
1497: https://github.com/jstedfast/gmime/issues/83 "feature" (related
1498: to feature #1199)
1499:
1.133 moko 1500: 2020-02-18 moko
1501:
1502: * src/classes/op.C: windows x64 debug mode compile fix
1503:
1504: * src/main/pa_globals.C: no longer required due to -MD -> -MT
1505: change (releated to feature #1200)
1506:
1507: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1508: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
1509: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
1510: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
1511: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1512: targets/apache/ApacheModuleParser3.vcproj,
1513: targets/apache/ApacheModuleParser3Core.vcproj,
1514: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1515: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
1516: dependency (related to feature #1200)
1517:
1.132 moko 1518: 2020-02-12 moko
1519:
1520: * src/types/pa_vmail.C: minimize diff
1521:
1522: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
1523: #1199)
1524:
1.131 moko 1525: 2020-01-18 moko
1526:
1527: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
1528:
1.130 moko 1529: 2019-12-28 moko
1530:
1531: * src/targets/cgi/parser3.C: avoid empty ?
1532:
1533: 2019-12-27 moko
1534:
1535: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
1536: DOCUMENT_ROOT (related to feature #1164)
1537:
1538: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
1539: fcgiwrap setup (implements feature #1164)
1540:
1541: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
1542: but no issues found (related to feature #1164)
1543:
1544: * src/targets/cgi/parser3.C: actualized
1545:
1546: 2019-12-26 moko
1547:
1548: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
1549: removed
1550:
1551: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
1552: removed
1553:
1554: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
1555: allocation errors, we don't want default gc warnings (without
1556: timestamp and URI).
1557:
1558: * src/: classes/memory.C, main/pa_globals.C,
1559: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1560: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
1561: pa_globals_init
1562:
1563: * src/main/pa_globals.C: setup_hex_value() removed, static array
1564: initialization used (optimization)
1565:
1566: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
1567: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
1568: pa_socks_init/pa_socks_done moved inside pa_globals_init
1569: (optimization)
1570:
1.129 moko 1571: 2019-12-09 moko
1572:
1573: * src/include/pa_config_fixed.h: warning war
1574:
1.128 moko 1575: 2019-12-08 moko
1576:
1577: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
1578: process grammar under Unix.
1579:
1580: 2019-12-07 moko
1581:
1582: * tests/389.html: For Windows XP. :)
1583:
1584: * tests/388-sql.html: Windows compatibility added
1585:
1586: 2019-12-06 moko
1587:
1588: * src/targets/cgi/parser3.C: warning war
1589:
1590: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
1591: == sizeof(CORD)) to avoid aligning bugs in future
1592:
1593: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
1594: XML_STATIC
1595:
1596: * src/include/pa_request.h: StackItem() not required
1597:
1598: * src/include/pa_stack.h: warning war
1599:
1600: * src/include/pa_config_includes.h: GCC warning silenced
1601:
1602: * src/include/pa_memory.h: warning war: the program should also
1603: define 'void operator delete [](void*, std::size_t)'
1604: [-Wsized-deallocation]
1605:
1606: * src/types/: pa_vregex.h, pa_vtable.h: warning war
1607:
1608: * src/classes/string.C: not reqired cast removed
1609:
1610: * src/classes/string.C: not reqired cast removed
1611:
1612: 2019-12-05 moko
1613:
1614: * src/lib/sdbm/pa_file_io.C: warning war
1615:
1616: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
1617: enum Language : size_t - required for VS2015+ to make
1618: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
1619: without it (related to feature #1198)
1620:
1621: 2019-12-04 moko
1622:
1623: * src/main/pa_base64.C: unsigned char -> uchar
1624:
1625: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
1626: as other libs
1627:
1628: * src/include/pa_version.h: +amd64
1629:
1630: 2019-12-03 moko
1631:
1632: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
1633: release
1634:
1635: * src/include/pa_config_includes.h: warning war
1636:
1637: * src/classes/image.C: warning war
1638:
1639: * src/main/pa_globals.C: x64 libs support
1640:
1641: * src/include/pa_config_includes.h: warning war
1642:
1643: * src/types/pa_method.h: warning war
1644:
1.127 moko 1645: 2019-11-28 moko
1646:
1647: * src/classes/math.C: vs2003 compatibility + warning war
1648:
1649: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
1650: libxml2-2.9.9 (related to feature #1136)
1651:
1652: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
1653: typecast for more compatibility (related to feature #1136)
1654:
1655: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
1656: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
1657: feature #1136)
1658:
1659: 2019-11-26 moko
1660:
1661: * src/main/: compile_tools.C, compile_tools.h: invalid assert
1662: removed (it was failing in $$var case), condition added
1663:
1.126 moko 1664: 2019-11-25 moko
1665:
1666: * tests/: 397.html, 399.html, results/141.processed,
1667: results/399.processed: base64 options tested
1668:
1669: * src/: classes/math.C, main/pa_http.C: base64 options used
1670:
1671: * src/main/pa_base64.C: base64 encode rewritten, base64 options
1672: implemented (feature #986)
1673:
1674: * src/main/pa_cache_managers.C: whitespace
1675:
1676: * tests/: 397.html, 399.html, results/399.processed: tests for
1677: ^base64 encode options added (related to feature #986)
1678:
1679: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
1680: pa_base64_encode(file) removed - more memory, but faster and less
1681: code (related fo feature #986)
1682:
1683: 2019-11-24 moko
1684:
1685: * tests/: 155.html, results/155.processed: limit and offset in
1686: ^table::load[] now supported, thus test added
1687:
1688: * src/: classes/file.C, classes/table.C, include/pa_common.h,
1689: main/pa_common.C: optimization: offset and limit options parsing
1690: moved inside file_load.
1691:
1692: 2019-11-23 moko
1693:
1694: * src/: classes/file.C, classes/op.C, include/pa_common.h,
1695: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
1696: optimization: file_read replaced with simplified file_read_binary
1697:
1698: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
1699: types/pa_vform.C: whitespace
1700:
1701: * src/: include/pa_common.h, main/pa_common.C: never used params
1702: removed
1703:
1704: 2019-11-21 moko
1705:
1706: * tests/: 193.html, results/193.processed, results/389.processed:
1707: test results updated as now base64 does not discard tail without
1708: padding (related to feature #986)
1709:
1710: 2019-11-20 moko
1711:
1712: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
1713: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
1714: pa_base64_decode (related to feature #986)
1715:
1716: * tests/398.html: tests for base64 decode added (related to feature
1717: #986)
1718:
1719: * src/main/pa_base64.C: base64_decode rewritten - padding option
1720: support, padding inside base 64 supported (related to feature
1721: #096)
1722:
1723: 2019-11-19 moko
1724:
1725: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
1726: FreeBSD 12
1727:
1.125 moko 1728: 2019-11-16 moko
1729:
1730: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
1731: support added, step support removed (related to #986)
1732:
1733: 2019-11-15 moko
1734:
1735: * src/classes/math.C: using log since log2 is not present on
1736: FreeBSD < 8.4 (related to feature #1177)
1737:
1738: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
1739: pa_base64_size extracted and used for files as well (related to
1740: feature 986)
1741:
1742: 2019-11-14 moko
1743:
1744: * tests/: 397.html, results/397.processed: + content check
1745:
1746: * tests/: 141.html, results/141.processed: make test resuls more
1747: readable
1748:
1749: * tests/: 397.html, results/193.processed, results/397.processed:
1750: test results updated after \x00 character was disabled in
1751: math:convert string mode (related to feature #1177)
1752:
1753: * src/classes/: math.C, string.C: \\x00 character disabled while
1754: converting to string (as in base64, related to feature #1177)
1755:
1756: * src/classes/file.C: more correct arguments separation
1757:
1758: * src/: classes/file.C, classes/math.C, classes/string.C,
1759: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1760: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
1761: options added, but not yet implemented (related to feature #986)
1762:
1763: * src/classes/math.C: whitespace
1764:
1765: 2019-11-13 moko
1766:
1767: * tests/: 397.html, results/397.processed: +tainting test (related
1768: to feature #1177)
1769:
1770: * src/classes/math.C: as we now produce not only digits, result
1771: should be tainted (related to feature #1177)
1772:
1773: * src/main/pa_base64.C: whitespace
1774:
1775: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
1776: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1777: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
1778: implementation moved from pa_common.h and pa_common.C
1779:
1780: 2019-11-12 moko
1781:
1782: * tests/: 275.html, results/275.processed: out of range test fixed,
1783: as ^math:convert now supports arbitrary precision
1784:
1785: 2019-11-11 moko
1786:
1787: * tests/results/389.processed: uctualized error message
1788:
1789: * tests/: 389.html, 397.html, results/397.processed: tests for
1790: ^math:convert added (related to feature #1177)
1791:
1792: * src/classes/math.C: ^math:convert now supports arbitrary
1793: precision, alphabet support added (implements feature #1177)
1794:
1.124 moko 1795: 2019-11-06 moko
1796:
1797: * tests/: 181.html, results/181.processed: entities usage added,
1798: more entites load tests (related to bug #842 discussion)
1799:
1800: 2019-11-05 moko
1801:
1802: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
1803: call from xmlFileOpen if http://localhost/<file> was not found
1804: (related to bug #842)
1805:
1806: * src/main/pa_xml_io.C: rename
1807:
1808: * src/main/pa_xml_io.C: +MemoryStream constructor
1809:
1810: * src/main/pa_xml_io.C: whitespace
1811:
1.123 moko 1812: 2019-10-31 moko
1813:
1814: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
1815: XML_PARSE_NOENT) added to fix entities load, (related to feature
1816: #1181)
1817:
1.122 moko 1818: 2019-10-25 moko
1819:
1820: * tests/: 388-sql.html, results/388-sql.processed: more multiple
1821: queries tests
1822:
1823: 2019-10-24 moko
1824:
1825: * tests/: 388-sql.html, results/388-sql.processed: support for
1826: pgsql driver test
1827:
1828: * tests/: 388-sql.html, results/388-sql.processed:
1829: multi_statements=1 now tested, mysql test now supported
1830: (connection must be specified in [parser3] section in .my.cnf)
1831: related to issues #1195 and #1194
1832:
1.121 moko 1833: 2019-09-11 moko
1834:
1835: * src/classes/int.C: whitespace
1836:
1837: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
1838: exception test
1839:
1840: * tests/results/388-sql.processed: sql queries now shown (related
1841: to feature #1196)
1842:
1843: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
1844: with old parser versions.
1845:
1846: * src/: classes/file.C, classes/hash.C, classes/string.C,
1847: classes/table.C, classes/void.C, include/pa_sql_connection.h,
1848: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
1849: instead of connect string in query_event_handlers exceptions
1850: (implements feature #1196)
1851:
1.120 moko 1852: 2019-09-06 moko
1853:
1854: * tests/388-sql.html: mysql compat
1855:
1856: * src/: classes/hash.C, classes/string.C, classes/table.C,
1857: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
1858: sql_ variables declaration moved to pa_common.h
1859:
1.116 moko 1860: 2019-01-15 moko
1861:
1862: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
1863: logically sorted
1864:
1865: 2018-12-27 moko
1866:
1867: * src/include/pa_config_includes.h: warning war:
1868: -Wdeprecated-register added for C++ 17
1869:
1870: 2018-10-15 moko
1871:
1872: * configure.ac: FreeBSD 11.2 can be build with ./configure
1873: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
1874: --with-xml=/usr/local/
1875:
1876: 2018-09-24 moko
1877:
1878: * tests/: 396.html, 396.tiff, results/396.processed: test for
1879: ^image::measure[] now supports tiff added (related to feature
1880: #1188)
1881:
1882: * src/classes/image.C: ^image::measure[] now supports tiff
1883: (implements feature #1188)
1884:
1885: 2018-09-20 moko
1886:
1887: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
1888: files measure added (related to ticket #1188)
1889:
1890: * src/classes/image.C: measure of bmp files implemented (related to
1891: ticket #1188)
1892:
1893: 2018-09-18 moko
1894:
1895: * tests/: 394-curl.html, results/394-curl.processed,
1896: results/auto.p: test for bug #1187 (max_file_size check for head
1897: requests) added
1898:
1899: 2018-08-24 moko
1900:
1901: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
1902: response content-length check is required (fixes bug #1187)
1903:
1904: 2018-05-11 moko
1905:
1906: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
1907: $.append(bool) ] option added (related to feature #919)
1908:
1909: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
1910: from misha@ patch (implements feature #919)
1911:
1912: 2018-03-22 moko
1913:
1914: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
1915: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
1916: with 128kb buffer. Now works at least 12 times faster. :) May be
1917: Windows-only problem.
1918:
1919: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
1920: build fix)
1921:
1922: 2018-02-03 moko
1923:
1924: * src/main/execute.C: removes irrelevant lines from exception stack
1925: trace when exceptions occurs in assigment (fixes bug #1165)
1926:
1927: * tests/: 393.html, results/393.processed: test for behavour after
1928: "Property can not be created, already exists field with that
1929: name" exception removed (related to feature #1183)
1930:
1931: * src/types/pa_vclass.C: "Property can not be created, already
1932: exists field with that name" exception removed (implements
1933: feature #1183)
1934:
1935: 2018-01-19 moko
1936:
1937: * src/classes/string.C: whitespace
1938:
1939: * src/classes/string.C: whitespace
1940:
1941: * tests/: 392.html, results/392.processed: test for
1942: ^regex::create[$regex] added (related to feature #1135)
1943:
1944: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
1945: ^regex::create[$regex] added (implements feature #1135)
1946:
1947: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
1948: commented define added (related to feature #1157)
1949:
1950: 2018-01-17 moko
1951:
1952: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
1953:
1954: 2018-01-15 moko
1955:
1956: * tests/: 390.html, results/390.processed: real path replaced by
1957: stub
1958:
1959: * tests/: 391.html, results/391.processed: test for feature #1181
1960: (XML_PARSE_HUGE exception) added
1961:
1962: 2018-01-11 moko
1963:
1964: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
1965: XML_PARSE_HUGE option passed by default (implements feature
1966: #1181)
1967:
1968: * src/classes/string.C: whitespace
1969:
1970: 2017-12-10 moko
1971:
1972: * tests/: 389.html, 390.html, results/389.processed,
1973: results/390.processed: image code coverage tests added (related
1974: to feature #1125)
1975:
1976: 2017-12-08 moko
1977:
1978: * tests/: 346-curl.html, 388-sql.html, 389.html,
1979: results/346-curl.processed, results/388-sql.processed,
1980: results/389.processed: more code coverage tests
1981:
1982: * tests/: 264.html, results/264.processed: code coverage for
1983: ^file::exec[]
1984:
1985: 2017-12-07 moko
1986:
1987: * tests/: 174.html, 388-sql.html, 389.html,
1988: results/388-sql.processed, results/389.processed,
1989: results/174.processed: more coverage tests
1990:
1991: * src/classes/math.C: exception text actualized
1992:
1993: 2017-12-06 moko
1994:
1995: * tests/388-sql.html: $SQL can be here
1996:
1997: * tests/results/auto.p: $SQL not required here
1998:
1999: * tests/: 388-sql.html, 389.html, Makefile,
2000: results/388-sql.processed, results/389.processed, results/auto.p:
2001: code coverage tests for sql (using sqlite) and int/double/bool
2002: added (related to feature #1125)
2003:
2004: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
2005: lib/json/json.vcproj, lib/md5/md5.vcproj,
2006: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
2007: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
2008: targets/apache/ApacheModuleParser3Core.vcproj,
2009: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
2010: types/types.vcproj: gc\include no longer required
2011:
2012: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
2013: required
2014:
2015: * src/: classes/Makefile.am, classes/table.C,
2016: include/pa_config_includes.h, include/pa_string.h,
2017: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2018: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
2019: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
2020: targets/apache/Makefile.am, targets/cgi/Makefile.am,
2021: types/Makefile.am: to be sure that our version of gc.h/cord.h is
2022: used, we now include it directly
2023:
2024: 2017-12-04 moko
2025:
2026: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
2027: memcached/memcached.vcproj, punycode/punycode.vcproj,
2028: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
2029: where required
2030:
2031: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
2032: now can be used to trace memory allocations
2033:
2034: * src/: classes/table.C, include/pa_config_includes.h,
2035: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2036: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
2037: method removes, libcord also can work without libgc
2038:
2039: * src/classes/json.C: pa_gc_malloc_atomic should not be used
2040:
2041: 2017-11-29 moko
2042:
2043: * src/classes/curl.C: no exception if some of ^curl:info[] elements
2044: are not present (related to feature #1173)
2045:
2046: * tests/346-curl.html: test updated to test curl content-length bug
2047: (related to feature #1173)
2048:
2049: * tests/results/346-curl.processed: more test for content-length
2050: curl bug (related to feature #1173)
2051:
2052: * tests/results/346-curl.processed: test results updated after
2053: #1173 implemented
2054:
2055: 2017-11-28 moko
2056:
2057: * src/classes/curl.C: another libcurl Content-length bug walkaround
2058: (related to feature #1173)
2059:
2060: 2017-11-27 moko
2061:
2062: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
2063: $.http_version[version string] added (implements feature #1173),
2064: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
2065: where $post(true) bug existed.
2066:
2067: 2017-11-18 moko
2068:
2069: * src/include/pa_memory.h: warning war (related to feature #1170)
2070:
2071: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
2072: feature #1170)
2073:
2074: 2017-11-17 moko
2075:
2076: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
2077: std::basic_stringstream used in ^table.csv-string[] is compatible
2078: with delete usage check only under Debian 9 (related to feature
2079: #1170)
2080:
2081: 2017-11-16 moko
2082:
2083: * src/: classes/curl.C, classes/hash.C, classes/json.C,
2084: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
2085: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
2086: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
2087: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
2088: types/pa_vxdoc.h: regular new/delete no longer used in our code,
2089: stubs defend from accidental use (implements feature #1170)
2090:
2091: 2017-06-24 moko
2092:
2093: * configure.ac: minor fix: thanks to alx@
2094:
1.115 moko 2095: 2017-05-29 moko
2096:
2097: * src/types/pa_vmail.C: mail headers are now correctly truncated -
2098: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
2099: added to avoid cutting of UTF-8 chars (fixed bug #123)
2100:
2101: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
2102: ignored, =?UTF-8?Q?= should start in case of leading space
2103: (related to bug #123)
2104:
2105: * buildall: echo -n -> printf for OS X. :)
2106:
2107: 2017-05-25 moko
2108:
2109: * tests/: 288.html, results/288.processed: test updated afted
2110: setting $o.prop without setter exception removed (related to
2111: feature #1157)
2112:
2113: * src/types/pa_vclass.C: no more "this property has no setter
2114: method" when setting $o.prop without setter (implements feature
2115: #1157)
2116:
2117: * buildall: echo \c -> echo -n for FreeBSD
2118:
2119: * configure, configure.ac, src/include/pa_config_auto.h.in,
2120: src/types/pa_vdouble.h: isfinite now checked in configure
2121:
2122: * compile, config.guess, config.sub, depcomp, install-sh, missing:
2123: upgraded to automake 1.15
2124:
2125: 2017-05-23 moko
2126:
2127: * src/types/pa_vdouble.h: finite returned where isfinite not
2128: defined
2129:
2130: 2017-05-22 moko
2131:
2132: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
2133:
2134: * buildall: extern CFLAGS setting support
2135:
2136: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
2137:
2138: * buildall: http -> https
2139:
2140: * buildall: gc-7.2f -> gc-7.6.0
2141:
2142: 2017-05-20 moko
2143:
2144: * buildall: https, pcre, xml, xslt updated to current versions
2145: (related to feature #1136)
2146:
2147: 2017-05-19 moko
2148:
2149: * tests/097.html: after parser.ru moved to https
2150:
2151: 2017-05-17 moko
2152:
2153: * tests/results/: 175.processed, 372.processed: tests resuls
2154: updated after lintian spelling typos fixed (related to bug #1156)
2155:
2156: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
2157: classes/string.C, classes/table.C, main/pa_charset.C,
2158: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
2159: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
2160: lintian reported by Sergey B Kirpichev (fixes bug #1156)
2161:
2162: * tests/results/096.processed: +XMP
2163:
2164: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
2165: $.xmp(true) options tested (test for feature #1154)
2166:
2167: * src/classes/image.C: ^image:measure[] options $.exif(false)
2168: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
2169: fetched by default! (implements feature #1154)
2170:
2171: 2017-05-16 moko
2172:
2173: * tests/: 256.html, results/256.processed: ^json:string[$image] now
2174: allowed (related to feature #1154)
2175:
2176: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2177: initial XMP implementation - without options and transcode
2178: (related to feature #1154)
2179:
2180: 2017-05-12 moko
2181:
2182: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2183: image: exif moved to ffields, skipped in ^image.html[] where
2184: iterators now used (preparation for feature #1154)
2185:
2186: 2017-05-05 moko
2187:
2188: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
2189: results/387.processed: test for circular class inheritance check
2190: added (related to bug #1150)
2191:
2192: * src/types/pa_vstateless_class.C: circular class inheritance check
2193: added (fixes endless add_derived bug #1150)
2194:
2195: 2017-05-04 moko
2196:
2197: * tests/: 386.html, results/386.processed: test for
2198: $table.value(number) added (related to feature #1152)
2199:
2200: * src/types/pa_vtable.C: table put_element: column value must be
2201: string - > column value must be string compatible to allow
2202: $t.value(1) (implements feature #1152)
2203:
2204: 2017-05-03 moko
2205:
2206: * src/main/pa_request.C: $use[$method] is not possible, reverting
2207: (related to feature #1151)
2208:
2209: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
2210: not possible, removing test (related to feature #1151)
2211:
2212: * src/: main/pa_request.C, types/pa_vstateless_class.h:
2213: get_element_method added and used to allow $use[$method] and
2214: $autouse[$method] (implements feature 1151)
2215:
2216: * tests/: 386.html, 386.p, results/386.processed: test for @use in
2217: variable added (related to feature #1151)
2218:
2219: * tests/results/226.processed: actualized after ^try-catch used
2220:
2221: * tests/: 226.html, 385.html, results/385.processed: test for
2222: @autouse in variable added
2223:
2224: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
2225:
1.114 moko 2226: 2017-02-27 moko
2227:
2228: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
2229:
1.113 moko 2230: 2017-02-20 moko
2231:
2232: * operators.txt: actualization + beauty
2233:
2234: 2017-02-16 moko
2235:
2236: * tests/: 384.html, results/384.processed: test for
2237: ^reflection:mixin[; $.name[] ] option added (related to feature
2238: #1089)
2239:
2240: * tests/: 384.html, results/384.processed: test for
2241: ^reflection:mixin[] added (related to feature #1089)
2242:
2243: * src/types/pa_value.h: warning war: virtual ~Value() added
2244:
1.112 moko 2245: 2017-02-15 moko
2246:
2247: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
2248: fixed
2249:
2250: * tests/: 320.html, results/320.processed: $.reverse(true/false)
2251: test added (related to feature #1069)
2252:
2253: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2254: compilation without HASH_ORDER fixed
2255:
2256: * src/: classes/reflection.C, include/pa_hash.h:
2257: $.reverse(true/false) added to ^reflection:methods[] (related to
2258: feature #1069)
2259:
2260: 2017-02-14 moko
2261:
2262: * tests/: 152.html, results/152.processed: test for $._default hash
2263: added (related to bug #1131)
2264:
2265: * tests/: 277.html, results/277.processed: test for hash with only
2266: $._default is now defined (related to bug #1131)
2267:
2268: * src/types/pa_vhash.h: hash with only $._default is now defined
2269: (fixed bug #1131)
2270:
2271: 2017-02-13 moko
2272:
2273: * tests/cat-windows.sh: cat-windows added (cygwin required)
2274:
2275: * tests/: 171.html, 264.html, 286.html, 370.html,
2276: results/320.processed, results/375.processed, results/auto.p:
2277: cat-windows.sh support added
2278:
2279: * tests/375.html: Windows support
2280:
2281: * tests/270.html: documented
2282:
2283: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
2284: (not backslashes) even under Windows (broke test 270)
2285:
2286: 2017-02-12 moko
2287:
2288: * tests/: descript.ion, todo.txt: cleanup
2289:
2290: 2017-02-09 moko
2291:
2292: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
2293: run_tests.cmd: Windows compatibility
2294:
2295: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
2296: incorrectly (GMT) if parser is called from cygwin
2297:
1.111 moko 2298: 2017-02-08 moko
2299:
1.112 moko 2300: * operators.txt: actualization 15% completed
2301:
2302: * operators.txt: cp1251 -> utf-8
2303:
2304: * NEWS, README: minor update
2305:
2306: * src/include/pa_config_includes.h: warning war continues
2307:
2308: * src/: include/pa_config_includes.h, include/pa_memory.h,
2309: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2310: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
2311: gcc 6.x issues fixed
2312:
1.111 moko 2313: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2314: classes/classes.h, classes/curl.C, classes/date.C,
2315: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2316: classes/hashfile.C, classes/image.C, classes/inet.C,
2317: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2318: classes/memcached.C, classes/memory.C, classes/op.C,
2319: classes/reflection.C, classes/regex.C, classes/response.C,
2320: classes/string.C, classes/table.C, classes/void.C,
2321: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2322: include/pa_array.h, include/pa_cache_managers.h,
2323: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2324: include/pa_config_fixed.h, include/pa_config_includes.h,
2325: include/pa_dictionary.h, include/pa_dir.h,
2326: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2327: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2328: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2329: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2330: include/pa_request_charsets.h, include/pa_request_info.h,
2331: include/pa_sapi.h, include/pa_socks.h,
2332: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2333: include/pa_stack.h, include/pa_string.h,
2334: include/pa_stylesheet_connection.h,
2335: include/pa_stylesheet_manager.h, include/pa_symbols.h,
2336: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
2337: include/pa_uue.h, include/pa_xml_exception.h,
2338: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
2339: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
2340: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2341: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
2342: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2343: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2344: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2345: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2346: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2347: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2348: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2349: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2350: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2351: main/pa_string.C, main/pa_stylesheet_connection.C,
2352: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
2353: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
2354: main/untaint.C, sql/pa_sql_driver.h,
2355: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2356: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2357: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2358: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2359: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2360: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2361: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
2362: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
2363: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
2364: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
2365: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
2366: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
2367: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
2368: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
2369: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
2370: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
2371: types/pa_vmemcached.h, types/pa_vmemory.h,
2372: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2373: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2374: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2375: types/pa_vresponse.C, types/pa_vresponse.h,
2376: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2377: types/pa_vstateless_object.h, types/pa_vstatus.C,
2378: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2379: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2380: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2381: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2382: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
2383: 2015->2017
2384:
1.110 moko 2385: 2017-02-07 moko
2386:
2387: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
2388:
2389: 2017-02-06 moko
2390:
2391: * src/main/pa_common.C: minor fixes, whitespace
2392:
2393: * src/: classes/curl.C, classes/file.C, classes/image.C,
2394: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
2395: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
2396: now used (implements feature #1081)
2397:
2398: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
2399:
2400: 2017-02-01 moko
2401:
2402: * src/include/pa_request.h: cleanup
2403:
2404: 2017-01-30 moko
2405:
2406: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
2407:
2408: 2017-01-29 moko
2409:
2410: * tests/: 383.html, results/383.processed: test for
2411: ^reflection:stack[] added (related to feature #1052)
2412:
2413: * src/classes/reflection.C: else added
2414:
2415: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
2416: $.max_file_lock_wait added (implements feature #1128)
2417:
2418: 2017-01-28 moko
2419:
2420: * tests/: 379-curl.html, results/379-curl.processed: curl empty
2421: body and other cases tests added (related to featue #1014)
2422:
2423: * src/classes/curl.C: bug if response is empty fixed (related to
2424: feature #1014)
2425:
2426: 2017-01-27 moko
2427:
2428: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
2429: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
2430: added (implements feature #1052)
2431:
2432: 2017-01-25 moko
2433:
2434: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
2435: method test added
2436:
2437: 2017-01-23 moko
2438:
2439: * src/classes/reflection.C: optimization: options->get replaced by
2440: hash iterator
2441:
2442: * tests/: 381.html, results/381.processed: now -> fixed date
2443:
2444: * src/main/pa_request.C: warning war
2445:
2446: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
2447: 5Mb (fixes bug #1058)
2448:
2449: * src/classes/curl.C: warning war
2450:
2451: * tests/: 381.html, results/381.processed: tests for ^json:string
2452: $.one-line(true) option added (related to feature #1124)
2453:
2454: * src/: classes/json.C, types/pa_value.h: $json-string
2455: $.one-line(true|false) options is now supported (implements
2456: feature #1124)
2457:
2458: * tests/: 380.html, results/380.processed: test for modified
2459: $.max_file_size added (related to bug #1014)
2460:
2461: * tests/: 379.html, results/auto.p: tests for rewritten http file
2462: load added (related to bug #1014)
2463:
2464: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2465: main/pa_common.C, main/pa_http.C: check_file_size added and used
2466: in curl / file load from disk and http, http file load rewritten
2467: (related to bug #1014)
2468:
2469: 2017-01-18 moko
2470:
2471: * tests/: 378.html, results/378.processed: tests for ^result[]
2472: added (related to feature #66)
2473:
2474: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
2475: Method::CO_WITHOUT_FRAME as frame still added in expression
2476: (related to feature #66)
2477:
2478: 2017-01-17 moko
2479:
2480: * tests/: 377.html, results/377.processed: test for different
2481: combinations of breaks in body and delimiter (related to bug
2482: #1077)
2483:
2484: * tests/: 376.html, results/376.processed: many ^break[] tests
2485: added (related to bug #1077)
2486:
2487: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
2488: passed to native method" exception added to avoid bugs due to
2489: WRITE_EXPR_RESULT skipped and native methods execution continues
2490: after ^break[] (related to bug #1077)
2491:
2492: 2017-01-14 moko
2493:
2494: * tests/: 330.html, results/330.processed: test results updated
2495: after ^break[] bugs where fixed (related to bug #1077)
2496:
2497: * tests/: 329.html, results/329.processed: test results updated
2498: after ^break[] bugs where fixed (related to bug #1077)
2499:
2500: * tests/results/320.processed: ^return[] added
2501:
2502: 2017-01-13 moko
2503:
2504: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
2505: classes/table.C, include/pa_request.h, main/execute.C,
2506: main/pa_request.C, targets/cgi/parser3.C,
2507: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
2508: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
2509: checked after each possible process/execute call (fixes bug
2510: #1077)
2511:
2512: 2016-12-29 moko
2513:
2514: * src/main/pa_common.C: warning war
2515:
2516: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
2517: include/pa_types.h, main/pa_request.C, main/pa_string.C:
2518: pa_file_size_limit added, ^math:random fixed for upper limit and
2519: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
2520: (related to feature #1014)
2521:
2522: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
2523: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
2524: (related to feature #1014)
2525:
2526: 2016-12-28 moko
2527:
2528: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
2529: warning war
2530:
2531: 2016-12-26 moko
2532:
2533: * tests/: 341.html, results/341.processed: test for
2534: ^table.hash[id;;$.type[string]] added (related to feature #1057)
2535:
2536: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
2537: (related to feature #1057)
2538:
2539: * src/types/pa_vdate.C: warning war continues...
2540:
2541: * src/: classes/date.C, classes/image.C, classes/table.C,
2542: include/pa_config_includes.h, types/pa_vfile.C: warning war
2543:
2544: * src/lib/gd/gifio.C: warning war / cleanup
2545:
2546: * src/lib/json/pa_json.C: warning war
2547:
2548: * src/classes/hash.C: warning war
2549:
2550: * src/types/pa_vfile.C: warning war
2551:
2552: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
2553: -Wall warning war continues
2554:
2555: * configure.ac: --with-build-warnings actualized
2556:
2557: 2016-12-25 moko
2558:
2559: * src/main/pa_exec.C: -wAll warning war
2560:
2561: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
2562: -wAll warning war
2563:
2564: * src/: include/pa_common.h, include/pa_sapi.h,
2565: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
2566: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
2567: -wAll warning war
2568:
2569: 2016-12-23 moko
2570:
2571: * src/lib/ltdl/Makefile.am: extra dist added
2572:
2573: * tests/results/344.processed: test result updated after $file.text
2574: prefetched in ^hash::create[$file] (related to feature #1075)
2575:
2576: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
2577: ^hash::create[$file] (related to feature #1075)
2578:
2579: 2016-12-22 moko
2580:
2581: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
2582: main/pa_request.C, main/pa_stylesheet_connection.C,
2583: types/pa_vfile.C: file_stat now return 64-bit size (implements
2584: #1014 under 32-bit unix versions)
2585:
2586: 2016-12-21 moko
2587:
2588: * tests/: 375.html, results/375.processed: test for exec returning
2589: stated file added (related to feature #1119)
2590:
2591: * src/classes/file.C: load should not return file with null body
2592: (fixes bug #1119)
2593:
2594: 2016-12-14 moko
2595:
2596: * tests/: 374.html, results/374.processed: test for $method.name
2597: added (related to feature #1117) plus method returning junction
2598: test
2599:
2600: 2016-12-13 moko
2601:
2602: * src/: include/pa_symbols.h, main/pa_symbols.C,
2603: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
2604: (implements feature #1117)
2605:
2606: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
2607: HEAD and TRACE can't have body (implements feature #1116)
2608:
2609: 2016-12-09 moko
2610:
2611: * tests/: 373.html, results/373.processed: tests for
2612: ^reflection:tainting added (related to feature #1098)
2613:
2614: * src/classes/reflection.C: ^reflection:tainting arguments order
2615: change (related to feature #1098)
2616:
2617: 2016-12-06 moko
2618:
2619: * src/: classes/reflection.C, include/pa_string.h,
2620: main/pa_string.C: ^reflection:tainting[$string] added (implements
2621: feature #1098)
2622:
2623: 2016-12-05 moko
2624:
2625: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
2626: (fixes bug #1114)
2627:
2628: 2016-12-04 moko
2629:
2630: * tests/: 206.html, results/206.processed: negative zero (0/-1)
2631: check added
2632:
2633: 2016-12-03 moko
2634:
2635: * tests/: 346-curl.html, results/346-curl.processed: test modified
2636: to test value.as_hash() usage
2637:
2638: * src/classes/curl.C: value.as_hash() used for correct hash
2639: processing
2640:
2641: * src/classes/reflection.C: exceptions texts fixes
2642:
2643: 2016-12-02 moko
2644:
2645: * tests/: 372.html, results/372.processed: tests for
2646: ^reflection:create[ $.class[name] $.constructor[name]
2647: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
2648: feature #1094)
2649:
2650: * src/types/pa_vmethod_frame.h: comment added: params should be
2651: declared outside of *_FRAME_ACTION as MethodParams destructor
2652: will be called in ~VNativeMethodFrame
2653:
2654: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
2655: ] minor fix
2656:
2657: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
2658: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
2659: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
2660: now supported (implements feature #1094) value::as_hash added
2661: (and should be used everywhere)
2662:
2663: * src/classes/reflection.C: cleanup
2664:
2665: 2016-12-01 moko
2666:
2667: * tests/: 356.html, results/356.processed: test for method
2668: junctions class name added to the resulting hash added (related
2669: to feature #1068)
2670:
2671: * src/classes/reflection.C: for method junctions class name added
2672: to the resulting hash (related to feature #1068)
2673:
2674: 2016-11-30 moko
2675:
2676: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
2677: exception (related to bug #1113)
2678:
2679: * src/types/pa_vhashfile.C: whitespace
2680:
2681: * src/main/pa_os.C: errno now returned as it should (fixes bug
2682: #1113)
2683:
2684: * tests/results/: 175.processed, 192.processed, 224.processed,
2685: 229.processed, 239.processed, 244.processed, 246.processed,
2686: 314.processed, 352.processed: tests results updated after method
2687: call exceptions improved as method now keeps its name
2688:
2689: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
2690: types/pa_vmethod_frame.h: method call exceptions improved as
2691: method now keeps its name
2692:
2693: * tests/: 224.html, 239.html, results/224.processed,
2694: results/239.processed: tests and tests results updated after
2695: Request::construct exception changed
2696:
2697: * src/: classes/reflection.C, main/execute.C: Request::construct
2698: exception optimized
2699:
2700: * tests/: 371.html, results/371.processed: test for
2701: WWrapper.get_element call in $.name.key[value] code added
2702: (related to feature #1091)
2703:
2704: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
2705: in $.name.key[value] code (related to feature #1091)
2706:
2707: 2016-11-29 moko
2708:
2709: * src/classes/op.C: VS warning war
2710:
2711: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
2712: C4239: nonstandard extension used : 'return' : conversion from
2713: 'Value' to 'Value &' (related to feature #1020)
2714:
2715: * src/: main/execute.C, types/pa_vmethod_frame.h,
2716: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
2717: used : 'return' : conversion from 'Value' to 'Value &' (related
2718: to feature #1020)
2719:
2720: * src/main/execute.C: VS warning war
2721:
2722: * src/targets/cgi/parser3.C: VS compatibility fix
2723:
2724: * src/include/pa_request.h: VS warning war
2725:
2726: * tests/: 370.html, results/370.processed: test for ^file::exec[
2727: ... $.stdin[$binary_file] ] added (related to bug #1044)
2728:
2729: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
2730: include/pa_string.h, main/pa_exec.C: pa_exec now supports
2731: $.stdin[$binary_file] (fixes bug #1044)
2732:
2733: 2016-11-28 moko
2734:
2735: * src/main/pa_exec.C: whitespace
2736:
2737: * src/main/pa_request.C: whitespace
2738:
2739: * tests/: 369.html, results/369.processed: test for
2740: $response:status usage added (related to feature #1099)
2741:
2742: * src/targets/cgi/parser3.C: HTTP response code used as exit status
2743: if < 100 (implements feature #1099)
2744:
2745: * src/targets/cgi/parser3.C: whitespace
2746:
2747: * src/targets/cgi/parser3.C: whitespace
2748:
2749: * tests/: 368.html, results/368.processed: test updated after
2750: ^reflection:filename[$method] added (related to feature #1053)
2751:
2752: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
2753: main/compile.y, main/execute.C, main/pa_request.C,
2754: types/pa_vclass.h: filename -> filespec,
2755: ^reflection:filename[$method] added (related to feature #1053)
2756:
2757: 2016-11-27 moko
2758:
2759: * tests/: 368.html, results/368.processed: test for
2760: reflection:filename[$class or object] added (related to feature
2761: #1053)
2762:
2763: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
2764: types/pa_vstateless_class.h: ^reflection:filename[$class or
2765: object] added (implements feature #1053)
2766:
2767: 2016-11-26 moko
2768:
2769: * src/: include/pa_request_info.h,
2770: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2771: remove_absolute_uri -> strip_absolute_uri
2772:
2773: 2016-11-25 moko
2774:
2775: * src/: include/pa_request_info.h,
2776: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2777: request_info.remove_absolute_uri added to remove possible
2778: http://site.name/ from $request:uri (implements feature #1112)
2779:
2780: 2016-11-24 moko
2781:
2782: * tests/: 367-curl.html, results/367-curl.processed: test for
2783: previous request headers clearing after redirect added (related
2784: to bug #1109)
2785:
2786: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
2787: response headers from previous requests are now cleared, only
2788: last request headers are collected (fixes bug #1109)
2789:
2790: * tests/results/: 266.processed, 321.processed, 356.processed:
2791: tests results updated as method name now added to the resulting
2792: hash for new syntax only (Imp1 compatimility fixed, related to
2793: feature #1068)
2794:
2795: * src/classes/reflection.C: method name now added to the resulting
2796: hash for new syntax only (Imp1 compatimility fixed, related to
2797: feature #1068)
2798:
2799: * tests/results/366.processed: test for native and parser
2800: implementation of ^use[] logic (related to feature #1074)
2801:
2802: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
2803: for native and parser implementation of ^use[] logic (related to
2804: feature #1074)
2805:
2806: 2016-11-23 moko
2807:
2808: * src/: classes/op.C, include/pa_request.h, main/compile.y,
2809: main/pa_request.C: @USE file now implemented as ^use[file;
2810: $.origin[origin_file] ] (implements feature #1074)
2811:
1.109 moko 2812: 2016-11-21 moko
2813:
1.110 moko 2814: * tests/: 365.html, results/365.processed: test for $caller bugs in
2815: 3.4.4 and $caller.method now tested (related to feature #1110)
2816:
2817: * tests/: 364.html, results/364.processed: $caller usage in
2818: different contexts now tested (related to feature #1110)
2819:
2820: * src/types/types.vcproj: +pa_vcaller_wrapper.h
2821:
2822: * src/types/Makefile.am: pa_vcaller_wrapper.h added
2823:
1.109 moko 2824: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
2825: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
2826: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
2827: used (implements feature #1110)
2828:
2829: 2016-11-20 moko
2830:
2831: * src/types/pa_vdouble.h: whitespace
2832:
2833: 2016-11-11 moko
2834:
2835: * tests/: 363.html, results/363.processed: more tests for feature
2836: #1091 (how parser methods work in expression context)
2837:
2838: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
2839: expressions strings are now written as strings, not values by
2840: write_as_string (related to feature #1091)
2841:
2842: * src/classes/op.C: to make more correct behavour in expression
2843: context
2844:
2845: 2016-11-07 moko
2846:
2847: * tests/: 362.html, results/362.processed: test for
2848: xsltParseStylesheetDoc caching as xsl modification after it added
2849: (related to bug #1108)
2850:
2851: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
2852: result now cached as xdoc is modified after it (fixes bug #1108)
2853:
2854: 2016-11-06 moko
2855:
2856: * src/types/pa_vxdoc.h: whitespace
2857:
2858: 2016-11-05 moko
2859:
2860: * src/types/pa_vmethod_frame.h: cleanup
2861:
2862: 2016-11-03 moko
2863:
2864: * tests/results/244.processed: more correct exception after method
2865: frames separation
2866:
2867: * src/types/pa_vmethod_frame.h: minor optimizaion
2868:
2869: * src/types/pa_method.h: optimization: params_count added
2870:
2871: * src/: classes/json.C, classes/op.C, classes/reflection.C,
2872: include/pa_request.h, main/execute.C, main/pa_request.C,
2873: types/pa_value.C, types/pa_vmethod_frame.C,
2874: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
2875: VMethodFrame now divided into VNativeMethodFrame,
2876: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
2877: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
2878: and used (related to feature #1104)
2879:
2880: 2016-11-02 moko
2881:
2882: * src/: classes/bool.C, classes/curl.C, classes/date.C,
2883: classes/double.C, classes/file.C, classes/hash.C,
2884: classes/hashfile.C, classes/image.C, classes/inet.C,
2885: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2886: classes/memcached.C, classes/op.C, classes/reflection.C,
2887: classes/regex.C, classes/string.C, classes/table.C,
2888: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
2889: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
2890: r.write (implements feature #1091)
2891:
2892: * src/main/execute.C: cleanup (related to feature #1104)
2893:
2894: * src/: include/pa_request.h, main/execute.C,
2895: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
2896: added, in_expression removed (implements feature #1104)
2897:
2898: 2016-10-31 moko
2899:
2900: * src/types/pa_value.C: whitespace
2901:
2902: 2016-10-28 moko
2903:
2904: * tests/results/244.processed: updated after error reporting fixed
2905: in pa_wcontext.C
2906:
2907: * src/types/pa_wcontext.C: error reporting fixed
2908:
2909: * src/types/pa_wcontext.h: whitespace
2910:
2911: * src/classes/image.C: not fully readed entries are no longer
2912: processed (fixes bug #1106)
2913:
2914: 2016-10-26 moko
2915:
2916: * src/classes/image.C: whitespace
2917:
2918: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
2919: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
2920: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
2921: longer required (related to feature #1091)
2922:
2923: * tests/results/: 264.processed, 350.processed: test results update
2924: reverted (whitespace optimization) after write_no_lang removed :)
2925: (related to feature #1091)
2926:
2927: * src/: classes/file.C, classes/hash.C, classes/op.C,
2928: classes/string.C, classes/table.C, classes/void.C,
2929: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
2930: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
2931: equal write_pass_lang (related to feature #1091)
2932:
2933: * tests/results/: 264.processed, 350.processed: test results
2934: updated (whitespace optimization) after write_assign_lang removed
2935: (related to feature #1091)
2936:
2937: * tests/: 361.html, results/361.processed: test for non-string
2938: ^untaint added (related to feature #1091)
2939:
2940: * src/: classes/curl.C, classes/date.C, classes/file.C,
2941: classes/hash.C, classes/op.C, classes/string.C,
2942: include/pa_request.h, main/execute.C: optimization:
2943: write_assign_lang removed as not required (first part of feature
2944: #1091 implementation)
2945:
1.108 moko 2946: 2016-10-12 moko
2947:
2948: * tests/: 360.html, results/360.processed: more test code (related
2949: to feature #1104)
2950:
2951: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
2952: include/pa_request.h, main/compile.y, main/execute.C: opcode
2953: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
2954: WContext is next task (implements feature #1104)
2955:
2956: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
2957: / CO_WITHOUT_WCONTEXT
2958:
2959: * tests/: 360.html, results/360.processed: test for in expression
2960: state (related to feature #1104)
2961:
2962: 2016-10-11 moko
2963:
2964: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
2965:
2966: * src/classes/op.C: default value removed from initializer
2967:
2968: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
2969:
2970: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
2971:
2972: 2016-10-10 moko
2973:
2974: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
2975: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
2976: to feature #42)
2977:
2978: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
2979: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
2980:
2981: 2016-10-08 moko
2982:
2983: * src/classes/double.C: whitespace
2984:
2985: 2016-10-07 moko
2986:
2987: * src/types/pa_vmethod_frame.h: reorder
2988:
2989: 2016-10-06 moko
2990:
2991: * src/classes/date.C: typo
2992:
2993: * src/types/pa_vmethod_frame.h: whitespace + cleanup
2994:
2995: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2996: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
2997: types/pa_vmethod_frame.h: params.get now returns Value&, not
2998: Value*
2999:
3000: * src/types/pa_vmethod_frame.C: params.get should return Value&.
3001:
3002: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
3003: removed; first as_* code rewrite
3004:
3005: 2016-10-05 moko
3006:
3007: * src/include/pa_request.h: whitespace
3008:
3009: * tests/: 359.html, results/359.processed: test for VCodeFrame and
3010: intercept_string added (related to feature #1097)
3011:
3012: * src/: classes/image.C, classes/op.C, classes/table.C,
3013: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3014: optimization: intercept_string removed (implements feature #1097)
3015:
3016: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
3017:
3018: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
3019: from VCodeFrame and WWrapper as not required
3020:
3021: 2016-10-04 moko
3022:
3023: * src/: classes/curl.C, classes/date.C, classes/double.C,
3024: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
3025: classes/int.C, classes/json.C, classes/op.C,
3026: classes/reflection.C, classes/string.C, classes/table.C,
3027: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3028: proces_to_value -> process after StringOrValue removed (related
3029: to feature #1020)
3030:
3031: * src/classes/form.C: whitespace
3032:
3033: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
3034:
3035: * tests/: 357.html, 358.html, results/357.processed,
3036: results/358.processed, results/auto.p: test for @conf
3037: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
3038:
3039: 2016-10-03 moko
3040:
3041: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
3042: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
3043: supported (implements feature #42)
3044:
3045: * src/types/pa_vregex.h: no reason for VRegex to be
3046: is_evaluated_expr
3047:
3048: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
3049: (implements feature #1095)
3050:
3051: 2016-10-01 moko
3052:
3053: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
3054: false by default (related to feature #1089)
3055:
3056: 2016-09-30 moko
3057:
3058: * src/types/pa_wcontext.h: cleanup
3059:
3060: 2016-09-29 moko
3061:
3062: * src/main/execute.C: whitespace
3063:
3064: * src/include/pa_request.h: whitespace
3065:
3066: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3067: classes/op.C, classes/table.C, include/pa_request.h,
3068: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
3069: types/pa_vobject.C, types/pa_wcontext.h: optimization:
3070: StringOrValue removed as it just slows down and adds complexity
3071: (implements feature #1020)
3072:
3073: 2016-09-28 moko
3074:
3075: * tests/: 356.html, results/266.processed, results/321.processed,
3076: results/356.processed: tests updated after name was added to
3077: method_info hash, test for ^reflection:method_info[junction]
3078: added (related to feature #1068)
3079:
3080: * src/classes/reflection.C: ^reflection:method_info[junction] now
3081: supported, method name added to the resulting hash (implements
3082: feature #1068)
3083:
3084: * tests/: 276.html, results/276.processed: more tests for
3085: ^reflection:delete[]
3086:
3087: * src/classes/reflection.C: fixed bug then ^reflection:delete
3088: didn't work on class and could damage native objects (like file)
3089:
3090: 2016-09-26 moko
3091:
3092: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
3093: results/345.processed, results/346-curl.processed,
3094: results/347-curl.processed, results/348.processed: numbers added
3095: to simplify diff analysis
3096:
3097: * tests/: 352.html, results/352.processed: test result updated as
3098: method name used
3099:
3100: * src/classes/reflection.C: method name used
3101:
3102: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
3103: its name
3104:
3105: * src/types/pa_method.h: whitespace
3106:
3107: * src/classes/reflection.C: both method and field with one name can
3108: exist.
3109:
3110: * src/classes/reflection.C: ^reflection:mixin added (implements
3111: feature #1089)
3112:
3113: * tests/: 355.html, results/355.processed: property appears in
3114: derived class if added in base test added
3115:
3116: * src/types/pa_vstateless_class.h: get_method declaration +
3117: whitespace
3118:
3119: * tests/: 354.html, results/354.processed: nice test from method
3120: and property with one name in class added
3121:
3122: 2016-09-23 moko
3123:
3124: * src/classes/reflection.C: ^reflection:method usage documented
3125:
3126: 2016-09-22 moko
3127:
3128: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
3129: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
3130: compile warning and GPF occures on VS2003 (related to feature
3131: #1087)
3132:
3133: * tests/: 350.html, results/350.processed: test added for
3134: $.encloser[] support in ^table::create (related to feature #11)
3135:
3136: * src/classes/table.C: another minor fix (related to feature #11)
3137:
1.107 moko 3138: 2016-09-21 moko
3139:
3140: * src/include/pa_config_fixed.h: vs2015 compilation fixes
3141:
3142: * src/: classes/curl.C, classes/file.C, classes/hash.C,
3143: classes/json.C, classes/string.C, classes/table.C,
3144: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3145: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3146: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
3147: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
3148: pa_charsets, vs2015 warning war
3149:
3150: * src/classes/table.C: vs2015 warning war
3151:
3152: * src/types/pa_vdate.C: vs2015 warning war
3153:
3154: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
3155:
3156: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
3157: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
3158:
3159: * src/main/pa_common.C: vs2015 compilation fixes
3160:
3161: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
3162: vs2015 compilation fixes
3163:
3164: * src/main/pa_charset.C: vs2015 warning war
3165:
3166: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
3167:
3168: * src/main/pa_charset.C: vs2015 warning war
3169:
3170: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
3171:
3172: * src/types/pa_vdate.C: vs2015 compilation fix
3173:
3174: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
3175:
3176: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
3177: VS2015 compilation fixes
3178:
3179: * src/classes/table.C: minor fix (related to feature #11)
3180:
3181: * tests/results/282.processed: no longer skipping extra enclosers
3182: (related to feature #11)
3183:
3184: * src/classes/table.C: minor fix + no longer skipping extra
3185: enclosers (related to feature #11)
3186:
3187: * src/classes/table.C: minor optimization (related to feature #11)
3188:
3189: * src/classes/table.C: minor fix and optimization (related to
3190: feature #11)
3191:
3192: 2016-09-20 moko
3193:
3194: * tests/: 353.html, results/353.processed: test for
3195: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
3196: added (related to bug #1090)
3197:
3198: * src/main/compile.y: PC.cclass->is_vars_local() check added for
3199: one_big_piece (fixes bug #1090)
3200:
3201: * tests/: 229.html, results/229.processed: code coverage tests
3202:
3203: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
3204: body) was called
3205:
3206: * src/classes/op.C: whitespace
3207:
3208: * tests/: 323.html, results/323.processed: test for code junction
3209: should not be returned by ^reflection:class, ^reflection:base
3210:
3211: * src/classes/reflection.C: bugfix: code junction should not be
3212: returned by ^reflection:class, ^reflection:base
3213:
3214: * tests/: 323.html, 352.html, results/352.processed: no more
3215: exception for ^reflection:method[class;no-such-method] (related
3216: to feature #1087)
3217:
3218: * src/classes/reflection.C:
3219: ^reflection:method[class;no-such-method] : exception -> void
3220: (related to feature #1087)
3221:
3222: * src/include/pa_request.h: request::write_value added to allow
3223: write value without convertion (related to issue #1091)
3224:
3225: 2016-09-19 moko
3226:
3227: * src/main/pa_random.C: windows build fix
3228:
3229: * src/types/pa_vhash.h: warning war
3230:
3231: 2016-09-14 moko
3232:
3233: * tests/: 352.html, 552.html, results/352.processed,
3234: results/552.processed: test for ^reflection:method[] extension
3235: added (related to feature #1087)
3236:
3237: * tests/: 552.html, results/552.processed: test for
3238: ^reflection:method[] extension added (related to feature #1087)
3239:
3240: * src/classes/reflection.C: compatibility issue fixed, VClass
3241: dynamic_cast check added (related to feature #1087)
3242:
3243: * tests/: 351.html, results/351.processed: test for @auto[]
3244: inheritance bug diring ^process[] added (related to bug #1088)
3245:
3246: * src/: classes/op.C, main/pa_request.C,
3247: types/pa_vstateless_class.C: set_method now checks for @auto[] to
3248: disable it inheritance during ^process (fixes bug #1088)
3249:
3250: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
3251: added (implements feature #1087)
3252:
3253: 2016-09-13 moko
3254:
3255: * tests/: 349.html, results/auto.p: test for objects prototyping
3256: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
3257: to feature #1086)
3258:
3259: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
3260: types/pa_vobject.C: objects now are not class instances, but have
3261: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
3262: in @conf (implements feature #1086)
3263:
3264: 2016-09-08 moko
3265:
3266: * src/: classes/file.C, classes/mail.C, classes/string.C,
3267: classes/table.C, main/pa_http.C, main/pa_string.C,
3268: include/pa_string.h: cleanup: string::split limit argument
3269: removed as no longer required, pos_after no longer reference
3270: (related to feature #11)
3271:
3272: * src/classes/table.C, tests/results/348.processed: now exception
3273: is rised when invalid option is passed to ^table::create[]
3274:
3275: * tests/: 282.cfg, 282.html, results/282.processed: more code
3276: coverage tests
3277:
3278: * tests/: 348.html, results/348.processed: code coverage tests
3279: added
3280:
3281: * tests/: 348.html, results/348.processed: generic ^table::create[]
3282: tests
3283:
3284: * tests/: 035.html, results/035.processed, results/272.processed:
3285: tests updated after $.encloser[] support for ^table::create
3286: implementation (related to feature #11)
3287:
3288: * src/classes/table.C: $.encloser[] support for ^table::create
3289: finally added (implements feature #11)
3290:
3291: 2016-09-07 moko
3292:
3293: * src/include/pa_string.h: added StringSplitHelper as friend
3294: (related to feature #11)
3295:
3296: * src/include/pa_string.h: body and langs now protected, not
3297: private to allow inheritance (related to feature #11)
3298:
3299: * src/classes/table.C: lsplit optimized before cloning for
3300: ^table::create with $.encloser[] (related to feature #11)
3301:
3302: * src/classes/table.C: optimizaion: TableControlChars.separators
3303: added and used (related to feature #11)
3304:
3305: * src/classes/table.C: spelling:
3306:
3307: TableSeparators -> TableControlChars column -> separator
3308: separators -> control_chars
3309:
3310: 2016-09-06 moko
3311:
3312: * src/main/pa_string.C: whitespace
3313:
3314: * src/main/pa_string.C: whitespace
3315:
3316: 2016-09-01 moko
3317:
3318: * tests/: 347-curl.html, results/347-curl.processed: to make tests
3319: results OS-independent
3320:
3321: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
3322: compiler (related to feature #1042)
3323:
3324: 2016-08-15 moko
3325:
3326: * src/include/pa_string.h: whitespace
3327:
3328: * src/classes/table.C: whitespace
3329:
1.106 moko 3330: 2016-08-05 moko
3331:
3332: * tests/: 344.html, results/344.processed: test for
3333: ^hash::create[$file] added (related to feature #1075)
3334:
3335: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
3336: supported (implements feature #1075)
3337:
3338: 2016-08-04 moko
3339:
3340: * tests/: 341.html, results/341.processed: more code coverage tests
3341:
3342: * tests/: 346-curl.html, results/346-curl.processed: more code
3343: coverage tests for curl
3344:
3345: * tests/: 346-curl.html, results/346-curl.processed: more code
3346: coverage tests for curl
3347:
3348: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
3349: results/223.processed: code coverage tests: $.form[ $.table[] ]
3350: test added
3351:
3352: * tests/: 223-curl.html, results/223-curl.processed: more code
3353: coverage tests for curl
3354:
3355: 2016-08-03 moko
3356:
3357: * src/classes/curl.C: dlink(curl_library) now called not once, but
3358: until it will be loaded, allowing to find existing library.
3359:
3360: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
3361: results/347-curl.processed: more code coverage tests for curl
3362:
3363: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
3364: results/339-curl.processed, results/346-curl.processed: curl
3365: functionality tests
3366:
3367: 2016-08-02 moko
3368:
3369: * tests/: 339.html, results/339.processed: test for tables in
3370: ^file:load[] and ^curl:load[] (commented) added (related to
3371: feature #1042)
3372:
3373: * tests/: 345.html, results/345.processed: code coverage tests for
3374: file class
3375:
3376: * tests/: 344.html, results/344.processed: code coverage tests
3377:
3378: * tests/: 344.html, results/344.processed: mdate removed from
3379: output
3380:
3381: * src/classes/file.C: minor bugfix: is_text should be taked from
3382: fcontent.is_text_mode() if not set (related to feature #1061)
3383:
3384: * tests/: 344.html, results/344.processed: more tests
3385:
3386: * tests/: 343.html, 344.html, results/343.processed,
3387: results/344.processed: tests for ^file::create[ $.from-charset
3388: and $.to-charset ] (related to feature #1061)
3389:
3390: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3391: aset_text_mode argument optimized
3392:
3393: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3394: checkBOM now used in detect_binary_content (related to feature
3395: #1061)
3396:
3397: * src/main/pa_request.C: load_charset no longer required to_upper
3398:
3399: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
3400: preserves original file mode (if no $.mode specified)
3401:
3402: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3403: ^file::create now supports $.from-charset[] and $.to-charset
3404: options (implements feature #1061), automatic transcode is done
3405: if text file is created from binary file and charset is detected.
3406:
3407: 2016-07-30 moko
3408:
3409: * src/classes/table.C: ^t.hash[..;] now supported (related to
3410: feature #1057)
3411:
3412: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
3413: added (related to feature #1057)
3414:
3415: * tests/: 286.html, results/286.processed: code tests coverage
3416:
3417: 2016-07-29 moko
3418:
3419: * src/classes/table.C: table size should be checked inside menu and
3420: foreach (related to feature #858)
3421:
3422: * src/: classes/curl.C, classes/file.C, classes/string.C,
3423: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3424: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
3425: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
3426: charsets.get now does str_upper inside (related to feature #1061)
3427:
3428: * tests/: 342.html, results/342.processed: more code coverage tests
3429:
3430: * tests/: 342.html, outputs/342.processed: table menu code coverage
3431: + foreach test added (related to feature #858)
3432:
3433: * tests/: 341.html, results/341.processed: tests for
3434: ^table.hash[]{code} added + code coverage tests (related to
3435: feature #1057)
3436:
3437: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
3438: value} support (implements feature #1057)
3439:
3440: * src/classes/table.C: whitespace
3441:
3442: 2016-07-28 moko
3443:
3444: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
3445: from URL, if not specified query string removed from url-based
3446: filenames in ^curl:load[] and ^file::load[] (related to feature
3447: #1042)
3448:
3449: 2016-07-27 moko
3450:
3451: * tests/: 340.html, results/340.processed: test for
3452: transcode_text_result=false added (related to issue #1042)
3453:
3454: 2016-07-26 moko
3455:
3456: * src/types/pa_vfile.C: file name should not be empty (if file path
3457: is folder and ends with /) (related to feature #1042)
3458:
3459: * src/main/pa_http.C: whitespace optimizaion
3460:
3461: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3462: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
3463: multiple headers, ^file::load supports headers transcoding
3464: (implements feature #1042)
3465:
3466: 2016-07-25 moko
3467:
3468: * src/include/pa_common.h: PA_DEFAULT added
3469:
3470: 2016-07-22 moko
3471:
3472: * tests/: 338.html, results/338.processed: test for
3473: $date.field(value) added (related to feature #1066)
3474:
3475: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3476: $date.field(value) now supported for y/m/d/h/m/s (implements
3477: feature #1066)
3478:
1.105 moko 3479: 2016-07-21 moko
3480:
3481: * src/: classes/file.C, classes/image.C, include/pa_common.h,
3482: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
3483: arguments removed; image.C - absolute path shown in exception
3484: (implements feature #1071)
3485:
3486: * tests/: 235.html, results/235.processed: test and test result
3487: updated after static boundary in mail and Errors-To: mail header
3488: removed (related to feature #1047)
3489:
3490: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
3491: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
3492: used, static boundary in mail removed, Errors-To: mail header
3493: removed (implements feature #1047)
3494:
3495: 2016-07-20 moko
3496:
3497: * src/: classes/reflection.C, types/pa_vstateless_class.h:
3498: equest.classes(): Value -> VStateless_class, part 3 (related to
3499: issue #1051)
3500:
3501: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
3502: request.classes(): Value -> VStateless_class, part 2 (related to
3503: issue #1051)
3504:
3505: * tests/results/: 224.processed, 323.processed: classes without
3506: methods should not be methoded (related to issue #1051)
3507:
3508: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
3509: main/compile_tools.h, main/pa_request.C: request.classes(): Value
3510: -> VStateless_class, part 1 (related to issue #1051)
3511:
3512: * tests/: 337.html, results/337.processed: test for
3513: ^reflection:fields_reference[] and VHashReference class added
3514: (related to feature #1072)
3515:
3516: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
3517: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
3518: and VHashReference added, allowing ^reflection:fields_reference[]
3519: implementation (closes feature #1072)
3520:
3521: 2016-07-19 moko
3522:
3523: * tests/: 323.html, results/323.processed: we want to see
3524: "methoded"
3525:
3526: * tests/: 336.html, results/336.processed: test for $BASE:property
3527: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
3528: #1059)
3529:
3530: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
3531: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
3532: somebody_entered_some_class, $BASE:property works again,
3533: ^BASE:method[] bugs fixed (fixes bug #1059)
3534:
3535: 2016-07-14 moko
3536:
3537: * tests/: 335.html, results/335.processed: test for feature #1055
3538: added
3539:
3540: * src/classes/hash.C: bugfix: $._default was not copied if empty
3541: feature: ^hash.contains[_default] added (implements feature
3542: #1055)
3543:
3544: 2016-07-13 moko
3545:
3546: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
3547: should not call @autouse (http://www.parser.ru/forum/?id=83480)
3548:
3549: 2016-07-05 moko
3550:
3551: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
3552: in ^hash.foreach (related to feature #1073)
3553:
3554: 2016-07-04 moko
3555:
3556: * tests/: 134.html, 281.html, results/134.processed,
3557: results/281.processed: tests updated after hash blocking removed
3558: (related to feature #1073)
3559:
3560: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
3561: no longer blocks on change during foreach (implements feature
3562: #1073)
3563:
3564: 2016-06-17 moko
3565:
3566: * tests/: 330.html, results/330.processed: try exception source
3567: test added (related to bug in #1062)
3568:
3569: * tests/: 334.html, results/334.processed: Exception stack trace
3570: test added (related to bug in $1062)
3571:
3572: * src/classes/op.C: Exception trace now correctly restored and
3573: errors reported (related to bug #1062)
3574:
1.104 moko 3575: 2016-05-25 moko
3576:
3577: * src/main/compile.y: minor cleanup + beauty
3578:
3579: 2016-05-24 moko
3580:
3581: * tests/: 333.html, results/333.processed: more exceptions testing
3582:
3583: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
3584: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
3585: features #1056, #1026)
3586:
3587: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
3588: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
3589: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
3590: (implements feature #1056)
3591:
3592: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3593: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
3594: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
3595: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
3596: feature #1026)
3597:
3598: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
3599: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
3600: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
3601: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
3602: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
3603: feature #1026)
3604:
3605: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3606: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
3607: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
3608: SYMBOLS_CACHING define implemented (related to feature #1026)
3609:
3610: * src/main/main.vcproj: + ps_symbols
3611:
3612: * src/: include/Makefile.am, include/pa_string.h,
3613: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
3614: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
3615: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3616: types/pa_vstateless_class.C: initial implementation for symbols
3617: cache (related to feature #1026)
3618:
3619: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
3620:
3621: * src/main/pa_globals.C: minor cleanup
3622:
3623: 2016-05-19 moko
3624:
3625: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
3626: (related to feature #1046)
3627:
3628: * tests/: 331.html, results/331.processed: test for
3629: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
3630: (related to feature #1051)
3631:
3632: * src/main/compile.y:
3633: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
3634: (implements feature #1054)
3635:
3636: 2016-05-18 moko
3637:
3638: * src/types/pa_vtable.C, tests/results/324.processed: no more
3639: "column not found" exception for ^table.no-such-method[] (related
3640: to feature #1046)
3641:
3642: * tests/: 261.html, results/261.processed: test added and updated
3643: after feature #1046 implementation
3644:
3645: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
3646: types/pa_vvoid.h: $string.anything works for whitespace strings,
3647: ^string.contains added for hash compatibility, $string.method no
3648: longer returns stting method (implements feature #1046)
3649:
3650: 2016-05-12 moko
3651:
3652: * src/classes/curl.C: content-type response header no longer
3653: ignored (fixes issue #1045)
3654:
3655: * tests/: 330.html, results/330.processed: test for incomplete
3656: finally execution when break occures added (related to issue
3657: #1077)
3658:
3659: * src/classes/op.C: bugfix: Request::skip reset is called before
3660: executing catch and finally code (fixes issue #1062)
3661:
3662: 2016-05-11 moko
3663:
3664: * tests/: 329.html, results/329.processed: test for invalid
3665: ^break[] behavour added (bug #1077)
3666:
3667: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
3668:
3669: 2016-04-24 moko
3670:
3671: * src/types/pa_vstateless_class.h: warning war
3672:
3673: 2016-04-17 moko
3674:
3675: * tests/: 328.html, results/328.processed: test for
3676: ^break(condition) and ^continue(condition) (related to feature
3677: #1063)
3678:
3679: * src/classes/op.C: ^break(condition) and ^continue(condition)
3680: implemented (feature #1063)
3681:
3682: 2016-04-12 moko
3683:
3684: * tests/results/280.processed: ordered hash now used for class
3685: methods and properties (test results updated for feature #1069)
3686:
3687: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
3688: to xdoc.C as under FreeBSD it was inited after and inheritance
3689: failed (related to issue #1051)
3690:
3691: * tests/: 320.html, results/320.processed: xdoc and xnode methods
3692: are printed to check inheritance (related to feature #1051)
3693:
1.103 moko 3694: 2016-04-09 moko
3695:
3696: * tests/results/320.processed: ordered hash now used for class
3697: methods and properties (test results updated for feature #1069)
3698:
3699: * src/types/pa_vstateless_class.h: ordered hash now used for class
3700: methods and properties (implements feature #1069)
3701:
3702: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
3703: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
3704: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
3705: feature #1051)
3706:
3707: 2016-04-07 moko
3708:
3709: * src/main/execute.C: returned Value in .CLASS case for VJunction
3710: (related to feature #1051)
3711:
3712: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
3713: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
3714: string constants deduplication (related to feature #1051)
3715:
3716: * tests/results/224.processed: test result updated (related to
3717: feature #1051)
3718:
3719: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
3720: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
3721: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
3722: types/pa_vstatus.h: classes hash now contains only
3723: VStateless_class derived objects, .CLASS is also allways
3724: VStateless_class derived object (related to feature #1051).
3725:
3726: 2016-04-06 moko
3727:
3728: * tests/results/323.processed: test result updated after feature
3729: #1051 implementation
3730:
3731: * src/: classes/classes.h, classes/op.C, classes/response.C,
3732: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3733: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
3734: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
3735: types/pa_vresponse.C, types/pa_vresponse.h,
3736: types/pa_vstateless_class.h: base -> methoded_donor for static
3737: classes, type() moved from VStateless_class to VClass and
3738: Methoded (implements feature #1051)
3739:
3740: 2016-04-04 moko
3741:
3742: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
3743: beauty: put_class added (related to feature #1051)
3744:
3745: 2016-04-01 moko
3746:
3747: * tests/results/: 175.processed, 192.processed, 224.processed,
3748: 229.processed, 244.processed, 246.processed, 316.processed: test
3749: results updated as class.type() removed from error messages, only
3750: type() left (related to feature #1051)
3751:
3752: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
3753: classes/op.C, classes/reflection.C, main/compile.y,
3754: main/compile_tools.h, main/execute.C, main/pa_request.C,
3755: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
3756: types/pa_vmethod_frame.h, types/pa_vobject.h,
3757: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
3758: from VStateless_class, type() is used instead (related to feature
3759: #1051)
3760:
3761: * src/classes/mail.C: old logic restored.
3762:
3763: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
3764: classes/classes.h, classes/curl.C, classes/date.C,
3765: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
3766: classes/hashfile.C, classes/image.C, classes/inet.C,
3767: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3768: classes/memcached.C, classes/memory.C, classes/reflection.C,
3769: classes/regex.C, classes/response.C, classes/string.C,
3770: classes/table.C, classes/xdoc.C, classes/xnode.C,
3771: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
3772: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
3773: feature #1051)
3774:
3775: 2016-03-30 moko
3776:
3777: * tests/: 327.html, results/224.processed, results/327.processed:
3778: test for TZ specification in ^date::create[], TZ is kept during
3779: ^date::create[$dt] (related to feature #1048)
3780:
3781: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
3782: ^date::create[], TZ is kept during ^date::create[$dt] (implements
3783: feature #1048)
3784:
3785: 2016-03-29 moko
3786:
3787: * tests/: 315.html, results/315.processed: test for timezone format
3788: +HHmm added (related to feature #1065)
3789:
3790: * src/classes/date.C: timezone format +HHmm now supported
3791: (implements feature #1065)
3792:
3793: 2016-03-28 moko
3794:
3795: * tests/: 202.html, results/131.processed, results/202.processed,
3796: results/224.processed, results/256.processed,
3797: results/315.processed: test results updated after %.2d now
3798: default for hours offset in iso-string (was %2d), test for
3799: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3800: added (related to feature #1065)
3801:
3802: 2016-03-27 moko
3803:
3804: * src/types/pa_vdate.C: '+' sign for zero offset (related to
3805: feature #1065)
3806:
3807: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3808: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3809: added (implements feature #1065)
3810:
3811: 2016-03-24 moko
3812:
3813: * tests/: 202.html, results/202.processed: test $date.week added
3814: (related to bug #1067)
3815:
3816: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
3817: date (fix for bug #1067)
3818:
3819: 2016-03-10 moko
3820:
3821: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
3822:
1.102 moko 3823: 2015-12-07 moko
3824:
3825: * tests/: 326.html, results/326.processed: test for .CLASS &
3826: .CLASS_NAME optimization added (related to feature #844)
3827:
3828: 2015-11-17 moko
3829:
3830: * tests/: 323.html, results/323.processed: order added
3831:
3832: * tests/: 325.html, results/325.processed: double range test added
3833: (related to bug #1049)
3834:
3835: 2015-11-16 moko
3836:
3837: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
3838: added to disallow NaN and Infinity (fixes bug #1049)
3839:
3840: 2015-11-11 moko
3841:
3842: * tests/324.html: parser 3.4.3 execution support added (related to
3843: feature #1017)
3844:
3845: * tests/: 324.html, results/324.processed: test for
3846: GET_ELEMENT4CALL feature added (feature #1017)
3847:
1.101 moko 3848: 2015-10-29 moko
3849:
3850: * operators.txt: updated for 3.4.4
3851:
3852: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
3853:
3854: * src/main/pa_exec.C: get_exit_status implemented for Windows
3855: (related to bug #1043)
3856:
3857: 2015-10-28 moko
3858:
3859: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
3860: hangup during ^file::exec (fixes bug #1043)
3861:
1.100 moko 3862: 2015-10-27 moko
3863:
3864: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
3865:
1.99 moko 3866: 2015-10-26 moko
3867:
1.100 moko 3868: * tests/322.html, src/classes/reflection.C: arguments reorder
3869: (related to issue #1041)
3870:
3871: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
3872: Copyright year updated
3873:
1.99 moko 3874: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
3875: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
3876: classes/form.C, classes/hash.C, classes/hashfile.C,
3877: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
3878: classes/mail.C, classes/math.C, classes/memcached.C,
3879: classes/memory.C, classes/op.C, classes/reflection.C,
3880: classes/regex.C, classes/response.C, classes/string.C,
3881: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
3882: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
3883: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
3884: include/pa_config_fixed.h, include/pa_config_includes.h,
3885: include/pa_dictionary.h, include/pa_dir.h,
3886: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
3887: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
3888: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
3889: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
3890: include/pa_request_charsets.h, include/pa_request_info.h,
3891: include/pa_sapi.h, include/pa_socks.h,
3892: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
3893: include/pa_stack.h, include/pa_string.h,
3894: include/pa_stylesheet_connection.h,
3895: include/pa_stylesheet_manager.h, include/pa_table.h,
3896: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
3897: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
3898: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
3899: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
3900: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
3901: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
3902: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
3903: main/compile.y, main/compile_tools.C, main/compile_tools.h,
3904: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
3905: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
3906: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
3907: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
3908: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
3909: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
3910: main/pa_string.C, main/pa_stylesheet_connection.C,
3911: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
3912: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
3913: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
3914: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
3915: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
3916: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
3917: targets/isapi/parser3isapi.C, types/pa_junction.h,
3918: types/pa_method.h, types/pa_property.h, types/pa_value.C,
3919: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
3920: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
3921: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
3922: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
3923: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
3924: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
3925: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
3926: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
3927: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
3928: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
3929: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
3930: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3931: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
3932: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
3933: types/pa_vresponse.C, types/pa_vresponse.h,
3934: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
3935: types/pa_vstateless_object.h, types/pa_vstatus.C,
3936: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
3937: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
3938: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3939: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
3940: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
3941:
3942: * src/targets/cgi/parser3.C: year updated
3943:
3944: * src/classes/reflection.C: VS2003 compatibility fixed (related to
3945: issue #1041)
3946:
3947: * tests/: 323.html, results/323.processed: test for base classes
3948: added
3949:
3950: * tests/: 261.html, results/261.processed: updated after better
3951: error reporting done for $string.key exception
3952:
3953: * src/types/pa_vstring.h: better error report for $string.key
3954: exception
3955:
3956: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
3957: copied as VObject::get_element4call to remove extra virtual call
3958:
3959: * tests/: 322.html, results/322.processed: test for
3960: ^reflection:is[] added (related to feature #1041)
3961:
3962: * src/classes/reflection.C: ^reflection:is empty value is void
3963: (related to feature #1041)
3964:
3965: * src/classes/reflection.C:
3966: ^reflection:is[class_name|code|method;[context;]element_name]
3967: added (implements feature #1041)
3968:
3969: 2015-10-24 moko
3970:
3971: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
3972:
1.98 moko 3973: 2015-10-22 moko
3974:
3975: * tests/: 321.html, results/321.processed: test for
3976: ^reflection:method_info[] file detection added
3977:
3978: * tests/: 320.html, results/320.processed: test for
3979: ^reflection:class_by_name[class_name] added (related to feature
3980: #993)
3981:
3982: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
3983: added (implements feature #993)
3984:
3985: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
3986: (related to feature #1017)
3987:
3988: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
3989: added (related to issue #1039)
3990:
3991: * src/main/pa_request.C: ^throw origin fixed (related to feature
3992: #1039)
3993:
3994: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
3995: for VDate
3996:
3997: * tests/results/182.processed: updated after feature #1038
3998: implemented
3999:
4000: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
4001: compile-time exception origin added (test for feature #1039)
4002:
4003: * src/: include/pa_request.h, main/compile.C, main/compile.y,
4004: main/pa_request.C: exception unification: compile-time exceptions
4005: now have origin, @USE origins also tracked (implements feature
4006: #1039)
4007:
4008: 2015-10-20 moko
4009:
4010: * src/main/pa_request.C: cleanup
4011:
4012: 2015-10-15 moko
4013:
4014: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
4015:
4016: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
4017: types/pa_vtable.C: new feature: no more $table.method and
4018: $hash.method, aliases for _at, _count, _key (related to feature
4019: #1017)
4020:
1.97 moko 4021: 2015-10-14 moko
4022:
1.98 moko 4023: * tests/: 317.html, results/317.processed: test for
4024: ^string.unescape[] added (related to feature #120)
4025:
1.97 moko 4026: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
4027: defined" bug (described in issue #1036)
4028:
4029: * tests/: 247.html, results/247.processed: test for checkBOM added
4030: (test for bug #1037)
4031:
4032: * src/: include/pa_charsets.h, main/pa_charsets.C,
4033: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
4034: it's not enforced, skips BOM signature if it complies charset
4035: (fixes bug #1037)
4036:
4037: 2015-10-13 moko
4038:
4039: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
4040: linking
4041:
4042: * src/classes/inet.C: vs2003 compilation fix
4043:
4044: * src/classes/math.C: warning war
4045:
4046: * src/lib/punycode/pa_punycode.c: warning war
4047:
4048: 2015-10-12 moko
4049:
4050: * src/lib/punycode/pa_punycode.c: warning war
4051:
4052: * parser3.sln: moved parser3 first, to make it default startup
4053: project
4054:
4055: * buildall: parser "mirror" now used for external libs sources
4056: (implements feature #1036)
4057:
4058: * buildall: most external libs are updated to their current
4059: versions (related to feature #1036)
4060:
4061: * src/classes/image.C: more tags added
4062:
4063: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
4064:
4065: 2015-10-11 moko
4066:
4067: * src/classes/curl.C: minor optimization (related to feature #1035)
4068:
4069: 2015-10-09 moko
4070:
4071: * src/classes/curl.C: pa_strdup added for strings from curl
4072: (related to feature #1035)
4073:
4074: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
4075: ULLONG_MAX definition
4076:
4077: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
4078: (implements feature #1035)
4079:
4080: * src/main/pa_charset.C: String::Body(String::C) used
4081:
4082: * src/main/pa_charset.C: exceptions unified
4083:
4084: * src/: include/pa_charset.h, main/pa_charset.C: declarations
4085: unified
4086:
4087: * src/: classes/file.C, classes/image.C, classes/mail.C,
4088: classes/op.C, classes/xdoc.C, classes/xnode.C,
4089: include/pa_string.h, main/pa_request.C, main/pa_string.C,
4090: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
4091: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
4092: String::Body(String::C) constructor added (related to bug #957)
4093:
4094: * src/classes/file.C: minor optimization
4095:
4096: * src/include/pa_hash.h: hash.get(char*) added, to minimize
4097: Cord(char*) autocreation (related to bug #957)
4098:
4099: * src/: classes/string.C, main/untaint.C: minor optimizations
4100:
4101: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
4102: String(char*, Lang, length) removed, String(C(), Lang) used
4103: instead (related to bug #957)
4104:
4105: 2015-10-08 moko
4106:
4107: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
4108: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
4109: main/untaint.C: Now char * is converted to CORD only using
4110: AS_CORD() to check for empty cord bug (fixes bug #957)
4111:
4112: * src/include/pa_hash.h: fixed compilation without
4113: HASH_CODE_CACHING
4114:
4115: * src/classes/string.C:
4116: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
4117: feature #120)
4118:
4119: * src/main/pa_common.C: reduce js flags checks count (related to
4120: feature #120)
4121:
1.96 moko 4122: 2015-10-07 moko
4123:
4124: * tests/: 275.html, results/275.processed: test modified after
4125: unsigned long long int support implemented (feature #1034)
4126:
4127: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
4128: pa_atoul added for unsigned long long int support
4129:
4130: 2015-10-06 moko
4131:
4132: * src/types/pa_vdate.C: INT_MAX used
4133:
4134: 2015-10-03 moko
4135:
4136: * tests/: 302.html, results/302.processed: test for bug #1023
4137: (\u2028, \u2029 escaping) added
4138:
4139: * src/main/untaint.C: \u2028, \u2029 are now escaped in
4140: json:string[] (fixes bug #1023)
4141:
4142: 2015-09-29 moko
4143:
4144: * tests/305.html: try-catch added for OS without ipv6 support
4145:
4146: * src/lib/json/pa_json.C: more unique prefixes for Solaris
4147: compilation
4148:
4149: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
4150: main/execute.C, types/pa_value.h, types/pa_vhash.h,
4151: types/pa_vtable.C, types/pa_vtable.h: get_element4call
4152: implemented to distinguish ^hash.method from $hash.field
4153: (implements feature #1017)
4154:
4155: * src/lib/punycode/pa_punycode.c: warning war
4156:
4157: * src/include/pa_config_includes.h: warning war
4158:
4159: * src/include/pa_config_includes.h: pragma warning actualized a bit
4160:
4161: * src/include/pa_config_includes.h: warning war
4162:
4163: * src/include/pa_hash.h: clang compilation fix
4164:
4165: 2015-09-27 moko
4166:
4167: * src/main/compile.tab.C: Bison 3 is now default
4168:
4169: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
4170:
4171: 2015-09-25 moko
4172:
4173: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
4174: works with undefined HASH_ORDER (related to feature #196)
4175:
4176: 2015-09-24 moko
4177:
4178: * tests/: 027.html, results/027.processed: test modified to test
4179: ^hash.sort (feature #196)
4180:
4181: * src/: classes/hash.C, include/pa_hash.h:
4182: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
4183: added (implements feature #196)
4184:
4185: * tests/: 316.html, results/316.processed: Added test for bug #1025
4186: (exception handling in non-cached ^cache), plus for "it does not
4187: have logical value" and "$exception.handled value must be either
4188: boolean or string 'cache'" exceptions.
4189:
4190: * src/classes/op.C: ^cache: exceptions now handled in non-cached
4191: code (fixes bug #1025)
4192:
1.95 moko 4193: 2015-09-23 moko
4194:
4195: * src/classes/table.C: warning war
4196:
4197: * src/: classes/math.C, types/pa_vcookie.C: warning war
4198:
4199: * src/classes/file.C: warning war
4200:
4201: * src/: include/pa_table.h, main/pa_table.C: warning war
4202:
4203: * src/: main/pa_request.C, classes/date.C: warning war
4204:
4205: * src/: types/pa_vdate.C, classes/op.C: warning war
4206:
4207: * tests/: 122.html, results/122.processed: win sync: to remove
4208: differences with OS that doesn't keep timezone change history
4209:
4210: * src/types/pa_vdate.C: tzset() should be called in Windows after
4211: TZ change (related to feature #36)
4212:
4213: * tests/: 075.html, results/075.processed: win sync: to remove
4214: differences with OS that doesn't keep timezone change history
4215:
4216: * tests/: 315.html, results/315.processed: win sync: to remove
4217: differences with OS that doesn't keep timezone change history
4218:
4219: * tests/: 256.html, results/256.processed: win sync: to remove
4220: differences with OS that doesn't keep timezone change history
4221:
4222: * tests/: 124.html, results/124.processed: win results sync: to
4223: avoid hitting time change hole.
4224:
4225: * src/types/pa_vdate.C: static returned. :)
4226:
4227: 2015-09-22 moko
4228:
4229: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
4230:
4231: * tests/results/131.processed: more tests for feature #1032
4232:
4233: * src/classes/date.C: minor fix related to feature #1032
4234:
4235: * operators.txt: ISO date creation documented (related to feature
4236: #1032)
4237:
4238: * operators.txt: iso-string documented (related to feature #1032)
4239:
4240: * tests/: 315.html, results/315.processed: more tests added
4241: (related to feature #1032)
4242:
4243: * tests/: 131.html, results/131.processed: date range checks
4244: updated (related to feature #36)
4245:
4246: * tests/: 315.html, results/057.processed, results/315.processed:
4247: test added for ISO date support (related to issue #315)
4248:
4249: * src/classes/date.C: more readable exceptions in date creation
4250: (related to ticket #1032)
4251:
4252: 2015-09-18 moko
4253:
4254: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
4255: added (related to issue #1032)
4256:
4257: * tests/results/256.processed, src/classes/json.C: iso-string
4258: documented (related to issue #1032)
4259:
4260: * tests/: 256.html, results/256.processed: ISO date check added
4261: (related to issue #1032)
4262:
4263: * tests/: 057.html, results/057.processed, results/224.processed:
4264: tests results updated after ISO date support implemented (related
4265: to feature #1032)
4266:
4267: * src/: classes/date.C, classes/image.C, types/pa_value.h,
4268: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
4269: ^date::create[string] constructor formalized, ^date.iso-string[]
4270: added (implements feature #1032)
4271:
4272: 2015-09-05 moko
4273:
4274: * operators.txt: actualized
4275:
4276: * operators.txt: date changes documented (related to ticket #36)
4277:
4278: 2015-09-04 moko
4279:
4280: * src/types/pa_vdate.C: warning war
4281:
4282: * src/: classes/op.C, types/pa_vhashfile.C: warning war
4283:
4284: 2015-09-03 moko
4285:
4286: * tests/results/096.processed: test result updated for 0..9999 year
4287: date range support (related to feature #36)
4288:
4289: * tests/: 314.html, results/314.processed: test for
4290: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
4291: bug #1031)
4292:
4293: * src/classes/string.C: Static calls fixed for ^string:base64[],
4294: ^string:idna[], ^string:js-escape[] (closes bug #1031)
4295:
1.116 moko 4296: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
4297: configure.in -> configure.ac
1.95 moko 4298:
1.116 moko 4299: * configure, configure.in, src/include/pa_config_auto.h.in: more
4300: correct timezone check for FreeBSD Warning war: configure.in ->
4301: configure.ac
1.95 moko 4302:
4303: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 4304: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
4305: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
4306: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
4307: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
4308: src/main/Makefile.am, src/targets/apache/Makefile.am,
4309: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 4310: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
4311: check added
4312:
4313: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
4314:
4315: * tests/results/: 124.processed, 224.processed: test resuls updated
4316: for new date implementation (related to feature #36)
4317:
4318: * src/: classes/date.C, classes/image.C, include/pa_common.h,
4319: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
4320: types/pa_vdate.h: new double date implementation with internal
4321: support for extended 0..9999 year range, default timezone support
4322: (related to feature #36)
4323:
4324: 2015-08-28 moko
4325:
4326: * src/types/pa_vmail.C: fixed $mail:received.date calculations
4327: (fixes bug #1030)
4328:
4329: 2015-08-21 moko
4330:
4331: * src/classes/inet.C: snprintf size "bug" commented
4332:
4333: * src/main/pa_common.C: snprintf comments updated
4334:
4335: 2015-08-16 moko
4336:
4337: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
4338:
4339: 2015-08-11 moko
4340:
4341: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4342: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
4343: can be null (fixes bug #1029)
4344:
4345: 2015-08-06 moko
4346:
1.116 moko 4347: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
4348: pa_vdate.C added
1.95 moko 4349:
4350: 2015-08-05 moko
4351:
4352: * tests/: 313.html, results/313.processed: test for
4353: ^table.count[columns] and ^table.flip[] with nameless tables
4354: (feature #1003)
4355:
4356: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4357: max_cell added, now ^table.count[columns] and ^table.flip[] works
4358: correctly for nameless tables (implements feature #1003)
4359:
4360: 2015-08-03 moko
4361:
4362: * tests/312.html: test for ^table.append[$hash] and
4363: ^table.insert[$hash] added (related to feature #1028)
4364:
4365: * src/classes/table.C: ^table.append[$hash] and
4366: ^table.insert[$hash] now supported (implements feature #1028)
4367:
4368: * tests/: 312.html, results/312.processed: test row copy in
4369: ^table.hash[; $.type[table] ] added (related to feature #1016)
4370:
4371: * src/classes/table.C: row copy now created in ^table.hash[;
4372: $.type[table] ] (related to feature #1016)
4373:
4374: 2015-07-29 moko
4375:
4376: * tests/: 312.html, results/312.processed: test for ^table.delete[]
4377: added (related to feature #1016)
4378:
4379: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4380: ^table.delete[] added to delete current row (related to feature
4381: 1016)
4382:
4383: 2015-07-28 moko
4384:
4385: * tests/: 312.html, results/312.processed: test for
4386: $table.column[value] and ^table.insert{row} (related to feature
4387: #1016)
4388:
4389: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
4390: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
4391: ^table.insert{row} are now implemented (feature #1016)
4392:
4393: * src/include/pa_array.h: Optimization: bool reverse removed from
4394: append(), insert() added, memmove arguments order in remove()
4395: fixed (related to feature #1016)
4396:
4397: 2015-07-23 moko
4398:
4399: * src/classes/json.C: tainted json and empty json exception added
4400: (implements feature #1015)
4401:
4402: * tests/: 311.html, results/311.processed: empty json and tainted
4403: json exception test added (related to issue #1015)
4404:
4405: 2015-07-22 moko
4406:
4407: * tests/: 311.html, results/311.processed: test for UTF-8
4408: processing added
4409:
4410: * tests/: 311.html, results/311.processed: test for
4411: json_exception_with_source added (related to issue #394)
4412:
4413: * src/classes/json.C: json_exception_with_source added (implements
4414: feature #394)
4415:
4416: 2015-06-29 moko
4417:
4418: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
4419: directories are now correctly determined if _d_type == DT_UNKNOWN
4420: (closes bug #1027)
4421:
4422: 2015-06-10 moko
4423:
4424: * src/types/pa_vxnode.h: extern "C" not requred and causes build
4425: error if libxml has LIBXML_ICU_ENABLED.
4426:
4427: 2015-06-04 moko
4428:
4429: * tests/099.html: ups, reverting
4430:
4431: * tests/: 099.html, 309.html, 310.html, results/309.processed,
4432: results/310.processed: tests for $response:body[ $.file[] ] and
4433: $response:last-modified added
4434:
4435: * src/main/pa_request.C: last-modified check fixed
4436:
4437: 2015-06-03 moko
4438:
4439: * tests/: 204.html, 205.html, 293.html, results/204.processed,
4440: results/205.processed, results/293.processed: $response:headers
4441: logging added (tests for feature #1007)
4442:
4443: * src/: include/pa_common.h, include/pa_request.h,
4444: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
4445: $response:headers are now in uppercase (closes feature #1007)
4446:
4447: 2015-06-02 moko
4448:
4449: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
4450: build errors reverted for clang compatibility
4451:
4452: 2015-06-01 moko
4453:
4454: * src/include/pa_memory.h: -pedantic build errors fixed
4455:
4456: * src/classes/math.C: -pedantic build error fixed
4457:
4458: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
4459:
4460: 2015-05-31 moko
4461:
4462: * src/classes/table.C: USE_STRINGSTREAM optimized
4463:
4464: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
4465: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
4466: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
4467: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
4468: types/pa_vxnode.h: warning war (-pedantic flag)
4469:
4470: 2015-05-28 moko
4471:
4472: * tests/: 308.html, results/308.processed: test for
4473: ^table::create[$t;], etc work added (related to bug #975)
4474:
4475: * src/classes/table.C: check_option_param removed,
4476: ^table::create[$t;], etc now works (fixes bug #975)
4477:
4478: 2015-05-27 moko
4479:
4480: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
4481: (Debian jessie) fixed (closes issue #1024)
4482:
4483: * tests/Makefile: sort added as in Debian jessie list become
4484: unsorted
4485:
4486: 2015-05-18 moko
4487:
4488: * tests/: 201.html, results/201.processed: test for
4489: ^string.trim[what] feature #1022
4490:
4491: * src/classes/string.C: ^string.trim[what] now supported,
4492: implements feature #1022
4493:
4494: 2015-05-17 moko
4495:
4496: * tests/results/185.processed: test result updated as feature #1021
4497: implemented (left/right accept negative parameter)
4498:
4499: * src/classes/string.C: left/right now accept negative parameter
4500: (implements feature #1021)
4501:
4502: 2015-05-08 moko
4503:
4504: * src/classes/math.C: isalnum -> pa_isalnum
4505:
4506: * src/main/execute.C: optimization in getter-junction processing
4507: (related to issue #997)
4508:
4509: 2015-05-07 moko
4510:
4511: * tests/: 307.html, results/307.processed: test for issue #997
4512: added
4513:
4514: * src/main/execute.C: process_getter result now checked if junction
4515: returned (closes issue #997)
4516:
4517: * tests/: 305.html, results/305.processed: sort added to ignore
4518: different order
4519:
4520: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
4521: assignment (closes issue #994)
4522:
4523: * tests/: 306.html, results/306.processed: test for issue #994
4524: added
4525:
4526: * tests/: 303.html, results/303.processed: two more errors tested
4527:
4528: 2015-05-06 moko
4529:
4530: * tests/: 305.html, results/305.processed: test for name2ip &
4531: ip2name added (related to feature #992)
4532:
4533: * tests/: 303.html, 304.html, results/303.processed,
4534: results/304.processed: tests for idna conversion added (related
4535: to issue #849)
4536:
4537: 2015-05-02 moko
4538:
4539: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
4540: implemented
4541:
4542: 2015-04-30 moko
4543:
4544: * src/main/pa_http.C: idna_host added, related to issue #849
4545:
4546: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
4547: (related to issue #849)
4548:
4549: 2015-04-24 moko
4550:
4551: * src/types/pa_vjunction.C: warning war
4552:
4553: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
4554: unification
4555:
4556: * src/lib/punycode/pa_idna.c: warning war
4557:
4558: 2015-04-22 moko
4559:
4560: * src/main/main.vcproj: punycode include path added
4561:
4562: * src/lib/punycode/pa_idna.c: windows compile error fixed
4563:
4564: * src/lib/punycode/pa_idna.c: warning war
4565:
4566: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
4567: project file added
4568:
4569: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
4570:
4571: * src/include/pa_memory.h: warning war
4572:
4573: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
4574: ^string:idna[xn--...], ^string.idna[] - idna conversion support
4575: implemented (related to feature #849)
4576:
4577: * configure.in, src/main/Makefile.am,
4578: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
4579: libpunycode added in Unix
4580:
4581: 2015-04-21 moko
4582:
4583: * configure.in: large files support
4584:
4585: 2015-04-15 moko
4586:
4587: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
4588: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
4589: pa_punycode.h: initial version for punycode/idna support library
4590: (ticket #849)
4591:
4592: 2015-04-08 moko
4593:
4594: * src/: classes/curl.C, classes/date.C, classes/file.C,
4595: classes/image.C, classes/mail.C, classes/reflection.C,
4596: classes/string.C, classes/xnode.C, include/pa_request.h,
4597: include/pa_string.h, include/pa_stylesheet_connection.h,
4598: main/compile.y, main/compile_tools.h, main/execute.C,
4599: main/pa_common.C, main/pa_request.C, main/pa_string.C,
4600: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
4601: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
4602: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
4603: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
4604: clang compiler warnings (closes issue #1018)
4605:
4606: * src/include/pa_string.h: String::Body comparation operators with
4607: char * added (related to issue #958)
4608:
4609: 2015-04-07 moko
4610:
4611: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
4612: pa_malloc/pa_free to remove system malloc/free usage (related to
4613: issue #1018)
4614:
4615: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
4616: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
4617: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
4618: main/pa_http.C, main/pa_request.C, main/pa_string.C,
4619: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
4620: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
4621: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
4622: malloc/strdup/free replaced with pa_ version and checks for
4623: accidental use of non-pa_ version added (related to issue #1018)
4624:
4625: 2015-04-03 moko
4626:
4627: * buildall: pcre-8.33 -> pcre-8.36
4628:
4629: * src/: main/compile.y, classes/form.C, classes/mail.C,
4630: classes/op.C, classes/string.C, main/compile.tab.C,
4631: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
4632: main/pa_sql_driver_manager.C, types/pa_vfile.C,
4633: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
4634: ticket #958)
4635:
4636: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
4637: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4638: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
4639: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
4640: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
4641: $request:headers, $request:method added (implements feature
4642: #1007)
4643:
4644: 2015-03-17 misha
4645:
4646: * tests/302.html: - test for
4647: ^json:string[...;$._default[method-name]]
4648:
4649: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4650: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
4651: option $._default[method-name] is specified in ^json:string[], a
4652: method with specified name will be called for classes/objects
4653: serialization ( new feature: #982 )
4654:
4655: 2015-03-16 misha
4656:
4657: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
4658: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
4659: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
4660: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
4661: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
4662: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
4663: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4664: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
4665: types/pa_vrequest.h, types/pa_vstateless_class.C,
4666: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4667: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
4668: $var.CLASS_NAME now have special opcodes. This can be switched
4669: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
4670: on pa_opcode.h ( new feature: #844 )
4671:
4672: 2015-03-15 misha
4673:
4674: * tests/075.html: - test for $response:header[]
4675:
4676: * src/types/pa_vresponse.C: - $response:header[] deletes header
4677: that was set earlie ( new feature: #1001 )
4678:
4679: 2015-03-12 misha
4680:
4681: * tests/246.html: - more tests for ^hash._at[]
4682:
4683: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
4684: accepts second param [key|value|hash] ( new feature: #1012 )
4685:
4686: 2015-03-09 moko
4687:
4688: * src/types/pa_vmail.C: exception for everything but
4689: $mail:received, closes issue #1011
4690:
4691: 2015-02-20 moko
4692:
4693: * tests/: 275.html, results/275.processed: hex detection in
4694: pa_atoui fix test (closes issue #1010)
4695:
4696: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
4697: issue #1010)
4698:
4699: 2015-02-17 moko
4700:
4701: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
4702: tainted.
4703:
4704: 2015-02-03 misha
4705:
4706: * tests/301.html: - test for ^json:string($double) causes
4707: exception. bugfix: #1008
4708:
4709: * src/classes/json.C: - ^json:string($double) causes exception.
4710: bugfix: #1008
4711:
4712: * tests/014.html: - updated for work with ^hash.delete[]
4713:
4714: 2015-01-12 misha
4715:
4716: * src/: classes/form.C, include/pa_common.h,
4717: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
4718: types/pa_vform.h: - supports body with PUT method as well ( new
4719: feature: #1006 )
4720:
4721: * src/classes/file.C: - warnings war
4722:
4723: 2015-01-11 misha
4724:
4725: * tests/300.html: - test for ^hash.delete[] is added
4726:
4727: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
4728: feature: #989 ) - tiny optimization in intersects
4729:
4730: 2015-01-06 moko
4731:
4732: * src/types/pa_vmail.C: file names transcode added, to and cc added
4733: with transcode, attachments detection fixed
4734:
4735: * src/main/pa_request.C: filling mail received after cgi/auto.p
4736: load to allow charset switch (related to issue #996)
4737:
4738: 2014-12-31 moko
4739:
4740: * src/types/pa_vmail.C: from and subject now transcoded if not
4741: UTF-8 source charset (fixes issue 996)
4742:
4743: * src/main/pa_exception.C: fixed string from stack bug (closes
4744: issue #1000)
4745:
4746: 2014-12-11 misha
4747:
4748: * src/types/pa_vhashfile.C: - check if key is not empty before
4749: access ( bug fix: #1005 )
4750:
4751: 2014-11-13 misha
4752:
4753: * src/main/compile.y: - PC.append does not reset to false while
4754: creating a new class. bugfix: #990
4755:
4756: * tests/299.html: - test for creation class after working with
4757: partial class (create+append)
4758:
4759: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
4760: #995
4761:
4762: * tests/232.html: - test for @get[def] added
4763:
4764: 2014-10-12 moko
4765:
4766: * src/lib/pcre/pcre_internal.vcproj: correct path
4767:
4768: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
4769: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
4770: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
4771: targets/apache/ApacheModuleParser3.vcproj,
4772: targets/apache/ApacheModuleParser3Core.vcproj,
4773: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4774: types/types.vcproj: project GUID inserted in *.vcproj for correct
4775: conversion in newer VS versions
4776:
4777: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
4778: pcre_internal.vcproj added
4779:
4780: 2014-08-28 moko
4781:
4782: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
4783: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
4784: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
4785:
4786: 2014-06-30 misha
4787:
4788: * tests/298.html: - tests for ^reflection:def[class;className]
4789: added
4790:
4791: * src/classes/reflection.C: - ^reflection:def[class;className]
4792: added ( new feature: #918 )
4793:
4794: 2014-06-29 misha
4795:
4796: * src/classes/table.C: - ^table::create[unsupported data] -
4797: exception comment changed to "body must be table or code" ( bug
4798: fix: #951 )
4799:
4800: * tests/: 261.html, results/261.processed: - tests for
4801: ^json:string[...;$.void[null|string]] added
4802:
4803: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
4804: option $.void[string|null] added to ^json:string[...] ( new
4805: feature: #952 )
4806:
4807: 2014-06-28 moko
4808:
4809: * src/classes/curl.C: $.charset now processed before other curl
4810: options (closes issue #980)
4811:
4812: 2014-05-23 misha
4813:
4814: * src/classes/json.C: - bug fix: #987
4815:
4816: 2014-05-04 misha
4817:
4818: * tests/: 253.html, 253_json.txt: - test for
4819: ^json:parse[$.int(false)] is added
4820:
4821: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
4822: default true). The option is similar to $.double(bool) but for
4823: integers.
4824:
4825: 2014-05-01 moko
4826:
4827: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
4828: #12 )
4829:
4830: 2014-04-16 moko
4831:
4832: * src/main/pa_http.C: response-charset option should finally work
4833: now (fix for issue #867)
4834:
4835: * src/main/pa_http.C: response-charset option should work now (fix
4836: for issue #867)
4837:
4838: 2014-03-07 moko
4839:
4840: * buildall: libgc moved
4841:
4842: * buildall: libgc moved
4843:
4844: 2013-12-29 moko
4845:
4846: * src/classes/string.C: ^string:js-unescape result now tainted,
4847: closes issue #966
4848:
4849: * tests/: 186.html, results/186.processed: ^string:js-unescape
4850: result now tainted, issue #966
4851:
4852: 2013-12-03 moko
4853:
4854: * src/: classes/memcached.C, types/pa_vmemcached.C,
4855: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
4856: option was added for http://www.parser.ru/forum/?id=79343
4857:
4858: * src/classes/file.C: bugfix for
4859: http://www.parser.ru/forum/?id=79337
4860:
4861: 2013-11-05 moko
4862:
4863: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
4864:
4865: * src/main/pa_globals.C: spelling fixed
4866:
4867: 2013-10-29 moko
4868:
4869: * src/lib/json/json.vcproj: json.c -> pa_json.C
4870:
4871: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
4872: #892
4873:
4874: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
4875: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
4876: exceptions to be thrown thougth json library), related to issue
4877: #892
4878:
4879: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
4880: related to issue #896
4881:
4882: 2013-10-24 moko
4883:
4884: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
4885:
4886: 2013-10-23 moko
4887:
4888: * README: actualization
4889:
4890: 2013-10-22 moko
4891:
4892: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
4893: compatibility patch from Sergey Kirpichev
4894:
4895: * tests/: 297.html, results/297.processed: non-working getter fix
4896: test for issue #948
4897:
4898: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
4899: called when saving value of $match variable in ^string.match[] to
4900: increase compatibility (related to issue #948).
4901:
4902: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
4903: usage optimization
4904:
4905: 2013-10-21 moko
4906:
4907: * tests/: 182.html, results/182.processed: local path removed for
4908: compatibility
4909:
4910: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
4911: results/244.processed, results/253.processed,
4912: results/254.processed, results/275.processed,
4913: results/281.processed: try_catch -> try-catch
4914:
4915: * tests/: 288.html, 294.html, 296.html, results/288.processed,
4916: results/294.processed, results/296.processed: try_catch ->
4917: try-catch
4918:
4919: 2013-10-20 moko
4920:
4921: * tests/: 296.html, results/296.processed: test for xsl exception
4922: for issue #938 added.
4923:
4924: * src/: include/pa_xml_exception.h,
4925: main/pa_stylesheet_connection.C: forgotten to be replaced
4926: XmlException is now replaced (once again closes issue #938)
4927:
4928: 2013-10-18 moko
4929:
4930: * buildall: disable clock_gettime detection to avoid librt linking
4931: (which in turn depends on libpthread), related to issue #943
4932:
4933: 2013-10-18 misha
4934:
4935: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
4936: lib/smtp/smtp.vcproj, main/main.vcproj,
4937: targets/apache/ApacheModuleParser3Core.vcproj,
4938: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4939: types/types.vcproj: - new locations for libxml2 includes where
4940: added to vcproj files
4941:
4942: 2013-10-18 moko
4943:
4944: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
4945: fix
4946:
4947: * tests/: 295.html, results/295.processed: test for issue #948
4948: updated
4949:
4950: * src/classes/table.C: hopefully last lost part for issue #948 fix.
4951: :)
4952:
4953: * tests/: 295.html, results/295.processed: test for issue #948
4954: added
4955:
4956: * src/: classes/hash.C, classes/string.C, classes/table.C,
4957: include/pa_request.h, types/pa_method.h: for getters and setters
4958: to be executed request.put_element should be called, not
4959: context.put_element (fixes issue #948)
4960:
4961: 2013-10-17 moko
4962:
4963: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
4964: LIBXML2_NEW_BUFFER check (closes issue #943)
4965:
4966: * buildall: libxml 2.9.1 build is broken --without-reader.
4967:
4968: 2013-10-16 moko
4969:
4970: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
4971:
4972: * tests/: 294.html, results/294.processed: test for issue #938
4973:
4974: * src/: classes/xdoc.C, classes/xnode.C,
4975: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
4976: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
4977:
4978: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
4979: libxslt-1.1.26 -> libxslt-1.1.28
4980:
4981: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
4982: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
4983: to '?', related to issue #938
4984:
4985: 2013-10-15 moko
4986:
4987: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
4988: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
4989: minor optimizations (closes issue #896)
4990:
4991: * tests/results/: 292.processed, 293.processed: results updated to
4992: comply with issue #896
4993:
4994: * tests/: 292.html, 293.html, results/292.processed,
4995: results/293.processed: tests for json escaping
4996:
4997: 2013-10-14 moko
4998:
4999: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
5000: and cleanup, code moved from .h to .C, no changes in code
5001:
5002: 2013-10-12 moko
5003:
5004: * tests/results/119.processed: updated test result commited
5005:
5006: * tests/: 291.html, results/291.processed: test for issue #894
5007: added
5008:
5009: * src/types/pa_wcontext.h: base methods call support function
5010: get_somebody_entered_some_class should not be true forever, as
5011: wcontext can have many get_elements calls (fixes issue #894)
5012:
5013: 2013-10-11 moko
5014:
5015: * tests/: 290.html, results/290.processed: test for junction GPF
5016: issue #942 added
5017:
5018: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
5019: to native method fixed (closes issue #942)
5020:
5021: * tests/: 158.html, results/158.processed: test for csv-string[]
5022: added
5023:
5024: * src/classes/table.C: minor fixes for table.csv-string[] (closes
5025: feature #907)
5026:
5027: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
5028: feature #907)
5029:
5030: 2013-10-09 moko
5031:
5032: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
5033: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
5034: types/pa_vstateless_class.C: GET_default, SET_default now works
5035: properly not only in objects, but in classes as well (closes
5036: issue #903)
5037:
5038: * tests/: 289.html, results/289.processed: GET/SET_default now
5039: works in classes, not only objects, test case added, related to
5040: issue #903
5041:
5042: * tests/: 288.html, results/288.processed: test for endless
5043: recursion bug added (related to issue #903)
5044:
5045: 2013-10-05 moko
5046:
5047: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
5048: classes/table.C, main/execute.C, types/pa_method.h,
5049: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
5050: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
5051: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
5052: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
5053: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
5054: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
5055: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
5056: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
5057: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
5058: optimization: put_element no longer has "bool areplace" argument,
5059: related to issue #903
5060:
5061: 2013-10-03 moko
5062:
5063: * tests/results/182.processed: result for $.replace(false) test
5064: commited
5065:
5066: * src/classes/date.C: ^date::create(number) processed correctly
5067: (fixes issue #901)
5068:
5069: * src/classes/image.C: as_no_junction removed, as param can be
5070: expression (closes issue #931)
5071:
5072: * tests/233.html: test for issue #931 added
5073:
5074: 2013-10-02 moko
5075:
5076: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
5077: modified, test for $.replace(false) added
5078:
5079: * src/main/compile_tools.h: forgotten class replace returned. :)
5080:
5081: 2013-09-30 moko
5082:
5083: * tests/: 141.html, results/141.processed: md5 tainting test added
5084:
5085: * src/: classes/op.C, include/pa_request.h, main/compile.y,
5086: main/compile_tools.h, main/pa_request.C: allow_class_replace
5087: implemented; $.replace option added to ^process and ^use
5088:
5089: 2013-08-27 moko
5090:
5091: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
5092: cstr_to_string_body_untaint should be called with charsets for
5093: possible uri language and connection for possible sql language.
5094: related to issue #857
5095:
5096: * buildall: and -> or fixed
5097:
5098: 2013-08-26 moko
5099:
5100: * buildall: prepare_ functions logic changed to support
5101: gc-7.2d.tar.gz extracting to gc-7.2 directory
5102:
5103: 2013-08-23 moko
5104:
5105: * src/include/pa_config_fixed.h: gc and xml libs are now linked
5106: statically
5107:
5108: 2013-08-22 moko
5109:
5110: * src/classes/string.C: String::Empty used (related to issue #912)
5111: append_know_length removed (related to old GPF bug)
5112:
5113: 2013-08-21 moko
5114:
5115: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
5116:
5117: * src/classes/math.C: ^math:digest[...;$file] support added
5118: (related to ticket #857
5119:
5120: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
5121: implemented
5122:
5123: * src/types/pa_vhashfile.h: warning war
5124:
5125: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
5126: include/pa_request.h, main/pa_request.C, types/pa_value.h:
5127: anti_endless_json_string_recoursion removed from request;
5128: json_string_recoursion added to json_options; $.indent[indent
5129: value] now supported and passed within recoursion closes feature
5130: #937
5131:
5132: * tests/: 287.html, results/287.processed: test for feature #937
5133:
5134: 2013-07-31 moko
5135:
5136: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
5137: compilation having #define _S
5138:
5139: * src/main/pa_globals.C: cleanup
5140:
5141: 2013-07-30 moko
5142:
5143: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
5144: main/pa_common.C: vs2003 warning war
5145:
5146: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
5147:
5148: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
5149:
5150: * src/lib/md5/pa_sha2.c: warning war
5151:
5152: 2013-07-29 moko
5153:
5154: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
5155: patches from github
5156:
5157: * src/: classes/bool.C, classes/double.C, classes/int.C,
5158: classes/memcached.C, include/pa_config_includes.h,
5159: types/pa_vfile.C, types/pa_vfile.h: warning war
5160:
5161: * src/lib/json/json.vcproj: C++ -> C
5162:
5163: * src/lib/json/: json.c, pa_json.C: C++ warning revert
5164:
5165: * src/lib/json/: json.c, pa_json.C: windows compatibility
5166:
5167: * src/lib/json/: json.c, pa_json.C: windows compatibility
5168:
5169: * src/lib/json/: json.c, pa_json.C: warning war
5170:
5171: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
5172:
5173: * src/include/pa_config_fixed.h: uint16_t added
5174:
5175: * configure.in: uint16_t check added
5176:
5177: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 5178: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
5179: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
5180: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
5181: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 5182:
5183: 2013-07-25 moko
5184:
5185: * parser3.sln: dependencies added
5186:
5187: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
5188: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
5189: module support
5190:
5191: * src/targets/apache/mod_parser3_core.C: win32 cleanup
5192:
5193: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
5194:
5195: 2013-07-23 moko
5196:
5197: * src/: include/pa_memory.h, main/pa_memory.C: non-working
5198: PA_DEBUG_GC_MEMORY removed
5199:
5200: * src/: main/pa_globals.C, targets/cgi/parser3.C:
5201: PA_DEBUG_DISABLE_GC compilation fix
5202:
5203: * src/: classes/op.C, classes/table.C, include/pa_request.h,
5204: main/pa_request.C: outdated RESOURCES_DEBUG removed
5205:
5206: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
5207: garbage cleanup
5208:
5209: * src/main/pa_common.C: warning war
5210:
5211: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
5212:
5213: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
5214: minor cleanup
5215:
5216: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
5217: uses cygwin, not WIN32 implementation
5218:
5219: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
5220: able to exec shell scripts
5221:
5222: * src/classes/math.C: ifdef WIN32 cleanup
5223:
5224: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
5225:
5226: * src/classes/curl.C: LT_MODULE_EXT used
5227:
5228: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
5229:
5230: 2013-07-22 moko
5231:
5232: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
5233: includes fix
5234:
5235: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
5236:
5237: * configure.in, src/include/pa_config_includes.h,
5238: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
5239: src/main/pa_exec.C: includes cleanup
5240:
5241: * src/targets/cgi/parser3.C: 2012->2013
5242:
5243: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
5244:
5245: * configure.in, src/include/pa_config_includes.h,
5246: src/include/pa_http.h, src/lib/json/JSON_parser.h,
5247: src/main/pa_random.C, src/main/pa_socks.C,
5248: src/types/pa_vstatus.C: cygwin support cleanup
5249:
5250: * configure.in: dirent.h check added
5251:
5252: * src/: include/pa_config_includes.h, include/pa_dir.h,
5253: main/pa_dir.C: includes cleanup, dirent.h check added filePath
5254: not copied
5255:
5256: 2013-07-21 moko
5257:
5258: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
5259:
5260: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
5261: parser3.vcproj: unused getopt.h / getopt.c removed
5262:
5263: * operators.txt, src/classes/file.C, tests/022.html,
5264: tests/results/022.processed: ^file:list[path][$.filter[regexp]
5265: $.stat(true)] usage commented
5266:
5267: * configure.in, src/classes/file.C, src/include/pa_dir.h,
5268: src/main/pa_dir.C: ^file:list[] now has dir column and when
5269: $.stat(true) it has size/*date columns modified patch from misha@
5270: that closes issue #914.
5271:
5272: * src/: include/pa_config_includes.h, main/pa_globals.C:
5273: PA_RELEASE_ASSERTS removed
5274:
5275: * src/lib/md5/pa_md5c.c: minor cleanup
5276:
5277: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
5278: localeconv()->decimal_point usage remoed (related to issue #934)
5279:
5280: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
5281: cordprnt.c removed
5282:
5283: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
5284: pa-include/pa_errno.h, pa-include/pa_file_io.h,
5285: pa-include/pa_strings.h: includes cleanup
5286:
5287: * src/lib/md5/pa_md5c.c: headers cleanup
5288:
5289: 2013-07-20 moko
5290:
5291: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
5292: cleanup
5293:
5294: 2013-07-19 moko
5295:
5296: * src/classes/math.C: extern "C" added for crypt
5297:
5298: 2013-07-18 moko
5299:
5300: * src/classes/math.C: fix redhat7.2 build
5301:
5302: 2013-07-17 moko
5303:
5304: * configure.in, src/include/pa_config_includes.h,
5305: src/include/pa_config_fixed.h: headers actualized (inttypes.h
5306: added for uint8/32/64_t)
5307:
5308: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
5309: pa_config_includes.h used for uint32/64_t
5310:
5311: 2013-07-16 moko
5312:
5313: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
5314: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
5315: war
5316:
5317: * src/main/compile.tab.C: compile.y was updated
5318:
5319: * src/main/compile.y: warning war
5320:
5321: * src/: include/pa_exception.h, main/pa_exception.C,
5322: main/pa_xml_exception.C: warning war
5323:
5324: * src/: include/pa_common.h, main/pa_common.C: warning war
5325:
5326: * configure.in: beauty :)
5327:
5328: * tests/: 141.html, results/141.processed: sha256/512 added
5329:
5330: 2013-07-13 moko
5331:
5332: * src/lib/md5/md5.vcproj: sha2 added
5333:
5334: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
5335: classes/math.C: sha2 support (sha256/sha512 digest)
5336:
5337: 2013-07-08 moko
5338:
5339: * src/classes/image.C: directory read or other read problem message
5340: fixed (related to issue #933)
5341:
5342: 2013-07-07 moko
5343:
5344: * AUTHORS: + misha + moko. :)
5345:
5346: 2013-07-06 moko
5347:
5348: * src/: classes/curl.C, include/pa_globals.h,
5349: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
5350: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
5351: for lt_dlinit to be called once and lt_dlexit called at right
5352: place (related to issue #925)
5353:
5354: 2013-07-04 moko
5355:
5356: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
5357: VString::as_vfile now uses vfile.set_binary_string to avoid
5358: content-type to be set, as it brokes badly designed logic in
5359: response output. This hopefully finishes issue #928.
5360:
5361: * tests/results/: 256.processed, 286.processed: file now displayed
5362: as name, size, mode, content-type
5363:
5364: * src/main/pa_common.C: read error now reported cottectly (fixes
5365: issue #933
5366:
5367: 2013-06-28 moko
5368:
5369: * tests/: 286.html, results/286.processed: test extended
5370:
5371: * tests/: 286.html, results/286.processed: Test for issue #928
5372: added. it tests default content-type change.
5373:
5374: * src/types/pa_vfile.C: closes issue #928 - default content-type
5375: now updated
5376:
5377: 2013-06-25 moko
5378:
5379: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
5380: content-type for text/binary files without name added;
5381: ^file::create[$f;...] options now works properly and $f
5382: properties are default (fixes issue #928)
5383:
5384: 2013-05-16 misha
5385:
5386: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
5387: added
5388:
5389: * src/main/pa_table.C: - a tiny memory optimisation while creating
5390: table if specified limit is bigger than source rows count
5391:
5392: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
5393: added ( new feature: #858 )
5394:
5395: 2013-04-29 moko
5396:
5397: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
5398: $.ipresolve(0|1|2) added (closes issue #891)
5399:
5400: * src/lib/curl/curl.h: CURL_IPRESOLVE added
5401:
5402: 2013-04-24 moko
5403:
5404: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5405: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5406: types/pa_vmemcached.h: ^memcache.release[] added, calls
5407: memcached_quit (refs #893)
5408:
5409: 2013-04-22 moko
5410:
5411: * src/: include/pa_string.h, main/pa_common.C: no more double
5412: slashes in file path (fixes bug #872)
5413:
5414: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
5415: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
5416: #739)
5417:
5418: * tests/results/266.processed: $.max_params added (feature #915)
5419:
5420: * src/: include/pa_common.h, main/pa_http.C: response-charset
5421: option added to file::load (closes issue #867)
5422:
5423: 2013-04-20 misha
5424:
5425: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
5426: commited
5427:
5428: 2013-03-15 misha
5429:
5430: * src/classes/: hash.C, table.C: - Optimisation: do not create
5431: multiple empty strings while ::sql. uae String::Empty instead
5432:
5433: 2013-03-14 misha
5434:
5435: * src/classes/reflection.C: - for user classes
5436: ^reflection:method_info[] returns $.max_params and $.extra_param
5437: with $.call_type if they available ( new feature: #915 )
5438:
5439: * src/classes/file.C: - ^file:delete[] now supports an option
5440: $.exception(false) that suppress any exception while deleting
5441: file ( new feature: #916 )
5442:
5443: * src/classes/curl.C: - parsing cookies after curl:load now should
5444: work :)
5445:
5446: 2013-03-12 misha
5447:
5448: * src/types/pa_vfile.C: - if specified file_name is empty string
5449: set default name for the file
5450:
5451: 2013-03-11 misha
5452:
5453: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
5454: also available in $f.cookies
5455:
5456: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
5457: moved to a separate method
5458:
5459: 2013-03-10 moko
5460:
5461: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
5462: added
5463:
5464: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
5465: removed (declared by autoconf)
5466:
5467: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
5468: uint32_t define
5469:
5470: 2013-03-10 misha
5471:
5472: * src/classes/file.C: ^file:delete and ^file:move now support
5473: option $.keep-empty-dirs(true) ( new feature: #884 )
5474:
5475: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
5476: empty dirs is added
5477:
5478: 2013-03-10 moko
5479:
5480: * src/classes/: bool.C, double.C, int.C: default can be present,
5481: but default check removed from ^int/double/bool.int/double/bool
5482: for string.int/double/bool compatibility (related to issue #913)
5483:
5484: * src/classes/string.C: ^string.int/dobule/bool no longer
5485: internally throws exception if default is present (closes issue
5486: #913)
5487:
5488: 2013-03-09 misha
5489:
5490: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
5491: optimisations ( #845 )
5492:
5493: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
5494:
5495: 2013-03-08 moko
5496:
5497: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
5498: creates correct table (fixes issue #910)
5499:
5500: * src/classes/op.C: r.connection() -> r.connection(false) to allow
5501: use outside of 'connect' operator (fixes issue #911)
5502:
5503: * tests/results/: 096.processed, 122.processed: test results
5504: updated as doubles now printed with 15 significant digits, not 5
5505: (fixes issue #882)
5506:
5507: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
5508: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
5509:
5510: 2013-02-21 moko
5511:
5512: * src/classes/table.C: _locate_name_value does not check arguments
5513: count, so we check it in advance (fixes issue #905)
5514:
5515: 2012-10-23 moko
5516:
5517: * buildall: old shell for and echo compatibility (for six)
5518:
5519: 2012-10-19 moko
5520:
5521: * buildall: --strip added --disable-safe-mode listed in usage
5522:
5523: 2012-10-17 misha
5524:
5525: * src/classes/op.C: - apply-taint should not throw "outside
5526: connect" exception with sql lang now
5527:
5528: 2012-10-17 moko
5529:
5530: * src/main/pa_request.C: bugfix: safe mode should be inited for
5531: each request (for apache module)
5532:
5533: 2012-09-26 moko
5534:
5535: * src/doc/doxygen.cfg: png -> svg
5536:
5537: 2012-09-25 moko
5538:
5539: * tests/: 141.html, results/141.processed: md5 hmac added, long key
5540: test added
5541:
5542: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
5543: double use when key is long
5544:
5545: 2012-09-16 moko
5546:
5547: * src/classes/math.C: Format -> Method Encode -> Format
5548:
5549: * tests/: 141.html, results/141.processed: math:digest hmac test
5550: added
5551:
5552: 2012-09-14 moko
5553:
5554: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
5555: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
5556: implementation added
5557:
5558: 2012-09-12 moko
5559:
5560: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
5561: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
5562: targets.dox and string.dox slightly actualized
5563:
5564: 2012-08-31 moko
5565:
5566: * ChangeLog: now generated with patched cvs2cl.pl
5567:
5568: 2012-07-29 moko
5569:
5570: * tests/285.html, src/main/execute.C, tests/results/285.processed:
5571: result should be pushed after VMethodFrame destructor is called,
5572: as it deletes junctions from stack params (fixes issue #868)
5573:
5574: 2012-07-23 moko
5575:
5576: * INSTALL, README: buildall script usage documented, other outdated
5577: info updated.
5578:
5579: * buildall-with-xml, buildall-without-xml: replaced by buildall
5580:
5581: 2012-07-21 moko
5582:
5583: * buildall: glib does not compile when threads are disabled...
5584:
5585: * src/types/pa_vmail.C: g_assertion fixes for empty input
5586:
5587: * src/types/pa_vmail.C: yet another fix (strange GPF on object
5588: unref, can't unref nested objects)
5589:
5590: * src/types/pa_vmail.C: another check added
5591:
5592: 2012-07-19 moko
5593:
5594: * buildall: usage added
5595:
5596: * buildall: new buildall script that unites buildall-with-xml,
5597: buildall-without-xml, --with-apache and --with-mailreceive
5598:
5599: * configure.in: support for static gmime and dynamic glib linking.
5600: fixes for FreeBSD
5601:
5602: 2012-07-17 moko
5603:
5604: * configure.in: --with-mailreceive replaced
5605: --with-static-mailreceive and --with-shared-mailreceive pathlink
5606: removed
5607:
5608: 2012-07-16 moko
5609:
5610: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
5611: capitalized, content now decoded and text content converted to
5612: $request:charset. all properties are accessed by functions, this
5613: ready for dynamic load.
5614:
5615: 2012-06-28 moko
5616:
1.116 moko 5617: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
5618: 32 bit
1.95 moko 5619:
5620: 2012-06-27 moko
5621:
5622: * buildall-with-xml, buildall-without-xml: fetch requires -p for
5623: passive ftp
5624:
5625: * src/lib/ltdl/ltdl.vcproj: release build fixed
5626:
5627: * configure.in: 3.4.2 RC -> 3.4.2
5628:
5629: 2012-06-22 moko
5630:
5631: * src/types/pa_vfile.C: returned empty mode to stated files (issue
5632: #815)
5633:
5634: * tests/: 284.html, results/284.processed: output options test
5635: (feature #265)
5636:
5637: 2012-06-22 misha
5638:
5639: * tests/215.html: - little changes
5640:
5641: 2012-06-21 moko
5642:
5643: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
5644: types/pa_vxdoc.h: output_options returned and used (bugfix for
5645: feature #265)
5646:
5647: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
5648: breaks long .*, default 10M restored. (issue #216)
5649:
5650: * tests/: 283.html, results/283.processed: test for issue #815
5651: added
5652:
5653: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
5654: again, cstrm not required.
5655:
5656: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
5657: Win32 and broken FreeBSD (issue #45)
5658:
5659: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
5660:
5661: * src/main/pa_string.C: warnings war
5662:
5663: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
5664: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
5665: main/pa_socks.C, targets/apache/pa_threads.C,
5666: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5667: types/pa_vstatus.C: compilation under cygwin fixed
5668:
5669: 2012-06-19 moko
5670:
5671: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
5672: Windows fixed
5673:
5674: * parser3.sln: removed antique pcre_ctype
5675:
5676: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
5677:
5678: * src/include/pa_config_fixed.h: undefined reference to
5679: __imp__pcre_* fix for Windows
5680:
5681: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 5682: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
5683: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
5684: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
5685: define fixed
1.95 moko 5686:
5687: 2012-06-18 moko
5688:
5689: * src/classes/memcached.C: flush -> clear
5690:
5691: * src/classes/memcached.C: memcached does not support quotes even
5692: in server name
5693:
5694: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5695: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
5696: called on open to check servers existance. $.key(true) syntax
5697: now supported
5698:
5699: 2012-06-17 moko
5700:
5701: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
5702: cleanup
5703:
5704: * src/classes/table.C, tests/282.cfg, tests/282.html,
5705: tests/results/282.processed: encloser at the EOF bug fixed,
5706: incorrectly enclosed data now processed more logicaly (fixes
5707: #339)
5708:
5709: 2012-06-15 moko
5710:
5711: * buildall-without-xml: sync with buildall-with-xml
5712:
5713: * buildall-with-xml: download auto-detected between fetch and curl
5714:
5715: * configure.in: --with-gc and --with-pcre now also processed
5716: correctly
5717:
1.116 moko 5718: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
5719: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
5720: should be run on rol1 using automake / aclocal (GNU automake)
5721: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 5722:
5723: * configure.in: new PARSER_VERSION logic
5724:
5725: * src/include/pa_version.h: new pa_version.h logic
5726:
5727: * src/: classes/curl.C, classes/file.C, classes/image.C,
5728: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5729: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
5730: feols_normalized -> fis_text_content set_binary added
5731:
5732: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
5733:
5734: 2012-06-15 misha
5735:
5736: * src/: classes/curl.C, classes/file.C, classes/image.C,
5737: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5738: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
5739: ^file::create[text;content] EOLs in content now is normalized. (
5740: new feature: #815 )
5741:
5742: 2012-06-15 moko
5743:
5744: * configure.in: --disable-version-update added to disable version
5745: update with host information (for debian package) whitespace
5746: optimized
5747:
5748: * configure.in: version changed to 3.4.2 RC no-pic added for
5749: libtool
5750:
5751: * src/include/pa_version.h: Nice pa_version.h default. Please keep
5752: it.
5753:
5754: 2012-06-14 moko
5755:
5756: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
5757: tests/results/281.processed: "hash flocked" error removed for
5758: safe operations like ^h._count[] ( new feature: #335 )
5759:
1.116 moko 5760: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 5761:
5762: * buildall-with-xml, buildall-without-xml: --with-static -> --with
5763:
5764: * configure.in: --with-static/shared xml replaced with --with-xml,
5765: xml compilation check added
5766:
5767: * configure.in: --with-static/shared-gc, --with-static-pcre are
5768: replaced with --with-gc and --with-pcre test for pcre linking
5769: added
5770:
5771: 2012-06-13 moko
5772:
5773: * configure.in: apxs2 check optimized
5774:
5775: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
5776: .la, includes optimized
5777:
5778: * buildall-with-xml: --with-pic looks better for -fPIC
5779:
5780: * configure.in: switched to convenience library in static linking
5781:
5782: * src/targets/apache/Makefile.am: switched to convenience library
5783: usage to avoid libtool warnings
5784:
5785: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
5786: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
5787: smtp/Makefile.am: switched to convenience library usage
5788:
5789: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
5790:
5791: * src/targets/apache/Makefile.am: updated for libtool usage
5792:
5793: * buildall-without-xml: --with-included-ltdl added
5794:
5795: * buildall-without-xml: sync with buildall-with-xml
5796:
5797: * buildall-with-xml: --with-included-ltdl added $cflags added for
5798: -fPIC for x64 $download added for wget success check added
5799:
5800: * buildall-without-xml: --with-dynamic-stdcpp removed
5801:
5802: * configure.in: disable-static returned
5803:
5804: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
5805: LIBTOOLFLAGS
5806:
5807: 2012-06-12 moko
5808:
5809: * configure.in, src/targets/cgi/Makefile.am: disable-static not
5810: compatible with LIBTOOLFLAGS for unknown reasons
5811:
5812: * buildall-with-xml: --with-dynamic-stdcpp removed
5813:
5814: * configure.in: static/dynamic -lstdc++ linking option removed
5815: apxs2 check added
5816:
5817: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
5818: option removed
5819:
5820: 2012-06-10 moko
5821:
5822: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
5823: added
5824:
5825: * src/targets/cgi/pp3.cmd: old PAF stuff
5826:
1.116 moko 5827: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
5828: beauty
1.95 moko 5829:
5830: * depcomp: from libtool 2.4.2
5831:
5832: * configure.in: ltdl directory removed, it has correct Makefile.in
5833:
5834: 2012-06-09 moko
5835:
1.116 moko 5836: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
5837: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 5838: autogenerated files updated after libtool update
5839:
1.116 moko 5840: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
5841: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 5842: config_auto.h.in, config_fixed.h, configure, configure.ac,
5843: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
5844: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
5845: config/compile, config/config.guess, config/config.sub,
5846: config/depcomp, config/install-sh, config/ltmain.sh,
5847: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
5848: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
5849: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
5850: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
5851: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
5852: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
5853: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
5854: m4/lt~obsolete.m4: libtool updated to version 2.4.2
5855:
5856: * configure.in: preparation for new libtool
5857:
5858: * configure.in: Some beauty added :)
5859:
5860: * src/targets/apache/Makefile.am: := -> =
5861:
5862: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
5863: again. :)
5864:
5865: * src/include/pa_config_includes.h, configure.in: limits.h added,
5866: previously was taken from pcre_internal.h. :)
5867:
5868: * src/lib/pcre/Makefile.am: config.h returned
5869:
5870: * src/lib/pcre/config.h: still need this. :)
5871:
5872: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
5873:
5874: * configure.in: --with-charsets removed; --with-mysql-client & co
5875: removed
5876:
5877: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
5878: now in parser tree, no need to copy
5879:
5880: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
5881: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
5882: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
5883: debian/patches/101_pcre.patch - local copy of pcre_internal.h
5884: extracts now used old trash removed
5885:
5886: * etc/parser3.charsets/Makefile.am: charsets now in share
5887: (debian/patches/104_automake.patch) + all charsets are copied
5888:
5889: * buildall-with-xml, buildall-without-xml: curl option removed +
5890: extra arguments now supported
5891:
5892: 2012-06-08 misha
5893:
5894: * src/classes/table.C: - one params.as_hash usage was rolled back:
5895: the 2nd option in ^table.hash[] could be hash or table so
5896: .as_hash will throw an exception when table option is specified
5897:
5898: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5899: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
5900: classes/table.C, classes/void.C, classes/xdoc.C,
5901: include/pa_exception.h, types/pa_vmethod_frame.C,
5902: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
5903: and improved (whitespaces are allowed as empty options) -
5904: MethodParams::as_table is added - above methods are used for
5905: parsing methods' options ( new feature: #9 )
5906:
5907: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
5908: to vclass. now class fields can be accessible as a hash:
5909: $h[^hash::create[$asd:CLASS]]
5910:
5911: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
5912: have get_fields method so their fields can be accessed with
5913: ^reflection:fields[...] & ^reflection:field[...]
5914:
5915: 2012-06-06 misha
5916:
5917: * tests/280.html: - tests for
5918: ^reflection:method[obj-or-class;method],
5919: ^reflection:field[obj-or-class;field] and
5920: ^reflection:fields[obj-or-class] are added
5921:
5922: 2012-06-05 misha
5923:
5924: * src/classes/reflection.C: - ^reflection:method[class or
5925: object;method name] and ^reflection:field[class or object;field
5926: name] are added
5927:
5928: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
5929: is used
5930:
5931: * src/types/pa_method.h: - Method::as_vjunction method is added
5932:
5933: 2012-06-05 moko
5934:
1.116 moko 5935: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 5936:
5937: * src/classes/memcached.C: flish ttl fixed
5938:
5939: 2012-06-04 moko
5940:
5941: * src/classes/json.C, src/classes/op.C, tests/279.html,
5942: tests/results/279.processed: ^json:parse[] now supports $.taint
5943: option (new feature #833)
5944:
5945: 2012-06-04 misha
5946:
5947: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
5948: - search_stop method was moved from pa_vcookie.C to pa_common.C
5949:
5950: 2012-06-03 misha
5951:
5952: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
5953: cookies are parced and stored into $.cookies ( new feature: #31 )
5954:
5955: 2012-05-30 misha
5956:
5957: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
5958: incomplete class into a scope while @USE is found
5959:
5960: * src/main/compile.y: - add incomplete class into a scope while
5961: @USE and @CLASS instructions are found ( bugfix: #838 )
5962:
5963: 2012-05-30 moko
5964:
5965: * src/types/pa_vclass.C, tests/278.html,
5966: tests/results/278.processed: removed "property has no getter
5967: method" exception when GET_DEFAULT present (fixes #269)
5968:
5969: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
5970: $._default
5971:
5972: 2012-05-29 moko
5973:
5974: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
5975: uninitialized values usage (new feature: #154)
5976:
5977: 2012-05-28 moko
5978:
5979: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
5980: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
5981: src/types/pa_vdate.h, src/types/pa_vdouble.h,
5982: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
5983: src/types/pa_vobject.C, src/types/pa_vobject.h,
5984: src/types/pa_vstring.h, src/types/pa_vtable.C,
5985: tests/results/277.processed, src/types/pa_vtable.h,
5986: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
5987: ^json:string[$o; $.default[$method]] implemented for VObject (new
5988: feature #803)
5989:
5990: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
5991: tests/results/277.processed: json numbers are now treated as
5992: double ( new feature: #834 )
5993:
5994: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
5995: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
5996: added for out of range checks, zero division in vint/vdouble
5997: check added ( fixes #832 )
5998:
5999: * tests/: 275.html, results/275.processed: tests for pa_atoui added
6000: ( fixes #832 )
6001:
6002: 2012-05-28 misha
6003:
6004: * buildall-with-xml: - --without-lzma option is added to libxml2
6005: configure
6006:
6007: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
6008: added - tests for unsupported values for options $.file, $.table
6009: and $.date are added
6010:
6011: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
6012: accepts "stat" $.file[] option's value in addition to existed
6013: "text" and "base64" ( new feature: #835 )
6014:
6015: * tests/276.html: - test for
6016: ^reflection:delete[$object-or-class;field-name]
6017:
6018: * src/classes/reflection.C: -
6019: ^reflection:delete[$object-or-class;field-name] is added ( new
6020: feature: #268 )
6021:
6022: 2012-05-27 misha
6023:
6024: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
6025:
6026: 2012-05-24 misha
6027:
6028: * src/include/pa_common.h: - method lastposafter was removed
6029:
6030: * src/classes/file.C: - use strrpbrk & rskipchars instead of
6031: lastposafter - ^file:dirname[] & Co proper handle windows file
6032: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
6033: work as *nix commands
6034:
6035: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
6036:
6037: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
6038: rskipchars were added
6039:
6040: * tests/270.html: - more tests for ^file:find[]
6041:
6042: * tests/065.html: - more tests for ^file:dirname[] & Co
6043:
6044: * src/include/pa_version.h: - must be "win32" here. it is
6045: auto-generated on *nix
6046:
6047: 2012-05-24 moko
6048:
6049: * src/classes/math.C: ^math:convert[] now supports uint32 and
6050: throws overflow exception ( new feature: #830 )
6051:
6052: * tests/: 275.html, results/275.processed: test for ^math:convert[]
6053: uint32 support and overflow added ( new feature: #830 )
6054:
6055: 2012-05-23 moko
6056:
6057: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
6058: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
6059: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
6060: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
6061: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
6062: types/pa_vregex.h, types/pa_vstateless_class.C,
6063: types/pa_vstateless_class.h, types/pa_vstring.h,
6064: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6065: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
6066: "return string as-is" removed from as_expr_result. ( new feature:
6067: #831 )
6068:
6069: * tests/results/244.processed: test changed after bug #782 fix
6070: commited
6071:
6072: * tests/results/229.processed: test results for bug #782 commited
6073:
6074: * tests/: 254.html, results/254.processed: uid now just compared,
6075: not printed. :)
6076:
6077: 2012-05-20 moko
6078:
6079: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
6080: feature: #341 )
6081:
6082: * tests/: 254.html, results/254.processed: test for
6083: ^reflection:uid[] added
6084:
6085: * tests/: 254.html, results/254.processed: test for
6086: ^reflection:uid[$obj] added
6087:
6088: 2012-05-17 misha
6089:
6090: * src/main/untaint.C: - do not replace ' char by _26 while
6091: exploding filespec-tainting ( new feature: #829 )
6092:
6093: 2012-05-12 moko
6094:
6095: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
6096: not.
6097:
6098: 2012-05-08 moko
6099:
6100: * src/types/pa_vmethod_frame.h: bug #782 fixed
6101:
6102: * tests/229.html: test for bug #782
6103:
6104: * tests/results/259.processed, src/main/pa_request.C,
6105: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
6106: src/types/pa_vstring.h, src/types/pa_vvoid.C,
6107: src/types/pa_vvoid.h: feature #154 - first empty param now
6108: string; defined locals are empty strings; $STRICT-VARS(true)
6109: added
6110:
6111: 2012-04-27 moko
6112:
1.116 moko 6113: * src/targets/apache/Makefile.am:
1.95 moko 6114: ../../lib/memcached/libmemcached.a added
6115:
6116: 2012-04-27 misha
6117:
6118: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
6119: ( #827 )
6120:
6121: 2012-04-25 moko
6122:
6123: * src/: classes/json.C, classes/memcached.C,
6124: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6125: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
6126: implemented.
6127:
6128: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
6129:
6130: 2012-04-23 moko
6131:
6132: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6133: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6134: types/pa_vmemcached.h: open allows options hash for new
6135: memcached(options) function
6136:
6137: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
6138: not appended
6139:
6140: 2012-04-21 moko
6141:
6142: * src/classes/curl.C: '' added. :)
6143:
6144: * src/classes/classes.vcproj: new curl.h location
6145:
6146: * src/classes/curl.C: verbose output redirection from stderr to
6147: file curl option added
6148:
6149: 2012-04-20 moko
6150:
6151: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
6152: contains what we need from curl, #ifdef HAVE_CURL removed
6153:
1.116 moko 6154: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 6155: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 6156: src/lib/Makefile.am, src/lib/curl/Makefile.am,
6157: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 6158: configure option
6159:
6160: 2012-04-19 moko
6161:
6162: * src/: classes/double.C, classes/inet.C, classes/int.C,
6163: classes/string.C, lib/gc/include/gc_allocator.h,
6164: types/pa_vform.C: PVS-Studio detected errors fixes, unused
6165: options from sql_result_string removed. (closes issue #468)
6166:
6167: * src/types/pa_vmemcached.C: empty string fix
6168:
6169: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
6170: pa_vstring.C, pa_vstring.h: serialization helpers moved to
6171: pa_vmemcached.C
6172:
6173: 2012-04-18 moko
6174:
6175: * src/targets/apache/mod_parser3.c: "Parser3 module requires
6176: apache2-mpm-prefork" error displayed in threaded mpm.
6177:
6178: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6179: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
6180: installed (issue #354)
6181:
6182: 2012-04-16 moko
6183:
6184: * src/types/pa_vmemcached.C: call to memcached_result_create and
6185: memcached_result_free removed
6186:
6187: 2012-04-14 moko
6188:
6189: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
6190:
6191: * src/types/pa_vmemcached.C: check_key added and used
6192:
6193: 2012-04-13 moko
6194:
6195: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
6196: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
6197: Serialization_data now added and used, VString now serialized
6198: with languages into memcached.
6199:
6200: 2012-03-28 moko
6201:
6202: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
6203: lib/memcached/pa_memcached.h: result lengths added
6204:
6205: 2012-03-27 moko
6206:
6207: * src/types/pa_vmemcached.C: strdup added
6208:
6209: 2012-03-24 moko
6210:
6211: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6212: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6213: types/pa_vmemcached.h: memcached: mget, flush, fttl added
6214:
6215: 2012-03-20 moko
6216:
1.116 moko 6217: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 6218:
6219: * src/targets/cgi/Makefile.am: cleanup
6220:
6221: * src/: types/Makefile.am, types/pa_vmemcached.C,
6222: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
6223:
6224: * src/: classes/Makefile.am, classes/memcached.C,
6225: lib/memcached/Makefile.am, lib/memcached/constants.h,
6226: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6227: lib/memcached/types.h, lib/Makefile.am: memcached initial
6228:
6229: 2012-03-16 moko
6230:
6231: * src/main/execute.C: ident now works under Linux + ident displays
6232: filenames (closes issue #818)
6233:
1.116 moko 6234: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 6235: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
6236: pa_vmethod_frame_local.h removed
6237:
6238: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
6239: classes/classes.h, classes/curl.C, classes/date.C,
6240: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
6241: classes/hashfile.C, classes/image.C, classes/inet.C,
6242: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
6243: classes/memory.C, classes/op.C, classes/reflection.C,
6244: classes/regex.C, classes/response.C, classes/string.C,
6245: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
6246: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
6247: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
6248: include/pa_config_fixed.h, include/pa_config_includes.h,
6249: include/pa_dictionary.h, include/pa_dir.h,
6250: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
6251: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
6252: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
6253: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
6254: include/pa_request_charsets.h, include/pa_request_info.h,
6255: include/pa_sapi.h, include/pa_socks.h,
6256: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
6257: include/pa_stack.h, include/pa_string.h,
6258: include/pa_stylesheet_connection.h,
6259: include/pa_stylesheet_manager.h, include/pa_table.h,
6260: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
6261: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
6262: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
6263: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
6264: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
6265: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
6266: main/compile.tab.C, main/compile.y, main/compile_tools.C,
6267: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
6268: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
6269: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
6270: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
6271: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
6272: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
6273: main/pa_string.C, main/pa_stylesheet_connection.C,
6274: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
6275: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
6276: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
6277: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
6278: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
6279: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
6280: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6281: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
6282: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
6283: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
6284: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
6285: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
6286: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6287: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
6288: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
6289: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
6290: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
6291: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
6292: types/pa_vmemory.h, types/pa_vmethod_frame.C,
6293: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
6294: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
6295: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
6296: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
6297: types/pa_vresponse.h, types/pa_vstateless_class.C,
6298: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
6299: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
6300: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
6301: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
6302: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6303: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
6304: ident now works under Linux + ident displays filenames (closes
6305: issue #818) Copyright updated
6306:
6307: 2012-03-13 moko
6308:
6309: * src/main/pa_string.C: compilation fix for feature #741
6310:
6311: 2012-03-09 misha
6312:
6313: * tests/193.html: - tests for ^string:base64[encoded] are updated
6314:
6315: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
6316: now detects invalid base64 chars in the middle of encoded stricg
6317: ( new feature: #55 )
6318:
6319: * src/include/pa_exception.h: - new exception type for base64
6320: decoding is added
6321:
6322: 2012-03-06 misha
6323:
6324: * tests/274.html: - tests for ^date::today[] and
6325: ^date.sql-string[datetime|date|time] are added
6326:
6327: * src/classes/date.C: - constructor ^date::today[] is added ( new
6328: feature: #811 ) - ^date.sql-string[] now can accept one param --
6329: strings "datetime", "date" or "time" - comments tidying up
6330:
6331: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
6332: date and time
6333:
6334: 2012-03-03 misha
6335:
6336: * tests/193.html: - tests for
6337: ^string:base64[encoded;$.strict(true)] are added
6338:
6339: * tests/results/auto.p: - try-catch operator is added
6340:
6341: * src/: classes/file.C, classes/string.C, include/pa_common.h,
6342: main/pa_common.C: - $.strict(true|false) option is added to
6343: base64 decode methods ( new feature: #55 )
6344:
6345: * src/main/pa_common.C: - base64 decode memory usage was decreased
6346: ( new feature: #819 )
6347:
6348: 2012-02-28 moko
6349:
6350: * src/classes/hash.C: ident test
6351:
6352: 2012-02-27 misha
6353:
6354: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
6355:
6356: 2012-01-08 misha
6357:
6358: * tests/273.html: - tests for ^string.replace[from;to] are added
6359:
6360: * src/: classes/string.C, include/pa_dictionary.h,
6361: main/pa_dictionary.C, main/pa_string.C: -
6362: ^string.replace[from;to] is added ( new feature: #741 ) -
6363: ^string.replace[one subst here] is slightly optimized
6364:
6365: 2011-12-07 misha
6366:
6367: * src/classes/table.C: - $t[^table::create{$empty}] now creates
6368: named table with one empty column ( bugfix: #63 )
6369:
6370: 2011-11-30 misha
6371:
6372: * src/classes/json.C: - it's possible to set user's method for
6373: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
6374: #763 )
6375:
6376: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
6377:
6378: 2011-11-23 misha
6379:
6380: * src/: classes/curl.C, classes/file.C, classes/image.C,
6381: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
6382: types/pa_vfile.h, types/pa_vform.C: - constructor
6383: ^file::create[mode;filename;content[;options]] now accepts binary
6384: mode and file-content - new constructor's format:
6385: ^file::create[string-or-file-content[;$.name[filename]
6386: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
6387: feature: #65 )
6388:
6389: * src/: include/pa_request.h, main/pa_request.C: - new method
6390: mime_type_of(const String*) is added
6391:
6392: * src/include/pa_exception.h: - new exception constant
6393: FILE_NAME_MUST_BE_SPECIFIED is added
6394:
6395: * src/classes/table.C: - bug with negative offset transformed into
6396: a feature. it means pointing to a row from the end of the table (
6397: new feature: #810 )
6398:
6399: 2011-11-19 misha
6400:
6401: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
6402: â ìåòîäå _select ( new feature: #810 )
6403:
6404: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
6405: options were specified together is simplified
6406:
6407: 2011-11-12 misha
6408:
6409: * src/main/pa_request.C: - forgotten fix for escaping filename in
6410: HTTP content-disposition header (a part of bug #361 )
6411:
6412: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
6413: checks for ancestors' classes as well ( new feature: #456 )
6414:
6415: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
6416: "without cycle" now have types "parser.break" and
6417: "parser.continue" instead of "parser.runtime" ( new feature: #799
6418: )
6419:
6420: 2011-11-11 misha
6421:
6422: * tests/results/: 099.processed, 100.processed, 205.processed,
6423: 237.processed: - since bug #361 was fixed the content of filename
6424: in HTTP headers is quoted
6425:
6426: * tests/results/270.processed: - result for test 270
6427:
6428: * tests/: 065.html, results/065.processed: - more tests for
6429: ^file:basename[] & Co were added
6430:
6431: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
6432:
6433: * tests/270.html: - tests for ^file:find[] are added
6434:
6435: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
6436: using option $.charset. option $.engoding is still supported but
6437: these options can not be specified together
6438:
6439: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
6440: comparation charset name with string "UTF-8" ( bugfix: #759 )
6441:
6442: 2011-10-11 misha
6443:
6444: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
6445: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
6446: #622)
6447:
6448: 2011-09-30 misha
6449:
6450: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
6451: exception "saving stat-ed file" ( bugfix: #395 )
6452:
6453: 2011-05-30 misha
6454:
6455: * src/classes/string.C: - fixed bug which was added with
6456: params.as_hash into string:sql
6457:
6458: 2011-05-29 misha
6459:
6460: * src/types/pa_value.C: - filename in content-disposition header
6461: must be quoted ( bugfix: #361 )
6462:
6463: 2011-05-27 misha
6464:
6465: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
6466: created file
6467:
6468: * src/classes/: hash.C, mail.C: - little tunning with get_hash
6469: usage
6470:
6471: * src/include/pa_exception.h: - one more string for exception was
6472: added
6473:
6474: 2011-05-25 misha
6475:
6476: * tests/269.html: - tests for checking input params in some dom
6477: methods
6478:
6479: * src/classes/: xdoc.C, xnode.C: - validation of some input params
6480: was added. it isn't possible not wo create xdoc with invalid
6481: tagName. ( bugfix: #160 )
6482:
6483: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
6484: string "data must be string" was mover from pa_exception.h to
6485: pa_xml_exception.h
6486:
6487: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
6488: as_xmlncname, as_xmlname and as_xmlnsuri were added
6489:
6490: * src/main/pa_xml_exception.C: - XmlException accepts more options
6491:
6492: * src/include/pa_xml_exception.h: - XmlException accepts more
6493: options - XML-related exception's strings were added
6494:
6495: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
6496: output_options were removed)
6497:
6498: 2011-05-19 misha
6499:
6500: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
6501: params.as_hash is used more while parsing methods hash-options
6502:
6503: 2011-05-18 misha
6504:
6505: * operators.txt: - info about json-serialization of xdoc was added
6506:
6507: * tests/256.html: - tests for json-serialization xdoc were added
6508:
6509: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
6510:
6511: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
6512: classes/json.C, classes/xdoc.C: - now json:string can serialize
6513: xdoc-objects. options (the same as ^xdoc.string[]) could be
6514: specified in $.xdoc[] ( new feature: #265 )
6515:
6516: 2011-05-15 misha
6517:
6518: * tests/268.html: - tests for ^table.count[with options] were added
6519:
6520: * src/classes/table.C: - method ^table.count[] now can accept
6521: options ( new feature: #93 ): ^table.count[column] returns number
6522: of columns for named table; ^table.count[cells] returns number of
6523: cells in the current row; ^table.count[] & ^table.count[rows]
6524: return number of rows in a table.
6525:
6526: * tests/267.html: - test for checking switch/case in boolean mode
6527: was added
6528:
6529: * src/classes/op.C: - if switch's or case's value is bool, they are
6530: compared as bool values, not as double values: new feature: #351
6531:
6532: 2011-05-06 misha
6533:
6534: * tests/242.html: - EOL before EOF was added
6535:
6536: * tests/169.html: - tests for splitting empty string and void were
6537: added
6538:
6539: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
6540: returned table with one empty cell)
6541:
6542: 2011-04-03 misha
6543:
6544: * src/include/pa_version.h, configure.in: - version in head was
6545: changed to 3.4.2b
6546:
6547: 2011-03-30 misha
6548:
6549: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
6550: as well ( new feature #294 )
6551:
6552: 2011-03-29 misha
6553:
6554: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
6555: limited to approx. 6 MB. previous limits were too big for real
6556: life. bugfix: #216
6557:
6558: 2011-03-04 moko
6559:
6560: * etc/parser3.charsets/cp866.cfg: Conforms to
6561: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
6562:
6563: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
6564: vlalek@
6565:
6566: 2011-02-22 misha
6567:
6568: * src/include/pa_charset.h, operators.txt: - some methods mustn't
6569: be under #ifdef XML or parser can't be compiled without xml
6570: support
6571:
6572: 2011-02-21 misha
6573:
1.116 moko 6574: * src/targets/apache/: Makefile.am: - mention
1.95 moko 6575: ApacheModuleParser3.vcproj was removed
6576:
6577: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
6578: removed)
6579:
6580: 2011-02-20 misha
6581:
6582: * tests/: 266.html, 266.p: - tests for checking $.inherited and
6583: $.overridden in ^reflection:method_info[...] were added
6584:
6585: * src/classes/reflection.C: - beautifying result of
6586: ^reflection:method_info[] ($.overridden/inherited)
6587:
6588: 2011-02-18 misha
6589:
6590: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
6591: and pa_isalnum instead of isalpha and isalnum - bug with
6592: redundand quoting lowercased latin chars while building email
6593: body was fixed
6594:
6595: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
6596: added (they check for latin chars only)
6597:
6598: 2011-02-16 misha
6599:
6600: * src/main/pa_charset.C: - bugfix: in some cases the calculating
6601: string size for transcoding gave too small value (should ever
6602: look for availability char in dest charset inspite of the char
6603: size)
6604:
6605: 2011-02-04 moko
6606:
6607: * tests/223.html: header values now not url-encoded (issue #195)
6608:
6609: 2011-02-01 misha
6610:
6611: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
6612:
6613: 2011-01-31 misha
6614:
6615: * src/main/pa_request.C: - throw exception if param file_name in
6616: use_file is empty
6617:
6618: 2011-01-08 moko
6619:
6620: * src/classes/curl.C: compilations errors fixed
6621:
6622: 2010-12-29 moko
6623:
6624: * tests/: 265.html, results/265.processed: test for issue #200
6625: added
6626:
6627: * src/main/pa_string.C: empty regex result check added (fixes issue
6628: #200)
6629:
6630: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
6631:
6632: * tests/results/223.processed: header values now not url-encoded
6633: (issue #195)
6634:
6635: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
6636: main/untaint.C: L_HTTP_HEADER now used in http headers values,
6637: pa_http_safe_header_name added for headers names (fixes bug #195)
6638:
6639: 2010-12-18 misha
6640:
6641: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
6642: => pa-include
6643:
6644: 2010-11-28 moko
6645:
6646: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
6647:
6648: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
6649: -> pa
6650:
6651: * configure.in: apr -> pa
6652:
6653: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
6654:
6655: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
6656: classes/Makefile.am, types/Makefile.am: apr -> pa
6657:
6658: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
6659: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
6660: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
6661: pa-include/pa_apr.h, pa-include/pa_errno.h,
6662: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
6663: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
6664: module apr name conflict resolved)
6665:
6666: 2010-11-27 misha
6667:
6668: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
6669: libbz2
6670:
6671: 2010-11-26 misha
6672:
6673: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
6674: warnings removed
6675:
6676: 2010-11-25 moko
6677:
6678: * operators.txt: $.indent(true)
6679:
6680: * operators.txt: another bugfix. :)
6681:
6682: * operators.txt: bugfix. :)
6683:
6684: * buildall-with-xml: libxml2-2.7.8 + with-apache
6685:
6686: 2010-11-24 moko
6687:
1.116 moko 6688: * configure: apxs support
1.95 moko 6689:
6690: * configure.in: apxs support -Bstatic gc removed for OS X
6691:
6692: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
6693:
6694: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
6695: THREAD_LOCAL usage
6696:
6697: * src/: classes/curl.C, include/pa_config_includes.h,
6698: main/pa_globals.C: THREAD_LOCAL defined and used
6699:
6700: 2010-11-23 moko
6701:
6702: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
6703: should be passed to pa_sleep, and only fractional part (bugfix:
6704: #188)
6705:
6706: * src/targets/apache/mod_parser3.c: 1.3 compatibility
6707:
6708: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6709: GC_dont_gc=1, as in cgi version
6710:
6711: * src/targets/apache/mod_parser3.c: warning war
6712:
6713: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6714: pa_httpd.h: version removed, some trash removed
6715:
6716: * src/targets/apache/mod_parser3.c: version removed (we don't want
6717: to show it), warning war
6718:
6719: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6720: pa_httpd.h: parser_status_allowed removed + merge config
6721: functions removed (override is the default) + beauty
6722:
6723: * src/: include/pa_request.h, main/pa_request.C,
6724: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
6725: hide $status used in apache module removed
6726:
6727: 2010-11-18 moko
6728:
6729: * operators.txt: $.table[compact] added for ^json:string[]
6730:
6731: 2010-11-16 moko
6732:
6733: * src/targets/apache/mod_parser3.c: some cleanup done
6734:
6735: * src/main/untaint.C: bugfix: first, second String::Body argument
6736: is hashcode; second, info.fragment_begin is original, not
6737: resulting length
6738:
6739: * src/classes/file.C: new feature: $.stdin now untainted
6740:
6741: * tests/results/264.processed: new feature: $.stdin[] now untainted
6742:
6743: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
6744:
6745: * src/classes/op.C: ^apply-taint[] method added
6746:
6747: * tests/: 264.html, results/264.processed: ^apply-taint[] test
6748: added; $.stdin untaint test added
6749:
6750: 2010-11-15 moko
6751:
6752: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
6753: removed
6754:
6755: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6756: pa_httpd.h: 2x2 calculated under apache2. :)
6757:
6758: 2010-11-13 moko
6759:
6760: * src/targets/apache/mod_parser3.c: initial changes to build module
6761: with apache 2.x includes
6762:
6763: * src/targets/apache/: Makefile.am, mod_parser3.c,
6764: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
6765: united apache 1.3 / apache 2.x DSO module
6766:
6767: 2010-11-09 moko
6768:
6769: * src/types/pa_method.h: check added to dissallow @method[name;*]
6770: syntax
6771:
6772: * tests/: 263.html, results/263.processed: test from method[*args]
6773: added
6774:
6775: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
6776: number of params can now be passed to a method declared with *arg
6777:
6778: 2010-11-06 moko
6779:
6780: * src/classes/table.C: formating fixed. :)
6781:
6782: * src/classes/table.C: closes #4: ^table.select now supports
6783: $.limit(), $.offset, $.reverse() options
6784:
6785: * tests/: 262.html, results/262.processed: test for ^table:select
6786: with options added (feature #4)
6787:
6788: * src/include/pa_array.h: remove function added
6789:
6790: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
6791: object in get_element/put_element, using static one.
6792:
6793: 2010-11-04 moko
6794:
6795: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
6796: options is passed
6797:
6798: * tests/: 256.html, results/256.processed: $.table[compact] feature
6799: now tested; k and p in handler now tested.
6800:
6801: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
6802: $.table[compact] feature added
6803:
6804: * src/classes/json.C: key is now passed to handler in
6805: value_json_string; ^json:string result now process tainting
6806: inside and returns clean string, related to issue #153
6807:
6808: * src/main/untaint.C: bugfix: charset can be null (in
6809: ^string:save[] as example), thus check is added
6810:
6811: 2010-10-31 moko
6812:
6813: * src/classes/string.C: error message changed (fixes issue #149)
6814:
6815: 2010-10-29 moko
6816:
6817: * src/main/pa_http.C: ":port" is now added to "Host:" header if
6818: port is not default (fixes issue #155); exception on invalid port
6819: added.
6820:
6821: * src/main/untaint.C: '*' is now not urlencoded to allow header
6822: "Accept: */*" to be passed
6823:
6824: 2010-10-28 moko
6825:
6826: * src/classes/curl.C: bugfix: detect_charset() was throwing
6827: exception on unknown charset even if response_charset was
6828: specified
6829:
6830: 2010-10-27 moko
6831:
6832: * src/classes/string.C: ^string.append removed for void
6833: compatibility
6834:
6835: 2010-10-26 moko
6836:
6837: * src/classes/json.C: libjson supports array at top level, we too
6838: (GPF fixed)
6839:
6840: 2010-10-25 moko
6841:
6842: * tests/: 253.html, results/253.processed: libjson supports array
6843: at top level, parser now supports it as well.
6844:
6845: * tests/261.html, tests/results/261.processed,
6846: src/types/pa_vstring.h: empty string is now void compatible
6847: (allows $empty.key)
6848:
6849: 2010-10-22 misha
6850:
6851: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
6852: while adding additional expires checkout)
6853:
6854: * tests/030.html: - test for session cookie was added
6855:
6856: 2010-10-21 moko
6857:
6858: * src/: classes/string.C, classes/void.C, main/execute.C,
6859: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
6860: string (feature #111)
6861:
6862: * tests/: 261.html, results/261.processed: checks void from string
6863: inheritance (feature #111)
6864:
6865: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
6866: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
6867: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
6868: now true by default
6869:
6870: 2010-10-17 moko
6871:
6872: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
6873: upload now uses binary blocks instead of L_FILE_POST tainting.
6874: (bugfix: #128)
6875:
6876: * tests/: 223.html, results/223.processed: binary file upload test
6877: added, GPF (issue #128) also checked in this test
6878:
6879: 2010-10-13 misha
6880:
6881: * tests/260.html: - test for math:convert
6882:
6883: * src/classes/math.C: - error in math:convert was fixed
6884:
6885: * operators.txt: - info about
6886: ^math:convert[number](from-base;to-base) was added
6887:
6888: * src/classes/math.C: - method
6889: ^math:convert[number](from-base;to-base) for converting number
6890: represention from one base to another was added ( new feature:
6891: #23 )
6892:
6893: 2010-10-13 moko
6894:
6895: * src/main/compile.tab.C: [] now is empty string, not void
6896:
6897: * src/main/compile.y: [] now is empty string, not void
6898:
6899: * src/types/pa_vvoid.h: void now passed as parameter
6900:
6901: * tests/: 259.html, results/259.processed: to test difference
6902: between void and empty string (see ticket #111)
6903:
6904: * tests/results/152.processed: $sEmpty[] is now empty string, not
6905: void
6906:
6907: * tests/256.html: $s[$void] is no longer empty string
6908:
6909: * tests/254.html: empty string is no longer void
6910:
6911: 2010-10-12 misha
6912:
6913: * src/types/pa_vcookie.C: - check if $.expires value can be
6914: converted to date during cookies set up ( bugfix: #104 )
6915:
6916: * tests/041.html: - more tests for ^table.locate were added
6917:
6918: * src/classes/table.C: - ^table.locate[field;value;options] didn't
6919: work ( bugfix: #129 ) - exception comment for incorrect options
6920: ^table.locate[field;value;options] was fixed
6921:
6922: 2010-10-10 moko
6923:
6924: * src/: classes/reflection.C, main/execute.C: constructor returning
6925: another object feature returned
6926:
6927: * tests/results/258.processed: test result updated as constructor
6928: returning another object feature returned
6929:
6930: * tests/: 258.html, results/258.processed: test for constructor
6931: returning another object
6932:
6933: 2010-10-08 misha
6934:
6935: * tests/257.html: - whitespaces after @METACOMMANDS and their
6936: options shouldn't cause exceptions any longer
6937:
6938: 2010-10-06 moko
6939:
6940: * src/classes/: hash.C, table.C: length from sql server is now
6941: ignored, as sql string can contain 0x00 inside (bugfix: #119)
6942:
6943: 2010-10-02 misha
6944:
6945: * operators.txt: - the X mark was removed from ^cache[file]. it is
6946: usable to delete cache file.
6947:
6948: 2010-10-02 moko
6949:
6950: * tests/: 253.html, results/253.processed: hook_key added for key
6951: checking
6952:
6953: * src/classes/json.C: null key bug fixed
6954:
6955: 2010-09-29 misha
6956:
6957: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
6958:
6959: 2010-09-25 moko
6960:
6961: * src/classes/json.C: small fixed
6962:
6963: * tests/results/: 253.processed, 255.processed: just updated
6964:
6965: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
6966: results/255.processed: charset transcode test added for
6967: json:parse
6968:
6969: 2010-09-24 moko
6970:
6971: * src/types/pa_value.h: warning war :)
6972:
6973: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
6974: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
6975: ^json:string
6976:
6977: 2010-09-22 moko
6978:
6979: * src/main/pa_charset.C: parser charset tables declare only
6980: white-space before 0x20, thus adding the missing chars
6981:
6982: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
6983: to http://unicode.org/Public/MAPPINGS/VENDORS/
6984:
6985: 2010-09-21 misha
6986:
6987: * src/main/compile.y: - some semicolons were added (VS2010 don't
6988: want to compile grammar if they are absent)
6989:
6990: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
6991:
6992: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
6993:
6994: * src/main/main.vcproj: - path to bison is changed
6995:
6996: 2010-09-21 moko
6997:
1.116 moko 6998: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
6999: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
7000: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 7001:
7002: 2010-09-20 misha
7003:
7004: * src/types/pa_vtable.C: - add EOLs while json-serializing table
7005:
7006: * src/classes/json.C: - add EOL while json-serializing hash
7007:
7008: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
7009: compilers don't like 'ES'.
7010:
7011: 2010-09-17 misha
7012:
7013: * operators.txt: - info about json class was added
7014:
7015: * src/classes/json.C: - ^json:string[object]
7016:
7017: * src/: include/pa_request.h, main/pa_request.C: - stuff for
7018: preventing infinite recursion while executing json:string was
7019: added
7020:
7021: * src/include/pa_string.h: - method append_quoted was added
7022:
7023: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
7024: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
7025: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
7026: was added to Value & Co
7027:
7028: * src/classes/date.C: - methods get_gmt_string and get_sql_string
7029: were used
7030:
7031: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
7032: were added
7033:
7034: 2010-09-10 moko
7035:
7036: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7037: die_or_abort (backport from 3.4.1)
7038:
7039: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7040: die_or_abort (bugfix: #106)
7041:
7042: 2010-09-09 moko
7043:
7044: * src/classes/json.C: warning war. :)
7045:
7046: 2010-09-08 misha
7047:
7048: * src/lib/json/Makefile.am: - additional include directories were
7049: added (for pa_memory.h and gc.h)
7050:
7051: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
7052: compile as C++ instead default - additional include directory was
7053: added (for gc.h)
7054:
7055: * src/types/pa_vform.C: - little code reformating
7056:
7057: * src/classes/file.C: - $.content-type option now can be specified
7058: in ^file::create ( new feature: #102 )
7059:
7060: 2010-09-08 moko
7061:
7062: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
7063: pa_malloc/pa_free
7064:
7065: 2010-09-07 moko
7066:
7067: * tests/results/254.processed: VStateless_class:put_element
7068: exception was fixed
7069:
7070: * src/types/: pa_value.h, pa_vstateless_class.h: now
7071: VStateless_class:put_element barks self.type, not this.type
7072: (bugfix: #105)
7073:
7074: 2010-09-06 moko
7075:
7076: * src/classes/reflection.C: bugfix: new String() is required for
7077: exception handling
7078:
7079: * tests/: 254.html, results/254.processed: test modified
7080:
7081: 2010-09-05 moko
7082:
7083: * tests/: 254.html, results/254.processed: ^reflection:copy test
7084: added
7085:
7086: * src/: classes/reflection.C, include/pa_request.h:
7087: ^reflection:copy implemented (new feature: #100)
7088:
7089: 2010-09-03 moko
7090:
7091: * src/lib/json/JSON_parser.C: c++ compatiblity
7092:
7093: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
7094: option testing added
7095:
7096: 2010-09-02 moko
7097:
7098: * src/classes/json.C: $.distinct[first|last|all] added
7099:
7100: 2010-09-01 moko
7101:
7102: * tests/results/253.processed: json test result
7103:
7104: * tests/: 253.html, 253_json.txt: json test added
7105:
7106: * src/classes/json.C: json.C update to actual version + hash key
7107: creation bugfix
7108:
7109: 2010-08-31 misha
7110:
7111: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
7112: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
7113: src/lib/Makefile.am, src/classes/Makefile.am,
7114: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
7115: json library was added
7116:
7117: 2010-08-30 moko
7118:
7119: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
7120: types/pa_vobject.C: cosmetic optimization in
7121: request:execute_method usage
7122:
7123: * src/: include/pa_charset.h, main/pa_charset.C: small
7124: optimization, just to decrease number of lines. :)
7125:
7126: 2010-08-27 misha
7127:
7128: * src/classes/op.C: - taint[json] was added
7129:
7130: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
7131: were added
7132:
7133: * src/main/pa_exec.C: - warning fix was rolled back.
7134:
7135: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
7136: include/pa_string.h: - taint[json] was added - escaping was
7137: slightly modified
7138:
7139: 2010-08-25 misha
7140:
7141: * src/classes/file.C: - typo in file:sql exception was fixed
7142:
7143: * src/main/pa_exec.C: - warning about declared and not used
7144: variable forced_allow was removed
7145:
7146: 2010-08-14 misha
7147:
7148: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
7149: were removed
7150:
7151: 2010-08-11 moko
7152:
7153: * tests/: 249.html, results/249.processed: default setter and
7154: anti-recursive default getter test added
7155:
7156: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
7157: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
7158: types/pa_vobject.h, types/pa_vstateless_class.C,
7159: types/pa_vstateless_class.h: default setter support +
7160: anti-recursive default getter support ( new feature: #13 )
7161:
7162: * src/include/pa_hash.h: optimization: threshold member removed
7163: from hash, reducing sizeof(hash)
7164:
7165: 2010-08-10 misha
7166:
7167: * tests/196.html: - junction-method was added to the test
7168:
7169: * tests/248.html: - ups. typo :)
7170:
7171: * tests/248.html: - test for checking .match with 4 params
7172:
7173: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
7174: 247_windows1251.txt: - test for "transcode file from utf-8 to
7175: $request:charset during loading if the BOM code is detected"
7176:
7177: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
7178: $request:charset during loading if the BOM code is detected ( new
7179: feature: #98 )
7180:
7181: 2010-08-05 misha
7182:
7183: * src/classes/image.C: - ^image.replace now can accept only 2
7184: params. in this case the whole image is affected ( new feature:
7185: #95 )
7186:
7187: 2010-08-04 misha
7188:
7189: * tests/246.html: - test tor ^hash._at[] was added
7190:
7191: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
7192: #53 )
7193:
7194: * src/include/pa_hash.h: - methods for accessing the first and the
7195: last values of ordered hash were added (first_value and
7196: last_value)
7197:
7198: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
7199: (similar to others file's methods):
7200: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
7201: #68 )
7202:
7203: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
7204:
7205: 2010-08-01 moko
7206:
7207: * src/classes/op.C: to correctly process $result[] in code, called
7208: from ^process
7209:
7210: * tests/245.html: $result in ^process[] test added
7211:
7212: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
7213: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
7214: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
7215: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
7216: caller, self) op_call(VMethodFrame &frame, bool constructing)
7217: removed, construct(class,method) added
7218:
7219: * tests/results/: 192.processed, 244.processed: request::construct
7220: added
7221:
7222: * tests/: 244.html, 245.html, results/244.processed,
7223: results/245.processed: object creation exceptions and ^process
7224: tests added
7225:
7226: 2010-07-28 misha
7227:
7228: * tests/make_tests.cmd: - win32 EOLs
7229:
7230: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
7231: tests on Win32 were added (The system timezone should be GMT+3)
7232:
7233: 2010-07-26 misha
7234:
7235: * tests/: 212.html, results/212.processed: - sizes were removed
7236: mecause they could be different on different OSs
7237:
7238: * tests/065.html: - make it "win32 friendly"
7239:
7240: 2010-07-25 misha
7241:
7242: * src/main/compile.y: - all EOLs between methods are removed during
7243: compilation ( new feature: #47 )
7244:
7245: * tests/results/149.processed: - prepare tests to trim trailing
7246: methods' EOLs
7247:
7248: * tests/149.html: - prepare tests to trim trailing methods' EOLs
7249:
7250: * tests/: results/006.processed, results/014.processed, 006.html,
7251: 014.html, 022.html: - prepare tests to trim trailing methods'
7252: EOLs
7253:
7254: * tests/: 059.html, 071.html, 149.html, results/059.processed,
7255: results/071.processed, results/022.processed: - prepare tests to
7256: trim trailing methods' EOLs
7257:
7258: * tests/: results/073.processed, results/109.processed,
7259: results/142.processed, results/144.processed,
7260: results/149.processed, 073.html, 096.html, 109.html, 142.html,
7261: 144.html: - prepare tests to trim trailing methods' EOLs
7262:
7263: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
7264: 149.html, 152.html, results/096.processed, results/107.processed,
7265: results/109.processed, results/142.processed,
7266: results/144.processed: - prepare tests to trim trailing methods'
7267: EOLs
7268:
7269: 2010-07-24 moko
7270:
7271: * tests/results/: 156.processed, 224.processed: fix for #54 changed
7272: the hash order in this test
7273:
7274: * tests/014.html: to check hash order, hash no is longer sorted
7275: before print
7276:
7277: * src/include/pa_hash.h: hash copy constructor now keeps order
7278: (bugfix: #54)
7279:
7280: 2010-07-23 moko
7281:
7282: * tests/results/224.processed: @auto[] is no longer inherited
7283:
7284: * src/types/pa_vstateless_class.C, tests/227.html,
7285: tests/results/227.processed: @auto[] is no longer inherited
7286: (bugfix: #57)
7287:
7288: 2010-07-22 misha
7289:
7290: * src/classes/table.C: - don't skip comment lines during
7291: table::load if encloser or separator is set as '#' ( new feature:
7292: #30 )
7293:
7294: * src/targets/cgi/parser3.C: - don't run as cgi if
7295: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
7296: #12 )
7297:
7298: * src/classes/file.C: - set PARSER_VARSION env before external
7299: script executing
7300:
7301: 2010-07-13 misha
7302:
7303: * tests/058.html: - test for suppressing @border was added - test
7304: for user attribute was added
7305:
7306: * tests/results/186.processed: unescaping from \uXXXX
7307:
7308: * tests/186.html: unescaping from \uXXXX
7309:
7310: * tests/: 239.html, results/239.processed: method call type
7311:
7312: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
7313: $junction_method.CLASS_NAME (+CLASS)
7314:
7315: 2010-07-07 misha
7316:
7317: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
7318: *nix
7319:
7320: 2010-07-05 misha
7321:
7322: * src/: classes/curl.C, classes/file.C, classes/hash.C,
7323: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
7324: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
7325: comment strings "options must be hash", "options must be hash,
7326: not code" and "called with invalid option" were replaced by
7327: constatns - exception comment string "invalid option passed" was
7328: replaced by "called with invalid option" (now in different
7329: methods are the same exception comment string)
7330:
7331: * src/include/pa_exception.h: - more exception strings were defined
7332:
7333: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
7334: types/pa_vstateless_class.h: - now we can define possible
7335: method's call type ( new feature: #5 ) 1.
7336: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
7337: methods 2. @static:method[params] (only static keyword could be
7338: used here) -- for specified methods
7339:
7340: * src/main/pa_common.C: - junction points should not be deleted on
7341: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
7342: cleanup
7343:
7344: 2010-07-03 misha
7345:
7346: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
7347: results/158.processed, results/160.processed,
7348: results/161.processed, results/162.processed,
7349: results/163.processed: - prepare tests to trim trailing methods'
7350: EOLs
7351:
7352: * tests/results/169.processed: - prepare tests to trim trailing
7353: methods' EOLs
7354:
7355: * tests/results/: 168.processed, 169.processed: - prepare tests to
7356: trim trailing methods' EOLs
7357:
7358: * tests/: results/170.processed, results/167.processed,
7359: results/168.processed, results/169.processed, 167.html, 168.html,
7360: 169.html: - prepare tests to trim trailing methods' EOLs
7361:
7362: * tests/: results/170.processed, results/171.processed,
7363: results/172.processed, results/173.processed,
7364: results/174.processed, results/175.processed, 170.html, 171.html,
7365: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
7366: trailing methods' EOLs
7367:
7368: * tests/: results/176.processed, results/180.processed,
7369: results/184.processed, results/185.processed,
7370: results/191.processed, results/192.processed,
7371: results/196.processed, results/197.processed,
7372: results/198.processed, 176.html, 180.html, 184.html, 185.html,
7373: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
7374: to trim trailing methods' EOLs
7375:
7376: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
7377: results/199.processed, results/208.processed,
7378: results/209.processed, results/213.processed,
7379: results/214.processed: - prepare tests to trim trailing methods'
7380: EOLs
7381:
7382: 2010-06-29 misha
7383:
7384: * tests/: 220.html, 218.html, results/218.processed,
7385: results/215.processed, results/217.processed, 215.html, 217.html:
7386: - prepare tests to trim trailing methods' EOLs
7387:
7388: * tests/: results/224.processed, 224.html, 223.html,
7389: results/223.processed, results/220.processed: - prepare tests to
7390: trim trailing methods' EOLs
7391:
7392: * tests/results/: 226.processed, 230.processed: - prepare tests to
7393: trim trailing methods' EOLs
7394:
7395: * tests/: 229.html, results/229.processed: - prepare tests to trim
7396: trailing methods' EOLs
7397:
7398: * tests/: 232.html, 235.html, results/232.processed,
7399: results/235.processed, 226.html, 227.html, 228.html, 230.html,
7400: results/226.processed, results/227.processed,
7401: results/228.processed, results/230.processed: - prepare tests to
7402: trim trailing methods' EOLs
7403:
7404: 2010-06-16 moko
7405:
7406: * tests/: 229.html, results/229.processed: elseif now supported in
7407: ^if
7408:
7409: * src/classes/op.C: new feature: #56 elseif now supported in ^if
7410:
7411: 2010-06-03 misha
7412:
7413: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
7414: instead of memcopy for overlaped regions
7415:
7416: 2010-05-25 misha
7417:
7418: * src/main/pa_common.C: - wanring about unused vars was removed
7419:
7420: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
7421: get_method_filename was moved to execute.C
7422:
7423: 2010-05-23 misha
7424:
7425: * src/main/pa_request.C: - more accurate detection of method's file
7426:
7427: 2010-05-22 misha
7428:
7429: * src/classes/reflection.C: - bugfix: core during detection of
7430: .file if filespec isn't detected successfully
7431:
7432: 2010-05-20 misha
7433:
7434: * src/main/pa_request.C: - fix in get_method_filename
7435:
7436: * src/include/pa_request.h: - new feature: #24 -- searching
7437: included file in @USE/^use is changed. if its filespec doesn't
7438: start from '/' it will be searched in caller file directory
7439:
7440: * src/classes/reflection.C: - ^reflection:method_info returns file
7441: where the method is defined
7442:
7443: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
7444: classes/op.C: - new feature: #24 -- searching included file in
7445: @USE/^use is changed. if its filespec doesn't start from '/' it
7446: will be searched in caller file directory
7447:
7448: * src/: classes/file.C, include/pa_common.h: - method lastposafter
7449: is moved to pa_common.h
7450:
7451: 2010-05-18 misha
7452:
7453: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
7454: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
7455: cookie parser decode \uXXXX as well as %uXXXX
7456:
7457: 2010-05-17 misha
7458:
7459: * src/classes/curl.C: beauty: - unused param is removed in method
7460: _curl_version_action - some spaces were removed or replaced by
7461: tabs
7462:
7463: * src/classes/table.C: - bugfix: #72 core with empty value during
7464: ^table.hash[...;name_of_the_last_column][$.type[string]]
7465:
7466: 2010-05-16 misha
7467:
7468: * src/classes/curl.C: new: #61 more curl options were added
7469: (contributed by Sumo)
7470:
7471: 2010-04-29 pretender
7472:
7473: * src/main/pa_string.C: fixes #63 Split result from empty string
7474: now empty string.
7475:
7476: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
7477: string type.
7478:
7479: 2010-04-28 pretender
7480:
7481: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
7482: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
7483: macrodefinition removed
7484:
7485: 2010-04-19 pretender
7486:
7487: * src/main/execute.C: fixes #60 Stacktrace now contains info for
7488: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
7489:
7490: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
7491: fixes #64 Now file.missing exception generates in unsafe mode to.
7492:
7493: * src/classes/file.C: fixes #48 Now not throw "not save environment
7494: variable" exception in grpunlim version.
7495:
7496: 2010-04-05 misha
7497:
7498: * src/classes/string.C: - new feature: 4th param was added to
7499: match. if specified its value is returned in case of nothing was
7500: found
7501:
7502: 2010-04-01 misha
7503:
7504: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
7505: multiple execution of /a/b/auto.p
7506:
7507: 2010-03-19 misha
7508:
7509: * src/main/execute.C: - core in $table1.$table2 was fixed
7510:
7511: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
7512:
7513: 2010-01-27 misha
7514:
7515: * src/main/pa_common.C: - bugfix: there are no excaption.type if
7516: trying to open file by path /existing-file/non-exixting-file
7517:
7518: 2010-01-26 misha
7519:
7520: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
7521: was added (returns file)
7522:
7523: 2009-12-22 misha
7524:
7525: * src/classes/curl.C: - method 'option' was renamed to 'options' -
7526: now parser doesn't have class curl if it was built without it
7527:
7528: 2009-12-15 misha
7529:
7530: * configure.in: - little cheat with curl include dir was added
7531:
7532: 2009-12-05 misha
7533:
7534: * src/classes/curl.C: - some fixes
7535:
7536: 2009-12-04 misha
7537:
7538: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
7539: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
7540: buildall-with-xml, buildall-without-xml, configure.in: - curl
7541: class was added
7542:
7543: * src/include/pa_hash.h: - hash-iterator was added
7544:
7545: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
7546: was added to pcre
7547:
7548: 2009-11-27 misha
7549:
7550: * src/classes/image.C: - don't add @border attribute to output of
7551: ^image.html[] if it was specified by user with empty value
7552:
7553: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
7554: root element and we are trying to access .documentElement
7555:
7556: 2009-11-11 misha
7557:
7558: * src/classes/table.C: - in ^table.flip[] look at number of columns
7559: instead of number of items in first row for named tables
7560:
7561: 2009-11-10 misha
7562:
7563: * operators.txt: - info about hash-options in ^file::create was
7564: added
7565:
7566: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
7567: added
7568:
7569: 2009-11-09 misha
7570:
7571: * buildall-with-xml: - moving to libxml 2.7.6
7572:
7573: * tests/236.html: - tests for comparations cords with functions
7574: were added
7575:
7576: * src/include/pa_string.h: - optimisation: cacheing of cstr was
7577: added
7578:
7579: * src/main/pa_http.C: - little optimisation
7580:
7581: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
7582: GPF mallocs + stringstream (table.save)
7583:
7584: * src/classes/file.C: - file::create now accepts 4th param: options
7585: with $.charset
7586:
7587: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
7588: bug in cord (comparation cords with functions was buggy)
7589:
7590: 2009-11-06 misha
7591:
7592: * src/main/pa_string.C: - bugfix: calculation string.length
7593: sometimes was buggy
7594:
7595: * src/classes/string.C: - bugfix: Temp_value_element wasn't
7596: destroyed if exception occured during match/replace
7597:
7598: * src/: main/pa_charset.C, include/pa_charset.h: - method
7599: lengthUTF8Char was added
7600:
7601: * src/classes/op.C: - clean tainting lang was added for user's
7602: usage
7603:
7604: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
7605: fixed: checkouts are required after GC_MALLOC
7606:
7607: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
7608:
7609: * operators.txt: - actually, there is no ^untaint[xml] in
7610: file::create
7611:
7612: 2009-10-15 misha
7613:
7614: * tests/: 235.html, 235_attach.txt: - tests for preparing email
7615: were added
7616:
7617: * tests/234.html: - more tests for checking ^taint[uri] escaping
7618: were added
7619:
7620: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
7621: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
7622: hacking: for dealing with transcoding+^taint[uri]
7623: transcode_and_untaint was replaced by untaint_and_transcode
7624:
7625: 2009-10-13 misha
7626:
7627: * tests/: 121.html, results/121.processed: - test transcoding +
7628: url-escaping now
7629:
7630: * tests/results/auto.p: - more helpers' methods were added
7631:
7632: * src/main/pa_globals.C: - die instead of abort
7633:
7634: 2009-10-06 misha
7635:
7636: * src/main/pa_common.C: - don't allocate memory during
7637: capitalization if input string is already capitalized
7638:
7639: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
7640:
7641: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
7642: use format function because it calls malloc
7643:
7644: * src/include/pa_common.h: - more capitalized headers were added
7645:
7646: * src/main/pa_common.C: - in safe mode clear executable bits during
7647: file writing
7648:
7649: 2009-10-05 misha
7650:
7651: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
7652:
7653: 2009-10-03 misha
7654:
7655: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
7656: ^img.text[] & ^img.length[] can work in utf-8 now
7657:
7658: * src/: include/pa_charset.h, main/pa_charset.C: - class
7659: UTF8_string_iterator was added
7660:
7661: * src/classes/image.C: - respect utf-8 when calculate alphabet
7662: length
7663:
7664: * src/classes/mail.C: - check from before get message.cstr
7665:
7666: 2009-10-02 misha
7667:
7668: * tests/233.html: - test for image.font, image.length, image.text
7669: with text in utf-8 were added
7670:
7671: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
7672:
7673: * buildall-with-xml, buildall-without-xml: - comment about gc
7674: version for freebsd 4 was added
7675:
7676: 2009-10-01 misha
7677:
7678: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
7679: terminator) - read_pipe were slightly optimized
7680:
7681: 2009-09-28 misha
7682:
7683: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
7684: removed
7685:
7686: * src/types/pa_vmail.C: - forgot about space after ':'
7687:
7688: * src/types/pa_vmail.C: - escape filenames while preparing mail
7689: body - small simplifications
7690:
7691: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
7692: inout params like pa_base64
7693:
7694: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
7695: option $.debug-print(1) was added to mail:send - changes for
7696: using uue_encode which uses less memory
7697:
7698: * src/main/pa_common.C: - pa_base64_encode uses less memory now
7699:
7700: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
7701: memory now
7702:
7703: 2009-09-26 misha
7704:
7705: * src/types/pa_vmail.C: - default encoding now is base64
7706:
7707: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
7708:
7709: 2009-09-25 misha
7710:
7711: * src/types/pa_vmail.C: - capitalization of headers was added to
7712: sending mail as well
7713:
7714: * buildall-with-xml: - catalog package was removed from libxml
7715:
7716: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
7717: win32 absolute path
7718:
7719: * src/include/pa_common.h: - one more capitalized header was added
7720:
7721: 2009-09-22 misha
7722:
7723: * INSTALL: - comment about building just httpd binary while
7724: building apache module was added
7725:
7726: 2009-09-21 misha
7727:
7728: * buildall-with-xml: - moving to the latest versions of xml libs:
7729: libxml 2.7.4 and libxslt 1.1.25
7730:
7731: 2009-09-19 misha
7732:
7733: * tests/231.html: - test for encoding cookie in win-1251
7734:
7735: 2009-09-18 misha
7736:
7737: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
7738: object] were added
7739:
7740: * operators.txt: - info about method ^reflection:fields[class or
7741: object] was added
7742:
7743: * src/classes/reflection.C: - method ^reflection:fields[class or
7744: object] was added
7745:
7746: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
7747: methods get_fields were added
7748:
7749: * tests/232.html: - tests for @GET[name]
7750:
7751: * src/classes/table.C: - some changes in handling hash-options for
7752: creare, join and locate
7753:
7754: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
7755: defined with option: the type of requested value
7756:
7757: 2009-09-17 misha
7758:
7759: * tests/212.html: - tests for .pattern and .options were added
7760:
7761: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
7762: $regex.options were added
7763:
7764: 2009-09-11 misha
7765:
7766: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
7767: rewrited. it checks not just one case of sending cookies during
7768: file::load[http], but also sending headers and fields (including
7769: files)
7770:
7771: 2009-09-10 misha
7772:
7773: * src/main/untaint.C: - workaround in file-spec lang for old Macs
7774: was removed => now parser can open files with Russian 'r' in
7775: filename
7776:
7777: * src/main/untaint.C: - bugfix: client charset whould be analized
7778: while escaping cookies but now source charset
7779:
7780: * src/main/pa_http.C: - bugfix: the values of http headers didn't
7781: ^tainted[uri] so it was possible to make request with incorrect
7782: http header
7783:
7784: * src/main/pa_http.C: - capitalization of http headers during
7785: file::load[http was slightly changes - bugfix: all headers which
7786: parser sends during file::load[http should be transcoded and only
7787: then escaped
7788:
7789: * src/main/untaint.C: - a bit more comments were added
7790:
7791: * src/classes/: file.C, string.C: - types where changes (minus 2
7792: warnings)
7793:
7794: * src/include/pa_common.h: - 2 capitalized strings for making http
7795: headers during file::load[http were added
7796:
7797: 2009-09-08 misha
7798:
7799: * operators.txt: - changes in file.save and string.save were added
7800:
7801: * tests/: 230.html, 230.txt: - tests for checking options in
7802: file.save and string.save were added
7803:
7804: * src/main/pa_request.C: - http headers names, which are passed to
7805: SAPI::add_header_attribute are lowercased now (it'll be
7806: capitalized in that method)
7807:
7808: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
7809: classes/string.C: - file_write accepts Request_charsets and asked
7810: charset and cound transcode content before writing - string.save
7811: and file.save have option $.charset now
7812:
7813: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
7814: classes/xdoc.C: - file_write accepts Request_charsets and asked
7815: charset and cound transcode content before writing
7816:
7817: * src/include/pa_exception.h: - new exception comment string was
7818: defined
7819:
7820: 2009-09-07 misha
7821:
7822: * src/main/compile.y: - grammar $name\ name stops now for regex
7823: sub-pattern\s
7824:
7825: 2009-09-04 misha
7826:
7827: * src/main/pa_http.C: - capitalization of http headers during
7828: file::load[http was implemented
7829:
7830: 2009-09-03 misha
7831:
7832: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
7833: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
7834: types/pa_vmail.C, targets/cgi/parser3.C,
7835: targets/isapi/parser3isapi.C: - back to storing response http
7836: headers in lowercase - capitalize them during output
7837:
7838: 2009-08-31 misha
7839:
7840: * src/classes/table.C: - allow call with any brackets (it could be
7841: useful in methods with explict result declaration)
7842:
7843: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
7844: correctly if $request:charset==koi8-r
7845:
7846: 2009-08-30 misha
7847:
7848: * src/: include/pa_common.h, main/pa_request.C: - http headers were
7849: changed: content-type => Content-type and so on
7850:
7851: * src/classes/file.C, src/include/pa_common.h,
7852: src/include/pa_request.h, src/main/pa_http.C,
7853: src/main/pa_request.C, src/types/pa_vcookie.C,
7854: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
7855: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
7856: tests/results/002.processed, tests/results/003.processed,
7857: tests/results/004.processed, tests/results/005.processed,
7858: tests/results/006.processed, tests/results/007.processed,
7859: tests/results/008.processed, tests/results/009.processed,
7860: tests/results/010.processed, tests/results/011.processed,
7861: tests/results/012.processed, tests/results/013.processed,
7862: tests/results/014.processed, tests/results/015.processed,
7863: tests/results/016.processed, tests/results/017.processed,
7864: tests/results/018.processed, tests/results/019.processed,
7865: tests/results/020.processed, tests/results/021.processed,
7866: tests/results/022.processed, tests/results/023.processed,
7867: tests/results/024.processed, tests/results/025.processed,
7868: tests/results/026.processed, tests/results/027.processed,
7869: tests/results/028.processed, tests/results/029.processed,
7870: tests/results/030.processed, tests/results/031.processed,
7871: tests/results/032.processed, tests/results/033.processed,
7872: tests/results/034.processed, tests/results/035.processed,
7873: tests/results/036.processed, tests/results/037.processed,
7874: tests/results/038.processed, tests/results/039.processed,
7875: tests/results/040.processed, tests/results/041.processed,
7876: tests/results/042.processed, tests/results/043.processed,
7877: tests/results/044.processed, tests/results/045.processed,
7878: tests/results/046.processed, tests/results/047.processed,
7879: tests/results/048.processed, tests/results/049.processed,
7880: tests/results/050.processed, tests/results/051.processed,
7881: tests/results/052.processed, tests/results/053.processed,
7882: tests/results/054.processed, tests/results/055.processed,
7883: tests/results/056.processed, tests/results/057.processed,
7884: tests/results/058.processed, tests/results/059.processed,
7885: tests/results/060.processed, tests/results/061.processed,
7886: tests/results/062.processed, tests/results/063.processed,
7887: tests/results/064.processed, tests/results/065.processed,
7888: tests/results/066.processed, tests/results/067.processed,
7889: tests/results/068.processed, tests/results/069.processed,
7890: tests/results/070.processed, tests/results/071.processed,
7891: tests/results/072.processed, tests/results/073.processed,
7892: tests/results/074.processed, tests/results/075.processed,
7893: tests/results/076.processed, tests/results/077.processed,
7894: tests/results/078.processed, tests/results/079.processed,
7895: tests/results/080.processed, tests/results/081.processed,
7896: tests/results/082.processed, tests/results/083.processed,
7897: tests/results/084.processed, tests/results/085.processed,
7898: tests/results/086.processed, tests/results/087.processed,
7899: tests/results/088.processed, tests/results/089.processed,
7900: tests/results/090.processed, tests/results/091.processed,
7901: tests/results/092.processed, tests/results/093.processed,
7902: tests/results/094.processed, tests/results/095.processed,
7903: tests/results/096.processed, tests/results/097.processed,
7904: tests/results/098.processed, tests/results/099.processed,
7905: tests/results/100.processed, tests/results/101.processed,
7906: tests/results/102.processed, tests/results/103.processed,
7907: tests/results/104.processed, tests/results/105.processed,
7908: tests/results/106.processed, tests/results/107.processed,
7909: tests/results/108.processed, tests/results/109.processed,
7910: tests/results/110.processed, tests/results/111.processed,
7911: tests/results/112.processed, tests/results/113.processed,
7912: tests/results/114.processed, tests/results/115.processed,
7913: tests/results/116.processed, tests/results/117.processed,
7914: tests/results/118.processed, tests/results/119.processed,
7915: tests/results/120.processed, tests/results/121.processed,
7916: tests/results/122.processed, tests/results/123.processed,
7917: tests/results/124.processed, tests/results/125.processed,
7918: tests/results/126.processed, tests/results/127.processed,
7919: tests/results/128.processed, tests/results/129.processed,
7920: tests/results/130.processed, tests/results/131.processed,
7921: tests/results/132.processed, tests/results/133.processed,
7922: tests/results/134.processed, tests/results/135.processed,
7923: tests/results/136.processed, tests/results/138.processed,
7924: tests/results/139.processed, tests/results/140.processed,
7925: tests/results/141.processed, tests/results/142.processed,
7926: tests/results/143.processed, tests/results/144.processed,
7927: tests/results/145.processed, tests/results/146.processed,
7928: tests/results/147.processed, tests/results/148.processed,
7929: tests/results/149.processed, tests/results/150.processed,
7930: tests/results/151.processed, tests/results/152.processed,
7931: tests/results/153.processed, tests/results/154.processed,
7932: tests/results/155.processed, tests/results/156.processed,
7933: tests/results/157.processed, tests/results/158.processed,
7934: tests/results/159.processed, tests/results/160.processed,
7935: tests/results/161.processed, tests/results/162.processed,
7936: tests/results/163.processed, tests/results/164.processed,
7937: tests/results/165.processed, tests/results/166.processed,
7938: tests/results/167.processed, tests/results/168.processed,
7939: tests/results/169.processed, tests/results/170.processed,
7940: tests/results/171.processed, tests/results/172.processed,
7941: tests/results/173.processed, tests/results/174.processed,
7942: tests/results/175.processed, tests/results/176.processed,
7943: tests/results/177.processed, tests/results/178.processed,
7944: tests/results/179.processed, tests/results/180.processed,
7945: tests/results/181.processed, tests/results/182.processed,
7946: tests/results/183.processed, tests/results/184.processed,
7947: tests/results/185.processed, tests/results/186.processed,
7948: tests/results/187.processed, tests/results/188.processed,
7949: tests/results/189.processed, tests/results/190.processed,
7950: tests/results/191.processed, tests/results/192.processed,
7951: tests/results/193.processed, tests/results/194.processed,
7952: tests/results/195.processed, tests/results/196.processed,
7953: tests/results/197.processed, tests/results/198.processed,
7954: tests/results/199.processed, tests/results/200.processed,
7955: tests/results/201.processed, tests/results/202.processed,
7956: tests/results/203.processed, tests/results/204.processed,
7957: tests/results/205.processed, tests/results/206.processed,
7958: tests/results/207.processed, tests/results/208.processed,
7959: tests/results/209.processed, tests/results/210.processed,
7960: tests/results/211.processed, tests/results/212.processed,
7961: tests/results/213.processed, tests/results/214.processed,
7962: tests/results/215.processed, tests/results/216.processed,
7963: tests/results/217.processed, tests/results/218.processed,
7964: tests/results/219.processed, tests/results/220.processed,
7965: tests/results/221.processed, tests/results/222.processed,
7966: tests/results/223.processed, tests/results/224.processed,
7967: tests/results/225.processed, tests/results/226.processed,
7968: tests/results/227.processed, tests/results/228.processed,
7969: tests/results/229.processed: - http headers were changed:
7970: content-type => Content-type and so on
7971:
7972: 2009-08-27 misha
7973:
7974: * src/: main/pa_random.C, include/pa_random.h,
7975: targets/cgi/parser3.C: - year was updated :)
7976:
7977: 2009-08-26 misha
7978:
7979: * tests/: 224.html, 224.p: - test for creating of parser object
7980: using constructor without params - little bugfix in test
7981:
7982: * src/main/compile_tools.h: - bugfix: should't call autouse while
7983: checking existed class while processing partial option
7984:
7985: * src/classes/reflection.C: - bugfix: core when creating object
7986: with reflection and constructor doesn't have params
7987:
7988: 2009-08-24 misha
7989:
7990: * tests/229.html: - tests for checking the number of parameters
7991: were added
7992:
7993: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
7994: number of method's parameters wasn't checked correctly (the bug
7995: was introduced in 3.4.0)
7996:
7997: 2009-08-22 misha
7998:
7999: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
8000: transcoded, but tainted pieces are escaped only when
8001: content-type==url-encoding
8002:
8003: * tests/228.html: - test for checking
8004: ^file::load[http://...;$.body[]]
8005:
8006: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
8007: post charset was too early (charsets is empty at this moment)
8008:
8009: 2009-08-21 misha
8010:
8011: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
8012: main/untaint.C: - some fixes with transcode+untaint
8013:
8014: 2009-08-15 misha
8015:
8016: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
8017: was increaced to 100 (was 50)
8018:
8019: * tests/227.html: - test for checking overriding properties in
8020: static classes was added
8021:
8022: * tests/: 226.html, 226.p: - test for @autoload[] was added
8023:
8024: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
8025: main/execute.C, main/pa_request.C, classes/reflection.C: -
8026: autouse was implemented
8027:
8028: 2009-08-14 misha
8029:
8030: * src/classes/reflection.C: - outdated checkout was removed
8031:
8032: * src/classes/reflection.C: - optimization - method ^dynamical was
8033: added.
8034:
8035: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
8036: types/pa_vstateless_class.h, main/execute.C: - optimization
8037:
8038: * src/types/pa_vclass.C: - exception if base on sytem class
8039:
8040: 2009-08-12 misha
8041:
8042: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
8043: pa_vstateless_class.h: - little optimisation
8044:
8045: 2009-08-11 misha
8046:
8047: * tests/224.html: - method_params => method_info - checking for
8048: $.inherited
8049:
8050: * src/classes/reflection.C, operators.txt: - method method_params
8051: was renamed to method_info and now it returns class name, if
8052: method was defined in ancestor
8053:
8054: * tests/225.html: - tests for cheching properties in hierarhical
8055: classes were added
8056:
8057: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
8058: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8059: main/compile.y, main/execute.C, classes/classes.C: - problems
8060: with properties in new classes implementation were fixed
8061:
8062: 2009-08-10 misha
8063:
8064: * src/main/execute.C: - now constructor shouldn't be defined in
8065: class. it could be defined in parent.
8066:
8067: 2009-08-09 misha
8068:
8069: * src/classes/reflection.C: - ^reflection:methods doesn't return
8070: base's methods
8071:
8072: 2009-08-08 misha
8073:
8074: * src/: classes/classes.h, classes/date.C, classes/file.C,
8075: classes/form.C, classes/hash.C, classes/hashfile.C,
8076: classes/image.C, classes/mail.C, classes/op.C,
8077: classes/reflection.C, classes/regex.C, classes/string.C,
8078: classes/table.C, classes/xdoc.C, classes/xnode.C,
8079: classes/xnode.h, include/pa_hash.h, main/execute.C,
8080: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
8081: types/pa_method.h, types/pa_property.h, types/pa_value.C,
8082: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8083: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8084: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
8085: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
8086: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
8087: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
8088: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
8089: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
8090: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
8091: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
8092: types/pa_vresponse.C, types/pa_vresponse.h,
8093: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8094: types/pa_vstateless_object.h, types/pa_vstatus.C,
8095: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
8096: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
8097: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
8098: types/pa_wwrapper.h, types/types.vcproj: - new classes
8099: implementation
8100:
8101: * buildall-with-xml, buildall-without-xml: - gc has a bug if
8102: USE_MUNMAP is used. so it is disabled as a workaround.
8103:
8104: 2009-08-05 misha
8105:
8106: * src/: main/pa_common.C, include/pa_common.h: - not needed
8107: parameter was removed
8108:
8109: * src/main/pa_http.C: - bugfix: error was during detecting
8110: content-type of file which was loaded by http
8111:
8112: 2009-08-01 misha
8113:
8114: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
8115: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
8116: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
8117: can't be disabled with defines any longer
8118:
8119: 2009-07-29 misha
8120:
8121: * src/classes/reflection.C, tests/results/224.processed: - for
8122: native methods with any call type now returned empty call_type
8123: value
8124:
8125: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
8126: classes/table.C, include/pa_hash.h, include/pa_request.h,
8127: main/pa_request.C: - break in cycles was optimized
8128:
8129: * INSTALL: - more defines were described
8130:
8131: 2009-07-28 misha
8132:
8133: * operators.txt: - some changes in information about reflection
8134: class
8135:
8136: * tests/: 224.html, 224.p: - tests for reflection class
8137:
8138: * src/classes/reflection.C: - some bugs were fixed, method classes
8139: was added, refactoring
8140:
8141: 2009-07-26 misha
8142:
8143: * src/classes/classes.vcproj: - reflection class wass added to
8144: project
8145:
8146: * operators.txt: - information about reflection class was added
8147:
8148: * src/classes/reflection.C: - class was redesigned
8149:
8150: 2009-07-24 misha
8151:
8152: * src/classes/: Makefile.am, reflection.C: - class reflection was
8153: added
8154:
8155: * src/types/pa_vstateless_class.h: - method for reflection method's
8156: in classes was added
8157:
8158: 2009-07-22 misha
8159:
8160: * src/main/compile_tools.h: - bugfix: $object.$var was
8161: over-optimized. it failed if $object1.$object2.field
8162:
8163: 2009-07-16 misha
8164:
8165: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
8166: lib/cord/cordxtra.c, lib/cord/include/cord.h,
8167: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
8168: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
8169: one more arg: length of cord
8170:
8171: 2009-07-15 misha
8172:
8173: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
8174: tainted in ^file::load[http://...;$.cookies[]]
8175:
8176: * src/classes/: op.C, regex.C, string.C: - new string with
8177: exception was used
8178:
8179: * src/include/pa_exception.h: - new string with exception was added
8180:
8181: * tests/223.html: - test for checking cookie-encoding during
8182: ^file::load[http was added
8183:
8184: * tests/: 221.html, 222.html: - tests for checking type of
8185: $table.fields.field were added
8186:
8187: * src/types/pa_vtable.C: - not used var decl was removed
8188:
8189: * src/include/pa_string.h: - use cached string length in Body::mid.
8190: it improves speed of match with brackets in pattern
8191:
8192: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
8193: outside
8194:
8195: 2009-07-14 misha
8196:
8197: * src/types/pa_vtable.C: - $table.fields.a return string even if
8198: column is empty (sometime returned void) - $table.fields was
8199: added for nameless tables
8200:
8201: * src/targets/cgi/getopt.c: - one warning resolved
8202:
8203: * src/main/pa_string.C: - potentian bug fixed
8204:
8205: * src/classes/op.C: - small optimization in taint/untaint
8206:
8207: 2009-07-13 misha
8208:
8209: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
8210: added
8211:
8212: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
8213: souldn't add the attribut to output
8214:
8215: 2009-07-11 misha
8216:
8217: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8218: stack size was increaced to 2MB (default=1MB)
8219:
8220: 2009-07-08 misha
8221:
8222: * src/main/pa_string.C: - link to UTF-8 description was added
8223:
8224: * src/include/pa_hash.h: - hash keeps element's order in more
8225: places (ex: ._keys[])
8226:
8227: * tests/220.html: - test for checking order of elements in hash in
8228: foreach was added
8229:
8230: * tests/172.html: - small changes in printing hash
8231:
8232: * tests/129.html: - small changes in printing hash
8233:
8234: * src/: include/pa_common.h, include/pa_hash.h,
8235: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
8236: types/pa_vmethod_frame.h: - hash now keeps order of elements
8237:
8238: * tests/014.html: - small changes in printing hash
8239:
8240: 2009-07-07 misha
8241:
8242: * src/classes/op.C: - new taint language "parser-code" was added
8243:
8244: * tests/219.html: - test for auto untaint parser code in process
8245: was added
8246:
8247: * src/classes/op.C: - tainted pieces in body of process are
8248: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
8249:
8250: * src/: include/pa_string.h, main/untaint.C: - new language
8251: L_PARSER_CODE for auto-untaint in process was added
8252:
8253: * src/: classes/file.C, classes/hash.C, classes/image.C,
8254: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
8255: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
8256: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
8257: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
8258: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
8259: code cleanup
8260:
8261: 2009-07-06 misha
8262:
8263: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
8264: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
8265: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8266:
8267: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
8268: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
8269: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
8270: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
8271: should be used
8272:
8273: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
8274: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
8275: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
8276: untaint_cstr[m] should be used
8277:
8278: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
8279: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8280:
8281: * tests/218.html: - test for checking automatic file-spec-taint was
8282: added
8283:
8284: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
8285: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
8286: classes/file.C, classes/hash.C, classes/image.C,
8287: classes/string.C, classes/table.C, classes/void.C,
8288: classes/xdoc.C: - optimizations and simplification of
8289: string.cstr(...)
8290:
8291: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
8292: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
8293: - optimizations and simplification of string.cstr(...)
8294:
8295: 2009-07-04 misha
8296:
8297: * tests/217.html: - test for recursion detection was added
8298:
8299: * src/: types/types.vcproj, main/main.vcproj,
8300: classes/classes.vcproj, targets/cgi/parser3.vcproj,
8301: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
8302: from .vcproj
8303:
8304: * src/types/pa_wwrapper.h: - dynamic_cast was removed
8305:
8306: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
8307: uploading files and case-insensitive http-method were added
8308:
8309: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
8310: tainted pattern in ^file:list[] was added
8311:
8312: 2009-07-03 misha
8313:
8314: * src/: classes/classes.vcproj, main/main.vcproj,
8315: types/types.vcproj, targets/cgi/parser3.vcproj,
8316: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
8317: for dynamic_cast) - little options changes
8318:
8319: * src/main/pa_http.C: - file::load[http works now with uploading
8320: files _and_ changing $.charset
8321:
8322: 2009-06-29 misha
8323:
8324: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
8325: while creating pattern
8326:
8327: 2009-06-25 misha
8328:
8329: * src/classes/image.C, operators.txt: - options' names for
8330: ^image.font were changed to $.space, $.width and $spacing -
8331: default space width now == gif's width
8332:
8333: 2009-06-24 misha
8334:
8335: * tests/215.html: - tests for $file.mode were added
8336:
8337: * operators.txt: - added info about $file.mode and changes in
8338: ^image.font[
8339:
8340: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
8341: param now could be omited - third param now could be hash (with
8342: all widths options: $.space-width, $.letter-width) - it's
8343: possible to specify tracking ($.letter-space)
8344:
8345: * src/classes/file.C: - file objects now could have mode field
8346: (text|binary)
8347:
8348: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
8349:
8350: 2009-06-23 misha
8351:
8352: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8353: trim can work with utf-8 chars now
8354:
8355: 2009-06-20 misha
8356:
8357: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
8358: was implemented
8359:
8360: * src/classes/table.C: - string length cacheing was implemented
8361:
8362: * src/include/pa_string.h: - string length cacheing was implemented
8363:
8364: 2009-06-17 misha
8365:
8366: * src/main/execute.C: - value param was removed from
8367: WContext::WContext
8368:
8369: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
8370: pa_wwrapper.h: - value param was removed from WContext::WContext
8371: - field wcontext was removed from VCodeFrame (using fparent
8372: instead)
8373:
8374: * tests/214.html: - test with hash copying
8375:
8376: 2009-06-16 misha
8377:
8378: * tests/: 062.html, results/062.processed: - evaluation hardcoded
8379: strings doesn't work in expression anymore
8380:
8381: * src/main/execute.C: - less calls for get_constructing() - little
8382: refactoring
8383:
8384: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
8385: include/pa_request.h: - less calls for get_constructing()
8386:
8387: * src/classes/: hash.C, hashfile.C: - fixed bug which was
8388: introduced with OPTIMIZE_SINGLE_STRING optimization
8389:
8390: 2009-06-14 misha
8391:
8392: * src/: classes/date.C, classes/file.C, classes/hash.C,
8393: classes/hashfile.C, classes/image.C, classes/regex.C,
8394: classes/table.C, classes/xdoc.C, classes/xnode.h,
8395: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8396: types/pa_vstateless_class.h, main/execute.C: - create object for
8397: storing object's fields only for parser objects
8398:
8399: 2009-06-13 misha
8400:
8401: * buildall-with-xml, buildall-without-xml: - new option was added
8402: for building GC (it slightly reduces memory usage)
8403:
8404: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
8405: single string write
8406:
8407: * src/main/execute.C: - bytecode optimization of ^class:constructor
8408: - optimization of single string write
8409:
8410: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
8411: - bytecode optimization of ^class:constructor
8412:
8413: 2009-06-09 misha
8414:
8415: * src/targets/cgi/parser3.C: - type size_t was changed to int in
8416: main (better compatibility)
8417:
8418: 2009-06-08 misha
8419:
8420: * src/main/compile.y: - I've forgot to commit it :(
8421:
8422: 2009-06-07 misha
8423:
8424: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
8425: WITH_READ and WITH_ROOT
8426:
8427: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8428: execute.C: - more optimizations for WITH_SELF, WITH_READ and
8429: WITH_ROOT - little refactoring
8430:
8431: 2009-06-06 misha
8432:
8433: * tests/213.html: - tests for 3rd match string-param were added
8434:
8435: * src/classes/string.C: - 3rd match param could be string now
8436:
8437: * src/main/: compile.y, compile_tools.h: - much more bytecode's
8438: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
8439: GET_OBJECT_ELEMENT
8440:
8441: 2009-06-05 misha
8442:
8443: * src/main/pa_http.C: - bugfix: content-length was not calculated
8444: if $.body was specified
8445:
8446: 2009-06-04 misha
8447:
8448: * src/classes/op.C: - optimizing write_assign_lang in connect
8449:
8450: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
8451:
8452: * src/main/execute.C: - little refactoring - optimizing
8453: write_assign_lang in taint/untaint
8454:
8455: * src/include/pa_opcode.h: - little refactoring
8456:
8457: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
8458: main/compile_tools.h, main/execute.C: - optimizations for
8459: $self.field, ^self.method, $self.field[...] and $self.field(...)
8460: were added
8461:
8462: 2009-06-03 misha
8463:
8464: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
8465:
8466: 2009-06-02 misha
8467:
8468: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
8469: include/pa_opcode.h: - refactoring in last optimizations
8470: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
8471: now but code is much easy and it is ready for further
8472: improvements.
8473:
8474: 2009-05-27 misha
8475:
8476: * src/: types/pa_junction.h, types/pa_vjunction.C,
8477: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
8478: changed in destructing junctions
8479:
8480: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
8481: String:Body
8482:
8483: 2009-05-26 misha
8484:
8485: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
8486: one method detect_charset was deleted - bug was fixed in this
8487: method (error while detecting charset in content_type withot last
8488: ';')
8489:
8490: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
8491: once
8492:
8493: 2009-05-25 misha
8494:
8495: * src/classes/file.C: - bugfix: file::exec didn't work after
8496: optimizing of helper_length
8497:
8498: 2009-05-24 misha
8499:
8500: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
8501: were added - little refactoring
8502:
8503: * src/main/execute.C: - core while printing in debug log
8504: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
8505: optimisations were added
8506:
8507: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
8508: were added
8509:
8510: 2009-05-23 misha
8511:
8512: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
8513: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
8514: CORD_cat optimization
8515:
8516: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
8517: - call constr optimisation under separate define now
8518:
8519: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
8520: in $b should be string, not void
8521:
8522: * src/main/compile.y: - little fix for rem-cut optimisation
8523:
8524: * src/: include/pa_opcode.h, main/compile_tools.C,
8525: main/compile_tools.h, main/execute.C: - optimisations for
8526: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
8527:
8528: * INSTALL: - description of some #defined were added
8529:
8530: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
8531: before 1st access (memory usage is reduced if don't access to
8532: .text field)
8533:
8534: * src/include/pa_array.h: - array grows step now not static (it
8535: reduces numbers of reallocs)
8536:
8537: 2009-05-20 misha
8538:
8539: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
8540: $.b(2), $c[d] and $.e[f] was added
8541:
8542: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8543: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
8544: $.e[f] was added
8545:
8546: * src/main/execute.C: - debug printing moved in defines
8547:
8548: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
8549: and little refactoring for OP_GET_OBJECT_ELEMENT +
8550: OP_GET_OBJECT_VAR_ELEMENT optimisation
8551:
8552: 2009-05-19 misha
8553:
8554: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8555: execute.C: - $a.$b & ^a.$b bytecode optimisation
8556:
8557: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
8558: ^a.$b optimisation)
8559:
8560: * src/main/compile.y: - compiler now generate new opcodes:
8561: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
8562: ^a.b - compiler now cut off ^rem{ with all content ; any number
8563: of params }
8564:
8565: * src/main/execute.C: - code for handle new opcodes
8566: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
8567:
8568: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
8569: added for LA2V and LA2S
8570:
8571: * src/include/pa_opcode.h: - new defines which can be used for
8572: disable some bytecode optimisation and new opcodes were added
8573:
8574: 2009-05-17 misha
8575:
8576: * src/lib/cord/cordxtra.c: - bugfix.
8577:
8578: * tests/212.html: - .size[] and .study_size[] were added to tests
8579:
8580: * operators.txt: - info about regex class was added
8581:
8582: * tests/212.html: - tests for regex class were added
8583:
8584: 2009-05-16 misha
8585:
8586: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
8587: gc7.1
8588:
8589: * tests/022.html: - test for ^file:list[path;] (empty second param)
8590: was added
8591:
8592: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
8593: param) should work
8594:
8595: 2009-05-15 misha
8596:
8597: * src/classes/table.C: - automatically disable stringstream usage
8598: on freebsd4
8599:
8600: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
8601: scope
8602:
8603: * tests/211.html: - test with different types of access to hash was
8604: added
8605:
8606: * tests/210.html: - test which checks for loosing tainting in
8607: hash's keys was added
8608:
8609: * tests/208.html: - some parser work added. or stime == 0 %-)
8610:
8611: * src/lib/cord/cordbscs.c: - little hack was added to cord
8612:
8613: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
8614:
8615: * src/include/pa_version.h, configure.in: - moko have made a lot of
8616: optimisations for increacing version number more dramatically :)
8617:
8618: * src/classes/date.C: - little refactoring: use constructor which
8619: accepts formated string
8620:
8621: * src/: include/pa_string.h, main/pa_string.C: - String constructor
8622: which can print formatted string was added
8623:
8624: 2009-05-14 misha
8625:
8626: * src/include/pa_string.h: - type was fixed
8627:
8628: * src/: classes/hashfile.C, classes/op.C,
8629: include/pa_cache_managers.h, include/pa_charset.h,
8630: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
8631: include/pa_request.h, include/pa_sql_driver_manager.h,
8632: include/pa_string.h, include/pa_stylesheet_manager.h,
8633: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
8634: main/pa_charsets.C, main/pa_string.C,
8635: main/pa_stylesheet_connection.C, types/pa_value.h,
8636: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8637: types/pa_vobject.C, types/pa_vstateless_class.C,
8638: types/pa_vstateless_class.h: - hash_code caching was implemented
8639: (seaches should be faster now)
8640:
8641: * src/: classes/file.C, classes/hash.C, classes/image.C,
8642: classes/string.C, classes/table.C, include/pa_string.h,
8643: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
8644: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
8645: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
8646: types/pa_vrequest.C: - String constructors don't have that stupid
8647: true/false param which means 'tainted'. they accept lang instead.
8648:
8649: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
8650: with OPTIMIZE_RESULT
8651:
8652: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
8653: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
8654:
8655: 2009-05-13 misha
8656:
8657: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
8658: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
8659: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8660: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
8661: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
8662: main/pa_common.C, main/pa_request.C, main/pa_string.C,
8663: include/pa_string.h, classes/date.C, classes/file.C,
8664: classes/hash.C, classes/image.C, classes/string.C,
8665: classes/table.C, classes/xdoc.C: - result optimisation -
8666: helper_length parameter removed from string constructors
8667:
8668: 2009-05-11 misha
8669:
8670: * tests/209.html: - tests for ^hash::create[hash] were added
8671:
8672: * tests/208.html: - tests for $status:rusage, $status:memory,
8673: ^memory:compact[] were added
8674:
8675: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
8676: log10 were added
8677:
8678: * tests/206.html: - test for try with finally was added
8679:
8680: 2009-05-10 misha
8681:
8682: * tests/205.html: - test for ^file::create[...] was added
8683:
8684: * tests/204.html: - test for ^response:clear[] was added
8685:
8686: * tests/038.html: - tests for trigonometric functions were added
8687:
8688: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
8689: added - more tests for .add, .sub, .union, .intersects and
8690: .intersections
8691:
8692: * tests/065.html: - test for ^file:dirname was added
8693:
8694: * tests/030.html: - test for $cookie:fields was added
8695:
8696: * tests/203.html: - test for ^h._keys[column name] was added
8697:
8698: * tests/201.html: - tests for .trim were added
8699:
8700: * tests/202.html: - tests for last-day,
8701: date:calendar[type](YYYY;MM;DD) were added
8702:
8703: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
8704: .offset[type](N) were added
8705:
8706: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
8707: and .pos[c](N) were added
8708:
8709: * tests/141.html: - test for math:sha1 was added
8710:
8711: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
8712:
8713: 2009-05-09 misha
8714:
8715: * src/main/compile.y: - rollback
8716:
8717: 2009-05-05 misha
8718:
8719: * src/main/pa_exec.C: - little optimisation: somewhere length() was
8720: replaced by is_empty()
8721:
8722: * src/: include/pa_string.h, main/pa_charset.C: - little
8723: optimisation: somewhere length() was replaced by is_empty()
8724:
8725: * src/classes/table.C: - little optimisation: somewhere length()
8726: was replaced by is_empty()
8727:
8728: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
8729: classes/op.C, classes/table.C, main/pa_exception.C: - little
8730: optimisation: somewhere length() was replaced by is_empty()
8731:
8732: 2009-05-04 misha
8733:
8734: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8735: types/pa_vstateless_class.h, main/execute.C,
8736: include/pa_request.h, classes/hash.C, classes/op.C,
8737: classes/table.C: - more optimisations were added: some operators
8738: don't switch write context anylonger
8739:
8740: 2009-05-01 misha
8741:
8742: * src/main/compile.y: - slightly more opcode optimisations for
8743: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
8744:
8745: * src/main/execute.C: - simplifying process for getters
8746:
8747: 2009-04-30 misha
8748:
8749: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
8750:
8751: * tests/results/199.processed: - test for checking $result into
8752: ^rem was added
8753:
8754: * tests/199.html: - test for checking $result into ^rem was added
8755:
8756: * tests/: 022.html, 096.html: - þsort after :list was asses (on
8757: some OS it returns list in different order)
8758:
8759: * src/: include/pa_array.h, include/pa_request.h,
8760: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
8761: changes in stack impl - get_element() optimisation: 3rd param
8762: removed - bugfix: problems with reading empty input param -
8763: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
8764:
8765: * tests/results/198.processed: - test for reading empty local var
8766: was added
8767:
8768: * tests/198.html: - test for reading empty local var was added
8769:
8770: 2009-04-29 misha
8771:
8772: * src/main/compile.y: - bugfix: couldn't compile because
8773: OP_VALUE__GET_ELEMENT should be unde #ifdef
8774:
8775: * src/: include/pa_array.h, include/pa_opcode.h,
8776: include/pa_request.h, main/compile.y, main/execute.C,
8777: main/pa_request.C, types/pa_vmethod_frame.C,
8778: types/pa_vmethod_frame.h: - we can work without opcode
8779: OP_STORE_PARAM, so it was removed
8780:
8781: 2009-04-28 misha
8782:
8783: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
8784: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
8785: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
8786: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
8787: 4.
8788: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
8789:
8790: * src/main/compile_tools.h: - new stuff for op-codes optimisation
8791:
8792: * src/: main/pa_string.C, classes/string.C: - !length() =>
8793: is_empty()
8794:
8795: 2009-04-27 misha
8796:
8797: * src/types/pa_vregex.h: - back explicit vars initialisation
8798:
8799: 2009-04-24 misha
8800:
8801: * src/classes/string.C: - ups. typo fixed
8802:
8803: * src/main/execute.C: - more replacements '*new VBool' to
8804: 'VBool::get' - checks for ^break[], ^continue[] and
8805: parser.interrupted were optimised
8806:
8807: * src/classes/string.C: - number of params.count() calls was
8808: slightly reduced
8809:
8810: 2009-04-23 misha
8811:
8812: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8813: make it x64 friendly
8814:
8815: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8816: parser is x64 friendly now
8817:
8818: 2009-04-22 misha
8819:
8820: * src/types/pa_vhashfile.C: - coder friendly exception about
8821: exceeding record size was added
8822:
8823: * src/classes/file.C: - use vregex object instead of direct calls
8824: methods from pcre lib
8825:
8826: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
8827: classes/string.C: - use vregex object instead of direct calls
8828: methods from pcre lib
8829:
8830: * src/: include/pa_common.h, main/pa_common.C: - method
8831: print_pcre_exec_error_text was moved to class vregex
8832:
8833: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
8834: was added
8835:
8836: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
8837: - class vregex was added
8838:
8839: 2009-04-21 misha
8840:
8841: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
8842:
8843: * src/: types/pa_junction.h, types/pa_value.C,
8844: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
8845: types/pa_wcontext.h, main/execute.C, classes/op.C: -
8846: junction-optimisation (destructors)
8847:
8848: * src/include/pa_array.h: - free under if now
8849:
8850: 2009-04-19 misha
8851:
8852: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
8853:
8854: 2009-04-18 misha
8855:
8856: * src/include/pa_version.h:
8857: :q :
8858:
8859: CV:
8860: ----------------------------------------------------------------------
8861:
8862: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
8863: refactoring
8864:
8865: * src/: include/pa_array.h, include/pa_hash.h,
8866: types/pa_vmethod_frame.h: - destructors under #ifdef now
8867:
8868: * src/include/pa_memory.h: - define for using destructors was added
8869:
8870: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8871: main/execute.C: - some junctions will be cached now
8872:
8873: * src/include/pa_hash.h: - hash destructor frees pairs now
8874:
8875: * src/include/pa_array.h: - inline was added to destructor
8876:
8877: * src/types/pa_method.h: - comment was changed
8878:
8879: 2009-04-17 misha
8880:
8881: * src/: include/pa_array.h, include/pa_hash.h,
8882: types/pa_vmethod_frame.h: - destructors were added
8883:
8884: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
8885: renamed to always_use_result
8886:
8887: * src/main/: compile.y, compile_tools.h: - rollback changes in
8888: compiler: full backward compatibility is better
8889:
8890: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
8891: result in var's hash
8892:
8893: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8894: optimisation in method_frame
8895:
8896: * src/include/pa_array.h: - optimisation in array (allocate
8897: elements only when needed)
8898:
8899: * src/types/pa_vresponse.C: - check for $response:headers field
8900: before looking at custom fields
8901:
8902: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
8903: not needed to check existance var with name 'result' in var's
8904: hash
8905:
8906: * src/main/compile.y: - compiler was changed: now it detects
8907: writings to $result and set flag writo_to_result in method
8908:
8909: * src/classes/string.C: - little optimisation: no needed to write
8910: number with lang
8911:
8912: * src/main/pa_charset.C: - methods readChar and skipChar which is
8913: used for read utf8-strings were renamed - is_escaped was renamed
8914: to isEscaped (to the same name convention)
8915:
8916: * src/: types/pa_method.h, main/compile_tools.h: - flag
8917: write_to_result added. compiler get this info from code.
8918:
8919: 2009-04-16 misha
8920:
8921: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
8922: String only before 1st write
8923:
8924: * src/include/pa_string.h: - not needed template removed
8925:
8926: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
8927: types/pa_vjunction.C, types/pa_vproperty.C,
8928: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
8929: main/pa_request.C, classes/bool.C, classes/double.C,
8930: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
8931: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
8932: bool objects)
8933:
8934: 2009-04-15 misha
8935:
8936: * src/lib/cord/cordxtra.c: - more optimisation
8937:
8938: * src/: include/pa_string.h, main/untaint.C: - String::append
8939: optimisation
8940:
8941: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
8942: then get and can sometime be used)
8943:
8944: * src/main/pa_string.C: - String::length optimisation
8945:
8946: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
8947: these methods read different strings
8948:
8949: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8950: fresult_initial_void removed + some optimisation - if $result
8951: defined we don't write to context anymore
8952:
8953: * src/main/pa_charset.C: - readChar => skipChar (in this place we
8954: need just skip char)
8955:
8956: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8957: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
8958: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
8959:
8960: * src/types/pa_vvoid.h: - added get() method for retreave one
8961: instance
8962:
8963: 2009-04-11 misha
8964:
8965: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
8966:
8967: * tests/197.html: - test for parser://test in xml was added
8968:
8969: * src/classes/string.C: - small optimisation
8970:
8971: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
8972: optimisation
8973:
8974: 2009-04-10 misha
8975:
8976: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
8977: to pcre-7.8
8978:
8979: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
8980:
8981: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
8982: added
8983:
8984: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
8985: $request:CLASS_NAME were added
8986:
8987: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
8988: were added
8989:
8990: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
8991: $env:CLASS_NAME were added
8992:
8993: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
8994: '@todo' now
8995:
8996: * src/targets/cgi/parser3.C: - size_t -> int for calming down
8997: compirer
8998:
8999: * src/main/pa_string.C: - little code cleanup
9000:
9001: * src/main/pa_common.C: - describe one more UTF-8 related error
9002: during PCRE compile/execute
9003:
9004: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
9005: normalizing todo-comments: '@todo' now
9006:
9007: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
9008:
9009: * src/main/pa_charset.C: - type changed for making compiler happy
9010:
9011: 2009-03-10 misha
9012:
9013: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
9014: in main()
9015:
9016: 2009-02-01 misha
9017:
9018: * src/main/pa_http.C: - bugfix: double CRLF before the end of
9019: boundary
9020:
9021: 2009-01-25 misha
9022:
9023: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
9024:
9025: * src/classes/file.C: - more changes for parsing different number
9026: of params for file::load
9027:
9028: * tests/193.html: - tests for exception while base64-decode binary
9029: to string was added
9030:
9031: * tests/192.html: - tests for file::load with different number of
9032: options
9033:
9034: * src/classes/math.C: - ups. forgot '+1'
9035:
9036: * src/: classes/table.C, classes/file.C, include/pa_common.h,
9037: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
9038: main/pa_http.C: - ^file::load[...;http://...;] now can post files
9039: (new option $.encode[multipart-form/data] should be specified) -
9040: $.method[] option for file::load now is not case-sensitive
9041:
9042: * src/: include/pa_string.h, main/untaint.C: - for file post the
9043: new taint language L_FILE_POST was added
9044:
9045: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
9046: main/main.vcproj, classes/math.C, include/Makefile.am: - some
9047: stuff was moved to separate files
9048:
9049: 2009-01-23 misha
9050:
9051: * src/classes/math.C: - little optimisation in ^math:sha1[] -
9052: spaces to tabs were converted
9053:
9054: 2009-01-12 misha
9055:
9056: * src/main/pa_http.C: - value of $.method[] option force uppercased
9057: now
9058:
9059: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
9060: types/pa_vform.C, types/pa_vmail.C: - some constants changed
9061: their names
9062:
9063: * src/main/pa_common.C: - changes in formating
9064:
9065: * src/: classes/file.C, main/pa_http.C: - some constants changed
9066: their names
9067:
9068: * src/include/pa_http.h: - some spaces were converted to tabs
9069:
9070: * src/include/pa_common.h: - some constants changed their names
9071:
9072: * src/classes/file.C: - fixed 4-th paramether for file::load -
9073: little code rewriting
9074:
9075: * src/types/pa_vfile.C: - little code rewriting
9076:
9077: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
9078: types/pa_value.h: - some formating changes
9079:
9080: * src/include/pa_common.h: - some formating spaces transformed to
9081: tabs
9082:
9083: * src/classes/string.C: - exception while base64-decode binary to a
9084: string
9085:
9086: 2009-01-11 misha
9087:
9088: * configure.in: - version changed to 3.3.1b
9089:
9090: 2008-09-05 misha
9091:
9092: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
9093: release_3_3_0 on 2008-09-05 10:59:35 +0000
9094:
9095: 2008-09-04 misha
9096:
9097: * tests/: 130.html, 131.html: - these exceptions not typeless
9098: anymore
9099:
9100: * src/classes/op.C: - exception with 'invalid taint language' not
9101: typeless anylonger
9102:
9103: * src/classes/image.C: - some exceptions while operations with
9104: image not typeless anymore
9105:
9106: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
9107: main/pa_exec.C, main/pa_http.C: - some exceptions while
9108: operations with files not typeless anymore
9109:
9110: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
9111: types/pa_vdate.h: - exceptions while checking date range not
9112: typeless anymore
9113:
9114: * src/include/pa_exception.h: - exception type string for invalid
9115: date range was added
9116:
9117: 2008-09-03 misha
9118:
9119: * src/: classes/file.C, main/pa_string.C: - exception while pce
9120: operations not typeless anymore
9121:
9122: * src/include/pa_exception.h: - exception type for pce operations
9123: was added
9124:
9125: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
9126: and .CLASS_NAME insite classes
9127:
9128: * src/classes/table.C: - don't save table header whiile
9129: ^table.save[append;filename] if file exists
9130:
9131: 2008-09-02 misha
9132:
9133: * src/main/compile.y, src/main/compile_tools.h,
9134: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
9135: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
9136: renamed to partial and it login changed: we must mark class as
9137: partial for allow their modifications in future.
9138:
9139: 2008-08-29 misha
9140:
9141: * tests/results/022.processed: - testing taint[regex] in mask for
9142: file:list
9143:
9144: * tests/022.html: - testing taint[regex] in mask for file:list
9145:
9146: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
9147: for file:list was added
9148:
9149: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
9150: file:list
9151:
9152: 2008-08-26 misha
9153:
9154: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
9155: last derived object
9156:
9157: * src/classes/image.C: - many strings "image.format" replaced by
9158: IMAGE_FORMAT constant string - handle GPS info while parse exif -
9159: understand some more exif tags
9160:
9161: * src/include/pa_exception.h: - string "image.format" was added
9162:
9163: 2008-08-21 misha
9164:
9165: * src/: main/pa_string.C, classes/file.C: - use method for print
9166: pcre_exec text error
9167:
9168: * src/main/pa_common.C: - method for print pcre_exec text error was
9169: added
9170:
9171: * src/include/pa_common.h: - method declaration for print pcre_exec
9172: text error was added
9173:
9174: 2008-08-19 misha
9175:
9176: * src/main/execute.C: - bugfix: opcodes must be in separate
9177: namespace while debug execution as well
9178:
9179: * tests/: 015.html, results/015.processed: - test for escaping some
9180: parser chars was added
9181:
9182: 2008-08-18 misha
9183:
9184: * tests/: 190.html, 190.p, results/190.processed: - test for
9185: $caller.self.field + default getter in one class was added
9186:
9187: * tests/: 189.html, results/189.processed: - test for
9188: ^date::create[date object]
9189:
9190: * tests/: 188.html, results/188.processed: - tests for match with
9191: UTF-8 strings
9192:
9193: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
9194: ^string.match[]
9195:
9196: * ChangeLog: - parser 3.3.0 beta13
9197:
9198: 2008-08-15 misha
9199:
1.116 moko 9200: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
9201: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
9202: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
9203: dftables.c: - old PCRE files removed
1.95 moko 9204:
9205: * src/lib/pcre/config.h: - configuration for PCRE library
9206:
9207: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
9208: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
9209:
9210: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
9211: library and set flag UTF8 if $request:charset is UTF-8
9212:
9213: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
9214: include/pa_config_fixed.h: - moved to new PCRE library
9215:
9216: * src/: main/main.vcproj, types/types.vcproj,
9217: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
9218: win32\pcre instead of parser3\src\lib\pcre
9219:
9220: * src/: include/pa_opcode.h, include/pa_operation.h,
9221: main/compile.C, main/compile.y, main/compile_tools.C,
9222: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
9223: opcodes were moved to separate namespace
9224:
9225: 2008-08-14 misha
9226:
9227: * src/types/pa_vstateless_class.C: - newline at the end missed
9228:
9229: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
9230: tainting
9231:
9232: 2008-08-11 misha
9233:
9234: * tests/: 187.html, 187.p, results/187.processed: - tests for
9235: $caller.self, $caller.self.field and $caller.self.field[value]
9236: were added
9237:
9238: * src/types/pa_vmethod_frame.h: - still need to check 'self'
9239: runtime as well (for $caller.self)
9240:
9241: 2008-07-25 misha
9242:
9243: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
9244: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
9245: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
9246: tests with international characters
9247:
9248: 2008-07-23 misha
9249:
9250: * src/main/pa_http.C: - escape $cookies as %uXXXX while
9251: file::load[...;http://
9252:
9253: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
9254: now everywhere in separate namespace
9255:
9256: * src/types/pa_vmethod_frame.h: - looking for caller before looking
9257: for vars
9258:
9259: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
9260: can be escaped by '^'
9261:
9262: 2008-07-22 misha
9263:
9264: * src/classes/string.C, tests/186.html: - names changes:
9265: escape=>js-escape, unescape=>js-unescape
9266:
9267: 2008-07-21 misha
9268:
9269: * tests/results/186.processed: - test for string escape/unescape
9270:
9271: * tests/186.html: - test for string escape/unescape
9272:
9273: * src/classes/string.C: - string has escape and unescape methods
9274: now
9275:
9276: * src/: include/pa_string.h, main/pa_string.C: - escape method was
9277: added
9278:
9279: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
9280: method-layers added (with different params)
9281:
9282: 2008-07-18 misha
9283:
9284: * tests/results/185.processed: - test for ^str.pos[substr](offset)
9285: was added
9286:
9287: * tests/185.html: - test for ^str.pos[sub](offset) added
9288:
9289: * src/classes/string.C, src/classes/void.C, operators.txt: -
9290: ^string.pos[substr](offset) -- 2nd param accepted now
9291:
9292: * src/main/pa_string.C: - .pos works fine with offset for utf-8
9293: strings
9294:
9295: 2008-07-17 misha
9296:
9297: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
9298: helper length added for mid for small optimisation
9299:
9300: 2008-07-16 misha
9301:
9302: * tests/: 185.html, results/185.processed: - tests for
9303: length/left/right/mid/pos with utf-8 strings
9304:
9305: * src/classes/string.C: - left/right/mid/length/pos works fine for
9306: utf-8 strings
9307:
9308: * src/main/untaint.C: - comments removed
9309:
9310: * src/: include/pa_string.h, main/pa_string.C,
9311: include/pa_charset.h, main/pa_charset.C: - methods for working
9312: with pos/mid for strings in utf-8 were added
9313:
9314: 2008-07-15 misha
9315:
9316: * tests/: 184.html, results/184.processed: - test for case body as
9317: expression: $var(^switch(1){^case(1)(true)..})
9318:
9319: * src/classes/op.C: - case body can be expression now:
9320: $var(^switch(1){^case(1)(true)..})
9321:
9322: * tests/: results/183.processed, 183.html: - added test for testing
9323: new cookie encoding (%uXXXX)
9324:
9325: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
9326: decoding for backward compatibility they decoded from %XX in
9327: request:charset too
9328:
9329: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
9330: - cookie class now decode cookies before first access after last
9331: request:charset changing (as form class).
9332:
9333: * src/main/pa_charset.C: - added method escape for escaping cookies
9334: as %uXXXX - before transcode calculate required space for dest
9335: string. it reduce mem usage for transcode
9336:
9337: * src/include/pa_charset.h: - added method escape for escaping
9338: cookies as %uXXXX
9339:
9340: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
9341: was added. will used for escaping cookies as %uXXXX
9342:
9343: * src/include/pa_common.h: - escape method has new option for skip
9344: converting '+' to a space char
9345:
9346: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
9347: transcode - escape method has new option for skip converting '+'
9348: to a space char
9349:
9350: 2008-07-08 misha
9351:
9352: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
9353: (no UE if more then 1 case matches anylonger) - optimization:
9354: doing searching.as_string() || searching.as_double() only once
9355:
9356: 2008-07-04 misha
9357:
9358: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
9359: now ^date::create[date object] works
9360:
9361: * src/classes/string.C: - left and right added as aliases for start
9362: and end in ^string.trim[]
9363:
9364: 2008-07-03 misha
9365:
9366: * src/classes/file.C: - allow $.limit for file::sql as well
9367:
9368: * src/classes/file.C: - allow $.offset option for file::sql - force
9369: send limit=1 to query for use sql specifics authomatically
9370:
9371: * src/classes/: hash.C, string.C, table.C: - don't throw exception
9372: if $.limit value if empty. autoconvert it as everywere
9373:
9374: 2008-07-02 misha
9375:
9376: * configure.in: - time to change version number to 3.3.0 %-)
9377:
9378: * src/include/pa_version.h: - time to change version number to
9379: 3.3.0 %-)
9380:
9381: 2008-06-26 misha
9382:
9383: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
9384: $.limit(0) fixes
9385:
9386: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
9387: - $.limit(0) fixes
9388:
9389: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
9390: new API)
9391:
9392: * src/: include/pa_sql_driver_manager.h,
9393: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
9394: classes/op.C: - document_root added
9395:
9396: * src/main/compile.tab.C: - error message was changed
9397:
9398: 2008-06-25 misha
9399:
9400: * src/main/compile.y: - error message was changed
9401:
9402: 2008-06-24 misha
9403:
9404: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
9405:
9406: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
9407: tests for @OPTIONS\nappend
9408:
9409: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
9410:
9411: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
9412:
9413: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
9414:
9415: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
9416: compile.y
9417:
9418: 2008-06-17 misha
9419:
9420: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
9421: compilation: ^if(default){true. it's incorrect. must be
9422: exception}
9423:
9424: 2008-06-16 misha
9425:
9426: * tests/: 181.ent, 181.html, results/181.processed: - test for
9427: checking external reference loading with 'http://localhost'
9428: prefix while creating xdoc
9429:
9430: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
9431: ^math:long2ip[] and ^math:ip2long[]
9432:
9433: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
9434: added which use scalar stateless class method when user object
9435: used in scalar context - use get_scalar_value when user object
9436: requested in scalar context
9437:
9438: * src/main/pa_common.C: - size must be int but not size_t or we
9439: can't compare with 0 sprintf result
9440:
9441: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9442: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
9443: with internal switch between local/global vars
9444:
9445: * src/types/pa_vclass.C: - register scalar if method @GET[] was
9446: specified
9447:
9448: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
9449: pa_vstateless_object.h: - stateless class and object now has
9450: private scalar field and getter/setter for working with it
9451:
9452: * src/classes/math.C: - methods math:long2ip & math:ip2long were
9453: moved to inet static class
9454:
9455: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
9456: class added (^inet:aton[IP], ^inet:ntoa(number))
9457:
9458: * tests/: 180.html, results/180.processed: - tests for
9459: ^math:long2ip(long) and ^math:ip2long[IP]
9460:
9461: * src/classes/math.C: - ^math:ip2long[IP] added
9462:
9463: 2008-06-11 misha
9464:
9465: * src/main/pa_xml_io.C: - use file_read_text again because of we
9466: need cut BOM code and remove DOS newline chars. but don't
9467: transcode it anyway.
9468:
9469: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
9470: main/pa_http.C: - option for disable transcoding while file_read
9471: and file_read_text added
9472:
9473: 2008-06-10 misha
9474:
9475: * tests/: 179.html, 179.p, results/179.processed: - test for many
9476: classes in 1 file
9477:
9478: * src/main/: compile.C, compile_tools.h: - compile return list of
9479: classes now.
9480:
9481: * src/main/: compile.y, compile.tab.C: - compile return list of
9482: classes now. internals.
9483:
9484: * src/main/pa_request.C: - compile return list of classes now. try
9485: call @conf and @auto for each returned class
9486:
9487: * src/include/pa_request.h: - compile return list of classes now
9488:
9489: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
9490: return list of classes when compile buf)
9491:
9492: 2008-06-07 misha
9493:
9494: * src/main/pa_request.C: - constructing VRequest object with 3rd
9495: param -- form
9496:
9497: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
9498: 3rd param: form. needed for get post_charset
9499:
9500: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
9501: added
9502:
9503: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
9504: types/pa_vform.C, types/pa_vform.h: - some polish
9505:
9506: 2008-06-06 misha
9507:
9508: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
9509: charset and decode chars from it but not from response:charset
9510:
9511: * src/main/pa_http.C: - detect_charset moved out of here
9512:
9513: * src/: include/pa_common.h, main/pa_common.C: - more helpers
9514: methods moved here - unescape_chars accepn one charset now
9515:
9516: * src/main/pa_http.C: - new constants used - don't allow
9517: $.content-type in ^file::load[;http://;$.method[POST]] - add
9518: charset info while ^file::load[;http://;$.method[POST]] - option
9519: $.omit-post-charset(true) added to ^file::load[;http://] for
9520: disabling charset during post
9521:
9522: * src/types/pa_vform.C: - new constants used
9523:
9524: * src/include/pa_common.h: - some constants were added
9525:
9526: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
9527: instead of StrEqNc
9528:
9529: * src/main/pa_common.C: - new method for caseless search
9530: c-substring in c-string - use isxdigit instead of is_hex_digit
9531:
9532: * src/include/pa_common.h: - new method for caseless search
9533: c-substring in c-string
9534:
9535: 2008-06-05 misha
9536:
9537: * tests/results/178.processed: - test for testing default getter
9538:
9539: * tests/178.html: - test for testing default getter
9540:
9541: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
9542: for test for testing default getter
9543:
9544: * src/main/execute.C: - default getter soul
9545:
9546: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
9547: requested objects' field not found
9548:
9549: * src/types/pa_vclass.C: - register default getter if defined - get
9550: default getter if requested field not found
9551:
9552: * src/types/pa_vstateless_object.h: - method get_default_getter was
9553: added
9554:
9555: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9556: pointer to default getter and methods for get/set it were added
9557:
9558: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
9559: auto_name field (for default getter)
9560:
9561: 2008-06-04 misha
9562:
9563: * src/main/pa_xml_io.C: - load external xml in binary mode (no
9564: transcoding, no cutting BOM code, no fixing line breaks) and get
9565: it to libxml "as is"
9566:
9567: 2008-06-03 misha
9568:
9569: * src/main/pa_common.C: - use store_Char instead of
9570: transcodeCharFromUTF8
9571:
9572: * src/: include/pa_charset.h, main/pa_charset.C: - method
9573: store_Char added, transcodeCharFromUTF8 -- removed
9574:
9575: 2008-06-02 misha
9576:
9577: * tests/: results/177.processed, 177.html: - test for checking
9578: .[acm]date after local ^file::load[] was added
9579:
9580: * tests/: results/176.processed, 176.html: - test for checking
9581: @OPTION\locals + @method[vars][locals] added
9582:
9583: * tests/results/auto.p: - CLASS_PATH specified for checking use
9584:
9585: 2008-05-30 misha
9586:
9587: * src/main/: compile.y, compile.tab.C: - changes in compiler:
9588: @OPTION\nlocals + @method[vars][;locals;] were added
9589:
9590: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
9591: moved to separate method op_code - switch from VMethodFrame to
9592: VMethodFrameGlobal + VMethodFrameLocal
9593:
9594: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
9595: was moved to separate method op_code
9596:
9597: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
9598: VMethodFrame now
9599:
9600: * src/types/pa_vstateless_class.h: - stateless class have bool flag
9601: all_vars_local as well
9602:
9603: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
9604: pa_vmethod_frame_local.h, Makefile.am: - who children for
9605: VMethodFrame were added: one (global) works as VMethodFrame
9606: before and second (local) write all vars in self vars scope
9607:
9608: * src/types/pa_method.h: - method has bool flag all_vars_local now
9609:
9610: 2008-05-29 misha
9611:
9612: * tests/: 129.html, results/129.processed: - more tests for
9613: ^table.hash[]
9614:
9615: * src/classes/hash.C: - ^hash::sql has a new option:
9616: $.type[hash|string|table] as ^table.hash[] one.
9617:
9618: * src/classes/op.C: - ^try has 3rd param now: finally code which
9619: executed anyway after try or catch section
9620:
9621: 2008-05-27 misha
9622:
9623: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
9624: must not fail if $.distinct(1) wasn't specified
9625:
9626: 2008-05-26 misha
9627:
9628: * src/classes/op.C: - allow ^throw[my type]
9629:
9630: 2008-05-22 misha
9631:
9632: * configure.in, configure: - version number updated to 3.2.4b
9633:
9634: * src/classes/: op.C, string.C: - trim format string before
9635: eval/format
9636:
9637: * tests/: results/175.processed, 175.html: - more tests for
9638: different format strings in .format[]
9639:
9640: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
9641: as well (not only %XX)
9642:
9643: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
9644: charset specified - checks for format before print number
9645: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
9646: (instead of tabs) removed
9647:
9648: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
9649: charset specified
9650:
9651: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
9652: char in requested charset from utf code was added
9653:
9654: 2008-05-19 misha
9655:
9656: * tests/: 174.html, results/174.processed: - test for
9657: ^hashfile.cleanup[] added
9658:
9659: * src/classes/hashfile.C: - optimization: don't create any key or
9660: value variable if it's name weren't specified
9661: (^hf.foreach[;v]{...})
9662:
9663: 2008-05-16 misha
9664:
9665: * src/classes/hash.C: - optimization: don't create any key variable
9666: if variable name wasn't specified (^h.foreach[;v]{...})
9667:
9668: 2008-05-15 misha
9669:
9670: * src/classes/op.C: - small changes
9671:
9672: * src/classes/hashfile.C: - code reformating (as hash.foreach)
9673:
9674: * src/classes/hash.C: - calculate var_context once before foreach
9675:
9676: 2008-05-14 misha
9677:
9678: * src/classes/hashfile.C: - incorrect vars context calculation for
9679: ^hashfile.foreach[;]{} fixed
9680:
9681: * src/classes/: hash.C, table.C: - little optimisation
9682:
9683: * src/classes/file.C: - bugfix: double absolute path while loading
9684: file
9685:
9686: * tests/: 174.html, results/174.processed: - tests for hashfile
9687: were added
9688:
9689: * buildall-with-xml: - moving to libxslt 1.1.24
9690:
9691: 2008-04-30 misha
9692:
9693: * src/classes/file.C: - stat file while loading (local only) so
9694: .adate, .mdate and .cdate available without additional ::stat
9695:
9696: 2008-04-28 misha
9697:
9698: * src/classes/file.C: - $.name and $.content-type available for
9699: stated file
9700:
9701: 2008-04-14 misha
9702:
9703: * src/targets/cgi/parser3.C: - new year in copyright %-)
9704:
9705: * src/include/pa_version.h: - new version number in head
9706:
9707: 2008-04-10 misha
9708:
9709: * tests/: 080.html, results/080.processed: - cut '0' from
9710: exponential part because of on diff OS it differ (20 or 020 for
9711: ex)
9712:
9713: * tests/: 119.html, results/119.processed: - check for encoding
9714: while creating xdoc
9715:
9716: 2008-04-09 misha
9717:
9718: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
9719:
9720: * src/main/pa_common.C: - comment added
9721:
9722: * src/classes/date.C: - little refactoring
9723:
9724: 2008-04-07 misha
9725:
9726: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
9727: style of ^table.save[]: prepare one big string and sabe it at
9728: once. it's safe on freebsd 4.x but use much more memory.
9729:
9730: * buildall-with-xml, buildall-without-xml: - option
9731: --disable-stringstream added (under comment. use it on freebsd
9732: 4.x)
9733:
9734: 2008-02-22 misha
9735:
9736: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
9737: specified together in file::load[;http] - get back transcoding
9738: $.body[] in file::load[;http]
9739:
9740: 2008-02-21 misha
9741:
9742: * src/classes/date.C: - ^date.gmt-string[] was added
9743:
9744: * src/types/pa_value.C: - method for output date in RFC 822 format
9745: moved to pa_common.h
9746:
9747: * src/include/pa_common.h: - method for output date in RFC 822
9748: format moved here from pa_value.C
9749:
9750: * src/types/pa_vmail.C: - fixed core in sending mail with
9751: attachment in simple mode ($.file[file here]) introduced in 3.2.2
9752:
9753: 2008-02-20 misha
9754:
9755: * src/main/pa_http.C: - transcode $.headers before escaping into
9756: specified charset while ^file::load[...;http://...] (L_URI
9757: instead of L_HTTP_HEADER) - $.cookies param available in
9758: ^file::load[;http://...] now (but we don't parse set-cookies from
9759: response yet) (cookies not transcoded as common $cookies)
9760:
9761: 2008-02-19 misha
9762:
9763: * src/main/pa_request.C: - rollback: we mustn't force taint
9764: $response:field values because in this case
9765: $response:locateion[http://...] don't works.
9766:
9767: 2008-02-15 misha
9768:
9769: * src/classes/op.C: - little refactoring
9770:
9771: * src/main/pa_http.C: - taint names of $.headers for load[;http
9772:
9773: * src/main/pa_request.C: - force taint values of $response:field
9774:
9775: 2008-02-14 misha
9776:
9777: * src/main/pa_request.C: - $response:field transcoded to
9778: $response:charset before escaping now
9779:
9780: * src/main/pa_http.C: - some outdated comments removed
9781:
9782: * src/classes/date.C: - lastdat -> last-day
9783:
9784: * src/classes/date.C: - ^date:lastday(year;month) and
9785: ^date.lastday[] were added - little code refactoring - comments
9786: changes
9787:
9788: * tests/: 159.html, results/159.processed: - test for number of
9789: days in February
9790:
9791: * src/types/pa_value.C: - fixes in code formatting
9792:
9793: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
9794: and comments
9795:
9796: 2008-02-13 misha
9797:
9798: * src/main/pa_common.C: - bugfix for february at leap year
9799:
9800: 2008-01-28 misha
9801:
9802: * tests/: 160.html, results/160.processed: - more test for cache
9803: added
9804:
9805: * src/classes/op.C: - bugfix: cache body executed twice if contains
9806: unhandled exception
9807:
9808: 2008-01-25 misha
9809:
9810: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
9811: bug when hashfile became inavailable after memory:compact)
9812:
9813: * src/lib/sdbm/apr_strings.C: - +arp_malloc
9814:
9815: 2008-01-22 misha
9816:
9817: * src/classes/table.C: - little refactiring and exception texts
9818: changes in method ^table.hash[]
9819:
9820: * src/types/pa_vcookie.C: - link to cookie specification changed
9821:
9822: 2008-01-21 misha
9823:
9824: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
9825: file::exec/cgi
9826:
9827: * src/classes/file.C: - bugfix: core while processing headers if
9828: executed cgi script don't return content
9829:
9830: 2008-01-18 misha
9831:
9832: * buildall-with-xml: - move to libxml2 version 2.6.31
9833:
9834: * src/include/pa_version.h, configure.in: - version number updated
9835: to '3.2.3b'
9836:
9837: 2007-12-28 misha
9838:
9839: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
9840: hash.contains
9841:
9842: 2007-12-27 misha
9843:
9844: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9845: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
9846: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
9847: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
9848: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9849: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
9850: src/targets/cgi/parser3.vcproj,
9851: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
9852: back to VS2003 because of Apache 1.3 module can't work if it was
9853: built in VS 2005. with cgi all file so VS2003 project files can
9854: be easy converted to the new format.
9855:
9856: 2007-12-04 misha
9857:
9858: * src/types/pa_vcode_frame.h: - changes in comment
9859:
9860: 2007-11-29 misha
9861:
9862: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
9863: intercept strings any longer
9864:
9865: * tests/: 173.html, results/173.processed: - tests for
9866: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
9867: but not in main code frame
9868:
9869: * tests/: 172.html, results/172.processed: - more tests for pass
9870: objects from code frames
9871:
9872: 2007-11-27 misha
9873:
9874: * tests/: 152.html, results/152.processed: - tests for converting
9875: strings 'true'/'false' to bool were added
9876:
9877: * tests/152.html: - added checks for converting strings
9878: 'true'/'false' to bool
9879:
9880: * src/classes/string.C: - ^srting.bool[] now can convert to bool
9881: not only strings with numbers but with values 'true'/'false' as
9882: well
9883:
9884: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
9885: for parser3.log increased
9886:
9887: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
9888:
9889: * src/include/pa_common.h: - remove_crlf return cstring size now
9890:
9891: * src/include/pa_types.h: - constant with buffer size for
9892: parser3.log added
9893:
9894: 2007-11-16 misha
9895:
9896: * tests/cat.sh: - script for tests for file::exec/cgi
9897:
9898: * tests/171.html: - tests for file::exec/cgi
9899:
9900: * tests/results/171.processed: - tests results for file::exec/cgi
9901:
9902: 2007-11-15 misha
9903:
9904: * src/main/pa_exec.C: - fixed incorrect exec code for unix
9905:
9906: * src/classes/file.C: - .body must be set before analyzing cgi
9907: headers
9908:
9909: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
9910: only if exec/cgi return anything.
9911:
9912: 2007-11-14 misha
9913:
9914: * operators.txt: - info about new text|binary option for
9915: file::exec/cgi was added
9916:
9917: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
9918: ^file:exec[[text|binary];script;...]
9919:
9920: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
9921: classes/string.C, classes/table.C: - more text strings moved to
9922: the one place
9923:
9924: 2007-11-09 misha
9925:
9926: * src/types/pa_vrequest.C: - $request:argv must be taint
9927:
9928: * ChangeLog: - $request:argv [patch from Sumo]
9929:
9930: * operators.txt: - $request:argv
9931:
9932: * src/: include/pa_request_info.h, types/pa_vrequest.C,
9933: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
9934:
9935: 2007-10-25 misha
9936:
9937: * buildall-with-xml, buildall-without-xml: - options preparations
9938: for ./configure rewrited
9939:
9940: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
9941: error occure in unhandled_exception finally fixed
9942:
9943: 2007-10-23 misha
9944:
9945: * tests/: 170.html, results/170.processed: - test for
9946: @method[][result]
9947:
9948: * operators.txt: - added info about node.prefix and
9949: node.namespaceURI
9950:
9951: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
9952:
9953: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
9954: added for node and attribute
9955:
9956: 2007-10-22 misha
9957:
9958: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
9959:
9960: * src/main/pa_request.C: - added const content-transfer-encoding
9961:
9962: * src/include/pa_request.h: - added const content-transfer-encoding
9963: - ups. constants must be in lowercase (for search)
9964:
9965: * src/types/pa_vmail.C: - more constants used -
9966: content-transfer-encoding: 8bit added
9967:
9968: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
9969:
9970: * src/include/pa_request.h: - more constants
9971:
9972: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
9973: ommit anymore if $.content-disposition was specified - little
9974: refactoring
9975:
9976: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
9977:
9978: 2007-10-17 misha
9979:
9980: * operators.txt: - info about
9981: table::create[nameless]{data}[>options<] was added
9982:
9983: * src/main/: compile.tab.C, compile.y: - if error occure while
9984: compile method don't put this method in methods table anymore.
9985: in other case the parser coredumped if @unhandled_exception
9986: method can't be compiled because of parser.compile error.
9987:
9988: * src/main/execute.C: - little code reformating
9989:
9990: * src/main/pa_request.C: - little code reformating - comment
9991: changed
9992:
9993: 2007-10-16 misha
9994:
9995: * tests/: 035.html, results/035.processed: - tests
9996: table::create[]{}[options] added
9997:
9998: * src/classes/table.C: - table::create[]{} now accept 3rd param:
9999: options (only $.seperator[] yet)
10000:
10001: 2007-10-10 misha
10002:
10003: * src/classes/table.C: - some contstants moved to pa_common.h -
10004: some code changes
10005:
10006: 2007-10-02 misha
10007:
10008: * src/main/pa_uue.C: - memory usage during uuencode reduced more
10009: then three time as much. but base64 encoding method still use
10010: less memory anyway.
10011:
10012: 2007-09-17 misha
10013:
10014: * operators.txt: - added info about $cookie:fields
10015:
10016: * src/types/pa_vcookie.C: - $cookie:fields available now
10017:
10018: * src/classes/hash.C: - some stuff for use with .for_each moved to
10019: common
10020:
10021: * src/include/pa_common.h: - some stuff for use with .for_each
10022: moved here
10023:
10024: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
10025:
10026: 2007-09-14 misha
10027:
10028: * buildall-with-xml: - new xml libs again =)
10029:
10030: 2007-08-28 misha
10031:
10032: * operators.txt: - texts about ^table.columns[[column name]] and
10033: ^string.split[...][v][column name] were added
10034:
10035: * tests/: 168.html, 169.html, results/168.processed,
10036: results/169.processed: - tests for ^table.columns[[column name]]
10037: and ^string.split[...][v][column name] were added
10038:
10039: * src/classes/table.C: - new option ^table.columns[[column name]]
10040: was added
10041:
10042: * src/classes/string.C: - new option ^string.split[...;v;[column
10043: name]]
10044:
10045: * src/include/pa_exception.h: - error text message for
10046: ^hash._keys[], ^table.columns[] and ^string.split[]
10047:
10048: 2007-08-27 misha
10049:
10050: * src/main/untaint.C: - try to fix coredump on unix if print to
10051: body ^taint[sql][something] outside of connect
10052:
10053: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
10054: outside of connect
10055:
10056: * buildall-with-xml, buildall-without-xml: - strip parser3 was
10057: added (commented by default)
10058:
10059: 2007-08-20 misha
10060:
10061: * operators.txt: - comment about new method ^node.hasAttributes[]
10062: was added
10063:
10064: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
10065: duplicated exception text strings were removed
10066:
10067: * src/include/pa_exception.h: - more exception text strings moved
10068: here
10069:
10070: * src/classes/table.C: - some duplicate exceptions' text strings
10071: removed
10072:
10073: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
10074: xdoc.C, xnode.C: - some duplicate exceptions' text strings
10075: removed
10076:
10077: * src/include/pa_exception.h: - some exception text strings movet
10078: to pa_exception
10079:
10080: * tests/: 149.html, results/149.processed: - test for
10081: ^xnode.hasAttributes[] was added - some code changes
10082:
10083: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
10084: added
10085:
10086: 2007-08-17 misha
10087:
10088: * tests/: results/006.processed, results/059.processed, 006.html,
10089: 059.html: - more tests for match
10090:
10091: * tests/: 129.html, results/129.processed: - tests for
10092: ^table.hash[...][$.type[string|hash|table]] added
10093:
10094: * src/targets/cgi/parser3.C: - little syntax changes
10095:
10096: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
10097: syntax changes
10098:
10099: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
10100: messages in parser3.log switched off by default. If someone
10101: really still need it: use $SIGPIPE(1)
10102:
10103: 2007-08-08 misha
10104:
10105: * buildall-with-xml, buildall-without-xml: - remove libs source
10106: files by default since now
10107:
10108: 2007-08-07 misha
10109:
10110: * buildall-without-xml: - some option syntax changes
10111:
10112: * buildall-with-xml: - compile libxml2 without http support - some
10113: option syntax changes
10114:
10115: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
10116:
10117: 2007-08-06 misha
10118:
10119: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
10120:
10121: * tests/: 160.html, results/160.processed: - cache test was
10122: rewrited
10123:
10124: 2007-07-06 misha
10125:
10126: * tests/: 153.html, results/153.processed: - added test for
10127: ^math:sha1[string]
10128:
10129: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
10130: transcoded
10131:
10132: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
10133: were added
10134:
10135: 2007-06-28 misha
10136:
10137: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
10138: some incorrect chars
10139:
10140: 2007-06-19 misha
10141:
10142: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
10143: were moved on top because of gcc 4 had a problems during
10144: building.
10145:
10146: 2007-06-18 misha
10147:
10148: * tests/results/019.processed: - new image commited
10149:
10150: 2007-06-09 misha
10151:
10152: * src/classes/: op.C, table.C: - in while and table.select method
10153: as_expression used now
10154:
10155: * src/types/pa_vmethod_frame.h: - method as_expression was added
10156:
10157: 2007-06-08 misha
10158:
10159: * tests/: 166.html, results/166.processed: - test for
10160: ^match[...][n]
10161:
10162: * tests/: 165.html, results/165.processed: - tests for loops
10163:
10164: * src/lib/cord/include/private/cord_pos.h: - back to origin value
10165: because of no speed/memory optimisation but some proglems with
10166: long cycles occure
10167:
10168: 2007-06-06 misha
10169:
10170: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
10171: ^table.select(true) and ^table.select(1) didn't works because of
10172: awaiting junction-param only. fixed.
10173:
10174: 2007-05-24 misha
10175:
10176: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
10177: with 0.5 secs interval
10178:
10179: * src/classes/op.C: - cache was rewrited. I hope it works with
10180: locking system now on unix
10181:
10182: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
10183: system locks which wait till other threads release it but try get
10184: lock, if fail wait 1 sec and make 10 attempts.
10185:
10186: * src/include/pa_os.h: - consts for blocking locks + some comments
10187: were added
10188:
10189: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
10190: opening files
10191:
10192: * src/classes/table.C: - changes in includes. if unclude <sstream>
10193: after our classes on unix it can't be build
10194:
10195: * src/types/pa_vhashfile.C: - not needed code removed
10196:
10197: 2007-05-23 misha
10198:
10199: * src/: classes/file.C, classes/op.C, main/pa_common.C,
10200: include/pa_common.h: - cosmetic changes
10201:
10202: 2007-05-18 misha
10203:
10204: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
10205: often. it's give some speed increasing
10206:
10207: * tests/results/160.processed: - returned time corrected
10208:
10209: * tests/160.html: - time increased because on unix 1 mean nothing
10210: :(
10211:
10212: * operators.txt: - added info about ^hash.contain[key]
10213:
10214: * src/classes/hash.C: - added ^hash.contain[key]
10215:
10216: * src/include/pa_hash.h: - added method for checking key exists in
10217: hash
10218:
10219: 2007-05-07 misha
10220:
10221: * src/include/pa_string.h: - was compilation error during build on
10222: freebsd4
10223:
10224: 2007-05-03 misha
10225:
10226: * src/classes/table.C: - option $.type[hash|string|table] was added
10227: for ^table.hash[]
10228:
10229: * src/classes/file.C: - comment removed
10230:
10231: 2007-04-26 misha
10232:
10233: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
10234: real files doesn't opened in place anymore
10235:
10236: 2007-04-24 misha
10237:
10238: * src/classes/math.C: - I thought one more time and remove lg(N) :)
10239:
10240: * src/include/pa_exception.h: "static" removed
10241:
10242: 2007-04-23 misha
10243:
10244: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
10245:
10246: * src/classes/math.C: added: - ^math:ln(N) (the same as
10247: ^math:log(N)) - ^math:lg(N)
10248:
10249: * tests/: 097.html, results/097.processed: - charsets converstion
10250: during ^file::load[text;http://...] added
10251:
10252: * tests/: 164.html, results/164.processed: - check for set expires
10253: as a date
10254:
10255: * tests/: 164.html, results/164.processed: - test for hashfile
10256:
10257: * src/classes/hashfile.C: - little comment changes
10258:
10259: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
10260: access
10261:
10262: * src/: classes/date.C, classes/double.C, classes/file.C,
10263: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
10264: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
10265: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
10266: classes/xnode.h, include/pa_request.h, main/execute.C,
10267: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10268: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
10269: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
10270: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
10271: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
10272: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
10273: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10274: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
10275: "parser.runtime" strings were removed
10276:
10277: * src/classes/hashfile.C: - with .clear[] called files_delete()
10278: now.
10279:
10280: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
10281:
10282: * src/include/pa_exception.h: - string constant with
10283: "parser.runtime" text was added
10284:
10285: 2007-04-20 misha
10286:
10287: * operators.txt: - some comments changing
10288:
10289: * operators.txt: - added info about .^hashfile.release[],
10290: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
10291:
10292: * configure: =cheching for unsetenv
10293:
10294: * src/classes/hashfile.C: - ^hashfile.cleanup[],
10295: ^hashfile.release[] were added
10296:
10297: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
10298: ^string.match[][] understand new option now: return number of
10299: matches but not table wit results
10300:
10301: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
10302: reopen now
10303:
10304: * src/classes/op.C: - bug. must be false
10305:
10306: * configure.in: - checking for unsetenv was added
10307:
10308: * src/types/pa_vform.C: - some comments
10309:
10310: 2007-04-18 misha
10311:
10312: * buildall-with-xml: moving to libxml2-2.6.28
10313:
10314: * buildall-with-xml, buildall-without-xml: added commented lines
10315: with --disable-safe-mode option
10316:
10317: * operators.txt: - info about $form:files
10318:
10319: 2007-04-17 misha
10320:
10321: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
10322: $form:files was added
10323:
10324: * tests/: 163.html, results/163.processed: removing auto format
10325:
10326: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
10327:
10328: 2007-04-16 misha
10329:
10330: * tests/: 163.html, results/163.processed: - test for .int[],
10331: floor, round, ceiling and .format[]
10332:
10333: * src/classes/file.C: - little optimization for getting args in
10334: exec/cgi
10335:
10336: 2007-04-13 misha
10337:
10338: * src/classes/file.C: - arguments for file::exec/cgi can be
10339: specified now as s table with one column
10340:
10341: 2007-03-27 misha
10342:
10343: * tests/: 162.html, results/162.processed: - test for
10344: ^table.select(^condition[$t])
10345:
10346: * tests/results/auto.p: - load windows-1251 charset for some tests
10347:
10348: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
10349:
10350: * tests/: results/161.processed, 161.html, 161_utf8.txt,
10351: 161_windows1251.txt: - added test for
10352: ^file::load[text;/local/file.txt;$.charset[...]]
10353:
10354: * tests/: results/013.processed, 013.html: - added test for
10355: checking $._default value while hash modifications
10356:
10357: * tests/: 160.html, results/160.processed: - add test for
10358: ^cache[key](secs){code}, ^cache[] and ^cache(0)
10359:
10360: 2007-03-22 misha
10361:
10362: * src/include/pa_common.h: - "charset" string defined for
10363: ^file::load[text;/local.txt] and ^table::load[/table.txt]
10364:
10365: * src/main/: pa_common.C, pa_http.C: - $.charset option for
10366: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
10367: added - not needed transcodes were removed from
10368: ^file::load[...;http://...]
10369:
10370: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
10371: added
10372:
10373: * src/classes/date.C: - date.week was fixed
10374:
10375: * operators.txt: - added info about date.weekyear
10376:
10377: * tests/: 159.html, results/159.processed: - tests for date.week
10378: and date.weekyear added
10379:
10380: 2007-03-15 misha
10381:
10382: * src/classes/table.C: - enclose column numbers for nameless tables
10383: as well
10384:
10385: 2007-03-14 misha
10386:
10387: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
10388:
10389: * src/classes/table.C: - table.save optimization: now required much
10390: less memory
10391:
10392: 2007-03-13 misha
10393:
10394: * tests/results/: 158.processed, 158.processes: - tests for
10395: table.save/table.load
10396:
10397: * tests/: 158.html, results/158.processes: - tests for
10398: table.save/table.load
10399:
10400: * buildall-with-xml: libxml2: --without-ftp --without-docbook
10401:
10402: * buildall-with-xml: - pattern needed now for building
10403:
10404: * tests/results/097.processed: - added test results for xdoc::load
10405: & xdoc::load[http://...]
10406:
10407: * tests/097.html: - added test for xdoc::load
10408:
10409: 2007-03-12 misha
10410:
10411: * tests/: 107.html, results/107.processed: - added test for xpath
10412: '//man'
10413:
10414: 2007-03-01 misha
10415:
10416: * tests/: 097.html, results/097.processed: - added test for
10417: creating xdoc from file
10418:
10419: * tests/: results/157.processed, 157.html: - added test for
10420: file:move
10421:
10422: 2007-02-28 misha
10423:
10424: * src/classes/xdoc.C: - another attempt
10425:
10426: * src/classes/xdoc.C: - roll back last changes for a while
10427:
10428: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
10429:
10430: * src/classes/file.C: - under lock we create non-exist dir anyway
10431:
10432: * tests/results/099.processed: - ever send content-disposition to
10433: client with file
10434:
10435: * tests/157.html: + test for file:copy
10436:
10437: 2007-02-26 misha
10438:
10439: * src/classes/file.C: - some similar strings moved to #define
10440: instead of to be copy/pasted many times
10441:
10442: * src/types/pa_vfile.h: - class name string ("file") moved to
10443: #define
10444:
10445: 2007-02-20 misha
10446:
10447: * configure.in: - added some strings for sqlite detection
10448:
10449: 2007-02-19 misha
10450:
10451: * operators.txt: - some comments changes
10452:
10453: * buildall-with-xml, buildall-without-xml: - some modifications
10454:
10455: 2007-02-17 misha
10456:
10457: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
10458:
10459: * src/main/pa_request.C: - damn, i forgot to commit it while I
10460: change console behaviour
10461:
10462: 2007-02-12 misha
10463:
10464: * src/targets/cgi/parser3.C: - don't print headers if
10465: $console:line[data] was used during cgi execution.
10466:
10467: * src/types/pa_vconsole.h: - console class have bool flag now which
10468: marked as 'true' if class was used.
10469:
10470: * tests/: 152.html, results/152.processed: - more types was added
10471: to test 152
10472:
10473: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
10474: adding 'bool' (^if($image){} caused exception)
10475:
10476: 2007-02-09 misha
10477:
10478: * tests/: 152.html, results/152.processed: - test alightly updated
10479:
10480: * tests/: 152.html, results/152.processed: - test rewrited
10481:
10482: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
10483: bugfix. I broke xdoc & xnode in expression
10484:
10485: 2007-02-08 misha
10486:
10487: * tests/: 152.html, results/152.processed: - add test for checking
10488: 'def' for void, string, bool, int & double
10489:
10490: 2007-02-07 misha
10491:
10492: * operators.txt: - ^file:base64[filespec] was added
10493:
10494: * tests/results/153.processed: - result test for
10495: ^file:base64[filespec] was updated
10496:
10497: * tests/153.html: - test for ^file:base64[filespec] was added
10498:
10499: * src/types/pa_vconsole.h: - little optimization
10500:
10501: * src/classes/file.C: - ^file:base64[filespec]
10502:
10503: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
10504:
10505: * src/include/pa_common.h: - declarations for
10506: ^file:base64[filespec]
10507:
10508: * src/types/pa_vcookie.C: - little optimization
10509:
10510: 2007-02-06 misha
10511:
10512: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
10513: were temporary commented
10514:
10515: * src/types/pa_vbool.h: - bugfix
10516:
10517: * tests/156.html: - added test for bool cookie
10518:
10519: * src/types/pa_vcookie.h: - not needed string "cookie" removed
10520:
10521: * tests/: 155.html, results/155.processed: - added test for check
10522: $.encloser[] option for table save/load
10523:
10524: * tests/: 153.html, 154.html, todo.txt: - two more tests added
10525:
10526: 2007-02-05 misha
10527:
10528: * tests/results/152.processed: - newline at the end was missed
10529:
10530: * tests/results/141.processed: - math:md5 must be lowercased
10531:
10532: * src/targets/cgi/parser3.C: - 2007 in help ;)
10533:
10534: 2007-02-03 misha
10535:
10536: * tests/results/: 150.processed, 151.processed, 152.processed: -
10537: test for bool added and some content length fixes
10538:
10539: * tests/152.html: - test for bool added
10540:
10541: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
10542:
10543: * operators.txt: - info bool class was added
10544:
1.116 moko 10545: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 10546: classes/classes.vcproj, classes/double.C, classes/int.C,
10547: classes/string.C, classes/void.C, classes/xnode.C,
10548: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
10549: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
10550: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
10551: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10552: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
10553: types/types.vcproj: - bool class was added
10554:
10555: * src/main/pa_request.C: - fix
10556:
10557: 2007-01-18 misha
10558:
10559: * src/: main/pa_string.C, classes/string.C: - return table during
10560: ^string.match[][] even if no matched found.
10561:
10562: 2006-12-20 misha
10563:
10564: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
10565: http://www.parser.ru/forum/?id=55598 ]
10566:
10567: 2006-12-19 misha
10568:
10569: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
10570: details: http://www.parser.ru/forum/?id=52359
10571:
10572: * src/main/pa_request.C: - always set content-disposition for
10573: $response:body[hash here]. more details:
10574: http://www.parser.ru/forum/?id=52130
10575:
10576: 2006-12-07 misha
10577:
10578: * operators.txt: - added info about bool params in cookie set
10579:
10580: * src/types/pa_vcookie.C: - bool param in cookies available now
10581: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
10582: ]
10583:
10584: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
10585: was added
10586:
10587: 2006-12-02 misha
10588:
10589: * src/classes/file.C: - file_block_read used instead of native read
10590:
10591: * src/main/pa_common.C: - added file_block_read with read error
10592: detection - file_block_read used instead of native read
10593:
10594: * src/include/pa_common.h: - added file_block_read declaration
10595:
10596: 2006-12-01 misha
10597:
10598: * operators.txt: - info about $var.CLASS_NAME was added
10599:
10600: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10601: $var.CLASS_NAME added
10602:
10603: * operators.txt: - added info about ^file:copy[]
10604:
10605: * src/classes/file.C: - ^file:copy[from;fo] was added
10606:
10607: 2006-11-20 misha
10608:
10609: * src/classes/date.C: - bug fix :)
10610:
10611: 2006-11-17 misha
10612:
10613: * src/include/pa_common.h: - array in crc32 calculation was changed
10614: to static
10615:
10616: * src/main/pa_common.C: - little optimization in getMonthDays -
10617: small changes in crc32 calculation
10618:
10619: * src/classes/date.C: - not needed code was removed
10620:
10621: 2006-11-16 misha
10622:
10623: * src/types/pa_vmail.C: - fix missed brakes
10624:
10625: * src/types/pa_vmail.C: - mail:send now set content-type:
10626: multipart/related instead of multipart/mixed if file have
10627: $.content-id[]
10628:
10629: 2006-11-15 misha
10630:
10631: * src/types/pa_vdouble.h: abs -> fabs
10632:
10633: 2006-11-14 misha
10634:
10635: * operators.txt: - added info about ^file.md5[] and
10636: ^file:md5[file-name]
10637:
10638: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
10639: added
10640:
10641: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
10642: FILE_BUFFER_SIZE
10643:
10644: * src/classes/math.C: - hex_string was moved to pa_common.h
10645:
10646: * src/include/pa_common.h: - hex_string was moved from math.C -
10647: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
10648:
10649: * src/types/pa_vdouble.h: - incorrect frac detection with negative
10650: values was fixed
10651:
10652: 2006-11-13 misha
10653:
10654: * operators.txt: - added info about ^math:crc32[string],
10655: ^file:crc32[file-name] & ^file.crc32[]
10656:
10657: * src/classes/math.C: - added ^math:crc32[string]
10658:
10659: * src/classes/file.C: - some comments were changed - added
10660: ^file:crc32[file-name] and ^file.crc32[]
10661:
10662: * src/: include/pa_common.h, main/pa_common.C: - some functions for
10663: crc32 calculation added
10664:
10665: 2006-11-03 misha
10666:
10667: * src/include/pa_array.h: - not needed variable removed
10668:
10669: * tests/: 150.html, 151.html, results/150.processed,
10670: results/151.processed: - 2 tests were added
10671:
10672: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
10673: with $.reverse(1) were fixed
10674:
10675: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
10676: query converted to $.charset during ^file::load[http://...]
10677:
10678: 2006-11-02 misha
10679:
10680: * src/include/pa_table.h: ups. forget '=' char
10681:
10682: * src/include/pa_table.h: - one more fix in
10683: .locate[...][$.reverse(1)]
10684:
10685: 2006-11-01 misha
10686:
10687: * src/classes/math.C: - bug fix, details:
10688: http://www.parser.ru/forum/?id=53360
10689:
10690: * src/include/pa_table.h: - bug fix during ^table.locate( condition
10691: false for all records )[$.reverse(1)]
10692:
10693: * src/main/pa_http.C: - second param for this mid method is length
10694: but not end_index so this method has error and can't detect
10695: charsets in next content-types: Content-type: text/html;
10696: charset="windows-1251" Content-type: text/html;
10697: charset="windows-1251"; Content-type: text/html;
10698: charset=windows-1251;
10699:
10700: only Content-type: text/html; charset=windows-1251 was fine
10701:
10702: 2006-10-31 misha
10703:
10704: * src/classes/file.C: - empty args in file::exec removed now
10705:
10706: 2006-09-03 paf
10707:
10708: * src/classes/file.C: proper tainting of
10709: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
10710:
10711: 2006-06-09 paf
10712:
10713: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
10714:
10715: * src/classes/table.C: formatting
10716:
10717: * src/classes/table.C: incorporated patch from misha: Sent:
10718: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
10719: ignoring string options for ^table.save[]
10720:
10721: * src/classes/hash.C: incorporated patch from misha Sent:
10722: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
10723: $hash._default disappear while
10724:
10725: * operators.txt: ^mail:send[ $.file1[ $.value[file]
10726: $.format[!uue|!base64] << new base64 option. default uue ] ]
10727:
10728: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
10729: PM Subject: patch for base64 in ^mail:send[] %-)
10730:
10731: 2006-04-09 paf
10732:
10733: * src/main/compile.tab.C: ` change compiled
10734:
10735: * gnu.vcproj, operators.txt, parser3.sln,
10736: src/classes/classes.vcproj, src/classes/file.C,
10737: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
10738: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10739: src/classes/xnode.C, src/include/pa_array.h,
10740: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10741: src/include/pa_memory.h, src/include/pa_request.h,
10742: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10743: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10744: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10745: src/lib/pcre/pcre_dftables.vcproj,
10746: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10747: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10748: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10749: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10750: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10751: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10752: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10753: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10754: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10755: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10756: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10757: src/types/pa_value.h, src/types/pa_vcookie.C,
10758: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
10759: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10760: src/types/pa_vstatus.C, src/types/types.vcproj,
10761: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
10762: ^menu, ^hash/hashfile.foreach
10763:
10764: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10765: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
10766: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10767: src/classes/xnode.C, src/include/pa_array.h,
10768: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10769: src/include/pa_memory.h, src/include/pa_request.h,
10770: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10771: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10772: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10773: src/lib/pcre/pcre_dftables.vcproj,
10774: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10775: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10776: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10777: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10778: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10779: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10780: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10781: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10782: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10783: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10784: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10785: src/types/pa_value.h, src/types/pa_vcookie.C,
10786: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10787: src/types/pa_vstatus.C, src/types/types.vcproj,
10788: tests/descript.ion: ! switched to VS2005 (projects and
10789: object<info explicitly typed>.for_each(, info)) +
10790: $response:field[] setting void means removing + grammar $name`
10791: name stops now, for mysql `$field` + started ^break[]
10792: ^continue[], in ^for. TODO: to other iterators (while, menu,
10793: foreach) + all log messages += [uri=, method=, cl=]
10794:
10795: * buildall-with-xml: merged . ftp paths update
10796:
10797: * buildall-with-xml: . ftp paths update
10798:
10799: 2006-03-04 paf
10800:
10801: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
10802: checks++ [thanks to Igor Zinkovsky for detailed report]
10803:
10804: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
10805: Igor Zinkovsky for detailed report]
10806:
10807: 2006-03-01 paf
10808:
10809: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10810: \n to ' ' in
10811:
10812: 2006-02-18 paf
10813:
10814: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10815: \n to ' ' in
10816:
10817: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
10818:
10819: 2006-02-03 paf
10820:
10821: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
10822: base64
10823:
10824: * src/main/pa_common.C: ! bugfix: decoding from base64
10825:
10826: 2006-01-20 paf
10827:
10828: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10829: economy fix
10830:
10831: * src/classes/: table.C: merged from HEAD ! bugfix
10832: ^table.save[$.encloser-s now handled properly
10833:
10834: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
10835: handled properly
10836:
10837: 2006-01-19 paf
10838:
10839: * buildall-with-xml, buildall-without-xml: merged from HEAD !
10840: libgc:USE_MUNMAP activates merging of free memory blocks which
10841: helps a lot in our case: after transform we want
10842: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
10843:
10844: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10845: economy fix
10846:
10847: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
10848: activates merging of free memory blocks which helps a lot in our
10849: case: after transform we want CORD(main.result)->cstr[big
10850: malloc]->transcode[big malloc]
10851:
10852: 2006-01-17 paf
10853:
10854: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
10855: before reading them. got rid of reallocs = became quicker and
10856: less fragmentated
10857:
10858: 2005-12-29 paf
10859:
1.116 moko 10860: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
10861: configure, configure.in, src/include/pa_version.h,
10862: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 10863: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
10864: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
10865: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
10866: src/lib/ltdl/missing: . merged from 3.2.1
10867:
1.116 moko 10868: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
10869: packaged when 'make dist', so do configure companion files in
10870: src/lib/ltdl
10871:
10872: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
10873: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
10874: missing: . now config_auto.h is created with configure [were
10875: constant]
1.95 moko 10876:
10877: * INSTALL: . references to documentation and some clarification
10878:
10879: * buildall-with-xml, buildall-without-xml: . farawell doc
10880: indication
10881:
1.116 moko 10882: * Makefile.am: . dist+=buildall*
1.95 moko 10883:
10884: 2005-12-28 paf
10885:
10886: * configure: . 3.2.1
10887:
10888: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
10889: simplify build process, see INSTALL
10890:
10891: 2005-12-26 paf
10892:
10893: * configure: ver
10894:
10895: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
10896: version
10897:
10898: 2005-12-21 paf
10899:
10900: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
10901: compiled with bison 1.875b, it reports unexpected token names
10902:
10903: 2005-12-19 paf
10904:
10905: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
10906: holds a link to xmlNode to prevent premature gc(xmlNode)
10907:
10908: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
10909: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
10910: src/main/main.vcproj, src/main/pa_globals.C,
10911: src/targets/cgi/parser3.vcproj,
10912: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
10913: configure, configure.in, src/include/pa_version.h: . killing
10914: gdome [what a relief]
10915:
10916: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
10917: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
10918: run_parser.sh, results/001.processed, results/002.processed,
10919: results/003.processed, results/004.processed,
10920: results/005.processed, results/006.processed,
10921: results/008.processed, results/009.processed,
10922: results/010.processed, results/011.processed,
10923: results/012.processed, results/013.processed,
10924: results/014.processed, results/015.processed,
10925: results/016.processed, results/017.processed,
10926: results/018.processed, results/020.processed,
10927: results/021.processed, results/022.processed,
10928: results/023.processed, results/024.processed,
10929: results/025.processed, results/026.processed,
10930: results/027.processed, results/028.processed,
10931: results/029.processed, results/030.processed,
10932: results/031.processed, results/032.processed,
10933: results/033.processed, results/034.processed,
10934: results/035.processed, results/036.processed,
10935: results/037.processed, results/038.processed,
10936: results/039.processed, results/040.processed,
10937: results/041.processed, results/042.processed,
10938: results/043.processed, results/044.processed,
10939: results/045.processed, results/046.processed,
10940: results/047.processed, results/048.processed,
10941: results/049.processed, results/050.processed,
10942: results/051.processed, results/052.processed,
10943: results/053.processed, results/054.processed,
10944: results/055.processed, results/056.processed,
10945: results/057.processed, results/058.processed,
10946: results/059.processed, results/060.processed,
10947: results/061.processed, results/062.processed,
10948: results/063.processed, results/064.processed,
10949: results/065.processed, results/066.processed,
10950: results/067.processed, results/068.processed,
10951: results/069.processed, results/070.processed,
10952: results/071.processed, results/072.processed,
10953: results/073.processed, results/074.processed,
10954: results/075.processed, results/076.processed,
10955: results/077.processed, results/078.processed,
10956: results/079.processed, results/080.processed,
10957: results/081.processed, results/082.processed,
10958: results/083.processed, results/084.processed,
10959: results/085.processed, results/086.processed,
10960: results/087.processed, results/088.processed,
10961: results/089.processed, results/090.processed,
10962: results/091.processed, results/092.processed,
10963: results/093.processed, results/094.processed,
10964: results/095.processed, results/096.processed,
10965: results/097.processed, results/099.processed,
10966: results/100.processed, results/101.processed,
10967: results/102.processed, results/104.processed,
10968: results/105.processed, results/106.processed,
10969: results/107.processed, results/108.processed,
10970: results/109.processed, results/110.processed,
10971: results/111.processed, results/112.processed,
10972: results/113.processed, results/114.processed,
10973: results/115.processed, results/117.processed,
10974: results/119.processed, results/120.processed,
10975: results/121.processed, results/122.processed,
10976: results/123.processed, results/124.processed,
10977: results/125.processed, results/126.processed,
10978: results/127.processed, results/128.processed,
10979: results/129.processed, results/130.processed,
10980: results/131.processed, results/132.processed,
10981: results/133.processed, results/134.processed,
10982: results/135.processed, results/136.processed,
10983: results/138.processed, results/139.processed,
10984: results/140.processed, results/141.processed,
10985: results/142.processed, results/143.processed,
10986: results/144.processed, results/145.processed,
10987: results/146.processed, results/147.processed,
10988: results/148.processed, results/149.processed, results/auto.p: .
10989: now works if we turn off default auto.p
10990:
1.116 moko 10991: * configure: . makes
1.95 moko 10992:
10993: * src/types/pa_vxnode.C: . less warnings
10994:
10995: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
10996: tests/145.html, tests/149.html, tests/descript.ion,
10997: tests/outputs/d.cmd, tests/results/142.processed,
10998: tests/results/143.processed, tests/results/144.processed,
10999: tests/results/145.processed, tests/results/146.processed,
11000: tests/results/147.processed, tests/results/148.processed,
11001: tests/results/149.processed: . removed .nodeValue from all node
11002: types other than 5 (grabbed piece from gdome)
11003:
11004: * tests/: 137.html, results/137.processed: . not handled this case
11005: yet. code does not hang from inserting parent into child,
11006: considering thing minor issue -- nodes are removed from source
11007: anyway, don't know why shold that be an error after all
11008:
11009: * src/targets/cgi/parser3.C: . style
11010:
11011: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
11012: xdoc too [were barking "not element"]
11013:
11014: 2005-12-16 paf
11015:
11016: * tests/: 146.html, 147.html, 148.html: . more tests
11017:
11018: * src/classes/xnode.C: . also bark on possible errors
11019:
11020: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
11021: props
11022:
11023: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
11024: main/compile.y: merged from HEAD ! fixed overoptimized
11025: ^call(false) case. (confused it with ^call[] case)
11026:
11027: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
11028: ^call(false) case. (confused it with ^call[] case)
11029:
11030: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
11031:
11032: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
11033: results/001.processed, results/002.processed,
11034: results/003.processed, results/004.processed,
11035: results/005.processed, results/006.processed,
11036: results/008.processed, results/009.processed,
11037: results/010.processed, results/011.processed,
11038: results/012.processed, results/013.processed,
11039: results/014.processed, results/015.processed,
11040: results/016.processed, results/017.processed,
11041: results/018.processed, results/019.processed,
11042: results/020.processed, results/021.processed,
11043: results/022.processed, results/023.processed,
11044: results/024.processed, results/025.processed,
11045: results/026.processed, results/027.processed,
11046: results/028.processed, results/029.processed,
11047: results/030.processed, results/031.processed,
11048: results/032.processed, results/033.processed,
11049: results/034.processed, results/035.processed,
11050: results/036.processed, results/037.processed,
11051: results/038.processed, results/039.processed,
11052: results/040.processed, results/041.processed,
11053: results/042.processed, results/043.processed,
11054: results/044.processed, results/045.processed,
11055: results/046.processed, results/047.processed,
11056: results/048.processed, results/049.processed,
11057: results/050.processed, results/051.processed,
11058: results/052.processed, results/053.processed,
11059: results/054.processed, results/055.processed,
11060: results/056.processed, results/057.processed,
11061: results/058.processed, results/059.processed,
11062: results/060.processed, results/061.processed,
11063: results/062.processed, results/063.processed,
11064: results/064.processed, results/065.processed,
11065: results/066.processed, results/067.processed,
11066: results/068.processed, results/069.processed,
11067: results/070.processed, results/071.processed,
11068: results/072.processed, results/073.processed,
11069: results/074.processed, results/075.processed,
11070: results/076.processed, results/077.processed,
11071: results/078.processed, results/079.processed,
11072: results/080.processed, results/081.processed,
11073: results/082.processed, results/083.processed,
11074: results/084.processed, results/085.processed,
11075: results/086.processed, results/087.processed,
11076: results/088.processed, results/089.processed,
11077: results/090.processed, results/091.processed,
11078: results/092.processed, results/093.processed,
11079: results/094.processed, results/095.processed,
11080: results/096.processed, results/097.processed,
11081: results/099.processed, results/101.processed,
11082: results/102.processed, results/104.processed,
11083: results/105.processed, results/106.processed,
11084: results/107.processed, results/108.processed,
11085: results/109.processed, results/110.processed,
11086: results/111.processed, results/112.processed,
11087: results/113.processed, results/114.processed,
11088: results/115.processed, results/116.processed,
11089: results/117.processed, results/118.processed,
11090: results/119.processed, results/120.processed,
11091: results/121.processed, results/122.processed,
11092: results/123.processed, results/124.processed,
11093: results/125.processed, results/126.processed,
11094: results/127.processed, results/128.processed,
11095: results/129.processed, results/130.processed,
11096: results/131.processed, results/132.processed,
11097: results/133.processed, results/134.processed,
11098: results/135.processed, results/136.processed,
11099: results/137.processed, results/138.processed,
11100: results/139.processed, results/140.processed,
11101: results/141.processed: . refreshed old tests, made them work
11102: without auto.p (in utf8) . things noted: . gif got encoded
11103: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
11104: some strange year)
11105:
11106: * INSTALL: . revived linux libgc fix
11107:
11108: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
11109: glib/gdome in INSTALL and patches]
11110:
11111: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11112: include/pa_charset.h, include/pa_config_includes.h,
11113: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
11114: include/pa_xml_exception.h, lib/cord/Makefile.am,
11115: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
11116: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
11117: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
11118: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
11119: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
11120: types/pa_vxnode.h: . started killing gdome
11121:
11122: 2005-12-13 paf
11123:
11124: * src/main/: pa_request.C: merged from HEAD ! when code in
11125: @unhandled_exception thrown another exception, print correct
11126: origin (earlier code in catch of exception inside of
11127: @unhandled_exception grabbed parent_frame(original_exception)
11128: origin and printed it, instead of true origin)
11129:
11130: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
11131: another exception, print correct origin (earlier code in catch of
11132: exception inside of @unhandled_exception grabbed
11133: parent_frame(original_exception) origin and printed it, instead
11134: of true origin)
11135:
11136: 2005-12-09 paf
11137:
11138: * INSTALL: . updated INSTALL doc to work around linux stack base
11139: detection problem, due to change in gc6.4 code
11140:
11141: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
11142: ignored in ^string.matched :(
11143:
11144: * src/main/pa_string.C: ! regex tainting were ignored in
11145: ^string.matched :(
11146:
11147: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
11148: src/include/pa_config_fixed.h, src/include/pa_version.h,
11149: src/main/compile.y, src/main/compile_tools.h,
11150: src/main/pa_charset.C, src/main/pa_common.C,
11151: src/main/pa_globals.C, src/main/pa_string.C,
11152: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
11153: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
11154:
11155: 2005-12-08 paf
11156:
11157: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
11158: 500 chars now handled OK [were wrapped on 500th char according to
11159: rfc, but sendmail failed to unwrap it properly]
11160:
11161: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
11162: handled OK [were wrapped on 500th char according to rfc, but
11163: sendmail failed to unwrap it properly]
11164:
11165: * src/targets/isapi/parser3isapi.C: . less warnings
11166:
11167: * src/targets/isapi/parser3isapi.C: . undone some strange change
11168: since 3.1.5
11169:
11170: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
11171: link fixes
11172:
11173: * src/: classes/date.C, include/pa_config_fixed.h,
11174: main/compile.tab.C, main/compile.y, main/compile_tools.h,
11175: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
11176: main/pa_string.C, targets/cgi/getopt.c: . less warnings
11177:
11178: * src/include/pa_config_fixed.h: . removed outdated string origins
11179: [in current storage scheme there's no place for them. someday we
11180: can add third CORD to store origins and special version of parser
11181: which stores origins there [separate binary]]
11182:
11183: 2005-12-07 paf
11184:
11185: * src/targets/isapi/parser3isapi.C: . now links in release mode
11186:
11187: * src/include/pa_version.h: makefiles
11188:
11189: * src/include/pa_version.h: . not beta
11190:
11191: * configure, configure.in, src/include/pa_version.h: not beta
11192:
11193: 2005-12-06 paf
11194:
11195: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
11196: [some details here http://i2/tasks/edit/?id=4869912143891354460]
11197: decided to undo the change ^call[$void] passes void. now it will
11198: pass empty string again.
11199:
11200: * src/main/: compile.tab.C, compile.y: . version readded
11201:
11202: * src/classes/op.C: . in this version there is no ^switch[$nothing]
11203: = ^switch[void] problem
11204:
11205: 2005-12-01 paf
11206:
11207: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
11208: caused ^case[string] to be coerced to double since searching
11209: value were not string (it was vvoid)
11210:
11211: * src/classes/op.C: . bugfix ^switch[$void_value] caused
11212: ^case[string] to be coerced to double since searching value were
11213: not string (it was vvoid)
11214:
11215: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
11216: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
11217:
11218: 2005-11-30 paf
11219:
11220: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
11221: win32 must putenv("TZ="), on unix works only putenv("TZ")
11222:
11223: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
11224: putenv("TZ="), on unix works only putenv("TZ")
11225:
11226: * INSTALL: . xml libs versions updated
11227:
11228: * src/main/pa_globals.C: //20051130 trying to remove this, author
11229: claims that fixed a lot there // 20040920 for now both
11230: workarounds needed. wait for new libxml/xsl versions
11231:
11232: 2005-11-28 paf
11233:
11234: * src/classes/table.C: merged from HEAD: ! nameless table has
11235: columns==0
11236:
11237: * src/classes/table.C: ! nameless table has columns==0
11238:
11239: * src/main/pa_http.C: merged from HEAD: ! status line check made
11240: earlier [was totally wrong]
11241:
11242: * src/main/pa_http.C: ! status line check made earlier [was totally
11243: wrong]
11244:
11245: 2005-11-25 paf
11246:
11247: * src/include/pa_array.h: -this reduces speed(table::load) strange.
11248: undoing for now...
11249:
11250: * src/include/pa_version.h: -this reduces speed(table::load),
11251: strange. undoing
11252:
11253: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
11254:
11255: * src/classes/op.C: + ^while(){}[SEPARATOR]
11256:
11257: * src/include/pa_array.h: + optimistics added: all arrays (table
11258: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
11259: this speeds things up and saves memory a LOT! (not noticed
11260: negative effect on syntetic tests, future will tell...)
11261:
11262: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
11263: changed gc_malloc implementation, which obscured profiling
11264:
11265: * src/classes/table.C: merged from HEAD: + optimized
11266: table::load/sql, now row ArrayString-s allocated with
11267: columns.count() elements and don't always grow from
11268: count=3[realloc,realloc]
11269:
11270: * src/classes/table.C: + optimized table::load/sql, now row
11271: ArrayString-s allocated with columns.count() elements and don't
11272: always grow from count=3[realloc,realloc]
11273:
11274: * src/classes/table.C: merged from HEAD: . ^table.save unused
11275: buffer after save
11276:
11277: * src/classes/table.C: . ^table.save unused buffer after save
11278:
11279: 2005-11-24 paf
11280:
11281: * configure.in: . merged glib2-config patch
11282:
11283: * configure.in: + trying to find glib2-config
11284:
11285: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11286: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
11287: file/dir_readable to simple file/dir_exist, this would help in
11288: situations "class not found because .p file has bad rights" << in
11289: that case error would be explicit "access denied to 'this' file"
11290:
1.116 moko 11291: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 11292:
11293: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11294: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
11295: to simple file/dir_exist, this would help in situations "class
11296: not found because .p file has bad rights" << in that case error
11297: would be explicit "access denied to 'this' file"
11298:
11299: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
11300: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11301: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
11302: ^file::exec/cgi[script;$.charset[changed]
11303: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11304: encoded in $.charset charset
11305:
11306: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
11307: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11308: encoded in $.charset charset
11309:
11310: * src/: include/Makefile.am, include/pa_common.h,
11311: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11312: main/pa_common.C, main/pa_http.C: . extracted http:// into
11313: separate file [preparation for
11314: ^file::cgi[script;$.form[$.field1[]
11315:
11316: 2005-11-22 paf
11317:
11318: * src/: include/pa_version.h, main/compile.tab.C: makefiles
11319:
11320: * acinclude.m4, configure.in: . merged underquting fixes
11321:
1.116 moko 11322: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 11323:
11324: * src/classes/op.C: . overmerged a little
11325:
11326: * src/main/compile.tab.C: Makefile
11327:
11328: * src/main/: pa_common.C: . less gcc warnings
11329:
11330: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
11331: now reports original exception if we have no old cache
11332:
11333: * src/classes/op.C: + $exception.handled[cache] now reports
11334: original exception if we have no old cache
11335:
11336: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
11337: from HEAD: + ^taint/untaint[regex] << escapes these:
11338: \^$.[]|()?*+{}
11339:
11340: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
11341: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
11342:
11343: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11344: getenv-ed variable, which does not work both on win32&unix.
11345: copied old TZ value now
11346:
11347: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
11348: stored pointer to getenv-ed variable, which does not work both on
11349: win32&unix. copied old TZ value now
11350:
11351: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11352: getenv-ed variable, which does not work both on win32&unix.
11353: copied old TZ value now
11354:
11355: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
11356: access to internal hash
11357:
11358: * src/types/pa_vresponse.C: + $response:headers access to internal
11359: hash
11360:
11361: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
11362: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11363: isapi] this reduces number of "GC Warning: Repeated allocation of
11364: very large block" messages to only important onces
11365:
11366: * src/targets/isapi/parser3isapi.C: +
11367: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11368: isapi] this reduces number of "GC Warning: Repeated allocation of
11369: very large block" messages to only important onces
11370:
11371: * src/classes/string.C: merged from HEAD: + removed limitation on
11372: ^string/int/double:sql{}[$.default[({param style})] ]
11373:
11374: * src/classes/string.C: + removed limitation on
11375: ^string/int/double:sql{}[$.default[({param style})] ]
11376:
11377: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
11378: with ?params or $.form option" limitation
11379:
11380: * src/main/pa_common.C: + removed "use either uri with ?params or
11381: $.form option" limitation
11382:
11383: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11384: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
11385: ^file::base64[encoded] decode
11386:
11387: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11388: main/pa_common.C: + ^file.base64[] encode +
11389: ^file::base64[encoded] decode
11390:
11391: * src/classes/: file.C, string.C: + ^string.base64[] encode +
11392: ^string:base64[encoded] decode
11393:
11394: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
11395: ^string:base64[in] encode + ^string.base64[] decode
11396:
11397: 2005-11-21 paf
11398:
11399: * src/classes/file.C: + merged from HEAD:
11400: ^file::create[text;file.xml;^untaint[xml]{data}]
11401:
11402: * src/classes/file.C: +
11403: ^file::create[text;file.xml;^untaint[xml]{data}]
11404:
11405: * src/main/pa_request.C: ! merged: $response:body[file] now
11406: differes from :download, it does not return content-disposition
11407: at all now [previusely it returned valueless content-disposition]
11408:
11409: * src/main/pa_request.C: ! $response:body[file] now differes from
11410: :download, it does not return content-disposition at all now
11411: [previusely it returned valueless content-disposition]
11412:
11413: * src/main/: compile.tab.C, compile.y: ! overoptimized void
11414: literals, reverted to just vvod, recreating empty array with each
11415: void_value token. that's absolutely needed, since that array
11416: grows
11417:
11418: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11419: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11420: types/pa_vmethod_frame.h: + merged: expression literals:
11421: true/false. ^format[$.indent(true)]
11422:
11423: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11424: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11425: types/pa_vmethod_frame.h: + expression literals: true/false.
11426: ^format[$.indent(true)]
11427:
11428: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11429: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11430: i386-pc-win32)"
11431:
11432: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11433: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11434: i386-pc-win32)"
11435:
11436: 2005-11-18 paf
11437:
11438: * src/classes/: double.C, int.C: ! ^int/double:sql{select
11439: null}[$.default(123)] will now return default value
11440:
11441: * src/classes/op.C: + merged ^cache[] << returns current cache
11442: expiration time
11443:
11444: * src/classes/op.C: + ^cache[] << returns current cache expiration
11445: time
11446:
11447: * src/classes/table.C: ! merged ^table::create[not'nameless';
11448: failed << Exception.problem_source pointed to local var!
11449:
11450: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
11451: Exception.problem_source pointed to local var!
11452:
11453: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
11454: now loads VFile.ptr!=0, so such files can be saved now
11455:
11456: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
11457: loads VFile.ptr!=0, so such files can be saved now
11458:
11459: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
11460: only . and .. now removed from list [were removed all .*]
11461:
11462: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
11463: .. now removed from list [were removed all .*]
11464:
11465: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
11466: open error now checked, were not :( [stole that piece from apache
11467: 1.3 sources]
11468:
11469: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
11470: checked, were not :( [stole that piece from apache 1.3 sources]
11471:
11472: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
11473: untainting of @main result if returned by $result or
11474: $response:body
11475:
11476: * src/main/pa_request.C: ! ensured proper untainting of @main
11477: result if returned by $result or $response:body
11478:
11479: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
11480: issue: now tries to guess content-length and allocates one big
11481: piece if possible [regretfully gc_realloc works as malloc+free,
11482: leaving lots of holes behind]
11483:
11484: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
11485: fixed file load memory issue: now tries to guess content-length
11486: and allocates one big piece if possible [regretfully gc_realloc
11487: works as malloc+free, leaving lots of holes behind]
11488:
11489: 2005-11-16 paf
11490:
11491: * src/: include/pa_common.h, classes/file.C, classes/table.C,
11492: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
11493: table::save with enclosers now doubles them: "->"" !
11494: table::save/load do not remove elements from options hash
11495:
11496: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
11497: [were overoptimized ^if(double_literal), compiler confused
11498: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11499:
11500: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
11501: [were overoptimized ^if(double_literal), compiler confused
11502: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11503:
11504: * src/: classes/file.C, classes/table.C, include/pa_common.h,
11505: main/pa_common.C: ! table::save with enclosers now doubles them:
11506: "->"" ! table::save/load do not remove elements from options hash
11507:
11508: 2005-11-03 paf
11509:
1.116 moko 11510: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
11511: compilation, not all makefiles liked that
1.95 moko 11512:
11513: 2005-08-30 paf
11514:
11515: * src/classes/op.C: merge . speedup check of [DEFAULT]
11516:
11517: * src/classes/op.C: . speedup check of [DEFAULT]
11518:
11519: 2005-08-26 paf
11520:
11521: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
11522:
11523: * src/: classes/date.C, types/pa_vdate.h: + date.week
11524:
11525: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
11526: complains about bad!=nameless
11527:
11528: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
11529: about bad!=nameless
11530:
11531: * src/classes/: hash.C, string.C, table.C, void.C: merged !
11532: optional options were allowed to be empty. were checked
11533: if(is_string), changed to !defined||is_string to allow void
11534:
11535: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
11536: classes/string.C, classes/table.C, classes/void.C: ! optional
11537: options were allowed to be empty. were checked if(is_string),
11538: changed to !defined||is_string to allow void
11539:
11540: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
11541: as_junction where they needed as_int/double, so failed with
11542: recent "(const) now no junction" optimization
11543:
11544: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
11545: merged ! many classes/* used as_junction where they needed
11546: as_int/double, so failed with recent "(const) now no junction"
11547: optimization
11548:
11549: * src/: classes/double.C, classes/int.C, classes/math.C,
11550: classes/op.C, classes/string.C, classes/table.C,
11551: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
11552: used as_junction where they needed as_int/double, so failed with
11553: recent "(const) now no junction" optimization
11554:
11555: 2005-08-24 paf
11556:
11557: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
11558: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
11559: stripped it
11560:
11561: 2005-08-09 paf
11562:
11563: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11564: not cleared
11565:
11566: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11567: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11568: classes/hashfile.C, classes/image.C, classes/int.C,
11569: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11570: classes/response.C, classes/string.C, classes/table.C,
11571: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11572: include/pa_array.h, include/pa_cache_managers.h,
11573: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11574: include/pa_config_fixed.h, include/pa_config_includes.h,
11575: include/pa_dictionary.h, include/pa_dir.h,
11576: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11577: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11578: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11579: include/pa_request_charsets.h, include/pa_request_info.h,
11580: include/pa_sapi.h, include/pa_socks.h,
11581: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11582: include/pa_stack.h, include/pa_string.h,
11583: include/pa_stylesheet_connection.h,
11584: include/pa_stylesheet_manager.h, include/pa_table.h,
11585: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11586: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11587: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11588: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11589: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11590: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11591: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11592: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11593: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11594: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11595: main/pa_sql_driver_manager.C, main/pa_string.C,
11596: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11597: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11598: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11599: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11600: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11601: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
11602: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
11603: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11604: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11605: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
11606: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
11607: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
11608: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11609: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
11610: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
11611: types/pa_vmemory.h, types/pa_vmethod_frame.C,
11612: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11613: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
11614: types/pa_vresponse.C, types/pa_vresponse.h,
11615: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11616: types/pa_vstateless_object.h, types/pa_vstatus.C,
11617: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11618: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11619: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11620: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11621: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
11622:
11623: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11624: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
11625: speedup consequent checks in vmethod_frame
11626:
11627: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11628: not cleared
11629:
11630: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
11631: params: 50 max (were 10)
11632:
11633: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
11634: params: 50 max (were 10)
11635:
11636: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11637: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
11638: pa_wcontext.h: + ^call[$void] param inside now is void (were:
11639: empty string) ! simplified (double) speedup consequent checks in
11640: vmethod_frame
11641:
11642: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
11643: optimized constants in expressions vstring->vdouble + optimized
11644: ^call(vdouble), no junction creation, no calls later
11645:
11646: 2005-08-08 paf
11647:
11648: * src/main/: compile.tab.C, compile.y, compile_tools.C,
11649: compile_tools.h: merged + optimized constants in expressions
11650: vstring->vdouble + optimized ^call(vdouble), no junction
11651: creation, no calls later
11652:
11653: * src/types/pa_vdouble.h: merged . double values without fractional
11654: part now default printed as %.0f instead of %g
11655:
11656: * src/types/pa_vdouble.h: . double values without fractional part
11657: now default printed as %.0f instead of %g
11658:
11659: * src/classes/hashfile.C: . merged ! second hashfile::open would
11660: cause an exception
11661:
11662: * src/classes/hashfile.C: ! second hashfile::open would cause an
11663: exception
11664:
11665: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
11666: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11667: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11668: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11669: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
11670: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11671: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11672: types/pa_vresponse.h, types/pa_vstateless_class.C,
11673: types/pa_vstateless_object.h, types/pa_vvoid.h,
11674: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11675: merged VJunction(new Junction) optimization from 3.1.4
11676:
11677: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
11678: types/pa_vstateless_class.C: + optimized new VJunction(new
11679: Junction(params)) to new VJunction(params), thousands of mallocs
11680: removed
11681:
11682: 2005-08-05 paf
11683:
11684: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
11685: types/pa_vdouble.h, types/pa_vmethod_frame.C,
11686: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
11687: creation, no calls later
11688:
11689: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11690: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11691: classes/hashfile.C, classes/image.C, classes/int.C,
11692: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11693: classes/response.C, classes/string.C, classes/table.C,
11694: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11695: include/pa_array.h, include/pa_cache_managers.h,
11696: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11697: include/pa_config_fixed.h, include/pa_config_includes.h,
11698: include/pa_dictionary.h, include/pa_dir.h,
11699: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11700: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11701: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11702: include/pa_request_charsets.h, include/pa_request_info.h,
11703: include/pa_sapi.h, include/pa_socks.h,
11704: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11705: include/pa_stack.h, include/pa_string.h,
11706: include/pa_stylesheet_connection.h,
11707: include/pa_stylesheet_manager.h, include/pa_table.h,
11708: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11709: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11710: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11711: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11712: lib/smtp/smtp.h, main/compile.C, main/compile.y,
11713: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11714: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11715: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11716: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11717: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
11718: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
11719: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11720: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11721: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11722: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11723: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11724: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11725: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11726: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11727: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11728: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11729: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11730: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
11731: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11732: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11733: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
11734: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11735: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11736: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11737: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11738: types/pa_vstateless_object.h, types/pa_vstatus.C,
11739: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11740: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11741: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11742: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11743: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
11744:
11745: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
11746: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
11747: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11748: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
11749: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11750: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
11751: optimized constants in expressions vstring->vdouble
11752:
11753: 2005-07-29 paf
11754:
11755: * src/types/pa_vclass.C: . shaped up error messages a bit
11756:
11757: * src/types/pa_vclass.C: + property getter can now be overridden
11758:
11759: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
11760: bug fix: static parent fields were not replaced in case
11761: $derived:field[put] + property setter can now be overridden
11762:
11763: 2005-07-28 paf
11764:
11765: * configure, configure.in, src/classes/classes.h,
11766: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
11767: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
11768: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
11769: src/classes/xnode.h, src/include/pa_hash.h,
11770: src/include/pa_version.h, src/main/execute.C,
1.116 moko 11771: src/types/Makefile.am, src/types/pa_method.h,
11772: src/types/pa_value.h, src/types/pa_vclass.C,
11773: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
11774: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
11775: src/types/pa_vcookie.h, src/types/pa_vhash.h,
11776: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
11777: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
11778: src/types/pa_vobject.C, src/types/pa_vobject.h,
11779: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
11780: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
11781: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
11782: src/types/pa_vstateless_class.h,
1.95 moko 11783: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
11784: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
11785: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
11786: dynamic_fields_join
11787:
11788: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
11789: classes/xnode.C, include/pa_hash.h, main/execute.C,
11790: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11791: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11792: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11793: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11794: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11795: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11796: types/pa_vresponse.h, types/pa_vstateless_object.h,
11797: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
11798: types/pa_wwrapper.h: ! restored put_element('replace' param), and
11799: restored its checks in vobject.put_element->static fields |
11800: dynamic properties
11801:
11802: 2005-07-27 paf
11803:
11804: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
11805: is some old code containing @set_name $name
11806:
11807: * src/types/pa_vobject.h: . fixed warning
11808:
11809: * configure, configure.in, src/include/pa_version.h,
1.116 moko 11810: src/types/Makefile.am: 3.2.0beta started
1.95 moko 11811:
11812: * src/: classes/xnode.C, include/pa_hash.h,
11813: types/pa_vstateless_class.C: ! new asserts were all false.
11814: regretfully reverted them all to checks
11815:
11816: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11817: classes/op.C, main/execute.C, types/pa_method.h,
11818: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11819: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11820: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11821: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11822: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11823: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11824: types/pa_vstateless_object.h, types/pa_vvoid.h,
11825: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11826: joined_dynamic_fields: removed unused param from put_method
11827: (returned to 3 params)
11828:
11829: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
11830: joined_dynamic_fields: dynamic get/set works with overriding
11831: props [alpha2]
11832:
11833: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
11834: works [alfa]
11835:
11836: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11837: classes/op.C, include/pa_hash.h, main/execute.C,
11838: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11839: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11840: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11841: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11842: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11843: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11844: types/pa_vresponse.h, types/pa_vstateless_class.C,
11845: types/pa_vstateless_object.h, types/pa_vvoid.h,
11846: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11847: joined_dynamic_fields: just compiled
11848:
11849: * src/: classes/date.C, classes/file.C, classes/hash.C,
11850: classes/hashfile.C, classes/image.C, classes/table.C,
11851: classes/xdoc.C, classes/xnode.h, main/execute.C,
11852: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
11853: types/pa_vstateless_class.h: joined_dynamic_fields: started
11854:
11855: * src/types/pa_vobject.C: . object setters [only started, does not
11856: work yet]
11857:
11858: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
11859: object setters [only started, does not work yet]
11860:
11861: 2005-07-26 paf
11862:
11863: * src/: include/pa_request.h, main/execute.C: . properties: set
11864: works [alpha2]. for classes. todo: for objects
11865:
11866: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
11867: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11868: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11869: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11870: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11871: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11872: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11873: types/pa_vstateless_object.h, types/pa_vvoid.h,
11874: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11875: properties: set works [alpha1]
11876:
11877: 2005-07-25 paf
11878:
11879: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
11880: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
11881: properties: started, get works [alpha1, other approach]
11882:
11883: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
11884: properties: started, get works [alpha2]
11885:
11886: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
11887: pa_vstateless_class.h: . properties: started, get works [alpha]
11888:
11889: 2005-07-15 paf
11890:
11891: * src/: classes/classes.h, classes/op.C, main/execute.C,
11892: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
11893: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11894: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11895: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11896: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
11897: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
11898: types/pa_vresponse.C, types/pa_vresponse.h,
11899: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11900: types/pa_vstateless_object.h, types/pa_vvoid.h,
11901: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
11902: types/pa_wwrapper.h, types/types.vcproj: + started property
11903: [getters work but think of changing them too to precaching]
11904:
11905: 2005-07-08 paf
11906:
11907: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
11908: gpf
11909:
11910: 2005-06-28 paf
11911:
11912: * src/: classes/file.C, main/untaint.C: ! string invariant violated
11913: in passing empty strings to file::exec/cgi environment
11914:
11915: 2005-06-06 paf
11916:
11917: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
11918: ^table:sql ^hash:sql now DO process $.bind option
11919:
11920: 2005-05-24 paf
11921:
11922: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
11923: $.limit] now work again [support was broken in 3.1.4]
11924:
11925: * src/: main/pa_string.C, classes/op.C: . steps toward removing
11926: ALL_INTERIOR_POINTERS
11927:
11928: 2005-05-12 paf
11929:
11930: * configure: 3.1.5beta
11931:
11932: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
11933:
11934: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
11935: $.limit] now work again [support was broken in 3.1.4]
11936:
11937: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
11938: line-width [was refusing to fill if line-width >1, thanks to
11939: Seras <seras@pinxit.lt> for repro case
11940:
11941: 2005-04-25 paf
11942:
11943: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
11944: correctly
11945:
11946: 2005-04-19 paf
11947:
11948: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
11949: in VString violating invariant!!
11950:
11951: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
11952: getenv("TZ")==null
11953:
11954: 2005-04-08 paf
11955:
11956: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
11957: bugfix: when there is no char in charset one byte produces 6
11958: (ÿ <<max). increased buffer size!
11959:
11960: 2005-03-23 paf
11961:
11962: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
11963: ^date.sql-string now takes TZ into account
11964:
11965: 2005-03-16 paf
11966:
11967: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
11968: gcc 3.4
11969:
11970: * src/types/pa_vhash.C: . warning about eof eol
11971:
11972: 2005-02-17 paf
11973:
11974: * operators.txt, src/classes/op.C: + operator ^sleep(double
11975: seconds)
11976:
11977: 2005-02-02 paf
11978:
11979: * src/classes/xnode.C: beauty: removed needless includes
11980:
11981: 2005-01-31 paf
11982:
11983: * src/types/pa_vmail.C: change: $.partX now always 1... change:
11984: $.partNoNumber now alias to $.part1
11985:
11986: * src/types/pa_vmail.C: change: incoming letter part contains
11987: "content-disposition" header with any value? now considering that
11988: part to be "file#" [for text/plain text/html were $.text#
11989: $.html#]
11990:
11991: * INSTALL: updatet to latest working versions available
11992:
11993: 2005-01-20 paf
11994:
11995: * configure.in, src/include/pa_version.h: version
11996:
11997: 2005-01-19 paf
11998:
1.116 moko 11999: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
12000: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
12001: couple warnings in parser3.C
1.95 moko 12002:
12003: 2004-12-23 paf
12004:
12005: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
12006:
12007: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
12008: dir to directory of script (when shbang used), not to directory
12009: of its interpreter
12010:
12011: * src/include/pa_version.h: compiled on win32...
12012:
12013: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
12014: we need more hspace
12015:
12016: * configure, configure.in, src/include/pa_version.h: configured
12017: host to pa_version. will be displayed everywhere
12018:
12019: * src/main/pa_request.C: new: @unhandled_exception can prevent
12020: exception from being logged by setting $exception.handled(1)
12021:
12022: * operators.txt, src/classes/file.C: change:
12023: ^file::sql{query}[[options]] options: $.name[file name]
12024: $.content-type[application/what]
12025:
12026: * src/: include/pa_common.h, main/pa_common.C,
12027: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
12028: new file
12029:
12030: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
12031: bugfix: table->hash now regards _default
12032:
12033: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
12034: created by accessing $name_of_method it acquired bad self=closest
12035: methodframe; instead of proper self (current class)
12036:
12037: * src/types/pa_vhashfile.C: bugfix: reading empty string from
12038: hashfile produced bad cord
12039:
12040: 2004-12-10 paf
12041:
12042: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
12043: subsequent failures though defined in .h
12044:
12045: * src/main/pa_common.C: comment on volatile
12046:
12047: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
12048: alarm function were not used since the beginning due to stupid
12049: error [setsigjmp were not checked in configure.in]
12050:
12051: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
12052: unix too
12053:
12054: * src/main/pa_common.C: http: exception status of send/recv errors
12055: change to most probable http.timeout
12056:
12057: * src/main/pa_common.C: win32: http connection $.timeout option now
12058: works [setsockopt on send/receive]
12059:
12060: 2004-12-08 paf
12061:
12062: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
12063: cstr-ed knowing mail charset, and untainting uri lang now knows
12064: proper charset
12065:
12066: 2004-11-24 paf
12067:
12068: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
12069:
12070: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
12071: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
12072:
12073: 2004-11-12 paf
12074:
12075: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
12076: [since 3.0.4]
12077:
12078: 2004-11-09 paf
12079:
12080: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
12081: writes basics to c:\parser3.log
12082:
12083: 2004-10-21 paf
12084:
12085: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
12086: tainted strings [were returning clean onces]
12087:
12088: 2004-10-15 paf
12089:
12090: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
12091: cycles(i=1; i=2), which was wrong, now does ONE
12092:
12093: 2004-10-12 paf
12094:
12095: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
12096:
12097: 2004-10-07 paf
12098:
12099: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
12100: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
12101: release asserts
12102:
12103: * src/: main/pa_string.C, include/pa_string.h: debugger help:
12104: String.dump() to stdout in detailed form [were String.v() in
12105: short form]
12106:
12107: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
12108: \t\r\n as @#| and truncates long char sequences less
12109:
12110: 2004-10-06 paf
12111:
12112: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
12113: win32 beauty: socket errors properly decoded
12114:
12115: 2004-10-05 paf
12116:
12117: * src/: include/pa_request.h, main/pa_request.C: bugfix:
12118: request::configure_user/admin done always, even if no
12119: file-to-process useful in @unhandled_exception [say, if they
12120: would want to mail by SMTP something]
12121:
12122: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
12123: now performed prior to file loading [and @auto executing] thus
12124: making $cookie:value available in @auto and in
12125: @unhandled_exception when IIS is configured to run interpreter
12126: even if no file exist
12127:
12128: 2004-09-20 paf
12129:
12130: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
12131: somewhere where it should have called xmlMalloc and it calls
12132: xmlFree when it should have not called it. inserted two
12133: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
12134: xmlFree just ignored. put away a testcase, maybe someday libxml
12135: author would fix all that. until that day: we have SLOW garbage
12136: collecting when many xml objects are alive hint: do
12137: ^memory:compact[] before xdoc::create
12138:
12139: 2004-09-17 paf
12140:
12141: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
12142: error from 3.0.8 version]
12143:
12144: 2004-09-14 paf
12145:
12146: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
12147: part bugfix: hashfile.foreach iterated only part if hashfile were
12148: modified inside
12149:
12150: 2004-09-13 paf
12151:
12152: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
12153: [were as octal]
12154:
12155: * src/types/pa_vhashfile.C: beauty: not reproduced
12156: $hashfile.key[$novalue] bug [reported by motorin], inserted
12157: safety-check
12158:
12159: * src/types/pa_vhashfile.C: change: empty keys now error in parser
12160: [not something obscure from sdbm lib]
12161:
12162: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
12163: = strerror now returnes something and we can properly report that
12164: to client
12165:
12166: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
12167: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
12168:
12169: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12170: [tainted as-is] this helps //[space][newline] to remain as-is and
12171: not be unnecessary optimized away [ruining javascript]
12172:
12173: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12174: [tainted as-is]
12175:
12176: * src/classes/mail.C: bugfix: typo error
12177:
12178: 2004-09-09 paf
12179:
12180: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
12181: separators bugfix: loads header with endings \r\n\r\n and \n\n
12182: (bloody yandex.server)
12183:
12184: 2004-09-06 paf
12185:
12186: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
12187: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
12188: encoded
12189:
12190: 2004-09-01 paf
12191:
12192: * src/types/pa_vmail.C: change: multipart/mixed changed to
12193: multipart/related outlook express have no problems showing
12194: unrelated attachments. todo: someday figure out a way of
12195: multipart/mixed multipart/related text/html
12196: image/xxx application/octet-stream << true attachments
12197:
12198: * src/types/pa_vmail.C: new:
12199: ^mail:send[$.file[$.content-disposition can be overriden new:
12200: empty mail header fields removed from letter
12201:
12202: * src/: classes/mail.C, include/pa_config_fixed.h,
12203: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
12204: ^mail:send[ $.file[ $.any[header]
12205:
12206: 2004-08-30 paf
12207:
12208: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
12209: warnings
12210:
12211: * src/main/pa_common.C: beauty: do not bother with charset
12212: detection when ^file::load[binary
12213:
12214: 2004-08-27 paf
12215:
12216: * src/main/pa_common.C: hack: for yandex.server http server
12217:
12218: 2004-08-18 paf
12219:
12220: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
12221: possibly-chunked response
12222:
12223: 2004-08-17 paf
12224:
12225: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12226: $f.content-type now = that of http response
12227:
12228: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12229: $f.content-type now = that of http response
12230:
12231: 2004-07-30 paf
12232:
12233: * src/: include/pa_request.h, main/pa_request.C,
12234: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
12235: win32: system&parser exceptions in release mode reported properly
12236: parser exception in exception handler WERE mistakenly reported as
12237: system exception, without details [in apache & isapi] +some
12238: beauty in exception text
12239:
12240: * src/: include/pa_exception.h, main/pa_request.C,
12241: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
12242: release mode reported properly parser exception in exception
12243: handler WERE mistakenly reported as system exception, without
12244: details
12245:
12246: * src/main/execute.C: beauty: simplified system exception handling
12247:
12248: 2004-07-29 paf
12249:
12250: * src/classes/table.C: bugfix:
12251: ^table.save[export.csv;$.separator[^;]] now works fine [separator
12252: were ignored, and \t used unconditionally]
12253:
12254: * src/types/Makefile.am: added vhash.c
12255:
12256: 2004-07-28 paf
12257:
12258: * src/: classes/date.C, classes/image.C, classes/math.C,
12259: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
12260: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
12261: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
12262: failed on russian letters
12263:
12264: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
12265: bugfix: isspace((unsigned char)c) everywhere. failed on russian
12266: letters
12267:
12268: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
12269: as 'currentDirectory' parameter to CreateProcess
12270:
12271: 2004-07-27 paf
12272:
12273: * src/targets/cgi/parser3.vcproj: beauty: win32:
12274: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
12275: from release somewhere [to help searching for unhandled system
12276: exceptions]
12277:
12278: * src/types/pa_vdate.h: check: for invalid datetime after temporary
12279: TZ shift
12280:
12281: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
12282: but also in ctor
12283:
12284: 2004-07-26 paf
12285:
12286: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
12287: src/main/pa_request.C, src/types/pa_vfile.h,
12288: src/types/pa_vhash.C, src/types/pa_vhash.h,
12289: src/types/types.vcproj: new: $response:body/download[
12290: $.file[name on disk] $.name[of file for user]
12291: $.mdate[date of last-modified. default from directory] ]
12292:
12293: * src/classes/file.C: moving file:send somewhere else..
12294:
12295: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
12296: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
12297: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
12298: $response:download[ $.filename[filename] $.option[] ,, ]
12299:
12300: * src/classes/file.C: beauty: invalid mode thoroughly reported
12301:
12302: 2004-07-21 paf
12303:
12304: * src/types/pa_vmail.C: bugfix: too long header values now splitted
12305: to several lines
12306:
12307: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
12308:
12309: note: ms outlook[!express] shows only first 255 characters of
12310: subject
12311:
12312: 2004-07-15 paf
12313:
12314: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
12315: off]
12316:
12317: 2004-07-14 paf
12318:
12319: * src/classes/table.C: bugfix: $.bind values now got untainted
12320: according to lang [were: as-is]
12321:
12322: 2004-07-07 paf
12323:
12324: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
12325: checked that
12326:
12327: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
12328: now untainted according to their languages. were: as-is.
12329: EVERYWHERE
12330:
12331: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
12332: environment string now untainted according to their languages.
12333: were: as-is. EVERYWHERE
12334:
12335: * src/main/pa_exec.C: bufix: on unix environment string now
12336: untainted according to their languages. were: as-is. on win32:
12337: ok
12338:
12339: * parser3.vssscc: ...would not go unnoticed
12340:
12341: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
12342: fails. in case on input appears nonutf, those bytes will be
12343: printed in %HH form. that can be easily decoded/recovered.
12344:
12345: this form is quite noticable, and hopefully would not go noticed
12346:
12347: 2004-07-06 paf
12348:
12349: * src/main/pa_exec.C: bufix: on unix environment string now
12350: untainted according to their languages. were: as-is. on win32:
12351: ok
12352:
12353: 2004-07-01 paf
12354:
12355: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
12356: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
12357: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12358: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
12359: main/main.vcproj, targets/cgi/parser3.vcproj,
12360: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
12361: option: global optimization ON
12362:
12363: * src/main/untaint.C: workaround kinda bug in libxml: life requires
12364: to do xdoc::create{invalid chars} standard disables chars less
12365: then \x20, except tab, cr, lf.
12366:
12367: changed tainting so that those become '!'
12368:
12369: 2004-06-25 paf
12370:
12371: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12372: int on odd address [prev bugfix failed due to superwize
12373: optimizer, which turned memcpy into same 'ld' asm command]
12374:
12375: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12376: int on odd address
12377:
12378: 2004-06-22 paf
12379:
12380: * src/sql/pa_sql_driver.h: note: about possible optimization
12381:
12382: * operators.txt, src/classes/hash.C, src/classes/memory.C,
12383: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12384: src/include/pa_config_includes.h: new: ^void:sql{call
12385: paf(:a)}[ $.bind[ $.a[2]
12386: ] ] output variables work. todo: check in out
12387: variables
12388:
12389: 2004-06-18 paf
12390:
12391: * src/: classes/file.C, classes/hash.C, classes/string.C,
12392: classes/table.C, classes/void.C, include/pa_globals.h,
12393: include/pa_sql_connection.h, main/compile.tab.C,
12394: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
12395: $.bind[ $.a[2] ]
12396: ] input variables work. todo:output
12397:
12398: * src/targets/cgi/parser3.C: bugfix: iis specific
12399: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
12400: /_bug.html?404;http://hpsv/test/
12401: --------------------------------------------------------------------------------
12402: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
12403: --------------------------------------------------------------------------------
12404: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
12405:
12406: 2004-06-16 paf
12407:
12408: * src/targets/cgi/parser3.C: new: iis specific
12409: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
12410: $request:query
12411: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
12412: $form:fields IIS-STATUS="404"
12413: IIS-DOCUMENT="http://server/_bug.html" f="v"
12414:
12415: todo: isapi too
12416:
12417: 2004-05-26 paf
12418:
12419: * src/include/pa_version.h: 3.1.3
12420:
12421: * operators.txt: beauty: removed outdated level 'table'
12422:
12423: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
12424:
12425: * src/main/pa_string.C: beauty: removed 3 warnings
12426:
12427: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
12428: classes/op.C: beauty: removed outdated level 'table'
12429:
12430: 2004-05-25 paf
12431:
12432: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
12433: implementation. mistery: how anything worked
12434:
12435: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
12436: changed, it is now safe to use url if pointers to it are stored
12437: to gc mem
12438:
12439: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
12440: unknown errors reported and not cause SIGSEGV now
12441:
12442: 2004-05-24 paf
12443:
12444: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12445: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
12446: less memory: CORD_chars_block originally intended to ... it was
12447: good that CORD_chars_block were not used: it consumes more memory
12448: [and, might be slow too] undoing that. [and removed that func so
12449: that it would not confuse parser developer in future]
12450:
12451: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
12452: less memory: CORD_chars_block originally intended to
12453: speedup/reduce mem usage were forgotten, and were used stupid
12454: CORD_chars
12455:
12456: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
12457:
12458: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
12459: BIGENDIAN processors space-conserving mech failed, causing
12460: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
12461: (1|2|3));
12462:
12463: 2004-05-14 paf
12464:
12465: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
12466: bugfix: void now has vfile value, and $response:body[] works OK
12467:
12468: 2004-05-12 paf
12469:
12470: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
12471: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
12472: sources to use is_defined() {return as_bool();} along VBool
12473:
12474: 2004-05-11 paf
12475:
12476: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
12477: referencing to local objects
12478:
12479: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
12480: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
12481: left intact
12482:
12483: 2004-04-15 paf
12484:
12485: * src/classes/date.C: merged: beauty: unused var removed
12486:
12487: * src/classes/date.C: beauty: unused var removed
12488:
12489: * src/include/: pa_exec.h: bugfix: interface without pointer
12490: provoked bug
12491:
12492: 2004-04-09 paf
12493:
12494: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
12495:
12496: * src/types/pa_vform.C: bugfix: form:imap were incorrect
12497:
12498: 2004-04-08 paf
12499:
12500: * src/classes/date.C: new: ^date::create[y-m-d
12501: h-M-s>>.milliseconds<<] now allowed, ignored so far
12502:
12503: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
12504:
12505: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
12506: to consult default catalog [usually, that file belongs to other
12507: user/group]
12508:
12509: 2004-04-06 paf
12510:
12511: * src/main/pa_common.C: beauty: gcc warning removed
12512:
12513: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
12514: accept that trick, trying other
12515:
12516: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
12517: explicit result problem
12518:
12519: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
12520: explicit result problem
12521:
12522: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
12523: explicit result problem
12524:
12525: * operators.txt, src/classes/string.C: new: ^string.append[string]
12526:
12527: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
12528: main/execute.C: attempt_check_call_in_explicit_result_mode:
12529: failed
12530:
12531: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12532: http://i.p.a.ddress gethostbyaddr added [on some platforms
12533: gethostbyname failed with such 'domains'] now checked properly,
12534: were: needless reverse/forward dns lookup
12535:
12536: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12537: http://i.p.a.ddress gethostbyaddr added [on some platforms
12538: gethostbyname failed with such 'domains'] now checked properly,
12539: were: needless reverse/forward dns lookup
12540:
12541: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
12542: @method[][result] means "no string output here" moved to lexical
12543: level [on grammar level it were too difficult]
12544:
12545: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
12546: src/main/compile.y, src/main/compile_tools.h,
12547: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
12548: @method[][result] means "no string output here", implemented part
12549: of that idea: compiler throws away string literal generation
12550: code. and barks nonwhitespace chars
12551:
12552: * operators.txt: truth: removed comment about $ORIGIN
12553:
12554: 2004-04-05 paf
12555:
12556: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
12557: src/include/pa_version.h, src/main/pa_common.C,
12558: src/targets/isapi/parser3isapi.C: merged with 3.1.3
12559:
12560: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
12561: Konstantin Tomashevitch [mailto:konst@design.ru]
12562:
12563: * src/doc/html2chm.cmd: beauty: no need in bg here
12564:
12565: * src/doc/sources2html.cmd: beauty: same window, in bg it
12566: interfered with FAR console
12567:
12568: * configure, configure.in: 3.1.3
12569:
12570: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
12571:
12572: * src/main/pa_common.C: removed warning
12573:
12574: * src/include/pa_version.h: 3.1.3
12575:
12576: 2004-04-02 paf
12577:
12578: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
12579:
12580: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
12581: allows to specify where to put parser log file
12582:
12583: 2004-04-01 paf
12584:
12585: * src/classes/table.C: bugfix: bugfix: table::load last line
12586: without tab and enter were ignored
12587:
12588: * src/: include/pa_cache_managers.h, include/pa_globals.h,
12589: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
12590: main/pa_socks.C, targets/cgi/parser3.C,
12591: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
12592: bugfix: sql connections now are disconnected
12593:
12594: 2004-03-30 paf
12595:
12596: * src/classes/table.C: bugfix: table::load last line without tab
12597: and enter were ignored
12598:
12599: * src/classes/table.C: bufix: if last table lines were commented,
12600: gpfed
12601:
12602: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
12603: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
12604: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
12605: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
12606: doc/methoded.dox, doc/object.dox, doc/string.dox,
12607: doc/targets.dox, doc/value.dox, include/pa_version.h,
12608: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
12609: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
12610: bugfixes from 3.1.2, changed version to 3.1.3beta
12611:
12612: 2004-03-29 paf
12613:
12614: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
12615: causes gpf
12616:
12617: * src/doc/: ClassExample1.dox, ClassExample2.dox,
12618: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
12619: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
12620: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
12621: value.dox: translated to english
12622:
12623: 2004-03-25 paf
12624:
12625: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
12626: parser3project dependency removed
12627:
12628: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
12629: bugfix: refused to compile without xml
12630:
12631: * src/types/pa_vform.C: beauty: removed warning
12632:
12633: * src/classes/classes.vcproj: merged bugfix: now all compiles in
12634: any folder [removed last ;) folder dependency]
12635:
12636: * src/classes/classes.vcproj: bugfix: now all compiles in any
12637: folder [removed last ;) folder dependency]
12638:
12639: * src/include/pa_version.h: release
12640:
12641: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
12642:
12643: * src/classes/table.C: beauty: comment& more meaningful error
12644: message
12645:
12646: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
12647: $.hash[$.column_value1(true) ... ] [were producing some strang
12648: thing]
12649:
12650: 2004-03-23 paf
12651:
12652: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
12653: and http status line parsing checked number of columns in table
12654: [user reported an assert]
12655:
12656: * operators.txt: example: on hashfile
12657:
12658: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
12659: bugfix: junction reattach now actually reattaches a junction to
12660: new wcontext [were only assigning it to junction, which caused
12661: junction tracking to loose junction, and it's context were not
12662: killed, and it tried to process in invalid context, gpf]
12663:
12664: * src/targets/cgi/parser3.C: debug helper added
12665:
12666: 2004-03-19 paf
12667:
12668: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
12669: "type(type)" in braces
12670:
12671: 2004-03-10 paf
12672:
12673: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
12674: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12675: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
12676: solution to search-in-namespaces problem:
12677: $xdoc.search-namespaces.x[http://pif.design.ru/]
12678: $nodes[^xdoc.select[//x:second]]
12679:
12680: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
12681: expression][[NAMESPACES HASH]] allows to search for info in
12682: namespaces
12683:
12684: $nodes[^xdoc.select[//x:second][
12685: $.x[http://pif.design.ru/] ]]
12686:
12687: 2004-03-09 paf
12688:
12689: * operators.txt, src/main/pa_common.C: new:
12690: ^file::load[...][options] $.form[
12691: !$.field1[string]
12692: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
12693: ] !$.body[string]
12694:
12695: GET ?here notGET(POST, HEAD, others) in content-type:
12696: application/x-www-form-urlencoded
12697:
12698: todo: upload files ability
12699:
12700: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
12701: properly, done
12702:
12703: 2004-03-05 paf
12704:
12705: * operators.txt, src/main/pa_common.C: new: file::load[;http://
12706: GET/POST $.form[$.fields started, not tested yet
12707: todo:$.field[table] for multiple values
12708:
12709: * operators.txt: new: http:// options $.user $.password basic
12710: authorization
12711:
12712: * src/main/pa_common.C: beauty: link to rtf added
12713:
12714: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
12715: new: http:// options $.user $.password basic authorization
12716:
12717: * src/main/pa_common.C: beauty: removed needless vars
12718:
12719: * operators.txt: new: pgsql option [like that recently added to
12720: oracle driver] ClientCharset=parser-charset <<
12721: charset in which parser thinks client works
12722:
12723: * operators.txt: new: odbc option [like that recently added to
12724: oracle driver] ClientCharset=parser-charset <<
12725: charset in which parser thinks client works
12726:
12727: * src/sql/pa_sql_driver.h: beauty: important warning added
12728:
12729: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
12730: char!
12731:
12732: * etc/parser3.charsets/windows-1251.cfg: typo
12733:
12734: 2004-03-04 paf
12735:
12736: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
12737: cached, sql transcoding now goes faster
12738:
12739: * operators.txt: new: mysql option [like that recently added to
12740: oracle driver] ClientCharset=parser-charset <<
12741: charset in which parser thinks client works
12742:
12743: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
12744: typo error
12745:
12746: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
12747: chars commented
12748:
12749: 2004-03-03 paf
12750:
12751: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
12752: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
12753:
12754: 2004-03-02 paf
12755:
12756: * operators.txt: new[update typo]: !^void.left(n)
12757: nothing !^void.right(n) nothing !^void.mid(p[;n])
12758: nothing
12759:
12760: * operators.txt, src/classes/void.C: new: !^void.left(n)
12761: nothing !^void.right(n) nothing !^void.pos(p[;n])
12762: nothing
12763:
12764: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
12765: ^file::sql[[name_to_become_$.name]]{} query result must be one
12766: row with columns: first: data second: file name third:
12767: content-type
12768:
12769: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
12770: ^connect gets properly escaped string, which can be passed to
12771: request now this for mysql only. it's up to parser sql driver to
12772: fix zeros properly
12773:
12774: * INSTALL: note: added on building apache with this option:
12775: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
12776:
12777: 2004-03-01 paf
12778:
12779: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
12780: extension memory:compact befor processingrequest
12781:
12782: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
12783: call sole column of result
12784:
12785: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
12786: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
12787: pixel color
12788:
12789: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
12790: beauty: image -- less checks [were ugly impl]
12791:
12792: * src/classes/string.C: bugfix: ^string.left/right/mid with
12793: negative values now considered bad
12794:
12795: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
12796:
12797: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
12798: options now have unified defaults [after transform
12799: indent/omit-xml-declaration/standalone 'default' erroreously
12800: meant 'true']
12801:
12802: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
12803: added [on some platforms gethostbyname failed with such
12804: 'domains']
12805:
12806: * src/include/pa_config_auto.h.in: no select check, no define
12807:
12808: * src/classes/string.C: feature: ^string.trim both parameters may
12809: be empty-strings, meaning kind=both chars=whitespaces
12810:
12811: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
12812: exist
12813:
12814: * src/classes/string.C: check: trim 'chars' must not be empty,
12815: exception if it is
12816:
12817: * src/classes/string.C: changed: ^string.trim [] << both,
12818: whitespaces [start|both|end] << kind, whitespaces
12819: [start|both|end;chars] full
12820:
12821: 2004-02-27 paf
12822:
12823: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
12824: method: ^string.trim[start|both|end[;chars]] default
12825: 'chars' -- whitespace chars finished
12826:
12827: * operators.txt, src/classes/string.C, src/include/pa_string.h,
12828: src/main/pa_string.C: new method:
12829: ^string.trim[start|both|end[;chars]] default 'chars' --
12830: whitespace chars started, only start works
12831:
12832: * src/main/compile.C: bugfix: line numbers after
12833: ^process{}[$.line(-10]] can be negative, allowed to print they as
12834: signed
12835:
12836: * src/main/untaint.C: speed: there's no \n chars in output
12837: [normally], so no need to optimize them they could be retrived
12838: from databases, though. but 1. should be replaced 2. if not
12839: optimized, no harm done
12840:
12841: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
12842: ^file::exec/cgi could return invalid status & zombie child can
12843: remain for short period until process exists [very bad in
12844: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
12845:
12846: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
12847: malicious SMTP server to attack as by returning too long status
12848: responses http://i2/tasks/edit/?id=4629448401140924947
12849:
12850: 2004-02-26 paf
12851:
12852: * operators.txt: feature: ^process...{CODE}[now has options] which
12853: are $.main[to what to rename @main] $.file[file,
12854: from which (user says) goes that CODE] $.lineno(line
12855: number in that file, where CODE starts. may be negative)
12856:
12857: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12858: src/main/compile.C, src/main/compile_tools.h,
12859: src/main/pa_request.C: feature: ^process...{CODE}[now has
12860: options] which are $.main[to what to rename @main]
12861: $.file[file, from which (user says) goes that CODE]
12862: $.lineno(line number in that file, where CODE starts. may be
12863: negative)
12864:
12865: 2004-02-25 paf
12866:
1.116 moko 12867: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
12868: old @charsetsdir@ recently erased from configure.in]
1.95 moko 12869:
12870: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
12871: produces hash of column=>1
12872:
12873: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
12874: with incomplete errno constants set
12875:
12876: 2004-02-24 paf
12877:
12878: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
12879: "man select"
12880:
12881: * src/main/pa_os.C: beauty: <0 better then ==-1
12882:
12883: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
12884:
12885: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
12886:
1.116 moko 12887: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 12888:
12889: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
12890: unix: steps to work on unix [extracted 'to']
12891:
12892: * src/classes/mail.C: smtp on unix: steps to work on unix
12893:
12894: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
12895:
1.116 moko 12896: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
12897: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
12898: unix [testing on solaris]
1.95 moko 12899:
12900: 2004-02-20 paf
12901:
12902: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
12903: pointing that out
12904:
12905: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
12906: fixed again [same solution, mistanenly removed one line]
12907:
12908: 2004-02-19 paf
12909:
12910: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
12911: date::create from bad datetime in spring daylightsaving hole now
12912: OK for all platforms [on some platforms it failed]
12913:
12914: * src/classes/: date.C, image.C: beauty: date::create[bad date time
12915: in daylightsaving hole] now throws error
12916:
12917: * src/classes/date.C: comment: mistake fixed
12918:
12919: 2004-02-18 paf
12920:
12921: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
12922: now renderes in $request:charset, but in header puts
12923: $response:charset todo: make that default only so that coder
12924: could override that
12925:
12926: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
12927: turns off omit-xml-declaration
12928:
12929: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
12930: /.xsl for sample
12931:
12932: 2004-02-17 paf
12933:
12934: * src/classes/xdoc.C: beauty: needless helper class removed
12935:
12936: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
12937: copied extra time
12938:
12939: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
12940: part of libxml
12941:
12942: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
12943: libxml to do the work] <xsl:output method="html"
12944: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
12945: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
12946: />
12947:
12948: * src/classes/xdoc.C: beauty: no <meta ... charset generated
12949:
12950: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
12951: caused assertion
12952:
12953: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
12954: could hang. now such add does nothing, sub clears $hash
12955:
12956: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
12957: not made quoted-printable
12958:
12959: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
12960: string invariant
12961:
12962: 2004-02-16 paf
12963:
12964: * src/main/pa_globals.C: bugfix: xml errors copy from library now
12965: cleared [were not cleared properly]
12966:
12967: 2004-02-13 paf
12968:
1.116 moko 12969: * src/include/pa_version.h: prerelease
1.95 moko 12970:
12971: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
12972: used, introducing dependencies timestamp check
12973:
12974: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12975: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
12976: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
12977: .xsl.stamp now not used, introducing dependencies timestamp check
12978:
1.150 moko 12979: * configure.in: auto.p: @conf made relative
1.95 moko 12980:
12981: 2004-02-12 paf
12982:
12983: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
12984: ruined empty <input type=file> submits. parser thought there were
12985: nameless empty file and $form:field got value of type 'file'
12986:
12987: * INSTALL: --without-threads
12988:
12989: * src/include/pa_sapi.h: 2004
12990:
12991: 2004-02-11 paf
12992:
12993: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12994: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12995: classes/hashfile.C, classes/image.C, classes/int.C,
12996: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12997: classes/response.C, classes/string.C, classes/table.C,
12998: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12999: include/pa_array.h, include/pa_cache_managers.h,
13000: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13001: include/pa_config_fixed.h, include/pa_config_includes.h,
13002: include/pa_dictionary.h, include/pa_dir.h,
13003: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
13004: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
13005: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
13006: include/pa_request_charsets.h, include/pa_request_info.h,
13007: include/pa_socks.h, include/pa_sql_connection.h,
13008: include/pa_sql_driver_manager.h, include/pa_stack.h,
13009: include/pa_string.h, include/pa_stylesheet_connection.h,
13010: include/pa_stylesheet_manager.h, include/pa_table.h,
13011: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13012: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
13013: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
13014: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
13015: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
13016: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
13017: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13018: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
13019: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
13020: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
13021: main/pa_sql_driver_manager.C, main/pa_string.C,
13022: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
13023: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
13024: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13025: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
13026: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
13027: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
13028: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
13029: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
13030: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
13031: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13032: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
13033: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13034: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13035: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13036: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13037: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13038: types/pa_vresponse.h, types/pa_vstateless_class.C,
13039: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13040: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13041: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13042: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13043: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13044: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
13045:
13046: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
13047: debug version of gc.dll
13048:
13049: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13050: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
13051: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
13052: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
13053: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
13054: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
13055: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
13056: processes
13057:
13058: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
13059: main/pa_globals.C, targets/cgi/parser3.vcproj,
13060: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
13061: changes to reflect libxml xsl new folders
13062:
13063: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13064: lib/smtp/smtp.vcproj, main/main.vcproj,
13065: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
13066: to reflect libxml xsl new folders
13067:
13068: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13069: lib/smtp/smtp.vcproj, main/main.vcproj,
13070: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
13071: types/types.vcproj: started changes to reflect libxml xsl new
13072: folders
13073:
13074: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
13075: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
13076: src/main/compile.tab.C, src/main/main.vcproj,
13077: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
13078: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13079: started changes to reflect libxml xsl new folders
13080:
13081: 2004-02-10 paf
13082:
13083: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
13084: compile. recommened latest libxml up to date
13085:
13086: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
13087: pattern compilation errors", on which spent 4 hours worktime. use
13088: versions higher than that. recommended now latest up to date
13089:
13090: 2004-02-06 paf
13091:
13092: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
13093: beauty: unified destructing style
13094:
13095: * src/main/untaint.C: beauty: removed old def/ifdef
13096:
13097: * src/main/untaint.C: beauty: coredump @unknown untaint language
13098: now
13099:
13100: 2004-02-03 paf
13101:
13102: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
13103: targets/isapi/parser3isapi.C, types/pa_value.C,
13104: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
13105: then %ld/%lu
13106:
13107: * src/main/pa_common.C: typo: %l -> %u
13108:
13109: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
13110: in attributes or documents-results of transform now not xx;
13111:
13112: * src/classes/xnode.C: memleaks found: not fixed yet. todo
13113:
13114: * src/main/pa_charset.C: bugfix: forgot to undo some
13115:
13116: * src/main/pa_charset.C: beauty: uncomment
13117: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
13118: libraries
13119:
13120: 2004-02-02 paf
13121:
13122: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
13123: $cookie:example[ $.value[value] $.path[/there/] ]
13124:
13125: $cookie:example[ $.value[] $.expires[session]
13126: $.path[/there/] $.domain[test.com] ]
13127:
13128: * src/types/pa_vform.C: bugfix: empty values with
13129: enctype=multipart/form-data now produce entries in $form:tables
13130: <form method=post enctype=multipart/form-data> <input type=hidden
13131: name=a> <input type=hidden name=b>
13132:
13133: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
13134: <hr> <pre>$request:body
13135:
13136: 2004-01-30 paf
13137:
13138: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
13139: or documents-results of transform now not xx;
13140:
13141: * src/classes/date.C: bugfix: ^date::create[invalid fields now
13142: produce exception.
13143:
13144: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
13145: bugfix: ^date::create[invalid fields now produce exception.
13146:
13147: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
13148: year] now produces exception. todo: check other fields
13149:
13150: 2004-01-29 paf
13151:
13152: * src/include/pa_memory.h: typo error
13153:
13154: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
13155: more byte then specified, then zeroed it << useless and
13156: potentially harmful(could gpf)
13157:
13158: 2004-01-22 paf
13159:
13160: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
13161:
13162: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
13163: optimization
13164:
13165: * src/main/untaint.C: bugfix: whitespace now optimized properly
13166: [were bug: ^taint[1 & 2]="1 &2"
13167:
13168: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
13169: errors
13170:
13171: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
13172: overflow
13173:
13174: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
13175: error-reporting code * in parser-error reporting code [when no
13176: @unhandled_exception defined]
13177:
13178: fixed in one place: my *snprintf override
13179:
13180: 2004-01-13 paf
13181:
13182: * operators.txt: typo erro
13183:
13184: 2003-12-25 paf
13185:
13186: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
13187: garbled [pieces after zero bytes were removed]
13188:
13189: 2003-12-22 paf
13190:
1.116 moko 13191: * src/include/Makefile.am: bugfix: removed from dist:
13192: src/include/pa_config_auto.h which were configured for
1.95 moko 13193: make-dist-platform and badly updated proper config file in target
13194: [when .tar used for updating existing source tree]
13195:
13196: * ChangeLog, operators.txt, src/classes/op.C,
13197: src/include/pa_sql_connection.h,
13198: src/include/pa_sql_driver_manager.h,
13199: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
13200: feature: sql introducing ability to transcode charsets
13201:
13202: 2003-12-19 paf
13203:
13204: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
13205: error message
13206:
13207: * src/main/pa_charset.C: bugfix: memory for charsethandler
13208: structure for libxml now allocated properly
13209:
13210: 2003-12-17 paf
13211:
13212: * src/types/pa_vfile.C: beauty: removed outdated cast
13213:
13214: * src/main/pa_common.C: bugfix: empty http response caused gpf
13215:
13216: * src/include/pa_string.h: bugfix: removed too strong a assert
13217:
13218: * src/main/pa_globals.C: bugfix: removed false warning [warning:
13219: unreported xmlGenericErrors]
13220:
13221: 2003-12-15 paf
13222:
13223: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
13224: works}
13225:
13226: 2003-12-11 paf
13227:
13228: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
13229: id
13230: !$status:tid thread id
13231:
13232: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
13233: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
13234: bugfix(solaris): removed dependency on object initialization
13235: order [one more place]
13236:
13237: * src/: classes/file.C, classes/mail.C, classes/op.C,
13238: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
13239: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
13240: understand that
13241:
13242: * src/: classes/file.C, classes/mail.C, classes/op.C,
13243: classes/xdoc.C, include/pa_cache_managers.h,
13244: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13245: include/pa_stylesheet_manager.h, main/pa_request.C,
13246: main/pa_stylesheet_manager.C, types/pa_vimage.C,
13247: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
13248: ctor call [relying on implicit String::Body(cstr) call]
13249:
13250: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
13251: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
13252: object initialization order [two places]
13253:
13254: 2003-12-10 paf
13255:
13256: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
13257: << time now ok
13258:
13259: * operators.txt, src/main/pa_sql_driver_manager.C,
13260: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
13261: operational
13262:
13263: * ChangeLog, operators.txt, src/classes/xdoc.C,
13264: src/include/pa_charset.h, src/include/pa_sql_connection.h,
13265: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
13266: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
13267: back operational
13268:
13269: 2003-12-02 paf
13270:
13271: * src/types/pa_vmail.C: bugfix:
13272: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
13273: as-is forced]
13274:
13275: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
13276: exceptions out of libxml callbacks: reimplemented error handling
13277: of http://localhost, parser://method and safemode check callbacks
13278:
13279: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
13280: [merged from HEAD]
13281:
13282: * src/classes/image.C: nothing: comment removed
13283:
13284: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
13285: addresses to int
13286:
13287: 2003-12-01 paf
13288:
13289: * src/main/pa_xml_io.C: bugfix: typo
13290:
13291: * src/main/pa_globals.C: bugfix: win32: compile prob
13292:
13293: * src/classes/xdoc.C: bugfix: typo
13294:
13295: * src/main/pa_xml_io.C: todo: safe mode check not to throw
13296: exception
13297:
13298: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
13299:
13300: 2003-11-28 paf
13301:
13302: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
13303: all xml documents read
13304:
13305: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
13306:
13307: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13308: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
13309: replaced original open mech of xdoc::create & co to use libxml
13310: open, so that this would work for root document todo: safe mode
13311: checks to libxml: ideally to some 1 point
13312:
13313: * src/main/pa_xml_io.C: comment
13314:
13315: * operators.txt, src/main/pa_xml_io.C: leading / in
13316: http://parser[abscent params]
13317:
13318: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
13319: works. todo: maybe replace original open mech of xdoc::create &
13320: co to use libxml open, so that this would work for root document
13321:
13322: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
13323: "parser://method/params/here"> <test> &test^; </test> }]
13324:
13325: ^taint[^xdoc.string[]]
13326:
13327: @method[param] <!ENTITY test
13328: "test-entity-value+$form:user+$param!">
13329:
13330: 2003-11-27 paf
13331:
13332: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
13333:
13334: * src/classes/date.C: bugfix: typo error
13335:
13336: 2003-11-26 paf
13337:
13338: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
13339: src/main/Makefile.am, src/main/main.vcproj,
13340: src/main/pa_globals.C, src/main/pa_request.C,
13341: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
13342: xml errors to hash<thread_id,error> reorganization: xml io moved
13343: to pa_xml_io.C/h
13344:
13345: * src/types/pa_value.h: warnings: --
13346:
13347: 2003-11-25 paf
13348:
13349: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
13350: whatever)
13351:
13352: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
13353: a, (c?x:y, z)
13354:
13355: * src/main/untaint.C: bugfix: consequences of not reading this
13356: comment: CORD_pos_chars_left /* Number of characters in cache.
13357: <= 0 ==> none */
13358:
13359: * src/include/pa_array.h: removed needless checks
13360:
13361: 2003-11-24 paf
13362:
13363: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
13364: removed limit: now $form:xxx can be accessed anytime, even in
13365: @auto/conf [and request/response:charset still can be changed
13366: anytime]
13367:
13368: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
13369: now not transcodes response body
13370:
13371: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
13372: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
13373: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
13374: $xdoc.firstChild.firstChild.nodeValue[different]
13375: ^taint[^xdoc.string[]]
13376:
13377: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
13378: workaround: static Hash::allocates -> static Hash_allocates
13379:
13380: 2003-11-21 paf
13381:
1.116 moko 13382: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
13383: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
13384: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 13385:
13386: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
13387:
13388: * src/classes/mail.C: bugfix: typo
13389:
13390: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 13391: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
13392: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
13393: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
13394: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 13395: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
13396:
13397: * src/main/pa_exec.C: bug in safe mode
13398:
13399: * src/include/Makefile.am: pa_xml_exception.h
13400:
13401: * src/targets/isapi/parser3isapi.C: more warnings --
13402:
13403: 2003-11-20 paf
13404:
13405: * src/: classes/math.C, classes/op.C, classes/string.C,
13406: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
13407: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
13408: --
13409:
13410: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
13411: more warnings --
13412:
13413: * src/classes/xdoc.C: more warnings --
13414:
13415: * src/classes/: date.C, image.C, xdoc.C: more warnings --
13416:
13417: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
13418: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
13419:
13420: * src/: classes/date.C, classes/file.C, classes/hash.C,
13421: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
13422: classes/table.C, include/pa_cache_managers.h,
13423: include/pa_stylesheet_connection.h, main/pa_request.C,
13424: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
13425: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
13426: --
13427:
13428: * src/main/: execute.C, pa_request.C: old forgotten todo: when
13429: can't report problem (undefined @unhandled_exception) problem
13430: source string were not reported
13431:
13432: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13433: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13434: classes/hashfile.C, classes/image.C, classes/int.C,
13435: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13436: classes/response.C, classes/string.C, classes/table.C,
13437: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13438: include/pa_array.h, include/pa_cache_managers.h,
13439: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13440: include/pa_config_fixed.h, include/pa_dictionary.h,
13441: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
13442: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
13443: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
13444: include/pa_request.h, include/pa_request_charsets.h,
13445: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
13446: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13447: include/pa_stack.h, include/pa_string.h,
13448: include/pa_stylesheet_connection.h,
13449: include/pa_stylesheet_manager.h, include/pa_table.h,
13450: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13451: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
13452: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
13453: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13454: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
13455: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
13456: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
13457: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
13458: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
13459: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
13460: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
13461: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13462: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
13463: targets/isapi/parser3isapi.C, types/pa_junction.h,
13464: types/pa_method.h, types/pa_value.C, types/pa_value.h,
13465: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
13466: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
13467: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13468: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13469: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13470: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
13471: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13472: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13473: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13474: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13475: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13476: types/pa_vresponse.h, types/pa_vstateless_class.C,
13477: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13478: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13479: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13480: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13481: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13482: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
13483: const IDENT
13484:
13485: * src/: include/pa_array.h, include/pa_pool.h,
13486: include/pa_request.h, include/pa_string.h, include/pa_table.h,
13487: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
13488: types/pa_wcontext.h: more warnings --
13489:
13490: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
13491: classes/file.C, classes/hash.C, classes/hashfile.C,
13492: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13493: classes/memory.C, classes/op.C, classes/string.C,
13494: classes/table.C, classes/xdoc.C, classes/xnode.C,
13495: include/pa_config_includes.h, include/pa_operation.h,
13496: include/pa_sql_connection.h, include/pa_table.h,
13497: include/pa_types.h, lib/ltdl/config_fixed.h,
13498: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
13499: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
13500: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
13501: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
13502: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
13503: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
13504: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
13505: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
13506: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
13507: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
13508: types/pa_vmail.C, types/pa_vobject.C,
13509: types/pa_vstateless_class.h, types/pa_vtable.C,
13510: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13511: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
13512: on all projects (except libltdl=off & libsdbm=level3) found
13513: several unitialized vars
13514:
13515: 2003-11-19 paf
13516:
13517: * src/classes/op.C: more ansi C++ comp
13518:
13519: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13520: src/main/pa_request.C: ^cache[...]{body}{catch block with
13521: $exception.handled[cache] meaning "get expired cache, if any.
13522: else error"}
13523:
13524: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
13525: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
13526: ^cache[...]{body}{catch code with $exception.cache field}
13527:
13528: 2003-11-12 paf
13529:
13530: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
13531: [copy/paste bug]
13532:
13533: 2003-11-11 paf
13534:
13535: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
13536: failed]
13537:
13538: 2003-11-10 paf
13539:
13540: * src/types/pa_vconsole.h: flush
13541:
13542: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
13543: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
13544: read/write [for nntp]
13545:
13546: * operators.txt: mysql: transaction support: ?autocommit=0
13547:
13548: * operators.txt: comment: updated
13549:
13550: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
13551: serialize version and exipire now removes entries
13552:
13553: * operators.txt: ^hashfile.delete[] removes files altogether [and
13554: dir, if could]
13555:
13556: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
13557: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
13558: removes files altogether [and dir, if could]
13559:
13560: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
13561: nonexistent pair. .c coded that that was error. fixed
13562:
13563: * src/types/pa_vhashfile.C: sdbm: exception type change to
13564: file.access [regretfull can't split it to different exceptions
13565: without modifying sdbm source wich would prefer not to]
13566:
13567: 2003-11-07 paf
13568:
13569: * src/: classes/date.C, classes/file.C, classes/hash.C,
13570: classes/hashfile.C, classes/image.C, classes/table.C,
13571: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
13572: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
13573: main/execute.C, main/main.vcproj, main/pa_pool.C,
13574: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
13575: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
13576: types/pa_vstateless_class.h: resurrected: pool idea. now only for
13577: destructing objects at request processing end
13578:
13579: 2003-11-06 paf
13580:
13581: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
13582: updates
13583:
13584: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
13585: to include sdbm
13586:
1.116 moko 13587: * src/include/: pa_config_includes.h, pa_version.h: our
13588: replacements of max& co only for cpp
1.95 moko 13589:
13590: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
13591: upper dir, .am updated
13592:
13593: * tests/todo.txt: hashfile: done
13594:
13595: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
13596: expiration [time in value. todo: move time to key]
13597:
13598: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
13599:
13600: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
13601: to do that in foreach, no errors, but surely wrong]
13602:
13603: * operators.txt, src/types/pa_vhashfile.C,
13604: src/types/pa_vhashfile.h: hashfile: clear and proper locking
13605:
13606: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
13607: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
13608: foreach
13609:
13610: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
13611: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
13612:
13613: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
13614: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
13615:
13616: * src/: include/pa_memory.h, targets/cgi/parser3.C,
13617: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13618: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
13619: get/put [raw]
13620:
13621: * src/: classes/op.C, main/pa_os.C: just linked
13622:
13623: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
13624: XmlException changes
13625:
13626: * src/: include/pa_charset.h, include/pa_globals.h,
13627: include/pa_stylesheet_connection.h, main/pa_exception.C:
13628: XmlException changes
13629:
13630: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
13631:
13632: * src/: include/pa_common.h, include/pa_exception.h,
13633: main/main.vcproj, main/pa_common.C, include/pa_os.h,
13634: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
13635: main/pa_xml_exception.C: locking move to pa_os [along with
13636: pa_sleep] apr-impl locking done
13637:
13638: * configure, configure.in, operators.txt, parser3.sln,
13639: src/classes/classes.vcproj, src/classes/hashfile.C,
13640: src/classes/xdoc.C, src/include/pa_config_fixed.h,
13641: src/include/pa_exception.h, src/include/pa_globals.h,
13642: src/include/pa_memory.h, src/include/pa_version.h,
13643: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
13644: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
13645: src/main/compile.tab.C, src/main/main.vcproj,
13646: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
13647: src/types/Makefile.am, src/types/pa_vhash.C,
13648: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
13649: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
13650: again with sdbm from apache
13651:
13652: 2003-11-05 paf
13653:
13654: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13655: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
13656: \parser3project dir anymore
13657:
13658: * src/main/pa_charset.C: bugfix: had broken binary search [copied
13659: thoughtlessly from xalan]
13660:
13661: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
13662: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
13663: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
13664:
13665: * src/main/helpers/CaseFolding.txt:
13666: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
13667:
13668: 2003-11-04 paf
13669:
13670: * operators.txt: comment: ^mail:send[$.options[
13671:
13672: * src/classes/table.C: compiled on unix
13673:
1.116 moko 13674: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 13675:
13676: * src/classes/mail.C: compiled on unix
13677:
13678: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
13679: src/types/pa_vmail.h: !^mail:send[
13680: $.options[unix: string to append to sendmail command
13681: line]
13682:
13683: * operators.txt, src/classes/table.C, src/main/pa_string.C,
13684: tests/todo.txt: ^table.save[... $.separator[^#09]
13685: $.encloser["] <nothing> by default
13686:
13687: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
13688: !$.separator[^#09] !$.encloser["] <nothing> by
13689: default
13690:
13691: 2003-11-03 paf
13692:
13693: * operators.txt, src/classes/table.C, src/main/pa_common.C:
13694: ^table::load[; options: !$.column-separator[^#09]
13695: !$.column-encloser["]
13696:
13697: * operators.txt, src/include/pa_config_fixed.h,
13698: src/types/pa_vrequest.C: $request:document-root
13699:
13700: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
13701: [already included into uri=xxx]
13702:
13703: * operators.txt, src/classes/image.C, tests/todo.txt:
13704: ^image.gif[filename] for $response:download
13705:
13706: * src/classes/date.C: minor precaution
13707:
13708: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
13709: !^date.unix-timestamp[]
13710:
13711: 2003-10-30 paf
13712:
13713: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
13714: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
13715:
13716: * src/classes/: date.C, image.C: improvement diagnostics:
13717: $now[^date::create[$undefined]] now is error
13718:
13719: * src/main/pa_common.C: read errors would now be reported 'actually
13720: read -1 bytes'
13721:
13722: 2003-10-24 paf
13723:
13724: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
13725: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
13726: src/main/Makefile.am, src/targets/cgi/Makefile.am,
13727: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
13728:
13729: 2003-10-22 paf
13730:
13731: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
13732:
13733: 2003-10-21 paf
13734:
13735: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
13736: fixed: string.match[g] without <'> option produced columns with
13737: NULL's, which gpf'ed at table.save time
13738:
13739: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
13740: recoursion' message with intensive throw-catches fixed: incorrect
13741: name and line (one name upper then needed) in error message about
13742: problems inside try block
13743:
13744: 2003-10-10 paf
13745:
13746: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
13747: check offset argument for validity did that in String::Body::pos
13748: myself http://i2/tasks/edit/?id=4577425257580789777
13749:
13750: 2003-10-07 paf
13751:
13752: * src/main/: compile.tab.C, compile.y: ^if ( better error:
13753: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
13754:
13755: 2003-10-03 paf
13756:
13757: * parser3.sln, src/include/pa_dictionary.h,
13758: src/main/pa_dictionary.C, src/main/pa_string.C,
13759: src/targets/cgi/parser3.vcproj: dictionary optimized by
13760: precalculating cstr&length
13761:
13762: 2003-10-02 paf
13763:
13764: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13765: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13766: main/pa_stylesheet_manager.C: bugfix: ^throw context were
13767: saved/restored incompletely http://www.parser.ru/forum/?id=21484
13768:
13769: 2003-09-30 paf
13770:
13771: * src/main/pa_string.C: string::replace bug fix [were ignoring
13772: occurrances after lang-mismatched
13773:
13774: 2003-09-29 paf
13775:
13776: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
13777: helper
13778:
13779: * src/main/pa_string.C: string::serialize bug fix with
13780: zero-terminator
13781:
13782: * src/classes/table.C: ^nameless_table.save column row now has no
13783: \t at the end
13784:
13785: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
13786: @postprocess now takes $response:body/download
13787:
13788: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
13789: error message
13790:
13791: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
13792:
13793: * src/classes/table.C: bugfix: flip: must produce nameless
13794: http://i2/tasks/edit/?id=4573405524674081244
13795:
13796: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
13797: main/helpers/simple_folding.pl: utf-8 upper/lower
13798:
13799: * src/main/pa_common.C: bugfix: utf signature were not ignored due
13800: to typo error http://i2/tasks/edit/?id=4573354650786434584
13801:
13802: 2003-09-26 paf
13803:
13804: * src/main/untaint.C: removed needless field
13805:
13806: * src/main/untaint.C: removed needless const
13807:
13808: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
13809: String.for_each bug fixed [omited one-char cases]
13810:
13811: * src/include/pa_stack.h: bugfix: before collecting garbage,
13812: runtime-executor stack were cleared... BADLY
13813:
13814: * src/main/pa_string.C: ^stirng.replace code used old
13815: param-convention on langs.append, fixed that search fo the like,
13816: found none
13817:
13818: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
13819: string::serialize/deserialize implemented Language enum assigned
13820: meaningful letters [more convinient for debugging. read warning
13821: before adding/changing anything]
13822:
13823: 2003-09-25 paf
13824:
13825: * src/: include/pa_string.h, include/pa_version.h,
13826: main/pa_string.C, main/untaint.C: templates and anonymous unions
13827: differences on unix
13828:
13829: * parser3.sln, src/classes/file.C, src/classes/image.C,
13830: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
13831: src/classes/xdoc.C, src/classes/xnode.C,
13832: src/include/pa_cache_managers.h, src/include/pa_charset.h,
13833: src/include/pa_charsets.h, src/include/pa_common.h,
13834: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
13835: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
13836: src/include/pa_table.h, src/lib/cord/cordbscs.c,
13837: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
13838: src/lib/cord/include/cord.h, src/main/compile.tab.C,
13839: src/main/compile_tools.h, src/main/pa_charset.C,
13840: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
13841: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
13842: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
13843: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
13844: src/types/pa_vmail.C, src/types/pa_vmath.C,
13845: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
13846: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
13847:
13848: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
13849: functions aligned to that of eeparser3 look
13850:
13851: * src/lib/cord/cordprnt.c: removed warnings
13852:
13853: 2003-09-24 paf
13854:
13855: * src/: classes/file.C, classes/image.C, classes/mail.C,
13856: classes/op.C, classes/xdoc.C, classes/xnode.C,
13857: include/pa_cache_managers.h, include/pa_charset.h,
13858: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
13859: include/pa_sql_driver_manager.h, include/pa_string.h,
13860: include/pa_stylesheet_manager.h, include/pa_table.h,
13861: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
13862: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
13863: main/pa_sql_driver_manager.C, main/pa_string.C,
13864: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
13865: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
13866: types/pa_vstateless_class.h, types/pa_vstatus.C,
13867: types/pa_vxnode.C: v() functions of String::Body,
13868: String::Languages and String itself StringBody->String::Body
13869:
13870: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13871: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
13872: never optimized anything. todo: somehow speed up harder cases:
13873: concatenationA+concatenationB when last block of A and first of B
13874: contain same letters
13875:
13876: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13877: lib/cord/include/cord.h: langs: speed up by joining adjucent
13878: blocks of same char [CORD_append_block]
13879:
13880: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13881: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
13882: save space by extending blocks when appending block with c ==
13883: lastblock.c
13884:
13885: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
13886: working yet :( but more working &understood :)
13887:
13888: * src/: classes/table.C, include/pa_string.h,
13889: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
13890:
13891: 2003-09-23 paf
13892:
13893: * src/main/untaint.C: $a[ok!] $a works!
13894:
13895: * src/main/untaint.C: something even more works :)
13896:
13897: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13898: something more works :)
13899:
13900: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13901: lib/cord/cordxtra.c: something already works :)
13902:
13903: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
13904: serialize&deserialize
13905:
13906: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
13907: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
13908: main/untaint.C: main idea implemented, details left
13909:
13910: 2003-09-22 paf
13911:
13912: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
13913:
13914: * src/classes/xnode.C: copy/paste comment bugfix
13915:
13916: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
13917: allocator returns 0, just die.
13918: http://i2/tasks/edit/?id=4570798492410259445
13919:
13920: * src/classes/xdoc.C: copy/paste comment bugfix
13921:
13922: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
13923: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
13924: xnode: getAttributeNS setAttributeNS removeAttributeNS
13925: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
13926:
13927: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
13928: chars due to bitwise operation signed-char error]
13929:
13930: 2003-09-19 paf
13931:
13932: * src/types/pa_wcontext.C: output message: more practical
13933: suggestion
13934:
13935: * src/main/pa_common.C, operators.txt: merged
13936: $f[^file::load[binary;http://...]] $f.tables
13937:
13938: 2003-09-02 paf
13939:
13940: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
13941: flush stdout without referencing 'stdout' symbol. to hell with
13942: non-ansi libraries without 'stdout' symbol
13943:
13944: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
13945: unix (users reported problems with some old libc)
13946:
13947: * src/types/pa_vdate.h: forgot initializer
13948:
13949: 2003-09-01 paf
13950:
13951: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
13952: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
13953: zone]
13954:
13955: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
13956:
13957: 2003-08-19 paf
13958:
13959: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
13960: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
13961: simplified a little
13962:
13963: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
13964: [lost fix from 3.0.8]
13965:
13966: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
13967: visible here }
13968:
13969: bug fix
13970:
13971: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
13972:
13973: * src/main/compile.tab.C: initialized couple of variables about
13974: which user reported runtime problems when parser were compiled
13975: with VC7, warning level4. study shows that later in bison
13976: they've fixed that. would migrate to latest bison someday
13977:
13978: * src/types/pa_vmail.C: turned off recoding in gmime (were still
13979: recoding headers)
13980:
13981: * src/types/pa_vmail.C: works as before, same charset problems:
13982: gmime recodes to UTF-8 only headers, not body. so not recoding
13983: anything for now
13984:
13985: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
13986: problems with body
13987:
13988: * src/types/pa_vmail.C: mail_receive just compiled
13989:
13990: 2003-08-18 paf
13991:
13992: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13993: main/main.vcproj, types/types.vcproj: win32: continued process
13994: detaching from \parser3project directory
13995:
13996: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
13997: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
13998: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
13999: src/lib/pcre/pcre_dftables.dsp,
14000: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
14001: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
14002: src/types/types.dsp: moved to MSVC 7
14003:
14004: * gnu.vcproj.vspscc, parser3.vssscc,
14005: src/classes/classes.vcproj.vspscc,
14006: src/lib/cord/cord.vcproj.vspscc,
14007: src/lib/ltdl/libltdl.vcproj.vspscc,
14008: src/lib/md5/md5.vcproj.vspscc,
14009: src/lib/pcre/pcre_dftables.vcproj.vspscc,
14010: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
14011: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
14012: src/targets/isapi/parser3isapi.vcproj.vspscc,
14013: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
14014: moved to MSVC 7
14015:
14016: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
14017: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
14018: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
14019: src/lib/pcre/pcre_dftables.vcproj,
14020: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
14021: src/targets/cgi/parser3.vcproj,
14022: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
14023: new VS project files
14024:
14025: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
14026: .NET to detect Jalindi Igloo capabilities.
14027:
14028: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 14029: src/classes/classes.awk, src/doc/footer.htm,
14030: src/include/pa_config_fixed.h, src/include/pa_version.h,
14031: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 14032: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
14033: src/types/pa_vmail.C: merged 3.1.0 latest changes
14034:
14035: 2003-08-15 paf
14036:
14037: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14038: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
14039:
14040: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14041: non-ascii <yyy> now encoded correctly
14042:
14043: 2003-07-29 paf
14044:
1.116 moko 14045: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
14046: dist
1.95 moko 14047:
14048: * src/types/pa_vmail.C: just started --with-mail-receive
14049:
14050: 2003-07-28 paf
14051:
1.116 moko 14052: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
14053: dependence in src/classes, src/lib/gc now in dist
1.95 moko 14054:
14055: * src/main/pa_string.C: ^cache bug fix [were not working at all]
14056:
14057: 2003-07-25 paf
14058:
14059: * src/doc/footer.htm: year
14060:
14061: 2003-07-24 paf
14062:
14063: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
14064: fix
14065:
14066: * src/include/pa_version.h: release
14067:
1.116 moko 14068: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 14069:
14070: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
14071: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
14072: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
14073: getting rid of win32xml pseudo project
14074:
14075: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
14076:
1.116 moko 14077: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
14078: configure.in, operators.txt, parser3.dsw,
1.95 moko 14079: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 14080: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 14081: src/classes/classes.C, src/classes/classes.awk,
14082: src/classes/classes.dsp, src/classes/classes.h,
14083: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14084: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14085: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14086: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14087: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14088: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14089: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
14090: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 14091: src/include/pa_array.h, src/include/pa_cache_managers.h,
14092: src/include/pa_charset.h, src/include/pa_charsets.h,
14093: src/include/pa_common.h, src/include/pa_config_auto.h.in,
14094: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
14095: src/include/pa_dictionary.h, src/include/pa_dir.h,
14096: src/include/pa_exception.h, src/include/pa_exec.h,
14097: src/include/pa_globals.h, src/include/pa_hash.h,
14098: src/include/pa_memory.h, src/include/pa_opcode.h,
14099: src/include/pa_operation.h, src/include/pa_pool.h,
14100: src/include/pa_pragma_pack_begin.h,
1.95 moko 14101: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
14102: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
14103: src/include/pa_sapi.h, src/include/pa_socks.h,
14104: src/include/pa_sql_connection.h,
14105: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
14106: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
14107: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14108: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 14109: src/include/pa_uue.h, src/lib/Makefile.am,
14110: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
14111: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
14112: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
14113: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 14114: src/lib/cord/include/ec.h,
14115: src/lib/cord/include/private/Makefile.am,
14116: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 14117: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
14118: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 14119: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 14120: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
14121: src/main/compile_tools.C, src/main/compile_tools.h,
14122: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
14123: src/main/pa_cache_managers.C, src/main/pa_charset.C,
14124: src/main/pa_charsets.C, src/main/pa_common.C,
14125: src/main/pa_dictionary.C, src/main/pa_dir.C,
14126: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 14127: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
14128: src/main/pa_request.C, src/main/pa_socks.C,
14129: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14130: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 14131: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
14132: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
14133: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
14134: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
14135: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
14136: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
14137: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 14138: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
14139: src/targets/isapi/parser3isapi.dsp,
14140: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 14141: src/types/pa_junction.h, src/types/pa_method.h,
14142: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 14143: src/types/pa_vclass.C, src/types/pa_vclass.h,
14144: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14145: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14146: src/types/pa_vdouble.h, src/types/pa_venv.h,
14147: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14148: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14149: src/types/pa_vimage.C, src/types/pa_vimage.h,
14150: src/types/pa_vint.h, src/types/pa_vjunction.h,
14151: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
14152: src/types/pa_vmath.h, src/types/pa_vmemory.h,
14153: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14154: src/types/pa_vobject.C, src/types/pa_vobject.h,
14155: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14156: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14157: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14158: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14159: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14160: src/types/pa_vstring.h, src/types/pa_vtable.C,
14161: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14162: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14163: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14164: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14165: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
14166: HEAD
14167:
14168: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
14169: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
14170: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
14171: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
14172: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
14173: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
14174: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
14175: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
14176: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
14177: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
14178: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
14179: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
14180: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
14181: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
14182: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
14183: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
14184: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
14185: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
14186: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
14187: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
14188: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14189: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
14190: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
14191: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
14192: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
14193: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
14194: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
14195: outputs/create-dir, results/001.processed, results/002.processed,
14196: results/003.processed, results/004.processed,
14197: results/005.processed, results/006.processed,
14198: results/007.processed, results/008.processed,
14199: results/009.processed, results/010.processed,
14200: results/011.processed, results/012.processed,
14201: results/013.processed, results/014.processed,
14202: results/015.processed, results/016.processed,
14203: results/017.processed, results/018.processed,
14204: results/019.processed, results/020.processed,
14205: results/021.processed, results/022.processed,
14206: results/023.processed, results/024.processed,
14207: results/025.processed, results/026.processed,
14208: results/027.processed, results/028.processed,
14209: results/029.processed, results/030.processed,
14210: results/031.processed, results/032.processed,
14211: results/033.processed, results/034.processed,
14212: results/035.processed, results/036.processed,
14213: results/037.processed, results/038.processed,
14214: results/039.processed, results/040.processed,
14215: results/041.processed, results/042.processed,
14216: results/043.processed, results/044.processed,
14217: results/045.processed, results/046.processed,
14218: results/047.processed, results/048.processed,
14219: results/049.processed, results/050.processed,
14220: results/051.processed, results/052.processed,
14221: results/053.processed, results/054.processed,
14222: results/055.processed, results/056.processed,
14223: results/057.processed, results/058.processed,
14224: results/059.processed, results/060.processed,
14225: results/061.processed, results/062.processed,
14226: results/063.processed, results/064.processed,
14227: results/065.processed, results/066.processed,
14228: results/067.processed, results/068.processed,
14229: results/069.processed, results/070.processed,
14230: results/071.processed, results/072.processed,
14231: results/073.processed, results/074.processed,
14232: results/075.processed, results/076.processed,
14233: results/077.processed, results/078.processed,
14234: results/079.processed, results/080.processed,
14235: results/081.processed, results/082.processed,
14236: results/083.processed, results/084.processed,
14237: results/085.processed, results/086.processed,
14238: results/087.processed, results/088.processed,
14239: results/089.processed, results/090.processed,
14240: results/091.processed, results/092.processed,
14241: results/093.processed, results/094.processed,
14242: results/095.processed, results/096.processed,
14243: results/097.processed, results/098.processed,
14244: results/099.processed, results/100.processed,
14245: results/101.processed, results/102.processed,
14246: results/103.processed, results/104.processed,
14247: results/105.processed, results/106.processed,
14248: results/107.processed, results/108.processed,
14249: results/109.processed, results/110.processed,
14250: results/111.processed, results/112.processed,
14251: results/113.processed, results/114.processed,
14252: results/115.processed, results/116.processed,
14253: results/117.processed, results/118.processed,
14254: results/119.processed, results/120.processed,
14255: results/121.processed, results/122.processed,
14256: results/123.processed, results/124.processed,
14257: results/125.processed, results/126.processed,
14258: results/127.processed, results/128.processed,
14259: results/129.processed, results/130.processed,
14260: results/131.processed, results/132.processed,
14261: results/133.processed, results/134.processed,
14262: results/135.processed, results/136.processed,
14263: results/137.processed, results/138.processed,
14264: results/139.processed, results/140.processed,
14265: results/141.processed: merged(copied) to HEAD from template_gc
14266:
14267: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
14268: towards \parser3project not having to be in root
14269:
14270: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
14271: module compiled [were minor unnecessary changes in lib/md5
14272: interface]
14273:
14274: * src/include/pa_version.h: release
14275:
14276: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
14277:
14278: * src/classes/math.C: merged uuid bugfix
14279:
14280: * tests/: 141.html, results/141.processed: fixed bug with
14281: too-small-a-buffer
14282:
14283: * src/classes/math.C: uuid bugfix
14284:
14285: * tests/: 141.html, Makefile, results/005.processed,
14286: results/030.processed, results/075.processed,
14287: results/078.processed: to reflect date format change (were -
14288: become ' ')
14289:
14290: * src/classes/math.C: uuid bugfix
14291:
14292: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
14293: debug/release changes
14294:
14295: * src/lib/md5/pa_md5c.c: PA_ -> pa_
14296:
14297: 2003-07-23 paf
14298:
14299: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14300: renamed a little [to move to comman naming conv]
14301:
1.116 moko 14302: * src/targets/Makefile.am: apache13 splitted to simplify apache
14303: build
1.95 moko 14304:
14305: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
14306: main/pa_request.C, main/pa_sql_driver_manager.C,
14307: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
14308: stack top_index() fixed
14309:
14310: * src/main/pa_globals.C: minor style changes
14311:
14312: * src/: classes/op.C, include/pa_sql_connection.h: connection
14313: closing/caching fixed [connections were not closed/put to cache]
14314:
14315: 2003-07-22 paf
14316:
14317: * INSTALL: gc part updated stightly
14318:
14319: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
14320: new sapi interface
14321:
14322: * src/classes/file.C: comment on OS
14323:
14324: * src/main/pa_string.C: removed reduntant invariant check [there is
14325: one deeper in cord lib]
14326:
14327: * src/main/pa_exec.C: on win32 bugfix in handling shbang
14328:
14329: * src/main/pa_memory.C: out of memory is no longer coredump
14330:
14331: * INSTALL: disable-threads adviced
14332:
14333: 2003-07-21 paf
14334:
1.116 moko 14335: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 14336:
14337: * src/classes/file.C: file::exec/cgi environment variables now must
14338: be UPPERCASE and A-Z 0-9 _-
14339:
14340: * src/classes/file.C: env passing fixed
14341:
14342: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
14343:
14344: * src/main/pa_common.C: http:// CRLF now
14345:
14346: 2003-07-02 paf
14347:
14348: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
14349: fields to reflect their real meaning
14350:
14351: 2003-06-27 paf
14352:
14353: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
14354: include/pa_hash.h, main/pa_charset.C: merged from HEAD
14355: file::exec/cgi .charset
14356:
14357: 2003-06-26 paf
14358:
14359: * ChangeLog, src/classes/file.C, src/classes/hash.C,
14360: src/classes/image.C, src/classes/op.C, src/classes/string.C,
14361: src/classes/table.C: fixed several uninitialized local
14362: structures. notably ^hash.foreach now inserts delimiters
14363: properly [were inserting it before first body]
14364:
14365: 2003-06-24 paf
14366:
14367: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
14368:
14369: 2003-06-20 paf
14370:
14371: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
14372: src/main/pa_globals.C: introducing
14373: $f[^file::load[binary;http://...]] $f.tables
14374:
14375: 2003-06-06 paf
14376:
14377: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
14378: table. [were method lookup: inconsistent]
14379:
14380: 2003-06-02 paf
14381:
14382: * src/include/pa_memory.h: empty string clone fixed to return
14383: writable memory
14384:
14385: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
14386: were not appended] which violated string invariant
14387:
14388: 2003-05-30 paf
14389:
14390: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
14391: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
14392:
14393: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
14394: GMT ; RFC 822, updated by RFC 1123
14395:
14396: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
14397: targets/isapi/parser3isapi.C: initialized request_info properly
14398:
14399: * src/classes/xnode.C: found minor bug, commended for future
14400:
14401: 2003-05-28 paf
14402:
14403: * src/classes/form.C: request_info.content_length can't be <0,
14404: size_t for some time
14405:
14406: 2003-05-26 paf
14407:
14408: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
14409: forgotten <0 changed to !=STRING_NOT_FOUND
14410:
14411: * src/classes/math.C: merged ffffu from HEAD
14412:
14413: 2003-05-11 paf
14414:
14415: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
14416:
14417: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
14418: premature doc free. transformed document had xmlDoc reference
14419: stored to non-gc-memory (libgdome) added holding-reference
14420:
14421: 2003-04-29 paf
14422:
14423: * src/main/pa_globals.C: started digging on double free. on win32
14424: found that that's perfectly normal.
14425:
14426: 2003-04-25 paf
14427:
14428: * src/classes/table.C: table.join bug fix [bad limit check]
14429:
14430: * src/classes/math.C: merged from HEAD: simpiler hash_string
14431:
14432: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
14433: print anything. changed to quicker and simplier code
14434:
14435: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
14436: strict a check]
14437:
14438: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
14439:
14440: 2003-04-24 paf
14441:
14442: * src/include/pa_table.h: too strict assert loosened
14443:
14444: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
14445: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
14446: report
14447:
14448: 2003-04-21 paf
14449:
1.116 moko 14450: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 14451:
14452: * src/main/pa_globals.C: pcre memory management changed to use GC
14453: memory
14454:
14455: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
14456: xmlMallocAtomic [author agreed to my suggestion], used that
14457:
14458: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
14459:
14460: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
14461: types/pa_vmail.C: attributed_meaning_to_string added
14462: L_UNSPECIFIED piece which was sortof OK, but violated string
14463: invariant [assertion barked on that] changed to L_PASS_APPEND,
14464: made that param obligatory
14465:
14466: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
14467: fixed [assert helped]
14468:
14469: * src/include/pa_string.h: assert added [looking for bug]
14470:
14471: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
14472: names on Win32 considered disk-global
14473:
14474: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
14475: considered disk-global
14476:
14477: 2003-04-18 paf
14478:
14479: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
14480: filenames
14481:
14482: * src/main/untaint.C: enabled '~' letter in filenames
14483:
14484: 2003-04-16 paf
14485:
14486: * src/classes/file.C: small bug introduced in autoptr times fixed
14487:
14488: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
14489: HEAD
14490:
1.116 moko 14491: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 14492:
14493: 2003-04-15 paf
14494:
14495: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14496: src/lib/md5/pa_md5c.c, tests/141.html,
14497: tests/results/141.processed: merged from head ^math:uuid[]
14498: ^math:uid64[] ^math:md5[string]
14499:
14500: test added: 141.html
14501:
14502: * operators.txt, src/classes/math.C: ^math:uid64[]
14503:
14504: * src/classes/math.C: ^math:uuid[]
14505:
14506: * operators.txt, src/classes/math.C: ^math:uuid[]
14507:
14508: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14509: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
14510:
14511: * operators.txt, src/classes/file.C, src/include/pa_common.h,
14512: src/include/pa_config_fixed.h, src/main/pa_common.C:
14513: ^file::load[mode;name; $.offset $.limit
14514:
14515: 2003-04-14 paf
14516:
14517: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14518: started ^math:md5
14519:
14520: * src/classes/table.C, src/include/pa_array.h,
14521: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
14522: tests/results/140.processed: table $.reverse option works in
14523: create&co table $.distinct[tables] bug fix merged
14524:
14525: * src/: classes/table.C, include/pa_table.h: table
14526: $.distinct[tables] bug fixed
14527:
14528: * src/classes/table.C: more warnings
14529:
14530: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
14531: removed checks in table::set_current, moved them back to
14532: table::locate implemented table::create/join ñ $.reverse
14533:
14534: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
14535: removed checks in table::set_current, moved them back to
14536: table::locate
14537:
14538: 2003-04-11 paf
14539:
14540: * operators.txt, src/classes/date.C, src/classes/table.C,
14541: src/include/pa_array.h, src/include/pa_common.h,
14542: src/include/pa_config_includes.h, src/include/pa_string.h,
14543: src/include/pa_table.h, src/main/pa_request.C,
14544: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14545: src/main/pa_table.C: merged from HEAD from
14546: before_append_array_limit_sense_change to
14547: after_append_array_limit_sense_change
14548:
14549: * src/classes/table.C: typo
14550:
14551: * operators.txt, src/classes/date.C, src/classes/table.C,
14552: src/include/pa_array.h, src/include/pa_common.h,
14553: src/include/pa_config_includes.h, src/include/pa_globals.h,
14554: src/include/pa_table.h, src/main/pa_array.C,
14555: src/main/pa_globals.C, src/main/pa_request.C,
14556: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14557: src/main/pa_table.C: append_array_limit_sense_change locate
14558: accepts options same as create new option: $.reverse(1) [do not
14559: work in table::create]
14560:
14561: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
14562: (stat xxx,
14563:
14564: * src/classes/: table.C: typo
14565:
14566: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
14567: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
14568: results/130.processed, results/131.processed,
14569: results/132.processed, results/133.processed,
14570: results/134.processed, results/135.processed,
14571: results/136.processed, results/137.processed,
14572: results/138.processed, results/139.processed: added few mustfail
14573: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
14574: date/time 132.html mustfail: access to junction outside of
14575: context 133.html mustfail: access to junction outside of context,
14576: case version 134.html mustfail: hash: adding a key inside of
14577: foreach 135.html mustfail: modifying system class 136.html
14578: mustfail: $.name outside of $hash[here] 137.html mustfail:
14579: appendChild without import 138.html mustfail: invalid encoding
14580: inside of xml 139.html mustfail: bad XPath
14581:
14582: * operators.txt, src/classes/table.C, tests/084.html,
14583: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
14584: tests/129.html, tests/results/125.processed,
14585: tests/results/126.processed, tests/results/127.processed,
14586: tests/results/128.processed, tests/results/129.processed: merged
14587: from HEAD ^table.hash[key][$.distinct[tables]]
14588:
14589: maked appropriate tests [changed one old nonconforming]
14590:
14591: * operators.txt, src/classes/table.C:
14592: ^table.hash[key][$.distinct[tables]]
14593:
14594: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14595: merged fix for found very old xml (dom) bug: were passing
14596: domString objects and later ERROREOUSLY freed them
14597:
14598: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
14599: src/main/pa_charset.C: re-added libgdome patch. regretfully
14600: libgdome bug can not be worked around
14601:
14602: 2003-04-10 paf
14603:
14604: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14605: found very old xml (dom) bug: were passing domString objects and
14606: later ERROREOUSLY freed them
14607:
14608: * src/doc/string.dox, src/include/pa_memory.h,
14609: src/include/pa_string.h, src/lib/cord/cordbscs.c,
14610: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
14611: tests/123.html, tests/124.html, tests/results/001.processed,
14612: tests/results/002.processed, tests/results/003.processed,
14613: tests/results/004.processed, tests/results/005.processed,
14614: tests/results/006.processed, tests/results/008.processed,
14615: tests/results/009.processed, tests/results/010.processed,
14616: tests/results/011.processed, tests/results/012.processed,
14617: tests/results/013.processed, tests/results/014.processed,
14618: tests/results/015.processed, tests/results/016.processed,
14619: tests/results/017.processed, tests/results/018.processed,
14620: tests/results/020.processed, tests/results/021.processed,
14621: tests/results/022.processed, tests/results/023.processed,
14622: tests/results/024.processed, tests/results/025.processed,
14623: tests/results/026.processed, tests/results/027.processed,
14624: tests/results/028.processed, tests/results/029.processed,
14625: tests/results/030.processed, tests/results/031.processed,
14626: tests/results/032.processed, tests/results/033.processed,
14627: tests/results/034.processed, tests/results/035.processed,
14628: tests/results/036.processed, tests/results/037.processed,
14629: tests/results/038.processed, tests/results/039.processed,
14630: tests/results/040.processed, tests/results/041.processed,
14631: tests/results/042.processed, tests/results/043.processed,
14632: tests/results/044.processed, tests/results/045.processed,
14633: tests/results/046.processed, tests/results/047.processed,
14634: tests/results/048.processed, tests/results/049.processed,
14635: tests/results/050.processed, tests/results/051.processed,
14636: tests/results/052.processed, tests/results/053.processed,
14637: tests/results/054.processed, tests/results/055.processed,
14638: tests/results/056.processed, tests/results/057.processed,
14639: tests/results/058.processed, tests/results/059.processed,
14640: tests/results/060.processed, tests/results/061.processed,
14641: tests/results/062.processed, tests/results/063.processed,
14642: tests/results/064.processed, tests/results/065.processed,
14643: tests/results/066.processed, tests/results/067.processed,
14644: tests/results/068.processed, tests/results/069.processed,
14645: tests/results/070.processed, tests/results/071.processed,
14646: tests/results/072.processed, tests/results/073.processed,
14647: tests/results/074.processed, tests/results/075.processed,
14648: tests/results/076.processed, tests/results/077.processed,
14649: tests/results/078.processed, tests/results/079.processed,
14650: tests/results/080.processed, tests/results/081.processed,
14651: tests/results/082.processed, tests/results/083.processed,
14652: tests/results/084.processed, tests/results/085.processed,
14653: tests/results/086.processed, tests/results/087.processed,
14654: tests/results/088.processed, tests/results/089.processed,
14655: tests/results/090.processed, tests/results/091.processed,
14656: tests/results/092.processed, tests/results/093.processed,
14657: tests/results/094.processed, tests/results/095.processed,
14658: tests/results/096.processed, tests/results/097.processed,
14659: tests/results/101.processed, tests/results/102.processed,
14660: tests/results/104.processed, tests/results/105.processed,
14661: tests/results/106.processed, tests/results/107.processed,
14662: tests/results/108.processed, tests/results/109.processed,
14663: tests/results/110.processed, tests/results/111.processed,
14664: tests/results/112.processed, tests/results/113.processed,
14665: tests/results/114.processed, tests/results/115.processed,
14666: tests/results/116.processed, tests/results/117.processed,
14667: tests/results/118.processed, tests/results/119.processed,
14668: tests/results/120.processed, tests/results/121.processed,
14669: tests/results/122.processed, tests/results/123.processed,
14670: tests/results/124.processed: new convention: char* never 0.
14671: assert in cord on that
14672:
14673: * src/main/pa_charset.C: couple more asserts
14674:
14675: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
14676: speedup
14677:
14678: * src/main/pa_charset.C: couple assertions on fantastic situations
14679: added [may be those is the case now?]
14680:
14681: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14682: that's memory from gc_malloc, not from g_malloc :(, but would
14683: hope]
14684:
14685: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14686: that's memory from gc_malloc, not from g_malloc :(, but would
14687: hope]
14688:
14689: * src/main/pa_charset.C: checked custom malloc for returning 0
14690:
14691: 2003-04-09 paf
14692:
14693: * src/classes/date.C: merged ^date.roll changes
14694:
14695: * src/classes/date.C: ^date.roll bug fix
14696:
14697: * src/classes/date.C: ^date.roll now throws less errors: month
14698: shifts handles end of month situation by reducing day number
14699: hour-hole shift reduces hour to recover
14700:
14701: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
14702: Sort by function time
14703:
14704: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
14705: http:// $.charset[] param done
14706:
14707: * tests/: 122.html, results/122.processed: 122 date test <= and ==
14708: added [after volatile fix. passes on win&intel-solaris]
14709:
14710: 2003-04-08 paf
14711:
14712: * src/: classes/file.C, classes/op.C, classes/table.C,
14713: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
14714: include/pa_common.h, include/pa_request_charsets.h,
14715: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14716: main/pa_exec.C, main/pa_request.C, main/untaint.C,
14717: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
14718: types/pa_vresponse.C: started http:// $.charset[] param and
14719: http response charset detection just compiled. todo:test
14720:
14721: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
14722:
14723: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
14724: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
14725: types/pa_vmail.C: changed transcode param converntion along with
14726: string creating convention -- all strings are zero-terminated,
14727: this allowed to fix one remaining String("123", 2) case
14728:
14729: * src/: classes/date.C, classes/file.C, classes/hash.C,
14730: classes/op.C, classes/string.C, classes/table.C,
14731: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
14732: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
14733: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14734: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
14735: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
14736: violated String::invariant. started fixing [not compiled now]
14737:
14738: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
14739: main/compile.tab.C, main/compile.y, main/pa_string.C,
14740: main/untaint.C, targets/cgi/parser3.C: number of string style
14741: improvements & optimizations
14742:
14743: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
14744: :(]
14745:
14746: * src/main/untaint.C: removed redundant & in CORD_pos param passing
14747: [for it's a pointer really]
14748:
14749: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
14750: 'n' param. worked that around
14751:
14752: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
14753: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
14754: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
14755: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
14756: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
14757:
14758: Thanks for the bug report and patch.
14759:
14760: I hadn't looked at this code in a while. Reading it now, it
14761: seems to me that the tests should also be ">= MAX_DEPTH" to
14762: comply with the invariant, though that may not matter a lot. I
14763: changed that, too.
14764:
14765: Hans
14766:
14767: 2003-04-07 paf
14768:
14769: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
14770: merged from head:safe mode error message now includes numbers
14771:
14772: * src/main/execute.C: n-th attempt to make a=a work with double.
14773: problem: as_double returns it's result in fp-register compiler
14774: optimizes access to that register after b->as_double, and just
14775: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14776: from memory. _SAME_ double values do not match here. when
14777: forced to REload fp-register, values do match.
14778:
14779: tried to make them volatile.
14780:
14781: * src/main/execute.C: n-th attempt to make a=a work with double.
14782: problem: as_double returns it's result in fp-register compiler
14783: optimizes access to that register after b->as_double, and just
14784: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14785: from memory. _SAME_ double values do not match here. when
14786: forced to REload fp-register, values do match.
14787:
14788: tried to make them volatile.
14789:
14790: * src/types/pa_vobject.h: small style change
14791:
14792: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
14793:
14794: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
14795: mode error message now includes numbers
14796:
14797: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
14798: now causes death
14799:
14800: 2003-04-04 paf
14801:
14802: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
14803: incorportated pa_exec patch by From: "Victor Fedoseev"
14804: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
14805: Sent: Thursday, January 23, 2003 9:14 AM
14806:
14807: huge speedup on ^file::cgi with big result
14808:
14809: * src/classes/table.C: sort table with 0 rows bug fixed
14810:
14811: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
14812: fix http://i2/tasks/edit/?id=4493701604654042676
14813:
14814: @main[] $with_default[ $.a[1] $._default[default from
14815: with_default] ] ^show[$with_default]
14816:
14817: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14818: =$to_add_to.xxx=<br>
14819:
14820: ^show[$to_add_to]
14821:
14822: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14823: ^show[$cloned]
14824:
14825: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14826:
14827: } <hr>
14828:
14829: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
14830: http://i2/tasks/edit/?id=4493701604654042676
14831:
14832: @main[] $with_default[ $.a[1] $._default[default from
14833: with_default] ] ^show[$with_default]
14834:
14835: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14836: =$to_add_to.xxx=<br>
14837:
14838: ^show[$to_add_to]
14839:
14840: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14841: ^show[$cloned]
14842:
14843: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14844:
14845: } <hr>
14846:
14847: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
14848: http://i2/tasks/edit/?id=4507350336410850921
14849:
14850: * src/classes/xdoc.C: memory allocation func bugfix
14851: http://i2/tasks/edit/?id=4499303470368629745
14852:
14853: * src/classes/math.C: allowed random 1...
14854:
14855: * src/classes/math.C: allowed random 0..
14856:
14857: * src/main/pa_globals.C: exif mem leak
14858: http://i2/tasks/edit/?id=4480590323629807263
14859:
14860: * src/: classes/classes.dsp, main/main.dsp,
14861: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
14862: fix http://i2/tasks/edit/?id=4493946731322521294
14863: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
14864:
14865: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14866: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
14867: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
14868: links to xml libs made relative, no need to unpack parser3project
14869: to /parser3project.
14870:
14871: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
14872: column more precise - tab handling bug fixed
14873:
14874: * src/main/: compile.tab.C, compile.y: more understandable error
14875: message in case @CLASS with more then one line inside
14876:
14877: * src/targets/cgi/parser3.C: more understandable error message in
14878: case of errors in @unhandled_exception
14879:
14880: 2003-04-03 paf
14881:
14882: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
14883: src/main/compile.tab.C, src/main/compile.y,
14884: src/main/compile_tools.C, src/main/compile_tools.h,
14885: src/main/execute.C, src/main/pa_request.C: debug info format
14886: simplified, now it's: OP_VALUE Operation::Origin << here value*
14887:
14888: higher limits: file number (max: 255) line number (max:
14889: 64535) column number (max: 255)
14890:
14891: * src/classes/math.C: top limit
14892:
14893: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
14894: precise parse error position in case of
14895:
14896: ^bug ]
14897:
14898: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
14899: changed to realities, and passed [bug fixed]
14900:
14901: * src/: classes/op.C, include/pa_request.h, main/compile.C,
14902: main/compile.tab.C, main/compile.y, main/compile_tools.C,
14903: main/compile_tools.h, main/pa_request.C: introducing
14904: ^process...[main-method-alias]
14905:
14906: * src/: classes/date.C, classes/image.C, classes/op.C,
14907: classes/string.C, classes/table.C, classes/xdoc.C,
14908: types/pa_vmethod_frame.h: MethodParams& now [methods without
14909: params receive zero reference, but they are expected not to look
14910: there]
14911:
14912: * operators.txt, src/classes/date.C, src/classes/double.C,
14913: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
14914: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14915: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14916: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14917: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14918: src/main/execute.C, src/types/pa_method.h: MethodParams& now
14919: [methods without params receive zero reference, but they are
14920: expected not to look there]
14921:
14922: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14923: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
14924: ^process...[filename] useful for better error reporting
14925: [file/line/col]
14926:
14927: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
14928: types/pa_vstring.h: slightly improved error messages text: 1. is
14929: '%s', it 2. method undefined in case of ^void[]
14930:
14931: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14932: include/pa_types.h, main/execute.C, main/pa_request.C: exception
14933: handling done. now we have error columns todo: test it
14934:
14935: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
14936: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
14937:
14938: this makes life easier: were: bad stack order -- were in
14939: exception catch unwind order, which didn't match execution order
14940:
14941: @main[] ^try{ ^first[] }{ ^throw[c;3] }
14942:
14943: @first[] ^throw[a;1]
14944:
14945: showed throw a first throw b try
14946:
14947: which is no good
14948:
14949: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14950: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
14951: trace reset after handled exception [old bug fixed]
14952:
14953: * src/main/: compile.tab.C, compile.y: parse position old bug
14954: fixed. position reporting made precise [both, in parse erros and
14955: runtime errors]
14956:
14957: 2003-04-02 paf
14958:
14959: * src/: include/pa_operation.h, include/pa_request.h,
14960: main/compile.C, main/compile.tab.C, main/compile.y,
14961: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14962: main/pa_exception.C, main/pa_request.C: debug info: started
14963: using. todo:complete
14964:
14965: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
14966: main/compile.C, main/compile.tab.C, main/compile.y,
14967: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14968: main/pa_request.C: prepared debug info todo:use it
14969:
14970: * src/include/pa_operation.h: strange mistake fixed: forgot to
14971: return Operation class->union after switching from autoptrs.
14972:
14973: * tests/: Makefile, results/108.processed, results/117.processed:
14974: meta considered OK [it's up to coder now to remove it not needed]
14975:
14976: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
14977: Dictionary constructor when moved to gc]
14978:
14979: * src/main/pa_common.C: uncommented http:// file loading
14980:
14981: * src/include/pa_array.h, src/main/execute.C,
14982: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
14983: fix [gdGrowingBuf]
14984:
14985: * configure.in, src/lib/Makefile.am: removed patches
14986:
14987: * configure, src/include/pa_config_auto.h.in,
14988: src/main/pa_charset.C: --enable-assertions autoconf-ed
14989:
14990: * src/main/pa_common.C: uncommented http:// file loading
14991:
14992: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
14993: xdoc::create/load
14994:
14995: * src/: classes/form.C, classes/hash.C, classes/image.C,
14996: classes/string.C, classes/table.C, classes/void.C,
14997: include/pa_common.h, main/pa_common.C, main/pa_request.C,
14998: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
14999: String::String(str,helper_length) are checked. found/fixed one
15000: place: $request:body now zero-terminated,
15001:
15002: * src/: classes/op.C, classes/table.C, include/pa_request.h,
15003: main/compile_tools.C, main/execute.C, types/pa_value.h,
15004: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
15005: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
15006: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
15007: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
15008: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
15009: types/pa_vxnode.h: more locally scoped vars in execute (more
15010: easily optimizable)
15011:
15012: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
15013: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
15014:
15015: * src/: include/pa_array.h, include/pa_stack.h,
15016: include/pa_string.h, main/compile_tools.C, main/main.dsp,
15017: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
15018: become assertion iterator in methodframe filler
15019:
15020: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
15021: targets/cgi/parser3.C: array::get/put inlined
15022:
15023: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
15024: gc_substitute_memory_management_functions +installed CORD_oom
15025: function
15026:
15027: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
15028: src/include/pa_config_includes.h, src/include/pa_string.h,
15029: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
15030: src/targets/cgi/parser3.C: converted debug hacks to ANSI
15031: assertions started configure.in --enable-assertions
15032:
15033: 2003-04-01 paf
15034:
15035: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
15036: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
15037: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
15038: gdome uses glib memory, and stores last pointer to xmlDoc there,
15039: gc misses that and collects valid memory fixed by remembering
15040: xmlDoc from dom object in xdoc. todo: do something with
15041: premature free of xdoc with xnodes/node values referring into it
15042:
15043: * src/classes/: mail.C: typo fix
15044:
15045: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
15046: changes
15047:
15048: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
15049: main/pa_memory.C: moved memory debugging to global level: to
15050: pa_gc_malloc
15051:
15052: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
15053: debugging showed no errors. todo: debug parser memory
15054:
15055: * src/targets/cgi/: parser3.C, parser3.dsp: more build
15056: configurations
15057:
15058: * src/: classes/classes.dsp, include/pa_config_fixed.h,
15059: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
15060: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
15061: types/types.dsp: prepared xml-static configuration
15062:
15063: 2003-03-31 paf
15064:
15065: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
15066: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
15067: xml lib memory debugging, simple checks failed: it seems that
15068: library does realloc(bad ptr), and recording those ptrs in heap
15069: [for debugging] was bad: heap situation changes = everything
15070: works fine
15071:
15072: * src/: main/pa_charset.C, include/pa_charset.h: worked around
15073: xmlRegisterCharEncodingHandler limitation [currently imposed
15074: limit of 10 user-defined charsets]
15075:
15076: 2003-03-28 paf
15077:
15078: * src/main/execute.C: execution stack copied to local register
15079: variable, removed lots [~2e7) of memory accesses
15080:
15081: 2003-03-27 paf
15082:
15083: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
15084: works in debug, but fails in release todo: fix that
15085:
15086: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
15087: targets/cgi/parser3.C: forgot to merge XML memory funcs
15088: replacement from gc branch
15089:
15090: * src/main/pa_exec.C: introducing append_help_length [radical
15091: improvement here]
15092:
15093: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
15094: 'not recommened' in gc.h, on win32 noticed no difference]
15095:
15096: * src/include/pa_array.h: returned checked array get [were disabled
15097: for debugging] result:not slower [don't understand that, it were
15098: INLINED] todo: find out a way of inlining it!
15099:
15100: * src/: include/pa_string.h, lib/gc/include/gc.h,
15101: lib/gc/include/gc_fake.h, main/compile.tab.C,
15102: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
15103: convention changed: all resulting strings are zero-terminated
15104:
15105: * src/: classes/date.C, classes/file.C, classes/hash.C,
15106: classes/string.C, classes/table.C, classes/void.C,
15107: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
15108: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
15109: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
15110: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15111: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
15112: types/pa_vfile.C, types/pa_vmail.C: introducing
15113: append_help_length [radical improvement here]
15114:
15115: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
15116: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
15117: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
15118: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
15119: even slower
15120:
15121: * src/: classes/string.C, classes/table.C, include/pa_array.h,
15122: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
15123: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
15124: clients of &get(): most to use non-ref version, some[in tight
15125: places] to get_unchecked_ref
15126:
15127: * src/doc/memory.dox: forgot to add
15128:
15129: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
15130: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
15131: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
15132: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
15133: main/compile.y, main/compile_tools.C, main/compile_tools.h,
15134: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
15135: targets/cgi/parser3.dsp, types/pa_vmail.C,
15136: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
15137: T>>&<< removed after Stack::pop wiping removed [moved to separate
15138: func] other Array & removed
15139:
15140: 2003-03-26 paf
15141:
15142: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
15143: classes/table.C, include/pa_array.h, include/pa_charset.h,
15144: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
15145: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15146: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
15147: main/main.dsp, main/pa_charset.C, main/pa_common.C,
15148: main/pa_exec.C, main/pa_sql_driver_manager.C,
15149: main/pa_stylesheet_manager.C, main/pa_table.C,
15150: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15151: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
15152: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
15153: pre-evaluated .count() in some places
15154:
15155: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15156: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
15157: types/types.dsp: .dsp profiling updated
15158:
15159: * src/: classes/classes.dsp, lib/cord/cord.dsp,
15160: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
15161: targets/cgi/parser3.dsp, types/types.dsp: started profiling
15162:
15163: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
15164: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
15165: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
15166: use lib/gc,lib/cord
15167:
1.116 moko 15168: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
15169: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 15170: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
15171: src/include/pa_config_includes.h, src/include/pa_request.h,
15172: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15173: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 15174: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 15175: src/lib/cord/include/Makefile.am,
1.116 moko 15176: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
15177: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
15178: src/targets/cgi/Makefile.am, src/types/Makefile.am,
15179: src/types/pa_vclass.h, src/types/pa_vcookie.h,
15180: src/types/pa_vform.h, src/types/pa_vhash.h,
15181: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
15182: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
15183: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
15184: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
15185: funcs ported pa_exec
1.95 moko 15186:
15187: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
15188:
15189: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
15190: bundled gc includes
15191:
15192: * src/: classes/op.C, include/pa_array.h,
15193: include/pa_sql_connection.h, include/pa_string.h,
15194: include/pa_version.h, main/compile.tab.C, main/compile.y,
15195: main/execute.C, main/pa_common.C, main/pa_exception.C,
15196: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
15197: targets/cgi/parser3.dsp: a number of bugfixes [while testing
15198: first real site (aval)]
15199:
15200: 2003-03-25 paf
15201:
15202: * operators.txt, src/main/pa_sql_driver_manager.C,
15203: src/types/pa_vstatus.C: $status.memory used free since_compact
15204: process
15205:
15206: * src/: include/pa_sql_connection.h, main/pa_globals.C,
15207: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
15208:
15209: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
15210:
15211: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
15212: src/types/pa_value.h, src/types/pa_vfile.h,
15213: src/types/pa_vobject.C, src/types/pa_vobject.h,
15214: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
15215: tests/results/121.processed: untaint.C L_URI
15216:
15217: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
15218: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
15219: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
15220: src/types/pa_vmemory.h: ^memory:compact[]
15221:
15222: * tests/results/109.processed: it was a bug in parser. updated 109
15223: test result
15224:
15225: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
15226:
15227: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
15228: tests/results/107.processed: fixed dom language [values are now
15229: considered tainted. it was a bug in parser. updated 107 test
15230: result
15231:
15232: * src/classes/xdoc.C: fixed transform params
15233:
15234: * src/: include/pa_stylesheet_manager.h,
15235: main/pa_stylesheet_manager.C: fixed stylesheet caching
15236:
15237: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
15238: overloads for structure handling
15239:
15240: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
15241: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
15242: StringBody(0) ambiguilty, introducting static
15243: StringBody::Format(int)
15244:
15245: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
15246: linked
15247:
15248: * src/types/pa_vxdoc.C: vxdoc compiled
15249:
15250: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
15251: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
15252: finalizers isntalled
15253:
15254: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
15255: doc/exception.dox, doc/index.dox, include/pa_charset.h,
15256: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15257: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
15258: compiled todo: xnode.C / finalizers
15259:
15260: * src/doc/string.dox: updated: new string internals
15261:
15262: 2003-03-24 paf
15263:
15264: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15265: include/pa_charset.h, include/pa_config_fixed.h,
15266: include/pa_request.h, include/pa_stylesheet_connection.h,
15267: include/pa_stylesheet_manager.h, main/pa_charset.C,
15268: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
15269: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
15270: types/pa_vxnode.h: started XML
15271:
15272: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
15273:
15274: * src/: classes/file.C, classes/image.C, classes/mail.C,
15275: include/pa_string.h, main/pa_common.C,
15276: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
15277:
15278: * src/: classes/file.C, classes/image.C, classes/mail.C,
15279: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
15280: main/pa_request.C, main/pa_sql_driver_manager.C,
15281: types/pa_vimage.h: size_t pos everywhere checks changed to check
15282: for eq STRING_NOT_FOUND
15283:
15284: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
15285: optimize bit implemented
15286:
15287: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15288: String::ArrayFragment::append_positions fixed
15289:
15290: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
15291: String::this_starts fixed
15292:
15293: * src/main/pa_string.C, tests/Makefile: string::pos fixed
15294:
15295: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
15296: hashcode implemented fully, including per-char callback [it can
15297: be - substr CORD node]
15298:
15299: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
15300: rewritten to rewalloc with 100byte buf ahead
15301:
15302: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
15303: src/include/pa_string.h, src/main/compile.tab.C,
15304: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
15305: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
15306: CORD_ec [bad] would rewrite as realloc now
15307:
15308: * src/: classes/date.C, classes/file.C, classes/form.C,
15309: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
15310: include/pa_cache_managers.h, include/pa_charsets.h,
15311: include/pa_common.h, include/pa_request.h,
15312: include/pa_sql_driver_manager.h, include/pa_table.h,
15313: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
15314: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
15315: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
15316: types/pa_vmail.C, types/pa_vmethod_frame.C,
15317: types/pa_vstateless_class.h: 2*2 worked :)
15318:
15319: * parser3.dsw, src/classes/date.C, src/classes/file.C,
15320: src/include/pa_exec.h, src/include/pa_string.h,
15321: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
15322: passed OK
15323:
15324: * src/: classes/hash.C, classes/string.C, classes/table.C,
15325: types/pa_value.C: all linked todo: debug
15326:
15327: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
15328: types/pa_vstateless_class.C: all compiled. todo:link
15329:
15330: * src/types/pa_wcontext.C: pa_wcontext.C compiled
15331:
15332: * src/types/pa_vtable.C: pa_vtable.C compiled
15333:
15334: * src/types/pa_vstring.C: pa_vstring.C compiled
15335:
15336: * src/types/pa_vstatus.C: pa_vstatus.C compiled
15337:
15338: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
15339: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
15340: pa_vstateless_class.C, pa_vstateless_class.h:
15341: pa_vstateless_class.C compiled
15342:
15343: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
15344: types/pa_vmath.C: pa_vmail.C compiled
15345:
15346: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
15347:
15348: * src/types/pa_vform.C: pa_vform.C compiled
15349:
15350: * src/types/pa_vfile.C: pa_vfile.C compiled
15351:
15352: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
15353: pa_vstateless_class.C: pa_vcookie.C compiled
15354:
15355: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
15356: types/pa_vhash.h: pa_value.C compiled
15357:
15358: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
15359: classes.lib main.lib compiled
15360:
15361: * src/classes/void.C: void.C compiled
15362:
15363: * src/: classes/string.C, classes/table.C, include/pa_string.h,
15364: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
15365: compiled
15366:
15367: * src/: classes/string.C, include/pa_request.h,
15368: include/pa_string.h, main/pa_string.C: string.C compiled
15369:
15370: * src/: classes/op.C, classes/string.C, classes/table.C,
15371: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
15372: main/pa_request.C, main/pa_string.C: op.C compiled
15373:
15374: * src/classes/: math.C, op.C: math.C compiled
15375:
15376: * src/: classes/mail.C, classes/string.C, classes/table.C,
15377: types/pa_vmail.h: mail.C compiled
15378:
15379: * src/classes/: int.C, table.C: int.C compiled
15380:
15381: * src/: classes/hash.C, classes/image.C, classes/string.C,
15382: classes/table.C, include/pa_memory.h, include/pa_string.h,
15383: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
15384: compiled
15385:
15386: * src/: classes/hash.C, classes/string.C, classes/table.C,
15387: classes/void.C, classes/xdoc.C, include/pa_request.h,
15388: include/pa_sql_connection.h: hash.C compiled
15389:
15390: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
15391: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
15392: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15393: classes/math.C, classes/op.C, classes/response.C,
15394: classes/string.C, classes/table.C, classes/void.C,
15395: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
15396: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15397: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
15398: file.C table.C compiled
15399:
15400: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
15401: main/untaint.C: main.lib compiled
15402:
15403: 2003-03-21 paf
15404:
15405: * src/: classes/op.C, include/pa_cache_managers.h,
15406: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15407: include/pa_stylesheet_manager.h, main/pa_exception.C,
15408: main/pa_globals.C, main/pa_sql_driver_manager.C,
15409: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
15410: compiled
15411:
15412: * src/: classes/hash.C, classes/image.C, classes/op.C,
15413: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
15414: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15415: main/compile.C, main/pa_common.C, main/pa_request.C,
15416: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
15417: pa_request.C compiled
15418:
15419: * src/: classes/hash.C, classes/mail.C, classes/op.C,
15420: include/pa_request.h, main/execute.C, main/pa_request.C,
15421: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
15422: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
15423: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15424: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
15425: compiled
15426:
15427: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
15428: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
15429: on unix
15430:
15431: * src/: include/pa_charset.h, include/pa_charsets.h,
15432: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
15433: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
15434: pa_charsets.C compiled
15435:
15436: * src/: classes/image.C, classes/mail.C, classes/op.C,
15437: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
15438: main/compile.y, main/execute.C, main/pa_common.C,
15439: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
15440: types/pa_vcode_frame.h, types/pa_vimage.h,
15441: types/pa_vmethod_frame.h: execute.C compiled
15442:
15443: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15444: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15445: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15446: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
15447: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15448: include/pa_cache_managers.h, include/pa_charsets.h,
15449: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
15450: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
15451: include/pa_sql_driver_manager.h, include/pa_string.h,
15452: include/pa_stylesheet_connection.h,
15453: include/pa_stylesheet_manager.h, include/pa_table.h,
15454: main/compile.C, main/compile.tab.C, main/compile.y,
15455: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15456: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15457: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
15458: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
15459: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15460: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
15461: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
15462: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15463: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15464: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15465: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15466: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15467: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15468: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15469: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15470: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15471: types/pa_vresponse.h, types/pa_vstateless_class.C,
15472: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15473: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15474: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15475: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15476: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15477: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
15478: [C++ CORD wrapper]
15479:
15480: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
15481:
15482: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
15483: $file::exec/cgi[script; $.charset[this is script's charset]
15484:
15485: command line, env values, input got transcoded before call
15486: stdout, stderr got transcoded after call
15487:
15488: * src/classes/file.C: ^file::exec/cgi now does not pass post data
15489: by default. use: ^file::exec[...;$.stdin[$request.body]
15490:
15491: * src/main/pa_common.C: } typo bug fix
15492:
15493: * src/main/pa_common.C: } typo bug fix
15494:
15495: 2003-03-20 paf
15496:
15497: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
15498: main/untaint.C: cord bug fix, but still errors todo: clear out
15499:
15500: * src/include/pa_string.h: more tests
15501:
15502: * src/main/pa_string.C: string.pos fixed
15503:
1.116 moko 15504: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
15505: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
15506: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
15507: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
15508: replaces
1.95 moko 15509:
15510: * src/: classes/image.C, include/pa_dictionary.h,
15511: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15512: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
15513: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
15514: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
15515:
15516: * src/include/pa_string.h: warning
15517:
15518: * src/include/pa_string.h: this_starts fixed
15519:
15520: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
15521: new String ctor & append params convention
15522:
15523: * src/: classes/file.C, classes/hash.C, classes/image.C,
15524: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
15525: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
15526: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
15527: main/pa_exception.C, main/pa_exec.C,
15528: main/pa_sql_driver_manager.C, main/pa_string.C,
15529: main/pa_stylesheet_manager.C, main/untaint.C,
15530: targets/isapi/parser3isapi.C, types/pa_vimage.C,
15531: types/pa_vmail.C: more tests OK
15532:
15533: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
15534: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
15535: gc/exit runned OK
15536:
15537: * src/types/pa_vmail.C: another naming problem: should not name
15538: vars like that: unpredictable close caused problems with later
15539: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
15540: descriptors missing on startup: stdin; Bad file number
15541:
15542: todo: find out why so many filters(stream) here. probably wrong?
15543:
15544: * src/: include/pa_dictionary.h, include/pa_string.h,
15545: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
15546: main/untaint.C: test compiled
15547:
15548: * src/: classes/image.C, classes/mail.C, classes/math.C,
15549: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
15550: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
15551: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
15552: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
15553: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15554: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
15555: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
15556: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
15557: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
15558:
15559: * parser3.dsw, src/classes/file.C, src/classes/image.C,
15560: src/classes/op.C, src/classes/string.C, src/classes/table.C,
15561: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
15562: src/include/pa_memory.h, src/include/pa_request.h,
15563: src/include/pa_request_charsets.h,
15564: src/include/pa_sql_connection.h, src/include/pa_string.h,
15565: src/main/compile.tab.C, src/main/execute.C,
15566: src/main/pa_charset.C, src/main/pa_common.C,
15567: src/main/pa_exception.C, src/main/pa_exec.C,
15568: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15569: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
15570: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
15571: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
15572: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15573: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
15574: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15575: src/types/pa_vobject.C, src/types/pa_vresponse.C,
15576: src/types/pa_vstatus.C, src/types/pa_vstring.C,
15577: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15578: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
15579: pa_common.C [done, without http for now]
15580:
15581: 2003-03-19 paf
15582:
15583: * src/: classes/date.C, classes/form.C, classes/hash.C,
15584: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
15585: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
15586: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
15587: include/pa_string.h, include/pa_table.h, main/compile.C,
15588: main/compile_tools.C, main/execute.C, main/pa_charset.C,
15589: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
15590: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
15591: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15592: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
15593: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
15594: types/pa_vstateless_class.h, types/pa_vtable.C,
15595: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
15596: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15597: types/pa_wwrapper.h: started test
15598:
1.116 moko 15599: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
15600: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 15601:
15602: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
15603: include/pa_string.h, main/pa_string.C: string compiled todo: test
15604: it
15605:
15606: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
15607: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
15608: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
15609: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
15610: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
15611: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
15612: types/pa_vmethod_frame.h, types/types.dsp: string
15613: reimplementation with cord+array<fragment>: 70%
15614:
15615: 2003-03-18 paf
15616:
15617: * src/: classes/date.C, classes/file.C, classes/form.C,
15618: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
15619: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
15620: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
15621: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
15622: can ignore lang in cmp and pos really, but would
15623: split properly!
15624:
15625: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
15626: cord part made parser/src/lib: it's not compiled into libgc by
15627: default
15628:
15629: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
15630: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15631: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15632: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15633: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15634: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15635: src/classes/xnode.C, src/classes/xnode.h,
15636: src/include/Makefile.am, src/include/pa_cache_managers.h,
15637: src/include/pa_charset.h, src/include/pa_charsets.h,
15638: src/include/pa_common.h, src/include/pa_dictionary.h,
15639: src/include/pa_exception.h, src/include/pa_exec.h,
15640: src/include/pa_globals.h, src/include/pa_hash.h,
15641: src/include/pa_memory.h, src/include/pa_pool.h,
15642: src/include/pa_request.h, src/include/pa_request_charsets.h,
15643: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
15644: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15645: src/include/pa_stylesheet_connection.h,
15646: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
15647: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
15648: src/main/compile.C, src/main/compile.tab.C,
15649: src/main/compile_tools.C, src/main/compile_tools.h,
15650: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
15651: src/main/pa_charsets.C, src/main/pa_common.C,
15652: src/main/pa_dictionary.C, src/main/pa_exception.C,
15653: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
15654: src/main/pa_pool.C, src/main/pa_request.C,
15655: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15656: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
15657: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
15658: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
15659: src/types/pa_junction.h, src/types/pa_method.h,
15660: src/types/pa_value.C, src/types/pa_value.h,
15661: src/types/pa_vclass.C, src/types/pa_vclass.h,
15662: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15663: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15664: src/types/pa_vdouble.h, src/types/pa_venv.h,
15665: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
15666: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
15667: src/types/pa_vimage.C, src/types/pa_vimage.h,
15668: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
15669: src/types/pa_vmath.C, src/types/pa_vmath.h,
15670: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15671: src/types/pa_vobject.C, src/types/pa_vobject.h,
15672: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15673: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15674: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15675: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
15676: src/types/pa_vstatus.h, src/types/pa_vstring.C,
15677: src/types/pa_vstring.h, src/types/pa_vtable.C,
15678: src/types/pa_vtable.h, src/types/pa_vvoid.h,
15679: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15680: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
15681: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
15682: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
15683: gc: PA_Object done lots of replacements also
15684:
15685: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
15686: gc logging
15687:
15688: 2003-03-17 paf
15689:
15690: * src/: classes/date.C, classes/file.C, classes/form.C,
15691: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
15692: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
15693: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15694: include/pa_string.h, include/pa_types.h, main/compile.C,
15695: main/compile.tab.C, main/execute.C, main/pa_charset.C,
15696: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
15697: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15698: main/pa_sql_driver_manager.C, main/pa_string.C,
15699: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
15700: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
15701: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
15702: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
15703: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
15704: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15705: types/pa_vxnode.h: libgc attempt
15706:
15707: 2003-03-13 paf
15708:
15709: * src/: include/pa_sql_driver_manager.h,
15710: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
15711: called
15712:
15713: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
15714: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
15715: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
15716: types/pa_value.h, types/pa_vobject.h,
15717: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
15718: set_base, set_derived simplified [counter leaks fixed]
15719:
15720: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
15721: src/types/types.dsp: incorporated status class patch From:
15722: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
15723: 2003 8:14 AM
15724:
15725: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
15726: Win32 specific: QuotaPeakNonPagedPoolUsage
15727: QuotaPeakPagedPoolUsage PeakPagefileUsage]
15728:
15729: 2003-03-12 paf
15730:
1.116 moko 15731: * configure, configure.in, src/lib/ltdl/configure,
15732: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 15733: lib/ltdl/Makefile now created by /configure.in only [were by
15734: lib/ltdl/configure.in OVERWRITE]
15735:
1.116 moko 15736: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
15737: linkage fixed for g++ 3.2.2
1.95 moko 15738:
15739: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
15740: on using privately declared class [fixed]
15741:
15742: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
15743: 3.2 rightliy complained on using privately declared class [fixed]
15744:
15745: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
15746: sigpipe before request constructor now causes death
15747:
15748: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
15749: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
15750: not cause exception in exception handler
15751:
1.116 moko 15752: * configure, configure.in, src/targets/cgi/Makefile.am: configure
15753: now default links libstdc++ statically. that can be overriden by
15754: --with-dynamic-stdcpp
1.95 moko 15755:
15756: 2003-03-11 paf
15757:
15758: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
15759: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
15760: necessity of libstdc++
15761:
15762: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15763:
15764: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15765:
15766: 2003-03-08 paf
15767:
15768: * tests/Makefile: make install & co
15769:
15770: * src/: include/pa_request.h, classes/op.C: removing
15771: vclass,object.h -> pa_request.h dependency
15772:
15773: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
15774: main/pa_request.C: removing vform,response,cookie.h ->
15775: pa_request.h dependency
15776:
15777: * src/include/pa_request.h: removing vmail.h -> pa_request.h
15778: dependency [testing...]
15779:
15780: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
15781: return 0; fixed
15782:
15783: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
15784: types/pa_vmail.h: vmail.C received just compiled [not tested]
15785:
15786: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
15787:
15788: * src/main/pa_request.C: forgotten: ifdef XML
15789:
15790: * src/main/pa_request.C: forgotten: ifdef XML
15791:
15792: * src/targets/cgi/parser3.C: todo: move to latest xml version on
15793: win32 and run memleak tests again
15794:
15795: * src/targets/cgi/parser3.C: charsets: see some strange things with
15796: old xml lib-- it's internal memory handling has faults
15797:
15798: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
15799: problems when transcode from charset A to A.
15800:
15801: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
15802: todo: still problems when transcode from charset A to A.
15803:
15804: * src/: classes/hash.C, classes/mail.C, classes/string.C,
15805: classes/table.C, include/pa_array.h,
15806: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
15807: started full-scale-site-test [~ http://parser.ru sources]
15808:
15809: some fixes
15810:
15811: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
15812: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
15813: 117.html, 118.html, 119.html, 120.html, results/109.processed,
15814: results/110.processed, results/111.processed,
15815: results/112.processed, results/113.processed,
15816: results/114.processed, results/115.processed,
15817: results/116.processed, results/117.processed,
15818: results/118.processed, results/119.processed,
15819: results/120.processed: xml: tests 109 dom create/show 110 xpath
15820: selectSingle 111 xdoc.create from tainted & 112
15821: xdoc.create/output with russian attr value 113 xpath
15822: selectString/Number 114 dom attributes.count 115 xpath selectBool
15823: 116 output media-type change 117 transform by dom stylesheet 118
15824: empty transform result 119 dom setAttribute 120 nbsp letter
15825: output
15826:
15827: =END OF PREPARED XML TESTS=
15828:
15829: 2003-03-07 paf
15830:
15831: * src/classes/xdoc.C, src/include/pa_charset.h,
15832: src/include/pa_stylesheet_connection.h, tests/108.html,
15833: tests/108.xsl, tests/results/108.processed: xml: test 108
15834: transform with params [bugs fixed]
15835:
15836: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
15837: from copy/paste bug
15838:
15839: * src/classes/xdoc.C, src/include/pa_charset.h,
15840: src/include/pa_request.h, src/main/execute.C,
15841: src/main/pa_charset.C, src/main/pa_exception.C,
15842: src/main/pa_globals.C, src/main/pa_request.C,
15843: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15844: src/types/pa_vxnode.C, tests/107.html,
15845: tests/results/107.processed: xml: test: 107 bug fixes
15846:
15847: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15848: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15849: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
15850:
15851: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
15852: string
15853:
15854: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
15855: mem alloc functions used for different cases [libxml, libxsl]
15856:
15857: * src/classes/classes.C: fixed: prevent system classes from
15858: modification to lock ALL the classes, not only directly used
15859:
15860: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
15861: linked
15862:
15863: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
15864:
15865: 2003-03-06 paf
15866:
15867: * src/classes/xdoc.C: xdoc.C 50%
15868:
15869: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
15870: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15871: main/pa_globals.C, main/pa_request.C,
15872: main/pa_stylesheet_manager.C: xnode.C compiled
15873:
15874: * src/: include/pa_stylesheet_connection.h,
15875: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
15876: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
15877:
15878: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
15879: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
15880: xml: stylesheet&manager STARTED
15881:
15882: * src/: include/pa_globals.h, main/pa_charset.C,
15883: main/pa_exception.C, main/pa_globals.C: xml: exceptions
15884:
15885: * src/: include/pa_charset.h, include/pa_config_fixed.h,
15886: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
15887: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
15888: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
15889: charsets
15890:
15891: * tests/023.html: in some cases it rounded up badly. postponing
15892: solution of that problem, making more simple test
15893:
15894: * tests/: 058_paf2000.png, results/058.processed: .png added with
15895: -kb now
15896:
15897: * src/: include/pa_charset.h, include/pa_charsets.h,
15898: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
15899: moved to charsets.C
15900:
15901: 2003-03-05 paf
15902:
15903: * src/classes/string.C, src/include/pa_string.h,
15904: src/main/pa_string.C, tests/105.html,
15905: tests/results/105.processed: String::match bug fixed
15906:
15907: * src/classes/op.C, src/main/main.dsp, tests/104.html,
15908: tests/results/104.processed: ^bpt operator added [does int3 in
15909: debug build on win32]
15910:
15911: * tests/: 057.html, results/057.processed: test bug fixed
15912:
1.116 moko 15913: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 15914:
15915: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
15916: missing
15917:
1.116 moko 15918: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
15919: forgotten files added to Makes
1.95 moko 15920:
15921: * ltmain.sh: ltmain.sh added
15922:
15923: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15924: change undone ;(
15925:
15926: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15927: made static
15928:
15929: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 15930: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
15931: todo:make linker happy
1.95 moko 15932:
15933: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
15934: env param made optional
15935:
15936: 2003-03-04 paf
15937:
15938: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
15939: types/pa_vimage.h: number of gcc compiler bugs fixed
15940:
15941: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
15942: results/103.processed: tests: 103 image.copy transparence test
15943:
15944: * src/main/execute.C, tests/101.html, tests/102.html,
15945: tests/results/101.processed, tests/results/102.processed: tests:
15946: 101 method/variable name conflict test 102 form fields change
15947: should not not change anything [bug fix]
15948:
15949: * tests/: 057.html, 099.html, 100.html, results/057.processed,
15950: results/099.processed, results/100.processed: tests: 57 date
15951: create 2002: added 99,100 response:body/download
15952:
15953: * src/classes/image.C, tests/098.html, tests/098font.gif,
15954: tests/results/098.processed: test: 98 image font text [bug fixed]
15955:
15956: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
15957: tests/results/097.processed: test: 97 file::load http:// [bugs
15958: fixed]
15959:
15960: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
15961: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
15962: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
15963: image EXIF [bug fixed]
15964:
15965: * src/classes/table.C, src/main/execute.C, tests/061.dat,
15966: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
15967: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
15968: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
15969: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
15970: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
15971: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
15972: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
15973: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
15974: tests/094.html, tests/095.html, tests/results/061.processed,
15975: tests/results/062.processed, tests/results/063.processed,
15976: tests/results/064.processed, tests/results/065.processed,
15977: tests/results/066.processed, tests/results/067.processed,
15978: tests/results/068.processed, tests/results/069.processed,
15979: tests/results/070.processed, tests/results/071.processed,
15980: tests/results/072.processed, tests/results/073.processed,
15981: tests/results/074.processed, tests/results/075.processed,
15982: tests/results/076.processed, tests/results/077.processed,
15983: tests/results/078.processed, tests/results/080.processed,
15984: tests/results/081.processed, tests/results/082.processed,
15985: tests/results/083.processed, tests/results/084.processed,
15986: tests/results/085.processed, tests/results/086.processed,
15987: tests/results/087.processed, tests/results/088.processed,
15988: tests/results/089.processed, tests/results/090.processed,
15989: tests/results/091.processed, tests/results/092.processed,
15990: tests/results/093.processed, tests/results/094.processed,
15991: tests/results/095.processed, tests/079.html,
15992: tests/results/079.processed: tests: 61 file::stat size 62
15993: string->int autoconvert 63 double .int,dec,div,mul 64 date
15994: compare 65 file: basename,justname,justext 66 math:crypt 67
15995: string.match simple on long 68 string.match normalized simple on
15996: long 69 string.int 70 file::stat content-type 71 table.join 72
15997: hash parameter conditional pass 73 date daylightsaving,yearday 74
15998: date arithmetics 75 response date values/attributes 76 string.pos
15999: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
16000: with local 80 scientific numeric literal in string autoconvert 81
16001: xor: logical and numerical 82 for delims 83 menu delims 84
16002: table.hash distinct 85 long string replace 86 throw+catch
16003: current language preserve 87 bit shifts 88 junction tests +
16004: $caller test 89 hash.foreach selfmodification 90 int/void to int
16005: 91 $caller test 92 junction is + def junction tests 93 $caller
16006: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
16007:
16008: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
16009: fixed] 60 string eq string [bug fixed]
16010:
16011: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
16012: 058.html, 058_paf2000.png, 059.html, 060.html,
16013: results/053.processed, results/054.processed,
16014: results/055.processed, results/056.processed,
16015: results/057.processed, results/058.processed,
16016: results/059.processed, results/060.processed: test: 53
16017: string.replace 54 junctions 55 table.hash 56 call indirect 57
16018: date.create[string] 58 image.measure[png]
16019:
16020: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
16021: outputs/051.processed, results/052.processed: test: 52
16022: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
16023: task: fix that
16024:
16025: 2003-03-03 paf
16026:
16027: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
16028: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
16029: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
16030: outputs/049.processed, outputs/050.processed,
16031: outputs/051.processed, results/001.processed,
16032: results/002.processed, results/003.processed,
16033: results/005.processed, results/006.processed,
16034: results/008.processed, results/009.processed,
16035: results/011.processed, results/012.processed,
16036: results/013.processed, results/014.processed,
16037: results/015.processed, results/016.processed,
16038: results/017.processed, results/020.processed,
16039: results/021.processed, results/022.processed,
16040: results/024.processed, results/025.processed,
16041: results/026.processed, results/027.processed,
16042: results/028.processed, results/029.processed,
16043: results/030.processed, results/031.processed,
16044: results/049.processed, results/050.processed,
16045: results/051.processed, results/043.processed,
16046: results/044.processed, results/045.processed,
16047: results/046.processed, results/047.processed,
16048: results/048.processed: tests: 43,44,45 date rolls 46
16049: autoevaluating junction 47 table.select 48 name with subvar 49
16050: hash-creating switch 50 process 51 started parent/child, works as
16051: it were but it were NOT GOOD, created separate task to fix that
16052:
16053: * tests/: 042.html, results/042.processed: test: 42
16054: exception.handled
16055:
16056: * tests/: 041.html, results/041.processed: test: 41 table.locate by
16057: expression
16058:
16059: * tests/: 040.html, results/040.processed: test: 39 method result
16060: of type table 40 method param junction auto evaluate
16061:
16062: * tests/: 039.html, results/039.processed: test: 37 method result
16063: of type table
16064:
16065: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
16066: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
16067: tests/038.html, tests/results/033.processed,
16068: tests/results/034.processed, tests/results/035.processed,
16069: tests/results/036.processed, tests/results/037.processed,
16070: tests/results/038.processed: tests: 33 string.replace 34
16071: string.upper 35 table created 36 local/global vars with juntions
16072: 37 table clone 38 math PI & number formatting
16073:
16074: math class registring typo fixed
16075:
16076: * src/classes/op.C, src/include/pa_request.h,
16077: src/include/pa_string.h, src/main/execute.C,
16078: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
16079: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
16080: tests/032.html, tests/results/032.processed: uchar changed to
16081: String_UL in all places [was not everywhere] untaint test: 032
16082:
16083: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
16084: tests/results/004.processed, tests/parser-cygwin.sh,
16085: tests/parser-unix.sh: removed -H command line key, now testing
16086: using .sh file with SERVER_SOFTWARE=xxx
16087:
16088: 2003-02-26 paf
16089:
16090: * src/main/execute.C, src/types/pa_vstateless_class.h,
16091: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
16092: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
16093: tests/results/024.processed, tests/results/025.processed,
16094: tests/results/026.processed, tests/results/027.processed,
16095: tests/results/028.processed, tests/results/029.processed,
16096: tests/results/030.processed, tests/results/031.processed: fixed
16097: bug with name_cstr mutable CharPtr more tests
16098:
16099: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
16100: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
16101: << abort. die now just exits
16102:
16103: * src/classes/classes.awk, src/classes/classes.h,
16104: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16105: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16106: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16107: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16108: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16109: src/classes/xnode.C, src/include/pa_memory.h,
16110: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
16111: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
16112: src/types/pa_vform.C, tests/015.html, tests/016.html,
16113: tests/017.html, tests/018.html, tests/019.html,
16114: tests/019paf2001.gif, tests/020.html, tests/021.html,
16115: tests/022.html, tests/023.html, tests/022_dir/a.html,
16116: tests/022_dir/b.txt, tests/022_dir/c.htm,
16117: tests/results/015.processed, tests/results/016.processed,
16118: tests/results/017.processed, tests/results/018.processed,
16119: tests/results/019.processed, tests/results/020.processed,
16120: tests/results/021.processed, tests/results/022.processed,
16121: tests/results/023.processed: methoded_array now contains all Mxxx
16122: classes SAPI::get_env now returns info on pool more tests
16123:
16124: * src/include/pa_array.h, src/include/pa_hash.h,
16125: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
16126: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
16127: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
16128: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
16129: tests/014.html, tests/Makefile, tests/outputs/create-dir,
16130: tests/results/001.processed, tests/results/002.processed,
16131: tests/results/003.processed, tests/results/004.processed,
16132: tests/results/005.processed, tests/results/006.processed,
16133: tests/results/007.processed, tests/results/008.processed,
16134: tests/results/009.processed, tests/results/010.processed,
16135: tests/results/011.processed, tests/results/012.processed,
16136: tests/results/013.processed, tests/results/014.processed: hash
16137: cloning fixed
16138:
16139: 2003-02-25 paf
16140:
16141: * src/main/pa_common.C: typo fixed
16142:
16143: 2003-02-24 paf
16144:
16145: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
16146: [one remained]
16147:
16148: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
16149: [should have been get_string(&pool)] todo: check other such calls
16150:
16151: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
16152: test10, bad lookups
16153:
16154: xxx* xxx=smartptr.get(); << is bad style, after ";" original
16155: object got destructed, and xxx points to sky
16156:
16157: * ChangeLog, src/classes/string.C: match bug fixed
16158:
16159: * src/types/pa_vmail.C: body [text/html] transcoded to
16160: $.charset[specified] now
16161:
16162: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16163: which failed to handle sigsetjmp+throw: crashed inside of
16164: pre-throw code. rewritten simplier [though duplicating
16165: closesocket code]
16166:
16167: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16168: which failed to handle sigsetjmp+throw: crashed inside of
16169: pre-throw code. rewritten simplier [though duplicating
16170: closesocket code]
16171:
16172: 2003-02-21 paf
16173:
16174: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
16175: $cookie:name[$.expires[date << can be now]]
16176:
16177: written makefile with regression tests [raw]
16178:
16179: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
16180: tests' only [it's not forcing CGI mode now] now use -H to output
16181: CGI header when parser used in command line [useful for tests
16182: also]
16183:
16184: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
16185: switches on CGI mode, and is used in regression tests
16186:
16187: * src/: include/pa_request.h, main/pa_request.C,
16188: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
16189: fixed
16190:
16191: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
16192: handling pa_*
16193:
16194: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
16195: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
16196: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
16197: memory handling files
16198:
16199: * src/main/pa_array.C: pool::format_integer terminator fixed
16200:
16201: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
16202: compiles OK test to show benefits of free
16203:
16204: * src/: classes/file.C, classes/image.C, classes/mail.C,
16205: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
16206: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16207: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
16208: use pool [as the one in ^process]
16209:
16210: * src/classes/op.C: fixed process. sould now check for all cstr's
16211: -- some must use pool [as the one in ^process]
16212:
16213: 2003-02-20 paf
16214:
16215: * src/: classes/date.C, classes/double.C, classes/file.C,
16216: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16217: classes/math.C, classes/op.C, classes/response.C,
16218: classes/string.C, classes/table.C, classes/void.C,
16219: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
16220: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
16221: string cmp fixed
16222:
16223: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
16224: values passed OK now
16225:
16226: 2003-02-19 paf
16227:
16228: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
16229: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
16230: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
16231: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
16232: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
16233: all remaning leaks resulted from pooled::malloc calls [excluding
16234: in gd -- planning complete rewrite extremely ugly code]
16235:
16236: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
16237: files
16238:
16239: 2003-02-17 paf
16240:
16241: * src/: classes/date.C, classes/double.C, classes/file.C,
16242: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16243: classes/response.C, classes/string.C, classes/table.C,
16244: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
16245: include/pa_stylesheet_connection.h,
16246: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
16247: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16248: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
16249: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
16250: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
16251: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
16252: of unitialized simple-typed field
16253:
16254: * src/: classes/classes.C, classes/classes.h, main/execute.C,
16255: main/pa_charset.C, main/pa_request.C: another bug of unitialized
16256: simple-typed field fixed. todo: find&kill all like that one
16257:
16258: * src/: main/execute.C, targets/cgi/pa_pool.C,
16259: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
16260: debug output fixed
16261:
16262: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
16263: main/pa_request.C: stack-stored items need extra .ref to prevent
16264: object_ptr from delete[them]
16265:
16266: * src/: classes/date.C, classes/op.C, classes/table.C,
16267: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
16268: include/pa_charset.h, main/Makefile.am, main/main.dsp,
16269: main/pa_charset.C, main/pa_common.C,
16270: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16271: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16272: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
16273: calls
16274:
16275: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
16276: couple mem leaks rusulted from old pooled::malloc usage.
16277: todo:find more like those
16278:
16279: * src/main/: compile.C, compile_tools.C: 2*2!
16280:
16281: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
16282: stackItem fixed [there were no string on stack before]
16283:
16284: * src/: main/execute.C, main/pa_request.C,
16285: types/pa_vmethod_frame.C: first letters out OK
16286:
16287: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
16288: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
16289: main/pa_string.C, main/untaint.C, types/pa_value.h,
16290: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
16291: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
16292: type not initialized with zeros :( while class fields of class
16293: types initialized with default constructors. learn C++
16294:
16295: * src/: classes/classes.awk, classes/double.C, classes/file.C,
16296: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
16297: classes/math.C, classes/xdoc.C, classes/xnode.C,
16298: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
16299: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
16300:
16301: 2003-02-14 paf
16302:
16303: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
16304: 13 link errors
16305:
16306: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
16307: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
16308: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16309: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
16310: errors :)
16311:
16312: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
16313: classes/hash.C, classes/mail.C, classes/op.C,
16314: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
16315: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
16316: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
16317: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
16318:
16319: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
16320: classes/table.C, include/pa_common.h, include/pa_globals.h,
16321: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
16322: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
16323: types/pa_vint.h, types/types.dsp: op compiled
16324:
16325: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
16326: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
16327: main/untaint.C, types/pa_vtable.h: string, response compiled
16328:
16329: 2003-02-07 paf
16330:
16331: * src/: classes/table.C, types/pa_vtable.h: table compiled
16332:
16333: 2003-02-06 paf
16334:
16335: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
16336: mail compiled
16337:
16338: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
16339: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
16340: types/pa_vfile.h, types/pa_vimage.h: image compiled
16341:
16342: * src/classes/: file.C, form.C: form compiled
16343:
16344: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
16345: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
16346: types/pa_vfile.C, types/pa_vfile.h: file compiled
16347:
16348: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
16349: types/pa_vmath.h: math compiled [win32]
16350:
16351: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
16352: types/pa_vstring.h: hash compiled
16353:
16354: 2003-02-04 paf
16355:
16356: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
16357: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16358: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
16359: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
16360: types/pa_vhash.h: hash 50% compiled
16361:
16362: * src/: classes/date.C, classes/file.C, classes/hash.C,
16363: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
16364: classes/string.C, classes/table.C, classes/xdoc.C,
16365: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
16366: main/pa_string.C: date compiled
16367:
16368: * src/classes/: classes.dsp, double.C: double compiled
16369:
16370: * src/: classes/date.C, classes/double.C, classes/file.C,
16371: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
16372: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16373: classes/string.C, classes/table.C, classes/void.C,
16374: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
16375: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
16376: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
16377: compiled
16378:
16379: * src/: classes/date.C, classes/double.C, classes/file.C,
16380: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16381: classes/math.C, classes/op.C, classes/response.C,
16382: classes/string.C, classes/table.C, classes/void.C,
16383: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16384: types/pa_vvoid.h: void compiled :)
16385:
16386: * src/: include/pa_globals.h, main/pa_cache_managers.C,
16387: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16388: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16389: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
16390: main/pa_string.C, main/pa_uue.C, main/untaint.C,
16391: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
16392: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
16393: types/pa_vresponse.C, types/pa_vstateless_class.C,
16394: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
16395: types/pa_wcontext.C, types/types.dsp: removed stupid
16396: value_includes.h
16397:
16398: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
16399: trying to remove stupid value_includes.h
16400:
16401: * src/main/pa_exec.C: pa_exec compiled on win32
16402:
16403: * src/main/pa_exec.C: libmain.a compiled on six [unix]
16404:
16405: * src/: include/pa_globals.h, include/pa_request.h,
16406: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
16407: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
16408: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
16409: types/pa_vrequest.C, types/pa_vstateless_class.C,
16410: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
16411:
16412: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
16413: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
16414: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
16415:
16416: * src/: include/pa_array.h, include/pa_config_includes.h,
16417: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
16418: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
16419: compiled
16420:
16421: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
16422: name conflicts)
16423:
16424: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
16425: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
16426: yelds "virtual memory exhausted" while trying to compile
16427: execute.C [eating up to 127MB]
16428:
16429: 2003-02-03 paf
16430:
16431: * src/: include/pa_config_includes.h, include/pa_hash.h,
16432: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
16433: main/pa_common.C, types/pa_value.C, types/pa_value.h,
16434: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
16435: types/pa_vint.h, types/pa_vjunction.h,
16436: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
16437: started gcc compiling pa_common compiled
16438:
16439: * src/: include/pa_exception.h, include/pa_pool.h,
16440: main/pa_exception.C: exception gcc change #1
16441:
1.116 moko 16442: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
16443: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 16444:
16445: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
16446:
16447: * src/types/pa_vtable.C: vtable compiled
16448:
16449: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
16450:
16451: * src/: include/pa_cache_managers.h, main/pa_request.C,
16452: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
16453:
16454: * src/types/pa_vstateless_class.C: vstateless_class compiled
16455:
16456: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
16457:
16458: * src/types/pa_vrequest.C: vrequest compiled
16459:
16460: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
16461: pa_vobject.C, pa_vobject.h: vobject compiled
16462:
16463: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
16464: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16465: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
16466: compiled
16467:
16468: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
16469:
16470: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
16471: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
16472: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
16473: compiled
16474:
16475: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16476: main.lib - 0 error(s), 0 warning(s)
16477:
16478: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16479: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
16480:
16481: 2003-01-31 paf
16482:
16483: * src/: include/pa_array.h, include/pa_operation.h,
16484: include/pa_request.h, main/execute.C, main/main.dsp,
16485: types/pa_vjunction.h: started last file from main library:
16486: execute
16487:
16488: * src/: include/pa_request.h, include/pa_sapi.h,
16489: main/compile.tab.C, main/compile.y, main/compile_tools.h,
16490: main/pa_request.C, targets/cgi/parser3.C,
16491: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
16492: types/pa_vhash.h: pa_request compiled
16493:
16494: * src/: classes/op.C, classes/string.C, include/pa_common.h,
16495: include/pa_globals.h, include/pa_request.h,
16496: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
16497: main/execute.C, main/main.dsp, main/pa_common.C,
16498: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16499: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
16500: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
16501: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
16502: types/types.dsp: most pa_request compiled
16503:
16504: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16505: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16506: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16507: classes/op.C, classes/response.C, classes/string.C,
16508: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16509: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16510: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16511: include/pa_config_fixed.h, include/pa_config_includes.h,
16512: include/pa_dictionary.h, include/pa_dir.h,
16513: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16514: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
16515: include/pa_pool.h, include/pa_request.h,
16516: include/pa_request_charsets.h, include/pa_request_info.h,
16517: include/pa_sapi.h, include/pa_socks.h,
16518: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16519: include/pa_stack.h, include/pa_string.h,
16520: include/pa_stylesheet_connection.h,
16521: include/pa_stylesheet_manager.h, include/pa_table.h,
16522: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16523: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16524: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
16525: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
16526: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16527: main/compile.C, main/compile.tab.C, main/compile.y,
16528: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16529: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
16530: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16531: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16532: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16533: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16534: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16535: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
16536: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
16537: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16538: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
16539: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
16540: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
16541: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
16542: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16543: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16544: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16545: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16546: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16547: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16548: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16549: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16550: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16551: types/pa_vresponse.h, types/pa_vstateless_class.C,
16552: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16553: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16554: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16555: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16556: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16557: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
16558:
16559: * ChangeLog, src/classes/classes.h, src/classes/op.C,
16560: src/include/pa_cache_managers.h, src/include/pa_charset.h,
16561: src/include/pa_charsets.h, src/include/pa_common.h,
16562: src/include/pa_dictionary.h, src/include/pa_exception.h,
16563: src/include/pa_exec.h, src/include/pa_pool.h,
16564: src/include/pa_request.h, src/include/pa_sapi.h,
16565: src/include/pa_sql_connection.h,
16566: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16567: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
16568: src/main/compile.tab.C, src/main/compile_tools.C,
16569: src/main/compile_tools.h, src/main/main.dsp,
16570: src/main/pa_charset.C, src/main/pa_charsets.C,
16571: src/main/pa_common.C, src/main/pa_dictionary.C,
16572: src/main/pa_exception.C, src/main/pa_exec.C,
16573: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16574: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
16575: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
16576: src/types/pa_vclass.h, src/types/pa_vcookie.C,
16577: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16578: src/types/pa_vdouble.h, src/types/pa_venv.h,
16579: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
16580: src/types/pa_vhash.h, src/types/pa_vimage.C,
16581: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
16582: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
16583: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16584: src/types/pa_vobject.C, src/types/pa_vobject.h,
16585: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16586: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16587: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16588: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
16589: src/types/pa_vstring.h, src/types/pa_vtable.h,
16590: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
16591: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
16592: died, long live StringPtr
16593:
16594: 2003-01-30 paf
16595:
16596: * src/: include/pa_charset.h, include/pa_request.h,
16597: include/pa_sql_driver_manager.h, main/compile.tab.C,
16598: main/compile.y, main/compile_tools.h, main/pa_request.C,
16599: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
16600:
16601: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
16602: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
16603: types/pa_vhash.h, types/pa_vmethod_frame.h,
16604: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16605: types/types.dsp: vstateless_class compiled
16606:
16607: * src/main/compile.C: compile compiled
16608:
16609: * src/: include/pa_array.h, include/pa_operation.h,
16610: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
16611: main/pa_table.C: compile_tools compiled
16612:
16613: * src/: include/pa_operation.h, main/compile.y,
16614: main/compile_tools.C, main/compile_tools.h: started
16615: compile_tools. vagues ideas of how to free compiled code
16616:
16617: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
16618: main/main.dsp, types/pa_value.C, types/pa_value.h,
16619: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
16620: compiled
16621:
16622: 2003-01-29 paf
16623:
16624: * src/: include/pa_globals.h, include/pa_request.h,
16625: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16626: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
16627: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
16628: compiled
16629:
16630: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
16631: now
16632:
16633: * src/: include/pa_array.h, include/pa_exception.h,
16634: include/pa_pool.h, main/pa_exception.C: gd compiled
16635:
16636: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
16637: compiled
16638:
16639: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16640: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
16641: types/pa_vfile.h: vfile compiled
16642:
16643: * src/: include/pa_common.h, include/pa_globals.h,
16644: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
16645: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
16646: types/pa_vform.C, types/pa_vform.h: vcookie compiled
16647:
16648: * src/: include/pa_exception.h, main/pa_cache_managers.C,
16649: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
16650: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
16651: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16652: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
16653:
16654: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
16655: main/main.dsp, main/untaint.C: more compiled
16656:
16657: * src/: include/pa_charsets.h, include/pa_request.h,
16658: include/pa_request_info.h, include/pa_string.h,
16659: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
16660: types/pa_vresponse.h: vrequest compiled
16661:
16662: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
16663: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
16664: pa_vresponse.h, pa_wcontext.h: vrequest compiled
16665:
16666: * src/: classes/classes.h, include/pa_charset.h,
16667: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
16668: include/pa_request.h, include/pa_string.h, main/main.dsp,
16669: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
16670: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
16671: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
16672: types/pa_vrequest.C, types/pa_vrequest.h,
16673: types/pa_vstateless_class.h, types/pa_vstring.h,
16674: types/pa_vvoid.h: vrequest,vdouble,vint compiled
16675:
16676: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
16677: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
16678: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
16679: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
16680: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16681: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
16682: types/pa_vobject.h, types/pa_vstateless_class.h,
16683: types/pa_vstateless_object.h, types/pa_vstatus.h,
16684: types/pa_vstring.h, types/types.dsp: vmath compiled
16685:
16686: 2003-01-28 paf
16687:
16688: * src/: classes/classes.h, classes/date.C, classes/file.C,
16689: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
16690: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
16691: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
16692: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
16693: compile_tools
16694:
16695: * src/: include/pa_charset.h, include/pa_exception.h,
16696: include/pa_request.h, include/pa_string.h, main/untaint.C:
16697: untaint compiled
16698:
16699: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
16700: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
16701: more compiled. struck with string::store_to needing to know
16702: source/client charsets
16703:
16704: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
16705: types/pa_vfile.h: uue compiled
16706:
16707: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
16708: table compiled
16709:
16710: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
16711: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
16712:
16713: * src/: include/pa_charset.h, main/pa_charset.C,
16714: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
16715: introduced]
16716:
16717: * src/: classes/date.C, include/pa_charset.h,
16718: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
16719: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
16720: pa_charsets compiled
16721:
16722: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
16723: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
16724:
16725: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
16726: common compiled
16727:
16728: * src/: include/pa_charsets.h, main/pa_charsets.C,
16729: main/pa_sql_driver_manager.C: pa_charsets compiled
16730:
16731: * src/: include/pa_array.h, include/pa_charset.h,
16732: include/pa_charsets.h, include/pa_pool.h,
16733: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16734: include/pa_stack.h, include/pa_string.h,
16735: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
16736: sql_driver_manager compiled
16737:
16738: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
16739: letter i with two dots added to koi, all ukranian letters added
16740: to win1251.
16741:
16742: typographic simbol 0xb9 deleted from win1251 [strange one & were
16743: abscent from koi]
16744:
16745: 2003-01-27 paf
16746:
16747: * src/: include/pa_exception.h, include/pa_sql_connection.h,
16748: include/pa_sql_driver_manager.h, include/pa_string.h,
16749: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
16750: sql/pa_sql_driver.h: paused on sql_manager
16751:
16752: * src/: include/pa_cache_managers.h, include/pa_pool.h,
16753: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16754: include/pa_stack.h, main/pa_sql_driver_manager.C,
16755: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
16756:
16757: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
16758: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16759: include/pa_table.h, main/pa_sql_driver_manager.C,
16760: main/pa_table.C: table compiled
16761:
16762: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
16763: cache_managers compiled
16764:
16765: * src/: include/pa_array.h, include/pa_charset.h,
16766: include/pa_pool.h, main/pa_charset.C: charset compiled
16767:
16768: * src/: include/pa_pool.h, main/pa_common.C: common compiled
16769:
16770: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
16771: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16772: main/pa_string.C, types/pa_value.C, types/pa_value.h,
16773: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
16774: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
16775:
16776: 2003-01-24 paf
16777:
16778: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
16779: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
16780: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16781: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
16782: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
16783: types/pa_vint.h, types/pa_vjunction.h,
16784: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16785: types/pa_vstatus.h, types/pa_vstring.h: more patched
16786:
16787: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
16788: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
16789: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
16790: main/pa_string.C, main/pa_table.C: string compiled
16791:
16792: * src/: include/pa_array.h, include/pa_common.h,
16793: include/pa_dictionary.h, include/pa_exception.h,
16794: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
16795: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
16796: main/pa_string.C: dictionary compiled
16797:
16798: 2003-01-23 paf
16799:
16800: * src/: include/pa_array.h, include/pa_common.h,
16801: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
16802: include/pa_request.h, include/pa_string.h, main/pa_common.C,
16803: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
16804: types/pa_value.h: resurrected pool in new sense: now it's
16805: factory, producing&accounting memory chunks for read[autofree]
16806: buffers
16807:
16808: * src/: include/pa_array.h, include/pa_exception.h,
16809: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
16810: main/pa_exception.C, main/pa_table.C: table compiled
16811:
16812: * src/: classes/image.C, classes/op.C, include/pa_array.h,
16813: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
16814: include/pa_pool.h, include/pa_pragma_pack_begin.h,
16815: include/pa_pragma_pack_end.h, include/pa_sapi.h,
16816: include/pa_string.h, include/pa_table.h, include/pa_types.h,
16817: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
16818: main/pa_table.C: aint that easy
16819:
16820: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
16821: main/main.dsp: continued with Hash
16822:
16823: * src/main/pa_common.C: connect_string allocated on heap[wes on
16824: stack] now. and exception can be reported OK now [can be reported
16825: outside of pro c with that stack]
16826:
16827: 2003-01-22 paf
16828:
16829: * src/: include/pa_array.h, include/pa_charset.h,
16830: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
16831: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
16832: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
16833: base: contains references_count. auto_ptr template calls
16834: add_ref/release
16835:
16836: 2003-01-21 paf
16837:
16838: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16839: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16840: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16841: classes/op.C, classes/response.C, classes/string.C,
16842: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16843: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16844: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16845: include/pa_config_fixed.h, include/pa_config_includes.h,
16846: include/pa_dictionary.h, include/pa_dir.h,
16847: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16848: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16849: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16850: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16851: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16852: include/pa_stack.h, include/pa_string.h,
16853: include/pa_stylesheet_connection.h,
16854: include/pa_stylesheet_manager.h, include/pa_table.h,
16855: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16856: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16857: lib/pcre/pcre_parser_ctype.c, main/compile.C,
16858: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16859: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16860: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16861: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16862: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16863: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16864: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16865: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16866: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16867: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16868: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16869: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16870: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
16871: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
16872: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16873: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16874: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16875: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16876: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16877: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16878: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16879: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16880: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16881: types/pa_vstateless_object.h, types/pa_vstatus.C,
16882: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16883: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16884: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16885: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16886: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
16887: 2002->2003
16888:
16889: 2003-01-16 paf
16890:
16891: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
16892: src/main/pa_globals.C: http:// introducing $.any-status(1)
16893:
16894: * operators.txt, src/include/pa_config_fixed.h,
16895: src/main/pa_common.C: http request now return status. and not
16896: fail on status!=200
16897:
16898: 2003-01-15 paf
16899:
16900: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
16901:
16902: 2003-01-14 paf
16903:
16904: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
16905: mkinstalldirs: removed some ancient files [they in / really]
16906:
16907: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
16908: regretfully needed patch in two places. in config_fixed.h made
16909: stubs for lib to compile in MSVC
16910:
16911: 2003-01-13 paf
16912:
16913: * config.guess, config.sub, ltmain.sh: removed last piece of
16914: configure.in(libtool) hacks
16915:
1.116 moko 16916: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 16917: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
16918: ltdl.h: moved to latest libtool (1.4.3)
16919:
16920: 2003-01-10 paf
16921:
16922: * src/lib/ltdl/: configure, configure.in: PROG_NM
16923:
16924: * src/main/pa_globals.C: moved to latest xml lib versions, changed
16925: patches. libxml2 >= 2.5.1
16926: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
16927: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
16928: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16929:
16930: * INSTALL: moved to latest versions of xml libs libxml2 >=
16931: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
16932: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
16933: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16934:
16935: 2003-01-09 paf
16936:
16937: * INSTALL: xml,xslt,gdome lib urls updated
16938:
16939: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 16940: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 16941: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 16942: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
16943: 1.7.2
1.95 moko 16944:
16945: * depcomp: moving to automake 1.7.2
16946:
16947: 2002-12-27 paf
16948:
16949: * src/include/pa_version.h: 0007
16950:
16951: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
16952: outdated parts, made links to language docs
16953:
16954: * src/include/pa_config_auto.h.in: comment
16955:
16956: 2002-12-26 paf
16957:
16958: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
16959: not contain trailing / fixed.
16960:
16961: * INSTALL: changing SAFE_MODE politics
16962:
16963: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
16964:
16965: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
16966:
16967: 2002-12-25 paf
16968:
16969: * src/main/pa_globals.C: optimized-xml
16970:
16971: * src/main/pa_globals.C: optimized-as-is
16972:
16973: 2002-12-24 paf
16974:
16975: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
16976: fixed [were really called with zero size when .html?a=&b=]
16977:
16978: * src/classes/mail.C: $MAIL in @conf now invalid when configured
16979: with --with-sendmail
16980:
16981: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
16982: fixed]
16983:
16984: 2002-12-23 paf
16985:
16986: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
16987: ignoring parameters & were storing only string with default
16988: expires
16989:
16990: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
16991: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
16992: December 23, 2002 4:22 AM Subject: bug â
16993: Charset::transcode_buf2xchar
16994:
16995: 2002-12-20 paf
16996:
16997: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
16998: non-cgi [script] runs
16999:
17000: 2002-12-19 paf
17001:
17002: * INSTALL: --without-iconv recommended [it crashes on some systems
17003: [tested on elik]] moreover, it's not needed there [parser
17004: registers charsets itself]
17005:
17006: * INSTALL: --without-iconv recommended [it crashes on some systems
17007: [tested on elik]]
17008:
17009: * operators.txt, src/include/pa_globals.h,
17010: src/include/pa_request.h, src/main/pa_globals.C,
17011: src/main/pa_request.C: $response:download
17012:
17013: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
17014: compiler [win32]].
17015:
17016: 2002-12-18 paf
17017:
17018: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
17019:
17020: 2002-12-17 paf
17021:
17022: * src/targets/cgi/parser3.C: merged die&iis changes
17023:
17024: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
17025: to exit(1) 2. more flexible iilegal call check
17026:
17027: 2002-12-16 paf
17028:
17029: * ltmain.sh: some automakes silly insist on having this handy
17030:
17031: * src/main/untaint.C: filespec russian small 'r' changed to latin
17032: 'p' bug fix
17033:
17034: 2002-12-15 paf
17035:
17036: * src/main/untaint.C: filespec russian small 'r' changed to latin
17037: 'p'
17038:
17039: * configure.in, src/include/pa_config_auto.h.in,
17040: src/main/compile.C, src/main/pa_common.C: merged small changes
17041: from branch 6 to HEAD
17042:
17043: * src/main/compile.C: removed warning
17044:
17045: * src/main/pa_common.C: ftruncate having checked
17046:
17047: * configure.in, src/include/pa_version.h: new version
17048:
17049: 2002-12-14 paf
17050:
17051: * src/classes/table.C: removed unnecessary code
17052:
17053: * src/sql/pa_sql_driver.h: exception type fixed
17054:
17055: 2002-12-09 paf
17056:
17057: * src/types/pa_vvoid.h: $void.store[now] error
17058:
17059: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17060:
17061: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
17062: tries to write core dump
17063:
17064: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17065:
17066: * src/: classes/hash.C, classes/string.C, classes/table.C,
17067: classes/void.C, main/pa_sql_driver_manager.C,
17068: sql/pa_sql_driver.h: changed exception handling mech in sql
17069: handlers #2
17070:
17071: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
17072: exception handling mech in sql handlers
17073:
17074: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
17075: handlers
17076:
17077: * src/: classes/hash.C, classes/string.C, classes/table.C,
17078: classes/void.C, main/pa_sql_driver_manager.C,
17079: sql/pa_sql_driver.h: changed exception handling mech in sql
17080: handlers
17081:
1.116 moko 17082: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
17083: to write makefile which used libtool to install things, which is
17084: not needed
1.95 moko 17085:
17086: 2002-12-06 paf
17087:
17088: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
17089: $hash.fields -- pseudo field to make 'hash' more like 'table'
17090:
17091: 2002-12-05 paf
17092:
17093: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
17094: cc/bcc OK now
17095:
17096: * src/main/untaint.C: mail header closed properly
17097:
17098: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
17099: header ',' allowed. still bugs in smtp [only one receiptient
17100: works, cc, bcc ignored now, and MAILED ;)]
17101:
17102: [strncpy killed, memnchr used]
17103:
17104: * src/main/pa_table.C: table-copy now current=0
17105:
17106: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
17107: lowlevel proc
17108:
17109: * src/targets/cgi/parser3.C: more checks on
17110: http://domain/parser.cgi start [maybe some getenv returns "",
17111: checked that now
17112:
17113: * src/targets/cgi/parser3.C: more checks on
17114: http://domain/parser.cgi start [maybe some getenv returns "",
17115: checked that now
17116:
17117: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
17118: out-of-mem errors reached log]
17119:
17120: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
17121: mail:send MIME-Version default
17122:
17123: * src/main/main.dsp: pa_version included into main.dsp
17124:
17125: 2002-12-04 paf
17126:
17127: * src/types/pa_vform.C: $form:field string value cut by premature 0
17128:
17129: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
17130: lib/libltdl -> lib/ltdl Win32 changes. s
17131:
17132: * src/classes/classes.awk: more strict *.C$
17133:
17134: * gnu.dsp: restored
17135:
1.116 moko 17136: * configure.in, gnu.dsp, src/lib/Makefile.am,
17137: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
17138: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
17139: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
17140: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
17141: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
17142: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
17143: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
17144: now created with /configure, not ltdl/configure, so it does have
17145: no problems with automake. ltdl/configure
17146: AC_OUTPUT(Makefile<<removed)
1.95 moko 17147:
17148: 2002-12-02 paf
17149:
17150: * operators.txt: removed outdated status:db
17151:
17152: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
17153: src/main/pa_common.C, src/main/pa_request.C,
17154: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
17155: tainted parts becomes http-header
17156:
17157: 2002-11-29 paf
17158:
17159: * src/classes/date.C, src/classes/image.C, operators.txt: exif
17160: dates now objects of type date
17161:
17162: * src/classes/image.C: file.seek removed [it were used in image.C
17163: only, and for parser user this means that jpeg image has bad
17164: size in fragment's header] now used image.format
17165:
17166: * src/: include/pa_common.h, main/pa_common.C,
17167: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
17168: now handled exactly like $response:header values. e.g. can be
17169: hash [can have subattributes] & contain date values.
17170:
17171: * src/main/pa_common.C: http:// param values lang forced URI
17172:
17173: * src/main/pa_common.C: http:// tainted partes now %xx
17174:
17175: 2002-11-28 paf
17176:
17177: * operators.txt: http.timeout
17178:
17179: * src/classes/image.C: ^image.length now counts interchar space.
17180: plus space after last char
17181:
17182: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
17183:
17184: * src/classes/image.C: ^image.font width measurer now scans full
17185: height [were -1]
17186:
17187: * configure.in: stopped double libltdl/Makefile generation
17188:
17189: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
17190: chars [one top horizontal line of 1pixel height were missing]
17191:
17192: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
17193: 'false' to go into (Hash *) parameter
17194:
17195: 2002-11-27 paf
17196:
17197: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
17198: types/pa_vmail.C: response:body[file] if file nows it's name now
17199: returns content-disposition: >>attachment<<
17200:
17201: * src/classes/image.C: ^image.font << bad font file-size now
17202: properly reported
17203:
17204: 2002-11-26 paf
17205:
17206: * src/main/pa_request.C: fixed lang in reponse header
17207:
17208: * src/main/pa_common.C: utf8 prefix ignored @read text
17209:
17210: * operators.txt, src/main/pa_common.C: http:// response status!=200
17211: made exception: http.status with source=bad status#
17212:
17213: 2002-11-25 paf
17214:
17215: * configure.in, src/classes/image.C,
17216: src/include/pa_config_auto.h.in,
17217: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 17218: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
17219: const void related probs fixed
1.95 moko 17220:
17221: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
17222:
17223: $file[^file::load[http://there]] $file.SERVER
17224:
17225: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
17226: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
17227: http options [invalid onces now reported] made default
17228: user-agent: paf
17229:
17230: * operators.txt, src/classes/file.C, src/classes/table.C,
17231: src/classes/xdoc.C, src/include/pa_common.h,
17232: src/include/pa_globals.h, src/main/pa_common.C,
17233: src/main/pa_globals.C, src/main/pa_request.C,
17234: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
17235: now understand http:// prefix and additional params, sample:
17236: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
17237: $.USER-AGENT[parser3] ]]
17238:
17239: 2002-11-22 paf
17240:
17241: * src/classes/image.C, src/include/pa_globals.h,
17242: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
17243: src/types/pa_vimage.h, operators.txt: $image.exif support
17244: $image.exif.DateTime & co
17245:
17246: 2002-11-21 paf
17247:
17248: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
17249: _PASS_APPENDED)
17250:
17251: * src/classes/image.C: jpeg size measure fixed: were badly skipping
17252: EXIF information [were big block and it's size were considered
17253: negative :(]
17254:
17255: * operators.txt, src/classes/image.C, src/include/pa_common.h,
17256: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
17257: internals rewritten. no there's reader.seek, and all's ready for
17258: EXIF extraction [now we fail to measure files with EXIF info]
17259:
17260: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
17261: O_TRUNC truncates even exclusevely write-locked file [thanks to
17262: Igor Milyakov <virtan@rotabanner.com> for discovering]
17263:
17264: 2002-11-20 paf
17265:
17266: * src/targets/cgi/parser3.C: logging @signal += query_string
17267:
17268: * configure.in, src/include/pa_config_auto.h.in,
17269: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
17270: comment
17271:
17272: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
17273:
17274: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17275: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
17276: currently processed document SIGPIPE >> interrupts request
17277: processing [exception = DB rollback]
17278:
17279: * src/main/pa_exec.C: comment
17280:
17281: * src/main/pa_exec.C: pa_exec: data written only if size>0
17282:
17283: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
17284: << disable HTTP-POST repassing
17285:
17286: * src/: include/pa_config_fixed.h, main/pa_common.C,
17287: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
17288: pipe read errors now checked
17289:
17290: 2002-11-19 paf
17291:
17292: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
17293: CGI: Illegal call
17294:
17295: 2002-11-01 paf
17296:
17297: * src/main/execute.C: comment
17298:
17299: 2002-10-31 paf
17300:
17301: * src/main/execute.C: found out why, checked that for now. todo:
17302: find out a way for that user could do that
17303:
17304: * src/types/pa_vstateless_object.h: object put replaces static
17305: parent if any
17306:
17307: * src/types/pa_vobject.C: object put replaces static parent if any
17308:
17309: * src/: classes/form.C, classes/mail.C, classes/op.C,
17310: classes/xnode.h, main/compile.tab.C, main/execute.C,
17311: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17312: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17313: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17314: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17315: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17316: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17317: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17318: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17319: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17320: types/pa_vstateless_object.h, types/pa_vstatus.C,
17321: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17322: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17323: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17324: types/pa_wwrapper.h: static fix merged
17325:
17326: * src/: main/compile.tab.C, types/pa_vobject.C: killed
17327: $virtual_fields in dynamic, but one can reach derived
17328: static[class] variable from base
17329:
17330: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
17331: types/pa_vobject.C, types/pa_vobject.h,
17332: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
17333: statics, left $virtual_fields in dynamic
17334:
17335: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
17336: one can't remember derivates in base class: there's so many of
17337: them. also there can be no virtual method calls in static
17338: classes
17339:
17340: * src/: classes/form.C, classes/mail.C, classes/op.C,
17341: classes/xnode.h, main/execute.C, main/pa_request.C,
17342: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17343: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17344: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17345: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17346: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17347: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17348: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17349: types/pa_vresponse.C, types/pa_vresponse.h,
17350: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17351: types/pa_vstateless_object.h, types/pa_vstatus.C,
17352: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17353: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17354: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17355: types/pa_wwrapper.h: static call $self fixed
17356:
17357: * src/main/execute.C: comment
17358:
17359: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
17360: ^process[$caller.self]{...} now compiles to last derived object
17361: part of that 'self'
17362:
17363: 2002-10-29 paf
17364:
17365: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
17366: re-passing [iis to blame]
17367:
17368: * src/classes/string.C: changed string.save to pass current sql
17369: connection to cstr thus one can ^connect[some server]{
17370: $s[insert into table x (x) values (^taint[sql]{value})]
17371: ^s.save[some.sql] } and he'd get in some.sql file code with
17372: properly escaped. [tried in mssql->mysql export->import of
17373: binary data]
17374:
17375: 2002-10-25 paf
17376:
17377: * src/types/pa_vresponse.C: case insensitive response user fields
17378: get/put
17379:
17380: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17381: types/pa_vresponse.C: saving for maybe-future
17382:
17383: 2002-10-23 paf
17384:
17385: * operators.txt, src/classes/table.C: ^table.hash{code}...
17386: ^table.hash(expr)...
17387:
17388: * src/types/pa_vmail.C: email whitespace trimBoth-ed
17389:
17390: 2002-10-22 paf
17391:
17392: * src/types/: pa_vform.C, pa_vform.h: removed needless
17393: VForm::Append...(...Value)
17394:
17395: * src/main/execute.C: $.name outside of $name[...] checked
17396:
17397: * src/main/: compile.tab.C, compile.y: lexer changed to fix
17398: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
17399:
17400: 2002-10-21 paf
17401:
17402: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
17403: $form:qtail $form:imap.x/y
17404:
17405: * operators.txt, src/types/pa_vform.C: $form:nameless =
17406: "?value&...", "...&value&...", "...&value"
17407:
17408: * operators.txt, src/types/pa_vform.C: $form:image-map
17409:
17410: * operators.txt, src/classes/file.C: /some/page.html:
17411: ^file:fullpath[a.gif] => /some/a.gif
17412:
17413: 2002-10-17 paf
17414:
17415: * src/main/: compile.tab.C, compile.y: operators precedence changed
17416: a little: logical not and bitwise negation precedence made
17417: highest, << and >> bitshits precedence made equal [were << higher
17418: than >>]
17419:
17420: * src/classes/op.C: exception handling fixed [were bad with
17421: contexts]
17422:
17423: 2002-10-16 paf
17424:
17425: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17426: main/pa_request.C: Request::self considered equal to
17427: VMethodFrame::self, and removed, Request::get_self() mapped to
17428: VMethodFrame.self()
17429:
17430: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
17431: $hash in open field now gives old good error meesage
17432:
17433: 2002-10-15 paf
17434:
17435: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
17436: use ^if($junction is junction){was and now true}
17437:
17438: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
17439: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
17440: types/pa_vxnode.C: xml->parser strings now have origin, which
17441: points to place where value left xml library and came to parser:
17442: place of dom field extraction/call
17443:
17444: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
17445: main/compile.tab.C, main/compile.y, main/execute.C,
17446: types/pa_vmethod_frame.h: removed last pieces of old code
17447: allowing $junction.xxx at compile time
17448:
17449: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
17450: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
17451: objects also considered [were only classes]
17452:
17453: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
17454: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
17455: with CLASS self. [ (request&method_frame).self temporarily
17456: changed ]
17457:
17458: * src/classes/: hash.C, op.C: method_frame now always changed, with
17459: no exception to native calls. for&foreach changed to use
17460: method_frame.caller for their var's name context
17461:
17462: * src/: main/execute.C, targets/cgi/parser3.C,
17463: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
17464: compiling to system classes disabled
17465:
17466: * operators.txt, src/classes/op.C:
17467: ^process[$caller.CLASS]{code-string} added
17468:
17469: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
17470: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
17471: src/types/Makefile.am, src/types/pa_vjunction.C,
17472: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
17473: src/types/types.dsp: removed $junction.get $junction.set[]
17474: introducing $caller
17475:
17476: * src/types/pa_value.h: removed outdated comments. doxygen would
17477: find them lower by inheritance tree
17478:
17479: * src/types/pa_vjunction.C: ident
17480:
17481: 2002-10-14 paf
17482:
17483: * src/classes/op.C: process compiles to code's class class
17484:
17485: * src/: classes/form.C, classes/mail.C, classes/op.C,
17486: include/pa_request.h, main/compile.C, main/compile.tab.C,
17487: main/compile.y, main/execute.C, main/pa_request.C,
17488: types/pa_vstateless_class.h: operators now main-class-methods
17489:
17490: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
17491: better stack trace [has "call" & co there]
17492:
17493: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17494: operators @auto now executed in MAIN context
17495:
17496: * src/main/execute.C: operator execution context now = MAIN, not
17497: closest stack frame
17498:
17499: @touchit[] $i[after]
17500:
17501: ----t.html $i[before] << local ^touchit[] $i << now 'before',
17502: were 'after'
17503:
17504: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
17505: 'after'
17506:
17507: * src/main/execute.C: comment
17508:
17509: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
17510: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
17511: action]
17512:
17513: * src/types/pa_vxnode.C: misreplace fixed
17514:
17515: * configure, configure.in, src/include/pa_config_auto.h.in,
17516: src/types/pa_vstatus.C, operators.txt:
17517: $status:rusage.tv_secs/usecs introduced
17518:
17519: 2002-10-09 paf
17520:
17521: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
17522: on empty string [or uses (default)]
17523:
17524: 2002-10-08 paf
17525:
17526: * src/main/untaint.C: mail header quoted printable changed after
17527: RFC reread
17528:
17529: * operators.txt: plan on ^if(method
17530:
17531: * src/types/pa_vxnode.C: misreplace
17532:
17533: 2002-09-24 paf
17534:
1.116 moko 17535: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 17536:
17537: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
17538: mailreceive would compile on freebsd now
17539:
17540: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
17541: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 17542: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
17543: mailreceive would compile on freebsd now
1.95 moko 17544:
17545: * src/: classes/file.C, main/untaint.C: 1. file spec language
17546: changed: now there are only few chars are untainted: * ? ' " < >
17547: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
17548: one should use ^untaint[uri]{...} now]
17549:
17550: 2. $list[^file:list[dir]] now returns simply tainted names in
17551: $list.name, not tainted as filespec
17552:
17553: @russianindex[] #dir with files with russian-lang names
17554: $where[dir]
17555:
17556: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
17557: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
17558:
17559: 2002-09-23 paf
17560:
17561: * src/types/pa_vdouble.h: double->int round added
17562:
17563: * src/classes/date.C: date bug fix, now
17564: round(floatDays*secondsPerDay)
17565:
17566: * src/classes/date.C: date bug fix, now
17567: round(floatDays*secondsPerDay)
17568:
17569: 2002-09-20 paf
17570:
17571: * src/main/execute.C: code junction calls disabled [before: code
17572: was compiled in such a way, that there were no code-junctions in
17573: OP_CALL]
17574:
17575: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
17576:
17577: @badjunctioncallinside[code] ^code[]
17578:
17579: * src/main/: compile.tab.C, compile.y: changed grammer on junction
17580: expanding to include ^junction.method
17581:
17582: * src/main/pa_common.C: -d "DIR/" now true
17583:
17584: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
17585: as internal xdoc encoding, and after decoding attributes set by
17586: dom functions now encoded OK, not as digital entities
17587:
17588: * src/classes/xdoc.C: empty transform result, being taken as file
17589: now returns empty file, not raises stupid error about "stat-ed
17590: file"
17591:
17592: * src/types/pa_vhash.h: hash.foreach modification of existing keys
17593: allowed
17594:
17595: * src/types/types.dsp: introducing $junction.get/put(1) one can
17596: write iterators now:
17597:
17598: ^user-foreach[key;value]{$key=$value<br>}
17599:
17600: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17601: $code.value($i*2) $code }
17602:
17603: * src/main/compile_tools.h: mistype
17604:
1.116 moko 17605: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
17606: thus taking linking options configure changes into account [were:
17607: ignoring]
1.95 moko 17608:
17609: * src/types/: pa_vjunction.C, Makefile.am: introducing
17610: $junction.get/put(1) one can write iterators now:
17611:
17612: ^user-foreach[key;value]{$key=$value<br>}
17613:
17614: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17615: $code.value($i*2) $code }
17616:
17617: * src/: include/pa_opcode.h, include/pa_request.h,
17618: main/compile.tab.C, main/compile.y, main/execute.C,
17619: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
17620: introducing $junction.get/put(1) one can write iterators now:
17621:
17622: ^user-foreach[key;value]{$key=$value<br>}
17623:
17624: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17625: $code.value($i*2) $code }
17626:
17627: 2002-09-19 paf
17628:
1.116 moko 17629: * Makefile.am: new: make commit
1.95 moko 17630:
17631: * aclocal.m4: forced to be older
17632:
17633: 2002-09-18 paf
17634:
17635: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
17636: src/main/compile.y, src/main/execute.C: << >> int shifts
17637:
17638: * src/: include/pa_common.h, include/pa_request.h,
17639: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
17640: - now this - fatal error
17641:
17642: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
17643: that one can pass binary data there
17644:
17645: * src/: classes/date.C, classes/double.C, classes/file.C,
17646: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17647: classes/op.C, classes/response.C, classes/string.C,
17648: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17649: include/pa_request.h: pa_request contexts made privated, plus
17650: get_{self/method_frame} to read. Request_context_saver used in
17651: ^try to save flang too. [were not saved]
17652:
17653: * src/types/pa_vresponse.C: header value chains joined before
17654: output, this should help $.subject[$var $var] from being
17655: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
17656:
17657: 2002-09-17 paf
17658:
17659: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
17660: removed changes, operators executed with calling self. lots of
17661: code with ^include code relies on defined/defining self variables
17662:
17663: $a[1] ^include[print_a.p] print_a.p: $a
17664:
17665: ^include[set_a.p] a=$a set_a.p: $a[1]
17666:
17667: * src/: classes/op.C, main/execute.C, main/pa_request.C,
17668: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
17669: types/pa_vstateless_class.h: operators now executed with MAIN
17670: self. it's for ^include sake, too strong a change
17671:
17672: * src/classes/op.C: made place for ^process to compile it's code to
17673: in case of no self
17674:
17675: * src/main/execute.C: found ancient param to Junction, removed.
17676: allowed passing self to native_code_operators [for ^process to
17677: work, she needs self]
17678:
17679: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
17680: types/pa_vstateless_class.h: found ancient param to Junction,
17681: removed. allowed passing self to native_code_operators [for
17682: ^process to work, she needs self]
17683:
17684: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
17685: types/pa_value.h, types/pa_vmethod_frame.h,
17686: types/pa_vstateless_class.h: allowed Request.self to be 0,
17687: checked that in VMethodFrame get/put and $self.
17688:
17689: * src/classes/: table.C, xdoc.C: table::sql options table::create
17690: copy options options checked, wrong option now fatal error
17691:
17692: * src/main/pa_string.C: string.replace fixed [were missing words on
17693: pieces boundaries]
17694:
1.150 moko 17695: * configure, configure.in: .so now detected [can be .sl on hpux,
17696: .dll on cygwin, .so in other cases)
1.95 moko 17697:
17698: * configure, configure.in: .so now detected [can be .sl on hpux,
17699: .dll on cygwin, .so in other cases)
17700:
17701: * operators.txt, src/classes/hash.C, src/classes/table.C,
17702: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
17703: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
17704: record taken [were last]
17705:
17706: * src/: classes/hash.C, classes/table.C,
17707: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
17708: now errors
17709:
17710: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
17711:
17712: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
17713: ,2,3]
17714:
17715: 2002-09-16 paf
17716:
17717: * src/classes/file.C: file::cgi line ends can be both unix & dos.
17718: and they can be unix [\n\n] on win when 'use CGI' used, it causes
17719: stdout to be binary. now detected closest header break.
17720:
17721: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
17722: closed right
17723:
17724: 2002-09-13 paf
17725:
17726: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
17727: src/main/compile_tools.h: (expression #comment)
17728:
17729: (multiline expression #comment line2 #comment )
17730:
17731: (expression #comment with (brackets) comment) << OK
17732:
17733: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
17734: bitwise !|| numerical xor now [preparing for expression
17735: #comments]
17736:
17737: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
17738: error
17739:
17740: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
17741: cheched in pa_socks.C
17742:
1.116 moko 17743: * configure, configure.in, src/include/pa_config_auto.h.in:
17744: HAVE_WINSOCK_H created in configure.in
1.95 moko 17745:
17746: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
17747: cookie date now clean [were mistakenly tainted & that worked bad
17748: with opera -- 'happily' that worked OK with msie]
17749:
17750: 2002-09-12 paf
17751:
17752: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
17753: VClass get_element now first looks to fields, next to methods &
17754: co todo: the rest reason: more speed
17755:
17756: * src/main/untaint.C: quoted printable encoding stops before
17757: \s*<...>$
17758:
17759: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
17760: stops before <...>$
17761:
17762: 2002-09-11 paf
17763:
17764: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
17765: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
17766: forgot to check users of those funcs. not all were using that
17767: return value convention
17768:
17769: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
17770: windows-1254 added
17771:
17772: 2002-09-10 paf
17773:
17774: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
17775: VCodeFrame parent param were specified badly
17776:
17777: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
17778: WWrapper which used in constructing objects(second param to sql
17779: method) ^...sql{}[$.default{code}] now has parent, wich helps
17780: code in hash to survivi
17781:
17782: * src/: include/pa_request.h, main/execute.C: removed redundant
17783: param to execute [stack said 'thanks']
17784:
17785: * src/: classes/op.C, main/execute.C, types/pa_value.C,
17786: types/pa_value.h, types/pa_vcode_frame.h,
17787: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17788: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
17789: responsibility to wcontext
17790:
17791: * src/classes/file.C: decided not to log exec's with stderr, that
17792: could be warnings, and it's up to scritper to log/show them
17793:
17794: * src/: classes/double.C, main/execute.C: double:sql badly called
17795: write_assign_lang, not write_no_lang, thus doing unnecessary
17796: double/string converstion, which were loosing time&precesion
17797:
17798: * src/: main/pa_charset.C, types/pa_vmail.C:
17799: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
17800: case of unfinished in buffer processing, causing accidental
17801: transcode stop [in case that source enc != utf-8 & there is
17802: incomplete utf-8 sequence at the end of 16000block iside of
17803: libxml lib] tfm readed & code updated
17804:
17805: 2002-09-04 paf
17806:
17807: * configure: makes with sjlj
17808:
17809: * INSTALL, src/include/pa_config_fixed.h,
17810: src/include/pa_sql_connection.h,
17811: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
17812: checked. on win32 it made default
17813:
17814: * src/include/pa_config_auto.h.in: sjlj define
17815:
17816: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
17817: can not work with longjump/throw pair, and one must switch that
17818: on there. todo: detect that automatically]
17819:
17820: * src/types/pa_vxnode.C: removed too strong checks of
17821: xnode.elements. now, for instance, if element does not have any
17822: attributes, $xnode.attributes is void, not error
17823:
17824: 2002-09-02 paf
17825:
17826: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
17827: removed double_result, didn't help
17828:
17829: * src/main/execute.C: double_result made to move that var away from
17830: hungry g++ optimizer (-O2), before: it were optimized and
17831: comparison operators worked badly
17832:
17833: * src/types/pa_vdate.h: removed debug
17834:
1.116 moko 17835: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 17836:
17837: * src/main/execute.C: fixed numeric < & co so that thay now use
17838: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
17839: unknown reason.
17840:
17841: 2002-08-29 paf
17842:
17843: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
17844: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
17845: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
17846: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
17847: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
17848: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
17849: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
17850: [called less frequent, allowed to remove ugly
17851: Junction.change_context-s from many places, switch,
17852: mail:send..html{}, ..] request.root renamed to method_frame [more
17853: easyreading] ancient {...PUSH/POPs...} changed to stack vars
17854: [speed up]
17855:
17856: 2002-08-28 paf
17857:
17858: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
17859: tainted
17860:
17861: * src/types/pa_vcookie.C: fixed cookie delete when
17862: $cookie:name[$.value[]]
17863:
17864: * operators.txt, src/classes/string.C:
17865: ^string.split[delim[;options]]
17866:
17867: 2002-08-27 paf
17868:
1.116 moko 17869: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 17870:
17871: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
17872: delimiter
17873:
17874: * INSTALL: recommended latest gmime 1.0.5
17875:
17876: 2002-08-26 paf
17877:
17878: * configure, configure.in: apache13/hook added to make dist.
17879:
17880: 2002-08-23 paf
17881:
17882: * src/: include/pa_common.h, main/pa_common.C,
17883: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
17884: beside binary [cgi, isapi] not accessible [due to bad rights or
17885: whatever] it's error now
17886:
17887: 2002-08-21 paf
17888:
1.116 moko 17889: * Makefile.am: can use: make happy equals to make update install
1.95 moko 17890:
17891: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17892: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
17893: class". compiled as if here they named base class
17894:
17895: * src/main/pa_string.C: fixed bad language bug, [were wrong string
17896: cloning constructor]
17897:
17898: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
17899:
1.150 moko 17900: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 17901: $mail.received.file.value.content-type fixed
17902:
17903: 2002-08-20 paf
17904:
17905: * src/classes/file.C: fixed language of file:file result
17906:
17907: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
17908: from 3.0.0005
17909:
17910: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
17911:
17912: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
17913: 3.0.0005
17914:
17915: * src/classes/void.C, operators.txt: ^void.length[] = 0
17916:
17917: 2002-08-19 paf
17918:
17919: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
17920: work now
17921:
17922: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
17923: error in xnode, which were not catched in xdoc]
17924:
17925: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
17926: prepared: // validate each document after load/create (?)
17927: //xmlDoValidityCheckingDefaultValue = 1;
17928:
17929: 2002-08-15 paf
17930:
17931: * src/classes/classes.h: write to static var caused useless
17932: Exception, introduced Methoded::put_element wich consumes those
17933:
17934: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
17935: src/types/pa_vcookie.C, src/types/pa_vdate.h,
17936: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
17937: $response:field[date] $response:field[$.xxx[date]]
17938:
17939: * src/: classes/hash.C, classes/string.C, classes/table.C,
17940: classes/void.C, include/pa_sql_connection.h: fixed source of
17941: ^hash::sql{bad}
17942:
17943: * operators.txt: $request:body unprecessed POST request body
17944:
17945: * src/types/pa_vrequest.C: $request:body unprecessed POST request
17946:
17947: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
17948: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
17949:
17950: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
17951: src/include/pa_request.h, src/main/pa_pool.C,
17952: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
17953: $request:body r.post_data now const
17954:
17955: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
17956: classes/xnode.C, main/execute.C, types/pa_value.h,
17957: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
17958: types/pa_vtable.h: instead of type() checking everywhere used
17959: Value.as now user descendants can be used in params.
17960:
17961: VObject::as_*, is_defined now taken from bases. xtable(table)
17962: ^if($xtable) now OK
17963:
17964: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
17965: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
17966: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
17967:
17968: 2002-08-14 paf
17969:
17970: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
17971: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17972: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17973: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17974: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17975: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17976: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17977: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17978: types/pa_vresponse.C, types/pa_vresponse.h,
17979: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17980: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17981: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17982: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17983: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
17984: & VClass
17985:
17986: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
17987:
17988: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
17989: removed fixopt stupidity. on stupid linux use cd /document/root
17990: ../cgi/parser3 script
17991:
17992: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
17993: params, splitting them by space, excluding argv[0], argv[argc-1]
17994:
17995: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
17996: fixopt.h: fixopt now preprocesses command line params, splitting
17997: them by space, excluding argv[0], argv[argc-1]
17998:
17999: * src/targets/cgi/parser3.C: -f config file
18000:
18001: * src/targets/cgi/parser3.C: fixed .log file dir
18002:
18003: 2002-08-13 paf
18004:
18005: * src/types/pa_vobject.C: allow override parent variables, useful
18006: for form descendants [in vobject too, were in vclass]
18007:
18008: * src/types/pa_vclass.C: allow override parent variables, useful
18009: for form descendants
18010:
18011: * src/types/pa_vclass.C: checked: form[vclass]fields can be
18012: overwritten in derived(table)
18013:
18014: * src/: classes/form.C, classes/mail.C, classes/op.C,
18015: classes/xnode.h, include/pa_request.h, main/execute.C,
18016: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
18017: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18018: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
18019: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18020: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
18021: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18022: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
18023: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18024: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18025: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18026: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18027: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18028: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
18029: Value::get_element(..., bool looking_down) [needed to exclude
18030: endless recoursion]
18031:
18032: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
18033: fix bug with put endless recoursion todo: check 'as'
18034:
18035: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
18036: reorganized modules todo: fix bug with put endless recoursion
18037: todo: check 'as'
18038:
18039: * src/types/pa_vobject.h: checked: table fields can be overwritten
18040: in derived(table)
18041:
18042: * src/types/pa_vobject.h: derived classes can have fields of their
18043: own now
18044:
18045: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
18046: fixed error message on using non-created table
18047:
18048: * src/: classes/form.C, classes/hash.C, classes/mail.C,
18049: classes/op.C, classes/xnode.h, include/pa_request.h,
18050: main/compile.C, main/compile.tab.C, main/execute.C,
18051: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18052: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18053: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18054: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18055: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
18056: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18057: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18058: types/pa_vresponse.C, types/pa_vresponse.h,
18059: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18060: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18061: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18062: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18063: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
18064: looking down/up tree todo: fix error message on non-constructed
18065: parents
18066:
18067: 2002-08-12 paf
18068:
18069: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
18070: derived OK
18071:
18072: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
18073: thorough testing
18074:
18075: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
18076: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18077: types/pa_vobject.h, types/pa_vstateless_class.h,
18078: types/pa_vstateless_object.h, types/pa_wcontext.h,
18079: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
18080: ^base:create[] dynamic call rewritten todo: thorough testing
18081:
18082: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
18083: now instantates base class, remembers it and saves child in
18084: parent VObject.get_class now returns last child = downward
18085: virtual calls OK
18086:
18087: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18088: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
18089: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
18090: types/pa_vobject.h, types/pa_vresponse.h,
18091: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18092: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
18093: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
18094: VAliased [redundant], moved $CLASS to VObject only [parser class
18095: instance]
18096:
18097: * src/main/pa_request.C: $response:body[file] content-type check
18098: fixed [were bad when content-type is hash]
18099:
18100: 2002-08-09 paf
18101:
18102: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18103: types/pa_vobject.h, types/pa_vxdoc.h: started as()
18104:
18105: 2002-08-08 paf
18106:
18107: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
18108: src/main/pa_globals.C: year column in month calendar [week year]
18109:
18110: * src/main/execute.C: error reporting on object writes to MAIN
18111: improved [were ruind with fixing $obj[^if(1){$obj}] ]
18112:
18113: * operators.txt, src/types/pa_vdate.h: $date.yearday
18114: $date.daylightsaving
18115:
18116: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
18117: use tainted data now. only she must specify the language.
18118:
18119: ^mail:send[ $.from[paf@mail.design.ru]
18120: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
18121: $.text[^taint[uri][ìîñêâà]=] ]
18122:
18123: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
18124: now prints more precise origin
18125:
18126: * src/include/pa_string.h: String::first_char now not fails on
18127: empty strings ^if(-f '') now ok and in 3 other places.
18128:
18129: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
18130: String::first_char now not fails on empty strings ^if(-f '') now
18131: ok and in 3 other places.
18132:
18133: 2002-08-07 paf
18134:
18135: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
18136: fixed
18137:
18138: * src/main/pa_string.C: ^string.mid(0;bad) fixed
18139:
18140: * src/: main/execute.C, types/pa_vcode_frame.h,
18141: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18142: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
18143: mistakenly not completely transparent to object writes.
18144: $hash[^if(1){$hash}] now works
18145:
18146: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
18147: now erasing cache file [there were bad check on that]
18148:
18149: * src/: classes/classes.dsp, classes/table.C,
18150: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
18151: all Debug dirs in .dsp now named 'Debug'
18152:
1.116 moko 18153: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 18154:
18155: * operators.txt, src/classes/mail.C: exception_type email.send
18156:
18157: * operators.txt, src/types/pa_vmail.C: exception_type email.format
18158:
18159: * src/types/pa_vmail.C: mail:send empty email checked
18160:
18161: 2002-08-06 paf
18162:
18163: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18164: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18165: ^table::create[$source;$.options] ^table::join[$source;$.options]
18166:
18167: * operators.txt, src/classes/hash.C, src/classes/string.C,
18168: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
18169: # $.default() }
18170:
18171: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
18172:
18173: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
18174: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
18175: $file.content-type [instead of .mime-type] now works for
18176: file::stat also
18177:
18178: * src/main/pa_request.C: case insensitive mime_type_of
18179:
18180: 2002-08-05 paf
18181:
18182: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
18183:
18184: * src/types/pa_vmail.C: file buffer relocated to parser heap
18185:
18186: * operators.txt: comment on date:calendar week column
18187:
18188: * src/main/pa_common.C: write checked
18189:
18190: * src/main/: pa_common.C: write checked
18191:
18192: * src/classes/date.C: +1 buf size for stupid snprintfs
18193:
18194: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
18195: month calendar week column [ISO 8601 Week Numbers]
18196:
18197: 2002-08-02 paf
18198:
18199: * src/: include/pa_config_fixed.h, main/pa_string.C,
18200: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
18201: DEBUG*
18202:
18203: * configure, configure.in, src/include/pa_version.h: release
18204: 3_0_0005
18205:
18206: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
18207: multipart post fixed
18208:
18209: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
18210: response transcoded source->client only when text/* or simple
18211: onoverridden $response:body
18212:
18213: 2002-08-01 paf
18214:
18215: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18216: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18217: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
18218: classes/op.C, classes/response.C, classes/string.C,
18219: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18220: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
18221: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18222: include/pa_config_fixed.h, include/pa_dictionary.h,
18223: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
18224: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
18225: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
18226: include/pa_socks.h, include/pa_sql_connection.h,
18227: include/pa_sql_driver_manager.h, include/pa_stack.h,
18228: include/pa_string.h, include/pa_stylesheet_connection.h,
18229: include/pa_stylesheet_manager.h, include/pa_table.h,
18230: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18231: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
18232: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
18233: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18234: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
18235: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
18236: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
18237: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
18238: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
18239: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18240: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
18241: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
18242: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
18243: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18244: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18245: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
18246: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
18247: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18248: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
18249: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
18250: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
18251: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18252: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
18253: types/pa_vmethod_frame.h, types/pa_vobject.h,
18254: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18255: types/pa_vresponse.h, types/pa_vstateless_class.C,
18256: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18257: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18258: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18259: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18260: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 18261: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 18262:
18263: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
18264: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
18265: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18266: classes/math.C, classes/op.C, classes/response.C,
18267: classes/string.C, classes/table.C, classes/void.C,
18268: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18269: include/pa_array.h, include/pa_cache_managers.h,
18270: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18271: include/pa_config_fixed.h, include/pa_config_includes.h,
18272: include/pa_dictionary.h, include/pa_dir.h,
18273: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18274: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18275: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18276: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18277: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18278: include/pa_stack.h, include/pa_string.h,
18279: include/pa_stylesheet_connection.h,
18280: include/pa_stylesheet_manager.h, include/pa_table.h,
18281: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18282: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
18283: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18284: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
18285: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18286: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
18287: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
18288: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18289: main/pa_sql_driver_manager.C, main/pa_string.C,
18290: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
18291: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18292: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18293: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
18294: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18295: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18296: targets/isapi/pool_storage.h, types/pa_valiased.C,
18297: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
18298: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18299: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
18300: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
18301: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18302: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
18303: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
18304: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18305: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18306: types/pa_vresponse.C, types/pa_vresponse.h,
18307: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18308: types/pa_vstateless_object.h, types/pa_vstatus.C,
18309: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
18310: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18311: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18312: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
18313: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
18314: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
18315: types/Makefile.am: ident.C* removed
18316:
18317: * operators.txt, src/classes/file.C, src/main/pa_request.C:
18318: file:find[/can/do/this/now.txt]
18319:
18320: * src/targets/cgi/parser3.C: usage to stdout now
18321:
18322: 2002-07-31 paf
18323:
18324: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
18325:
18326: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
18327: default "postmaster"
18328:
18329: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
18330: -f postmaster now default sendmail key word "postmaster"
18331: replaced to $.from
18332:
18333: 2002-07-30 paf
18334:
1.116 moko 18335: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
18336: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 18337:
18338: * src/main/pa_charset.C: comment
18339:
18340: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
18341: table, &#decimal;
18342:
18343: * src/main/pa_request.C: comment
18344:
18345: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
18346: paragraf]
18347:
18348: 2002-07-11 paf
18349:
18350: * src/main/pa_exec.C: build command line badly added params twice
18351: [and first time without ' ']. double wrong. fixed.
18352:
18353: * src/main/pa_exec.C: invalid .exe caused error message with params
18354: wich parser did not provide = reported badly. fixed that.
18355:
18356: * src/classes/mail.C: $MAIL[ # xxx ]
18357:
18358: now ok
18359:
18360: * operators.txt: plan: sql detailed exception
18361:
18362: 2002-07-01 paf
18363:
18364: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
18365: [MForm.configure_admin were called when request.main_class ==0
18366:
18367: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
18368:
18369: * src/classes/form.C: content_length type fix
18370:
18371: 2002-06-30 paf
18372:
18373: * src/classes/mail.C: merged from 4
18374:
18375: * src/classes/mail.C: restored $MAIL
18376:
18377: 2002-06-28 paf
18378:
18379: * configure, configure.in: removed paths.h
18380:
1.116 moko 18381: * configure, src/include/pa_version.h,
1.95 moko 18382: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
18383: merged, makes updated
18384:
18385: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
18386: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18387: src/include/pa_pool.h, src/include/pa_version.h,
18388: src/main/pa_charset.C, src/main/pa_pool.C,
18389: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
18390: src/types/pa_vmail.C: merged latest updates to head
18391:
18392: 2002-06-27 paf
18393:
18394: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
18395: not error now
18396:
18397: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
18398: src/include/pa_config_fixed.h, src/include/pa_pool.h,
18399: src/main/pa_charset.C, src/main/pa_pool.C:
18400: ^xdoc::create[[uri]]... base uri for document being created,
18401: imports and other relative file names would be relative to this
18402: uri default uri=path_translated
18403:
18404: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
18405:
18406: 2002-06-26 paf
18407:
18408: * configure, configure.in, src/include/pa_version.h:
18409: release_3_0_0004
18410:
18411: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
18412: 0 now
18413:
18414: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
18415:
18416: 2002-06-25 paf
18417:
18418: * src/main/pa_string.C: emtpy string, or string of whitespaces
18419: considered bad number now
18420:
18421: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
18422: now
18423:
18424: * operators.txt, src/classes/string.C: ^string.normalize [old
18425: name: optimize
18426:
18427: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
18428: library configured
18429:
18430: * src/main/pa_request.C: configure_admin forced if no @conf
18431:
1.150 moko 18432: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
18433: ^math:crypt updated to generate random salt when needed and to
18434: call system crypt() if not $apr1$ prefix
1.95 moko 18435:
18436: 2002-06-24 paf
18437:
18438: * INSTALL: --with-static/shared-mailreceive described
18439:
18440: * src/include/pa_config_fixed.h: ssize_t fixed
18441:
1.116 moko 18442: * configure, configure.in, src/include/pa_config_auto.h.in,
18443: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 18444: src/types/pa_vmail.C: $mail:received makes update
18445:
18446: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
18447: WITH_MAILRECEIVE
18448:
18449: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
18450:
18451: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
18452: option, for $mail:receive
18453:
18454: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
18455: introducting $message:received ^mail:send rewritten with backward
18456: comp
18457:
18458: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18459: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18460: types/types.dsp: win32xml win32mailreceive pseudomodules paths
18461: now
18462:
18463: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
18464: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18465: src/include/pa_request.h, src/include/pa_string.h,
18466: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
18467: src/main/pa_globals.C, src/main/pa_request.C,
18468: src/main/pa_string.C, src/main/pa_uue.C,
18469: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
18470: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
18471: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
18472: uue to separate file introducting $message:received ^mail:send
18473: rewritten with backward comp
18474:
18475: 2002-06-21 paf
18476:
1.116 moko 18477: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
18478: co changes
1.95 moko 18479:
1.116 moko 18480: * configure, configure.in, src/lib/md5/Makefile.am,
18481: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
18482: restructure .in and .am files appropriate changes
1.95 moko 18483:
18484: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
18485: pcre to libs/ added libs/md5 which is linked to non-apache
18486: targets ^math:crypt[password;$apr1$salt]
18487:
18488: * INSTALL, configure.in, operators.txt, parser3.dsw,
18489: src/Makefile.am, src/classes/Makefile.am,
18490: src/classes/classes.dsp, src/classes/math.C,
18491: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 18492: src/lib/pcre/Makefile.am, src/lib/pcre/README,
18493: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
18494: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
18495: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
18496: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
18497: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
18498: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
18499: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 18500: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
18501: src/lib/pcre/pcre_parser_ctype.dsp,
18502: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
18503: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
18504: src/main/compile.tab.C, src/main/main.dsp,
18505: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
18506: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
18507: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
18508: to libs/ added libs/md5 which is linked to non-apache targets
18509: ^math:crypt[password;$apr1$salt]
18510:
18511: 2002-06-20 paf
18512:
1.150 moko 18513: * INSTALL, configure, configure.in, operators.txt,
18514: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
18515: src/include/pa_globals.h, src/include/pa_request.h,
18516: src/main/execute.C, src/main/pa_request.C,
18517: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18518: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
18519: file:justname&co & @auto/conf[filespec
1.95 moko 18520:
18521: * operators.txt, src/classes/file.C:
18522: !^file:dirname[/a/some.tar.gz]=/a
18523: !^file:dirname[/a/b/]=/a
18524: !^file:basename[/a/some.tar.gz]=some.tar.gz
18525: !^file:justname[/a/some.tar.gz]=some.tar
18526: !^file:justext[/a/some.tar.gz]=gz
18527:
18528: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18529: main/pa_request.C, types/pa_vmethod_frame.h: introducing
18530: @conf/auto[filespec]
18531:
1.116 moko 18532: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 18533:
1.150 moko 18534: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 18535: src/include/pa_globals.h, src/targets/cgi/parser3.C,
18536: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
18537:
18538: 2002-06-18 paf
18539:
18540: * configure, configure.in, src/include/pa_version.h: version to
18541: configure.in
18542:
18543: * INSTALL: reflected .conf.dist dir change
18544:
1.150 moko 18545: * Makefile.am, configure, configure.in,
1.116 moko 18546: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 18547: .in & *.am updated
18548:
18549: * src/classes/file.C: strncasecmp
18550:
18551: * src/classes/file.C: strcasecmp
18552:
1.150 moko 18553: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 18554:
18555: * src/classes/file.C: ^file::exec[script;$.bad error case
18556: insensitive check now
18557:
18558: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
18559:
18560: * configure, configure.in, src/include/pa_pool.h,
18561: src/include/pa_types.h: pack configure.in detection simplified.
18562: figured out that gcc on sparc not that stupid as thought
18563: previously: on sparc: when it sees packed class it modifies it's
18564: field-access-code to byte operations [stb, ldub] instead of 4byte
18565: operations [st, lduh] so packed must be all parts of packed
18566: class, i.e. it's parents&fields(classes). for now it's only
18567: String that packed and what was wrong is that it's parent -
18568: Pooled, were not packed. fixed that.
18569:
18570: 2002-06-14 paf
18571:
18572: * operators.txt: more precise xml-to-text options
18573:
18574: * operators.txt, src/types/pa_vxnode.C: xnode
18575: attribute_node.name/value xnode pi.node.data
18576:
18577: 2002-06-12 paf
18578:
1.116 moko 18579: * configure, configure.in, src/targets/cgi/Makefile.am,
18580: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 18581:
18582: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
18583: src/include/pa_globals.h, src/include/pa_request.h,
18584: src/main/compile.tab.C, src/main/pa_globals.C,
18585: src/main/pa_request.C, src/targets/cgi/parser3.C,
18586: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
18587:
18588: * src/classes/mail.C: sendmail -ti [default now]
18589:
18590: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
18591: to be strings. for convinient #ing
18592:
18593: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
18594: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
18595:
18596: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
18597: main/pa_globals.C, main/pa_request.C: @conf
18598:
18599: 2002-06-11 paf
18600:
18601: * src/classes/file.C: check simplified
18602:
18603: * src/: classes/file.C, targets/cgi/parser3.dsp,
18604: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
18605: valid prefix
18606:
18607: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
18608: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
18609: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
18610:
18611: 2002-06-10 paf
18612:
18613: * operators.txt, src/classes/op.C, src/include/pa_common.h,
18614: src/main/pa_common.C: lock failures reported now
18615:
18616: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
18617: string->double @ compile time were not-enough-checking...
18618:
18619: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
18620: autoconvert now ignored
18621:
18622: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
18623: check
18624:
18625: * src/classes/mail.C: mail netscape attachment name fixed. todo:
18626: $response:body content-type:name
18627:
18628: * configure, configure.in: hpux check, nsl link, no socket
18629:
18630: * operators.txt: old merge conflict removed
18631:
18632: * configure, configure.in: pack even address access on sparc&co
18633: arch checked in configure
18634:
18635: * configure, src/include/pa_version.h: makes
18636:
18637: * configure, configure.in, src/include/pa_version.h: makes
18638:
18639: * src/main/untaint.C: (bug#2) mail subject got always prepended
18640: with charset even when all letters were 7bit one
18641:
18642: * src/main/pa_common.C: merged fixed -d (bug)
18643:
18644: * src/main/pa_common.C: fixed -d (bug)
18645:
18646: 2002-06-03 paf
18647:
18648: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
18649: src/classes/classes.dsp, src/main/compile.tab.C,
18650: src/main/main.dsp, src/main/pa_globals.C,
18651: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
18652: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
18653: .dsp-s along with reorganized cvs modules dirs structure
18654:
18655: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18656: main/pa_globals.C, targets/cgi/parser3.dsp,
18657: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
18658: modules
18659:
18660: 2002-05-28 paf
18661:
18662: * src/targets/cgi/parser3.C: info.uri now ""
18663:
18664: 2002-05-17 paf
18665:
18666: * src/classes/: table.C: ^table.save << checked empty
18667: pre/match/post columns
18668:
18669: 2002-05-16 paf
18670:
18671: * src/classes/image.C: image::measure can png now
18672:
18673: 2002-05-15 paf
18674:
18675: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
18676: added
18677:
18678: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
18679:
18680: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
18681: %H[:%M[:%S]]]]]] [-%m now
18682:
18683: 2002-05-14 paf
18684:
18685: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
18686:
18687: 2002-05-07 paf
18688:
18689: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
18690: src/include/pa_globals.h, src/include/pa_request.h,
18691: src/include/pa_table.h, src/main/compile.tab.C,
18692: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
18693: src/main/pa_request.C, src/main/pa_table.C,
18694: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
18695: src/targets/isapi/parser3isapi.dsp,
18696: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
18697: name2number field now &. main_method_name now on Request pool
18698: rather on global_pool [Junction+VJunction created on same pool as
18699: name = were created on global pool, causing mem leaks]
18700:
18701: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
18702: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
18703: main/compile.y, main/main.dsp, main/pa_globals.C,
18704: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
18705: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18706: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
18707: field now &. main_method_name now on Request pool rather on
18708: global_pool [Junction+VJunction created on same pool as name =
18709: were created on global pool, causing mem leaks]
18710:
18711: 2002-05-06 paf
18712:
18713: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18714: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18715: 100*40 bytes per request memory leak [nonpool malloc in globals]
18716:
18717: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18718: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18719: 100*40 bytes per request memory leak [nonpool malloc in globals]
18720:
18721: 2002-04-30 paf
18722:
18723: * configure, src/include/pa_version.h: version now not b
18724:
18725: * src/targets/cgi/parser3.C: request.uri now never 0
18726:
18727: 2002-04-29 paf
18728:
18729: * configure.in: removed b
18730:
18731: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
18732: Exception::comment/type checked in (), no there's no empty
18733: type/comment by default
18734:
18735: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
18736: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
18737: src/doc/value.dox, src/include/pa_exception.h,
18738: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
18739: 0001
18740:
18741: 2002-04-26 paf
18742:
18743: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
18744: size reduced
18745:
18746: 2002-04-25 paf
18747:
18748: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
18749: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
18750: now that took into account
18751:
18752: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
18753: 01:03:04]
18754:
18755: * ChangeLog, operators.txt, src/classes/date.C:
18756: ^date::create[2002-12-33 01:03:04]
18757:
18758: * ChangeLog: updated changelog
18759:
18760: * src/classes/table.C: removed restriction on column count to
18761: ^table.hash to work, now must be >0 [were >1]
18762:
18763: 2002-04-24 paf
18764:
18765: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18766: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
18767: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
18768: targets
18769:
18770: 2002-04-23 paf
18771:
18772: * operators.txt, src/classes/string.C:
18773: int/double/string:sql{}[$.default{code}] fixed [were barking:
18774: "junction used outside of context"]
18775:
18776: 2002-04-22 paf
18777:
18778: * types.txt, src/classes/string.C, src/include/pa_string.h,
18779: src/main/pa_string.C, src/types/pa_vstring.C,
18780: src/types/pa_vstring.h: ^string.optimize[]
18781:
18782: * src/: include/pa_globals.h, include/pa_table.h,
18783: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
18784: table template
18785:
18786: * src/classes/: string.C: optimize removed from string
18787: .left/right/pos
18788:
18789: * src/main/execute.C: rolled back to
18790: before_killing_userjunction_contexts
18791:
18792: * src/main/execute.C: user junctions context killed
18793:
18794: * src/main/execute.C: junctions to local contexts got
18795: cleanized&checked later
18796:
18797: 2002-04-19 paf
18798:
18799: * src/: classes/string.C, include/pa_request.h,
18800: include/pa_string.h, main/pa_request.C, main/pa_string.C,
18801: types/pa_vstring.C, types/pa_vstring.h: string now optimized
18802: prior to .left .right .mid .pos .match when that is profitable,
18803: and always before .replace when $ORIGINS(1) optimization disabled
18804: economy from not wasting mem on lots of strings which occur by
18805: lots of String:mid calls to get parts of source string between
18806: found_occurances
18807:
18808: * src/classes/file.C: ovector now local economy: 16 bytes per
18809: ^file:list
18810:
18811: * src/: include/pa_globals.h, include/pa_table.h,
18812: main/pa_globals.C, main/pa_string.C: String::match table columns
18813: globalized, not created @ each ^match anymore economy:
18814: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
18815:
18816: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
18817: removed from each String::match replace iteration, and made
18818: stacked sizeof(VTable)=12bytes economy on each replace code
18819:
18820: * src/doc/footer.htm: 2001,
18821:
18822: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
18823: string.match[]['] option enables generation of $match.prematch
18824: .match .postmatch columns
18825:
18826: * src/main/pa_string.C: String::match options analized without
18827: cstr-ing them now
18828:
18829: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
18830: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
18831: config updated to doxygen 1.2.15, created helper which fixes
18832: minor bugs in chm project files & htm tree. changed extension to
18833: .htm
18834:
18835: 2002-04-18 paf
18836:
18837: * src/doc/doxygen.cfg: .chi generation disabled
18838:
18839: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
18840: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
18841: fields&methods
18842:
18843: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
18844: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
18845: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
18846: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
18847: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
18848: types/pa_vresponse.h, types/pa_vstateless_class.h,
18849: types/pa_vstateless_object.h, types/pa_vstatus.h,
18850: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
18851: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
18852: VStateless_class to VObject
18853:
18854: * src/: main/pa_request.C, types/pa_valiased.h,
18855: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18856: types/pa_vstring.h: VStateless_string_object speicalized light
18857: version of VStateless_object
18858:
18859: * src/classes/op.C: ^throw comment param made optional
18860:
18861: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
18862: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
18863: and implemented down in VClass, fclass_alias removed,
18864:
18865: * src/types/pa_value.C: forced to cut that from .h because of
18866: VStateless_class usage [undefined in .h]
18867:
18868: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18869: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18870: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
18871: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
18872: on each CALL]
18873:
18874: * src/: classes/classes.h, classes/date.C, classes/double.C,
18875: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
18876: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
18877: classes/response.C, classes/string.C, classes/table.C,
18878: classes/void.C, classes/xnode.C, include/pa_globals.h,
18879: include/pa_request.h, main/execute.C, main/pa_globals.C,
18880: main/pa_request.C, types/Makefile.am, types/pa_value.h,
18881: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
18882: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18883: types/pa_vstateless_class.h, types/pa_wcontext.C,
18884: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
18885: removed Value::fname
18886:
18887: 2002-04-17 paf
18888:
18889: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
18890: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
18891: doc/pooled.dox, doc/string.dox, doc/targets.dox,
18892: include/pa_pool.h, include/pa_types.h: dox updated to current
18893: state, PTHROW freshen to throw & co
18894:
18895: * src/types/pa_vhash.h: vstring wrong parent fixed
18896:
18897: * src/classes/op.C: taint local result var bug fixed
18898:
18899: 2002-04-16 paf
18900:
18901: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
18902: Attic asm.txt as most interesting
18903:
18904: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
18905: check, preventing content-length: 0 from appearing
18906:
18907: * src/main/execute.C: $result in @main now taken into account as in
18908: usual functions
18909:
18910: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
18911: & @unhandled_exception now taken into account as in usual
18912: functions
18913:
18914: * src/doc/postbuild.txt: instructions on post .html build
18915:
18916: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
18917:
18918: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
18919: tainted
18920:
18921: * src/main/pa_request.C: uri in error log
18922:
18923: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
18924: cheched date:create(days) param for validity [later were assumed
18925: valid and crashed on invalid onces]
18926:
18927: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18928: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
18929: and used that for removing VString wrapper
18930:
18931: * src/classes/op.C: exception2vhash file now tainted
18932:
18933: * src/classes/op.C: _process pseudo origin copied from local var to
18934: heap
18935:
18936: * src/classes/op.C: extra check on empty file in origin in _execute
18937:
18938: 2002-04-15 paf
18939:
18940: * src/: main/execute.C, types/pa_value.h: fixed name update
18941:
18942: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
18943: functions
18944:
18945: * src/: classes/file.C, classes/hash.C, classes/op.C,
18946: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
18947: started dual write_xxx_lang functions, if checked & works
18948:
18949: * src/: classes/date.C, classes/file.C, classes/mail.C,
18950: classes/string.C, classes/xnode.C, include/pa_request.h,
18951: types/pa_value.h, types/pa_wcontext.h: removed absolutely
18952: unnecessary VString shells
18953:
18954: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
18955: prev changes]
18956:
18957: * src/: classes/image.C, classes/op.C, classes/string.C,
18958: classes/table.C, include/pa_request.h, main/execute.C,
18959: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
18960: StringOrValue wcontext result, now ready for dual writes
18961:
18962: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
18963: checked that
18964:
18965: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18966: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
18967: changed to OP_WRITE_VALUE in var get cases
18968:
18969: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
18970: include/pa_request.h, main/compile.tab.C, main/compile.y,
18971: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18972: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
18973: switch in hash constructor fixed [were problems with using of
18974: stacked wwrapper after it's death]
18975:
18976: 2002-04-12 paf
18977:
18978: * operators.txt, src/classes/table.C: table.select(expression) 0
18979:
18980: 2002-04-11 paf
18981:
18982: * src/: classes/string.C, include/pa_request.h, main/execute.C:
18983: Request::process_internal codeFrame & wwrapper stacked [not
18984: wasting heap anymore]
18985:
18986: 2002-04-10 paf
18987:
18988: * src/: classes/double.C, classes/file.C, classes/hash.C,
18989: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
18990: classes/string.C, classes/table.C, classes/void.C,
18991: classes/xdoc.C, include/pa_request.h, main/execute.C,
18992: main/pa_string.C: killed Request::process() wrapping
18993: VString(String) in case we need only String
18994:
18995: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18996: killed 8 bytes from String.head
18997:
18998: 2002-04-09 paf
18999:
19000: * src/: main/compile.tab.C, targets/cgi/parser3.C,
19001: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
19002: local*/char b[...]; a=b; situations
19003:
19004: * operators.txt, src/classes/xdoc.C: xslt params made literal
19005:
19006: * src/classes/xdoc.C: xslt params fixed
19007:
19008: * src/: main/pa_common.C, targets/cgi/parser3.C,
19009: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
19010: not pool.malloc(MAX_NUMBER) but really neaded
19011:
19012: * operators.txt, src/classes/double.C, src/classes/int.C:
19013: int/double.int/double(default)
19014:
19015: 2002-04-04 paf
19016:
19017: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
19018: [when reconstructing pieces were split by
19019: max_integral(piece.size), thus some strings to replace happen to
19020: be split into two = not replaced)
19021:
19022: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
19023: standalone version = current dir
19024:
19025: * src/targets/cgi/parser3.C: document root in standalone version =
19026: current dir
19027:
19028: 2002-04-03 paf
19029:
19030: * configure, configure.in: more checks on nonexistent charset
19031:
1.116 moko 19032: * INSTALL, configure, configure.in: root config configure options
1.95 moko 19033:
19034: 2002-04-02 paf
19035:
19036: * src/main/compile.C: parser.compile [exception name more like in
19037: doc]
19038:
19039: 2002-04-01 paf
19040:
19041: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
19042: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
19043: .content-type.charset, not .charset
19044:
19045: 2002-03-29 paf
19046:
19047: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
19048:
19049: * operators.txt, src/classes/date.C: ^date::create now may not
19050: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
19051: days' year. | 31.05->31.04 roll
19052:
19053: 2002-03-28 paf
19054:
19055: * operators.txt, src/classes/date.C, src/classes/op.C,
19056: src/include/pa_globals.h, src/include/pa_hash.h,
19057: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
19058: ^cache(seconds) ^cache[date] }
19059:
19060: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
19061: param
19062:
19063: 2002-03-27 paf
19064:
19065: * operators.txt, src/classes/date.C, src/classes/double.C,
19066: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
19067: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
19068: src/classes/math.C, src/classes/op.C, src/classes/string.C,
19069: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
19070: src/classes/xnode.C, src/include/pa_exception.h,
19071: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
19072: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
19073: src/main/pa_array.C, src/main/pa_charset.C,
19074: src/main/pa_charsets.C, src/main/pa_common.C,
19075: src/main/pa_dictionary.C, src/main/pa_exception.C,
19076: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
19077: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
19078: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
19079: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19080: src/types/pa_value.h, src/types/pa_vcookie.C,
19081: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
19082: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
19083: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
19084: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
19085: src/types/pa_wwrapper.h: assigned exception types
19086:
19087: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
19088: src/include/pa_request.h, src/main/execute.C,
19089: src/main/pa_request.C: decided agains resetting exception_trace,
19090: just changed name
19091:
19092: 2002-03-26 paf
19093:
19094: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
19095: fixed
19096:
19097: * src/classes/op.C: forced language of $source field of exception
19098: to 'tainted', so that sql-langed-frags could be outputed outside
19099: of connect
19100:
19101: * operators.txt: removed date.roll limit of +-1 offset
19102:
19103: * src/classes/date.C: removed date.roll limit of +-1 offset
19104:
19105: * operators.txt, src/classes/date.C: fixed date roll on
19106: daylightsaving days mktime took into account tm_isdst flag, which
19107: remained from BEFORE roll, but should have been reset
19108:
19109: 2002-03-25 paf
19110:
19111: * operators.txt, src/targets/cgi/parser3.C:
19112: http_site_config_filespec
19113:
19114: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
19115: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
19116: with any/both --disable-foreign-group-files --disable-execs
19117:
19118: * INSTALL: "--with=sendmail=COMMAND" comment
19119:
19120: * INSTALL, configure, configure.in, src/classes/mail.C,
19121: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 19122: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
19123: disables execs also. introducing --sendmail
1.95 moko 19124:
19125: * operators.txt: pgsql options comment
19126:
19127: * INSTALL: comment on --disable-link-stdcpp
19128:
1.116 moko 19129: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19130: libstdc++ link skipping configure option
1.95 moko 19131:
19132: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
19133: with error were put to cache with 'marked_to_rollback' flag, all
19134: consequent even OK requests rolled back
19135:
19136: 2002-03-22 paf
19137:
19138: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
19139: false return
19140:
19141: * operators.txt: few comments on sets
19142:
19143: 2002-03-18 paf
19144:
19145: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
19146: src/include/pa_globals.h, src/include/pa_request.h,
19147: src/include/pa_stack.h, src/main/pa_globals.C,
19148: src/main/pa_request.C: introducing ^try
19149:
19150: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
19151: types/pa_vdouble.h: removed some tested @tests
19152:
19153: 2002-03-15 paf
19154:
19155: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
19156:
19157: 2002-03-13 paf
19158:
19159: * src/main/pa_exception.C: checked not-pooled malloc
19160:
19161: 2002-03-11 paf
19162:
19163: * INSTALL, configure, configure.in,
19164: src/include/pa_config_auto.h.in: --disable-foreign-group-files
19165:
19166: * src/main/pa_common.C: --disable-foreign-group-files
19167:
19168: * INSTALL: --disable-execs
19169:
19170: * src/main/pa_exec.C: --disable-execs
19171:
19172: * configure, configure.in, src/include/pa_config_auto.h.in:
19173: --disable-execs
19174:
19175: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
19176:
19177: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
19178: file::exec/cgi linebreaks "0D0A" changed to 0A onces
19179:
19180: 2002-03-05 paf
19181:
19182: * operators.txt, src/classes/date.C: date week calendar columns
19183: named
19184:
19185: * operators.txt, src/classes/date.C: date week calendar columns
19186: named
19187:
19188: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
19189: requires headers to be terminated with \r\n manually [refuses to
19190: separate header/body itself]
19191:
19192: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19193: targets/isapi/parser3isapi.C: isapi site config beside .dll
19194:
19195: 2002-03-04 paf
19196:
19197: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
19198: in PASS language
19199:
19200: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
19201: deserialize checks on broken file
19202:
19203: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
19204: parser3isapi.dsp: isapi updated
19205:
19206: 2002-03-01 paf
19207:
19208: * src/main/pa_exec.C: execle -> execve, now argc OK
19209:
19210: 2002-02-28 paf
19211:
19212: * src/main/untaint.C: removed some debug comments
19213:
19214: * src/main/pa_charsets.C: when placing charset to cache using
19215: global name now [were request]
19216:
19217: * configure, configure.in: apache module updated
19218:
19219: * src/main/pa_string.C: origin by first piece preferred before last
19220: piece
19221:
19222: 2002-02-27 paf
19223:
19224: * src/main/pa_charset.C: size_t
19225:
19226: * INSTALL: shared/static-xml with-pathlink
19227:
19228: * operators.txt: SMTP comment
19229:
19230: 2002-02-26 paf
19231:
19232: * src/main/pa_exec.C: more precise names for vars, cosmetic
19233:
19234: * src/classes/xnode.C: in some situation, xpath query returned
19235: result with type NODESET, but empty nodeset member field, checked
19236: that
19237:
19238: 2002-02-22 paf
19239:
19240: * INSTALL: without-zlib comment
19241:
19242: * etc/parser3.charsets/windows-1251.cfg: °
19243:
19244: * configure, configure.in: glib###.a detection fixed
19245:
19246: * INSTALL: hashfile removed from INSTALL
19247:
1.116 moko 19248: * Makefile.am: make update
1.95 moko 19249:
19250: * src/main/pa_string.C: string iterators fixed again, so were
19251: String::join_chain
19252:
19253: * src/main/pa_string.C: string iterators fixed again, so were
19254: String::join_chain
19255:
19256: * src/: include/pa_string.h, main/pa_string.C: string iterators
19257: fixed again, so were String::join_chain
19258:
19259: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
19260:
19261: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
19262: "session"
19263:
1.116 moko 19264: * configure, configure.in, src/include/pa_config_auto.h.in:
19265: --with-shared-xml --with-static-xml
1.95 moko 19266:
19267: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19268: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19269: types/types.dsp: *.dsp: removed refereces to win32db & ancient
19270: xalan&xml
19271:
19272: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
19273:
19274: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
19275: src/types/types.dsp: removed hashfile support from sources for
19276: now
19277:
1.116 moko 19278: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 19279: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 19280: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
19281: src/include/pa_db_manager.h, src/include/pa_db_table.h,
19282: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 19283: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 19284: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
19285: src/types/Makefile.am, src/types/pa_vhashfile.C,
19286: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 19287:
19288: 2002-02-21 paf
19289:
19290: * src/main/untaint.C: removed debug code, activated commented-for
19291: debug parts
19292:
1.116 moko 19293: * Makefile.am: make cvsupdate
1.95 moko 19294:
19295: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19296: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
19297: append_row, not at link zero now string to string appending works
19298:
19299: 2002-02-20 paf
19300:
19301: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
19302: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
19303: DEBUG_STRING_APPENDS_VS_EXPANDS
19304:
19305: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19306: economy: 22%
19307:
19308: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19309: space uptimized: string::link_row removed
19310:
19311: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
19312: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
19313: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19314: types/pa_vstring.h: speed uptimized: string::is_empty
19315:
19316: * operators.txt, src/include/pa_common.h,
19317: src/include/pa_config_fixed.h, src/include/pa_string.h,
19318: src/include/pa_types.h, src/main/compile.tab.C,
19319: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
19320: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
19321: string append optimiziation idea and estimates
19322:
19323: 2002-02-19 paf
19324:
19325: * src/classes/math.C: not used directly [but erroreously reported
19326: that 'is', thus registering twice&other probs]
19327:
19328: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
19329: to node [element]
19330:
19331: * src/main/compile.C: without string_origins parse error
19332: file+line+col possible
19333:
19334: * src/main/: compile.C: without string_origins not worked
19335:
19336: 2002-02-18 paf
19337:
19338: * src/types/pa_vdouble.h: since we have in_expression removed that
19339: trick i've installed into double::as_string
19340:
19341: * src/main/pa_globals.C: extern "C" was removed too fast
19342:
19343: * src/: include/pa_opcode.h, include/pa_request.h,
19344: main/compile.tab.C, main/compile.y, main/execute.C,
19345: types/pa_wcontext.h: in_expression aimed to solve old problem
19346: with string/nonstring values, now in expressions double/int
19347: values are passed as-is, without stupid tostring/fromstring
19348: conversions
19349:
19350: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
19351: __cplusplus } #endif
19352:
19353: * src/main/compile.tab.C: bison env set so one could compile
19354: without cygwin installed
19355:
19356: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19357: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
19358: gnome xml libs parser .dsp-s changed accordingly
19359:
19360: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
19361:
19362: * operators.txt, src/classes/date.C: date::create [were date::set,
19363: with backward comp
19364:
19365: * src/classes/math.C: math:random range check fixed
19366:
19367: * src/main/: compile.tab.C, compile.y: integer division stops name
19368:
19369: * INSTALL: local install comment
19370:
1.116 moko 19371: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 19372:
1.116 moko 19373: * acinclude.m4, aclocal.m4, configure, configure.in,
19374: src/include/pa_config_auto.h.in,
19375: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
19376: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 19377:
19378: * operators.txt: \ comment
19379:
19380: 2002-02-13 paf
19381:
19382: * src/include/pa_config_includes.h: sys/time time both included
19383: now. vaguely remember confilicts on this on some system [not on
19384: six|ablv] so when would see them again would think up proper
19385: check
19386:
1.116 moko 19387: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19388: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 19389:
19390: * src/main/pa_common.C: truncation never occured when writing files
19391: on unix [since i've changed cache mech] fix
19392:
19393: * src/main/pa_common.C: strnchr: sanity check added
19394:
19395: * etc/parser3.charsets/windows-1257.cfg: id added
19396:
19397: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
19398: baltic charset file generated, in generation script ispunct check
19399: added
19400:
19401: 2002-02-08 paf
19402:
1.116 moko 19403: * src/: include/Makefile.am, sql/Makefile.am,
19404: targets/isapi/Makefile.am: forgotten makes
1.95 moko 19405:
19406: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
19407: forgotten
19408:
19409: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
19410:
19411: * INSTALL, README: install&others updated
19412:
19413: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
19414:
1.116 moko 19415: * Makefile.am, configure, configure.in,
19416: etc/parser3.charsets/Makefile.am, src/Makefile.am,
19417: src/classes/Makefile.am, src/main/Makefile.am,
19418: src/main/pa_status_provider.C, src/targets/Makefile.am,
19419: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
19420: works
1.95 moko 19421:
19422: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19423: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19424: classes/hashfile.C, classes/int.C, classes/mail.C,
19425: classes/math.C, classes/op.C, classes/response.C,
19426: classes/string.C, classes/table.C, classes/void.C,
19427: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19428: include/pa_array.h, include/pa_cache_managers.h,
19429: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19430: include/pa_config_fixed.h, include/pa_config_includes.h,
19431: include/pa_db_connection.h, include/pa_db_manager.h,
19432: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19433: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19434: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19435: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19436: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19437: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19438: include/pa_stack.h, include/pa_string.h,
19439: include/pa_stylesheet_connection.h,
19440: include/pa_stylesheet_manager.h, include/pa_table.h,
19441: include/pa_threads.h, include/pa_types.h, main/compile.C,
19442: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19443: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
19444: main/pa_db_connection.C, main/pa_db_manager.C,
19445: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19446: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
19447: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19448: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19449: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
19450: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19451: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
19452: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19453: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
19454: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19455: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19456: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19457: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
19458: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
19459: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19460: types/pa_vmethod_frame.h, types/pa_vobject.h,
19461: types/pa_vrequest.h, types/pa_vresponse.h,
19462: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19463: types/pa_vstateless_object.h, types/pa_vstatus.C,
19464: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
19465: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
19466: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
19467: classes/image.C, main/pa_common.C, main/pa_exec.C,
19468: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19469: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
19470: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
19471: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
19472: types/pa_vxnode.C, main/pa_charset.C: name spelling
19473:
19474: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19475: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19476: classes/hashfile.C, classes/image.C, classes/int.C,
19477: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19478: classes/string.C, classes/table.C, classes/void.C,
19479: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19480: include/pa_array.h, include/pa_cache_managers.h,
19481: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19482: include/pa_config_fixed.h, include/pa_config_includes.h,
19483: include/pa_db_connection.h, include/pa_db_manager.h,
19484: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19485: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19486: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19487: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19488: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19489: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19490: include/pa_stack.h, include/pa_string.h,
19491: include/pa_stylesheet_connection.h,
19492: include/pa_stylesheet_manager.h, include/pa_table.h,
19493: include/pa_threads.h, include/pa_types.h, main/compile.C,
19494: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19495: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
19496: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
19497: main/pa_db_connection.C, main/pa_db_manager.C,
19498: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19499: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19500: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19501: main/pa_socks.C, main/pa_sql_driver_manager.C,
19502: main/pa_status_provider.C, main/pa_string.C,
19503: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19504: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19505: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19506: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19507: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19508: targets/isapi/pool_storage.h, types/pa_valiased.C,
19509: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19510: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19511: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19512: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19513: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19514: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19515: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19516: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19517: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
19518: types/pa_vresponse.h, types/pa_vstateless_class.C,
19519: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19520: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
19521: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19522: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
19523: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
19524: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
19525:
19526: 2002-02-07 paf
19527:
19528: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
19529:
1.116 moko 19530: * configure, configure.in, src/include/pa_config_auto.h.in,
19531: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
19532: added yet another locking function: fcntl
1.95 moko 19533:
19534: * config.sub: on cygwin configure passes it with strange i1586
19535: const, hacked it to mean i586
19536:
19537: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
19538: disabled $if reference due to conflicts with local variables
19539:
19540: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
19541: xdoc::set obsolete now, now xdoc::create, with both sences
19542:
19543: * operators.txt, src/classes/table.C, src/include/pa_array.h,
19544: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
19545: table::create now // 'set' name obsolete now table clone.
19546:
19547: * operators.txt, src/classes/string.C,
19548: src/include/pa_config_fixed.h, src/main/compile.tab.C:
19549: ^int/double/string.format now can be called with normal []
19550: brackets, not stupid {} as it were implemented for some strange
19551: reason. retaining backward compatibility due to some
19552: already-implemented servers
19553:
19554: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
19555: main/compile.y, main/compile_tools.C, main/compile_tools.h:
19556: operators now detected by check at name_without_curly_rdive_read
19557: rule whether diving code constists only of
19558: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
19559: with OP_GET_ELEMENT_OR_OPERATOR to form
19560: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
19561:
19562: 2002-02-06 paf
19563:
19564: * configure, configure.in: prefix expanded, grr
19565:
19566: * operators.txt, src/classes/mail.C: mail:send config changed
19567:
19568: 2002-02-05 paf
19569:
19570: * operators.txt: regex options commented
19571:
19572: * src/main/: pa_exec.C: argv0 now correct
19573:
19574: * src/types/pa_vstatus.C: status:rusage 3
19575:
19576: * src/types/pa_vstatus.C: status:rusage 2
19577:
19578: * operators.txt: status:rusage described int operators
19579:
19580: * src/types/pa_vstatus.C: status:rusage 1
19581:
19582: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
19583: src/types/types.dsp: status:rusage
19584:
19585: * configure.in, operators.txt, src/classes/file.C,
19586: src/classes/op.C, src/include/pa_common.h,
19587: src/include/pa_config_includes.h, src/main/compile.tab.C,
19588: src/main/pa_common.C: rewritten ^cache to use
19589: non-blocking-exclusive-caches
19590:
19591: * src/main/pa_common.C: text file read mode on win32 adjusted
19592: [speed impact. was off for debugging purpose, but forgotten
19593: afterwards]
19594:
19595: 2002-02-01 paf
19596:
19597: * src/classes/op.C: file_write does EX lock after create, while
19598: file_read does SH after open, so there's a moment after create
19599: but before EX lock when read can sneak into, and read
19600: just-created-for-writing-and-not-yet-locked file, added a check
19601: for that in ^cache...read
19602:
19603: 2002-01-31 paf
19604:
19605: * src/main/: compile.y, compile.tab.C: disabled operator call after
19606: ^xxx:
19607:
19608: * src/main/: compile.tab.C, execute.C: made operators lookup first
19609: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
19610:
19611: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
19612: main/compile.tab.C, main/compile.y, main/compile_tools.C,
19613: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
19614: operators check 6.1 rewritten. now check is done at compile time
19615:
19616: * src/main/execute.C: operators check 5 floated up old error of
19617: staying in 'entered class/object' state after $a($a..) it
19618: prevented operators from being called thereafter
19619:
19620: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19621: main/execute.C: operators check 4 floated up old error of staying
19622: in 'entered object' state after ^a.a(a) it prevented operators
19623: from being called thereafter
19624:
19625: * src/main/execute.C: operators check 3 floated up old error of
19626: staying in 'entered class' state after $a:a(a) it prevented
19627: operators from being called thereafter
19628:
19629: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
19630: floated up old error of staying in 'entered class' state after
19631: $a:a[a] it prevented operators from being called thereafter
19632:
19633: * src/main/execute.C: operators check, thay mistakenly seen in
19634: $class:operator $object.operators contexts
19635:
19636: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
19637: win32
19638:
1.116 moko 19639: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
19640: src/classes/Makefile.am, src/main/Makefile.am,
19641: src/targets/cgi/Makefile.am,
1.95 moko 19642: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 19643: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 19644:
1.116 moko 19645: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
19646: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
19647: configure, configure.in, form.txt, ident.awk, install-sh,
19648: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
19649: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 19650: etc/parser3.charsets/Makefile.am,
19651: etc/parser3.charsets/koi8-r.cfg,
19652: etc/parser3.charsets/windows-1250.cfg,
19653: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 19654: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
19655: src/main/Makefile.am, src/targets/cgi/Makefile.am,
19656: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
19657: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 19658: straightened installation scripts procedure made
19659: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
19660: change
19661:
19662: 2002-01-30 paf
19663:
19664: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
19665: removed] those comments were a mistake, and prevented libltdl
19666: from function properly
19667:
19668: 2002-01-29 paf
19669:
1.116 moko 19670: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
19671: creation [modified acinclude.m4 which were creating int into just
19672: assignment LIBTOOL=../libtool] added default system
19673: config&charsetts prepared 'make install', now it installs
19674: targets/cgi/parser3 into bin directory etc/parser3.conf &
19675: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 19676: $sysconfdir/parser3.charsets respectively
19677:
19678: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
19679: main/pa_globals.C: few forgotten ifdef XML added
19680:
19681: 2002-01-28 paf
19682:
1.116 moko 19683: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 19684: removed
19685:
19686: * src/main/pa_exception.C: dom|generic error output fix
19687:
19688: * src/classes/xnode.C: xdoc.importNode 3 [check err]
19689:
19690: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
19691:
19692: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
19693: [fixed as_node helper func to accept docs]
19694:
19695: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
19696: xdoc.importNode 0
19697:
19698: * src/classes/xdoc.C: xdoc::set now untaints OK
19699:
19700: 2002-01-25 paf
19701:
19702: * src/main/: compile.tab.C, compile.y: #comment before @ after
19703: @SPECIAL now works OK
19704:
19705: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
19706:
19707: * src/main/pa_exec.C: max arg count now 10, and proper message on
19708: violation that added
19709:
19710: * src/classes/hash.C: unified hash::sql, now
19711: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
19712:
19713: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
19714: ^file:lock[filename]{code}
19715:
19716: * src/: classes/file.C, classes/op.C, classes/string.C,
19717: classes/table.C, classes/xdoc.C, include/pa_common.h,
19718: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
19719: to some pa_common funcs
19720:
19721: * src/: include/pa_charset.h, main/pa_globals.C:
19722: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
19723:
19724: * src/: include/pa_charset.h, main/pa_charset.C,
19725: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
19726: not stupid illegal define
19727:
19728: 2002-01-24 paf
19729:
19730: * src/include/pa_version.h: changed version number
19731:
19732: * src/: classes/hashfile.C, include/pa_db_table.h,
19733: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19734: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19735: main/pa_db_connection.C, main/pa_db_table.C,
19736: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
19737: hashfile without logfiles
19738:
19739: * src/: classes/hashfile.C, include/pa_db_table.h,
19740: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
19741: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
19742: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
19743: DB_INIT_TXN init bits, thus got rid of huge log files, which
19744: cluttered disk without huge need]
19745:
19746: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
19747: handy macro, which is strangly abscent in dome lib
19748:
19749: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
19750:
19751: * src/classes/xdoc.C: checked empty response
19752:
19753: * src/classes/xnode.C: xdoc.select fixed context node [were always
19754: /, not self node]
19755:
19756: * src/classes/xnode.C: xnode.select returns array always now, in
19757: case 'nothing found' returns empty array
19758:
19759: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
19760: be more tender with ctrl/c/v
19761:
19762: 2002-01-23 paf
19763:
19764: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
19765: substituted. // 2. when dom tree with entites goes under
19766: transform text nodes // got [erroreosly] cut on first
19767: entity occurance
19768:
19769: * src/types/pa_vdouble.h: double prec. todo: get rid of
19770: twice-converting
19771:
19772: * src/types/pa_vdouble.h: %.20E now float format when %g produced
19773: 'e' in output this is for regretful twice-converting here:
19774: $a(double value) when they write double falue they convert it to
19775: string first, thus %g were losing precesion.
19776:
19777: todo: think up some way to remove double->string string->double
19778: twice-converting
19779:
19780: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
19781: %.20E now default float format this is for regretful
19782: twice-converting here: $a(double value) when they write double
19783: falue they convert it to string first, thus %g were losing
19784: precesion.
19785:
19786: todo: think up some way to remove double->string string->double
19787: twice-converting
19788:
19789: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19790: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
19791: reasons in comment inside
19792:
19793: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
19794: statically linked]
19795:
19796: * src/: include/pa_exception.h, main/compile.tab.C,
19797: main/pa_exception.C: removed exception va_list constructor. 1.
19798: not needed anymore 2. there were a conflict[causing errors]
19799: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
19800: never detected an ambiguilty here, compiling ctor(, "hello") into
19801: ctor(, va_list) which, of course, caused gpf
19802:
19803: * src/main/pa_globals.C: removed debug xslt messages
19804:
19805: 2002-01-22 paf
19806:
19807: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19808: main/pa_globals.C: xsl stylesheet load: parsed entities, this
19809: helps compiling stylesheet properly. example: this refused to
19810: work, <b>«<xsl:value-of select="@title"
19811: />»</b> stranly worked only this way:
19812: <b>«<xsl:value-of select="@title" />»</b>
19813:
19814: docs says "set it to 1", never going into details, so I decided
19815: to try NOT to do that
19816:
19817: * src/classes/table.C: join behaived badly in case named tables
19818: structure mismatched: 0 strings sneaked into dest failing
19819: afterwards. replaced them with empty strings
19820:
19821: 2002-01-21 paf
19822:
19823: * src/main/pa_charset.C: checked empty transcoders in
19824: transcode_cstr|buf
19825:
19826: * src/classes/xdoc.C: xdoc::load error source = filespec
19827:
19828: * src/classes/xdoc.C: transform error source now
19829: stylesheet_filespec
19830:
1.116 moko 19831: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 19832: include/pa_stylesheet_connection.h, main/pa_charset.C,
19833: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 19834: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
19835: gnome
1.95 moko 19836:
19837: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19838: include/pa_globals.h, include/pa_stylesheet_connection.h,
19839: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
19840: xslt generic error 1
19841:
19842: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
19843: xml generic message 1
19844:
19845: * src/classes/table.C: ^table::load empty lines or #comments before
19846: headline
19847:
19848: * src/: include/pa_array.h, include/pa_globals.h,
19849: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
19850: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
19851: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
19852: errors 0
19853:
19854: 2002-01-16 paf
19855:
19856: * src/: classes/hash.C, classes/op.C, classes/string.C,
19857: classes/table.C, classes/void.C, classes/xdoc.C,
19858: include/pa_db_connection.h, include/pa_request.h,
19859: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19860: include/pa_stylesheet_connection.h,
19861: include/pa_stylesheet_manager.h, main/pa_request.C,
19862: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19863: targets/cgi/pool_storage.h: auto closers to sql_connection,
19864: stylesheet_connection auto destroyers to remaining gnome objects
19865:
19866: * src/classes/xdoc.C: few comments
19867:
19868: 2002-01-15 paf
19869:
19870: * src/classes/xdoc.C: xdoc file save string
19871:
19872: ready. todo: error handling
19873:
19874: * src/classes/xdoc.C: xdoc save rewritten using
19875: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
19876: result
19877:
19878: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
19879: started output options parsing
19880:
19881: 2002-01-14 paf
19882:
19883: * src/classes/xdoc.C: method
19884:
19885: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19886: include/pa_pool.h, include/pa_stylesheet_connection.h,
19887: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
19888: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
19889: xslt transform0. TODO: use output options handle errors
19890:
19891: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
19892:
19893: 2002-01-11 paf
19894:
19895: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19896: main/compile_tools.C, main/compile_tools.h, main/execute.C:
19897: partial logical && || evaluation
19898:
19899: * src/classes/xnode.C: xpath selectNodes
19900:
19901: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
19902: string/number/bool
19903:
19904: * src/classes/xnode.C: xpath selectNode 2
19905:
19906: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
19907: xpath selectNode 1
19908:
19909: 2002-01-10 paf
19910:
19911: * src/classes/xnode.C: xpath selectNode -100 [just written]
19912:
19913: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19914: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
19915: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
19916: refcounter]
19917:
19918: 2001-12-29 paf
19919:
19920: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
19921: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
19922: glib works 0
19923:
19924: 2001-12-28 paf
19925:
19926: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
19927: main/pa_exception.C: started glib transcoders
19928:
19929: * src/main/pa_globals.C: renamed gdome to libgdome.dll
19930:
19931: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
19932: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
19933: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
19934: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
19935: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
19936: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
19937: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
19938: libs just compiled in. no refcounting no xpath no xslt yet
19939:
19940: 2001-12-27 paf
19941:
19942: * src/: include/pa_charset.h, include/pa_common.h,
19943: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
19944: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
19945: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
19946: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
19947: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
19948: from xalan&xerces, started the process. globals [initialization
19949: pool [charset update charset [transcodings vxnode vxdoc [DOM
19950: calls
19951:
19952: * src/classes/Makefile.am: going away from xalan&xerces, not needed
19953: anymore
19954:
19955: 2001-12-26 paf
19956:
19957: * src/: include/pa_charset.h, include/pa_charsets.h,
19958: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
19959: key globalized [bug]
19960:
19961: 2001-12-25 paf
19962:
19963: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
19964: main/pa_string.C: table set & append changed splitting languages,
19965: separators now can be clean AND as-is same to mail command line
19966: $MAIN:MAIL.progX arguments
19967:
19968: 2001-12-24 paf
19969:
19970: * src/classes/mail.C: one parted text messages - no multipart
19971: mime-type anymore. for convinient if $.attach-ments
19972:
19973: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
19974: main/pa_string.C: read from cache size check updated
19975:
19976: * src/main/: pa_string.C: String::join_chain another ugly bug :(
19977:
19978: 2001-12-21 paf
19979:
19980: * src/classes/date.C: date:sql-string now returns localtime
19981:
19982: * src/main/pa_request.C: $result in @main actually not working, to
19983: hell with it for now
19984:
19985: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
19986: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
19987: @postprocess @exception
19988:
19989: * src/main/execute.C: junction evaluation canceled - endless
19990: recursion detected
19991:
19992: 2001-12-19 paf
19993:
19994: * src/main/pa_charset.C: charset->charset transcoding via unicode
19995: intermediate
19996:
19997: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
19998:
19999: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
20000:
20001: * src/classes/op.C: ^cache keypath now relative
20002:
20003: * src/classes/mail.C: changed weighting prior to sort
20004:
20005: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
20006: were missing
20007:
20008: 2001-12-17 paf
20009:
20010: * src/main/pa_charset.C: ifndef XML were bad type
20011:
20012: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
20013: outdated unset services_pool
20014:
20015: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
20016: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
20017: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
20018:
20019: * src/main/untaint.C: allowed space in filespec
20020:
20021: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
20022:
20023: * src/classes/image.C: no govno
20024:
20025: * src/classes/image.C: govno
20026:
20027: 2001-12-16 paf
20028:
20029: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
20030:
20031: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
20032: charset_connection&manager replaced by charset&charsets
20033:
20034: * src/main/pa_charset.C: name_cstr 0
20035:
20036: * src/main/untaint.C: uri lang now knows about client/source
20037: charsets
20038:
20039: * src/: classes/file.C, classes/math.C, classes/op.C,
20040: classes/string.C, classes/table.C, classes/xdoc.C,
20041: include/pa_array.h, include/pa_cache_managers.h,
20042: include/pa_charset_connection.h, include/pa_charset_manager.h,
20043: include/pa_common.h, include/pa_db_connection.h,
20044: include/pa_db_manager.h, include/pa_db_table.h,
20045: include/pa_dictionary.h, include/pa_exception.h,
20046: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
20047: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
20048: include/pa_sapi.h, include/pa_socks.h,
20049: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20050: include/pa_string.h, include/pa_stylesheet_connection.h,
20051: include/pa_stylesheet_manager.h, include/pa_table.h,
20052: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
20053: main/pa_charset.C, main/pa_charset_connection.C,
20054: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
20055: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20056: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
20057: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
20058: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
20059: types/types.dsp: introducing Charset
20060:
20061: 2001-12-14 paf
20062:
20063: * src/: include/pa_request.h, include/pa_transcoder.h,
20064: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
20065: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
20066: uri lang
20067:
20068: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
20069:
20070: * src/targets/cgi/Makefile.am: -I../../pcre to .am
20071:
20072: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
20073: defalts_name global
20074:
20075: * src/: include/pa_charset_connection.h, include/pa_pool.h,
20076: include/pa_request.h, main/main.dsp,
20077: main/pa_charset_connection.C, main/pa_charset_manager.C,
20078: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
20079: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
20080: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
20081: changed charset model. now important: $request:charset
20082: $response:charset while $response:content-type.charset become
20083: unimportant [informational]
20084:
20085: 2001-12-13 paf
20086:
20087: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
20088:
20089: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
20090: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
20091: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
20092: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
20093: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
20094: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
20095:
20096: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
20097: auto_ptr part other way, because of stupid gcc 2.96
20098: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
20099: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
20100: FormatterListener] /usr/include/g++-3/memory:48:
20101: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
20102: _Tp1 = FormatterListener, _Tp = FormatterListener]
20103:
20104: * src/classes/xdoc.C: removed extra inc
20105:
20106: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
20107:
20108: * src/include/pa_types.h: msvc head debugging flag
20109:
20110: * src/classes/xdoc.C: freed up listener
20111:
20112: * src/classes/string.C: change msg '... code is not code'
20113:
20114: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
20115: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20116: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
20117: [past/future prob]
20118:
20119: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20120: include/pa_config_fixed.h, include/pa_db_manager.h,
20121: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20122: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
20123:
20124: * src/: include/pa_config_fixed.h, main/pa_common.C,
20125: main/pa_string.C: removed signed mismatch warnings
20126:
20127: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
20128: 'expires' from header outputs
20129:
20130: * src/main/pa_string.C: string::recustruct erroreusly used outdated
20131: row ptr
20132:
20133: * src/classes/file.C: file::cgi bug, request_method were passed to
20134: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
20135:
20136: * src/classes/xdoc.C: lang list updated
20137:
20138: 2001-12-10 paf
20139:
20140: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
20141:
20142: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
20143: erase files like that, knowing their full name introducing //
20144: theoretical problem with, for instance, "_2B" and "." fragments,
20145: // they would yield the same // because
20146: need_file_encode('_')=false // but we need to delete such files
20147: somehow, getting names from ^index
20148:
20149: * src/main/pa_string.C: ^string.replace bug fixed [bad
20150: string::join_chank break]
20151:
20152: 2001-12-07 paf
20153:
20154: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
20155: include/pa_common.h, include/pa_config_auto.h.in,
20156: include/pa_config_fixed.h, include/pa_config_includes.h,
20157: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
20158: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
20159: types/pa_vhashfile.C: merged from r14_simple_cache
20160:
20161: * src/main/pa_string.C: stupid sparc architecture failed to access
20162: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
20163: lduh [ %i2 + 1 ], %l0
20164:
20165: bus error, fixed that
20166:
20167: * src/main/pa_string.C: strange string deserialize bug on
20168: client[pmts], a bit shortened,
20169:
20170: * src/include/pa_config_auto.h.in: makes
20171:
20172: * src/: include/pa_common.h, include/pa_config_fixed.h,
20173: include/pa_config_includes.h, main/pa_common.C: exclusive lock
20174: file write shared lock file read
20175:
20176: * src/: classes/op.C, include/pa_common.h,
20177: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
20178:
20179: 2001-12-06 paf
20180:
20181: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20182: main/pa_request.C: #ifdef RESOURCES_DEBUG
20183:
20184: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
20185: info
20186:
20187: * src/classes/hashfile.C: removed transaction from ^cache
20188:
20189: 2001-12-05 paf
20190:
20191: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
20192: IIS5 there were a prob with illegal call check
20193:
20194: 2001-12-04 paf
20195:
20196: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20197: main/pa_request.C: measures to log
20198:
20199: 2001-11-23 paf
20200:
20201: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20202: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
20203: types/pa_vhashfile.C: merged from _0014, 1
20204:
20205: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20206: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
20207: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
20208: ^cache(33) would change
20209:
20210: 0660 bits in file_write & hashfile create
20211:
20212: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
20213: after pa_string optimization]
20214:
20215: 2001-11-22 paf
20216:
20217: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20218: table.offset[whence]
20219:
20220: * src/classes/op.C: process cstr(,connection)
20221:
20222: * src/classes/op.C: process now gets its body on current language,
20223: not as-is
20224:
20225: * src/main/untaint.C: ORIGINS mode removed UHTML
20226:
20227: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
20228: bit
20229:
1.116 moko 20230: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 20231:
20232: 2001-11-21 paf
20233:
20234: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
20235: <xsl:output output options made identical to xsl:output
20236: attributes exclusion: cdata-section-elements what xalan can do
20237: but that not used now: it can escape and remove CDATA sections
20238:
20239: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
20240: produced by xslt
20241:
20242: * src/targets/cgi/parser3.C: removed debug cgi||1
20243:
20244: * src/main/: pa_string.C, untaint.C: cached some string::size() es
20245:
20246: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
20247: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
20248: default language for {code}, it happen to change it's language
20249: from CLEAN, so later refused to split by CLEAN \t
20250:
20251: 2001-11-20 paf
20252:
1.116 moko 20253: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
20254: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 20255: bottom of dependeces, so that errors would popup quicklier, fixed
20256: line numbering in table::sql
20257:
20258: 2001-11-19 paf
20259:
20260: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
20261: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
20262: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20263: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
20264: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
20265: at wcontext.write
20266:
1.116 moko 20267: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 20268: _set_new_handler
20269:
1.116 moko 20270: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
20271: set_new_handler in apache&isapi
1.95 moko 20272:
20273: 2001-11-16 paf
20274:
20275: * src/targets/cgi/parser3.C: pool debug @ die
20276:
20277: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
20278: removed 8 bytes from String, 2 bytes from
20279: string::chunk::row::item
20280:
20281: * src/main/pa_string.C: removed 1+4 bytes from String
20282:
20283: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20284: types/pa_vstring.C: removed 1+4 bytes from String
20285:
20286: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
20287: 0
20288:
20289: * src/: include/pa_globals.h, include/pa_string.h,
20290: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
20291: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
20292: targets/cgi/parser3.C: introducing estimating
20293: String::cstr_bufsize, 0
20294:
20295: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
20296:
20297: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
20298:
20299: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
20300: include/pa_pool.h: die in pool::fail
20301:
20302: 2001-11-15 paf
20303:
20304: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
20305: main/pa_exception.C, targets/cgi/parser3.C: exception with
20306: dynamic buffer re-back now with counter
20307:
20308: * src/: include/pa_exception.h, main/pa_exception.C: exception with
20309: static buffer back
20310:
20311: * src/targets/cgi/parser3.C: std::
20312:
20313: * src/: classes/classes.awk, include/pa_config_auto.h.in,
20314: include/pa_config_includes.h: setnewhandler check
20315:
1.116 moko 20316: * src/include/pa_config_auto.h.in: makes
1.95 moko 20317:
20318: * src/targets/cgi/parser3.C: set_new_handler started
20319:
20320: 2001-11-14 paf
20321:
20322: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20323: was wrong
20324:
20325: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20326: was wrong
20327:
20328: * src/main/pa_request.C: z
20329:
20330: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
20331: full returns win32 -1 solaris >buffer_size
20332:
20333: checked all that
20334:
20335: * src/classes/op.C: ^untaint{body} as-is default now
20336:
20337: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20338: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
20339: with no_bad_constructors_try
20340:
20341: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20342: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
20343: this: $bred[^string::length[]] $bred[^response::clear[]]
20344: $bred[^int::int[]]
20345:
20346: now VObject creation moved into overriden
20347: VClass::create_new_value, thus 0 from create_new_value means that
20348: class has no ctors
20349:
20350: 2001-11-13 paf
20351:
20352: * src/classes/classes.C: returned accedently removed if in foreach
20353: callbacks [when hash no-0-restructure]
20354:
20355: 2001-11-12 paf
20356:
20357: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
20358: passed as-is to method, xalan makes & into & itself
20359:
20360: * src/classes/date.C: date.roll parser2 alg used
20361:
20362: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
20363: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20364: main/pa_dictionary.C, main/pa_hash.C,
20365: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
20366: now does not containt 0 values. put 0 actullay removes. no check
20367: on 0 value in foreach now required
20368:
20369: 2001-11-11 paf
20370:
20371: * src/sql/pa_sql_driver.h: removed extra constructor, doc
20372:
20373: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
20374:
20375: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
20376: driver initialize not const
20377:
20378: 2001-11-10 paf
20379:
20380: * src/main/pa_exec.C: doc
20381:
20382: 2001-11-09 paf
20383:
20384: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
20385: param properly
20386:
20387: * src/classes/string.C: string.save now does untainting before
20388: saving
20389:
20390: * src/main/pa_common.C: line endings fixing fixed last piece[was
20391: still cstr oriented]
20392:
20393: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20394: line endings fixing got rid of cstr, now must work ok with post
20395: multipart
20396:
20397: * src/types/pa_vform.C: line endings fixed at post / multipart /
20398: not file also now
20399:
20400: 2001-11-08 paf
20401:
20402: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20403: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20404: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
20405: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
20406: main/pa_stylesheet_manager.C: restructured Cache manager to be
20407: simple parent, not second parent [gcc 2.96 strangly refused to
20408: call virtual from second parent]
20409:
1.116 moko 20410: * src/: include/pa_common.h, main/Makefile.am,
20411: targets/cgi/pa_pool.C: makes
1.95 moko 20412:
20413: * src/: include/pa_request.h, main/pa_request.C,
20414: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
20415: 'status' class enabler
20416:
20417: <Location /parser-status.html> ParserStatusAllowed </Location>
20418:
20419: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20420: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20421: include/pa_stylesheet_manager.h, main/main.dsp,
20422: main/pa_cache_managers.C, main/pa_charset_manager.C,
20423: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20424: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20425: types/pa_vstatus.h: cache_managers, maybe-expiring every request
20426: todo: apache 'status' class enabler
20427:
20428: 2001-11-05 paf
20429:
20430: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
20431: debug to normal
20432:
20433: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
20434: hence i removed skipping 0 values in hash::for_each-es we need to
20435: check cleaned cache items manually. few more checks.
20436:
20437: expiring to 0 time was wrong, changed to 'now' time
20438:
20439: * src/targets/cgi/parser3.C: read can return 0, that means sort of
20440: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
20441: on apache already done :)
20442:
20443: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
20444: skipping 0 values in hash::for_each-es we need to check cleaned
20445: cache items manually
20446:
20447: * src/main/: pa_db_connection.C, pa_db_table.C:
20448: parser_multithreaded check was wrong
20449:
20450: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20451: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20452: classes/hashfile.C, classes/image.C, classes/int.C,
20453: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20454: classes/string.C, classes/table.C, classes/void.C,
20455: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20456: include/pa_array.h, include/pa_charset_connection.h,
20457: include/pa_charset_manager.h, include/pa_common.h,
20458: include/pa_config_fixed.h, include/pa_config_includes.h,
20459: include/pa_db_connection.h, include/pa_db_manager.h,
20460: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20461: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20462: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20463: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20464: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20465: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20466: include/pa_stack.h, include/pa_string.h,
20467: include/pa_stylesheet_connection.h,
20468: include/pa_stylesheet_manager.h, include/pa_table.h,
20469: include/pa_threads.h, include/pa_types.h, main/compile.C,
20470: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20471: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
20472: main/pa_charset_manager.C, main/pa_common.C,
20473: main/pa_db_connection.C, main/pa_db_manager.C,
20474: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20475: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20476: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20477: main/pa_socks.C, main/pa_sql_driver_manager.C,
20478: main/pa_status_provider.C, main/pa_string.C,
20479: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20480: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20481: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20482: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20483: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20484: targets/isapi/pool_storage.h, types/pa_valiased.C,
20485: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20486: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20487: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20488: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20489: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20490: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20491: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20492: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20493: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20494: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20495: types/pa_vstateless_object.h, types/pa_vstatus.h,
20496: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
20497: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
20498: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20499: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
20500: $status:db fixed used not initialized in db_connection & db_table
20501:
20502: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
20503: $status:charset
20504:
20505: * src/: classes/xdoc.C, include/pa_db_connection.h,
20506: include/pa_stylesheet_connection.h,
20507: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
20508: types/pa_vstatus.h: $status:stylesheet
20509:
20510: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
20511: include/pa_request.h, include/pa_sql_connection.h,
20512: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20513: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
20514: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20515: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20516: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
20517: types/pa_vxnode.C, types/types.dsp: started status parser class
20518:
20519: 2001-11-01 paf
20520:
20521: * src/include/pa_config_auto.h.in: makes
20522:
20523: * src/main/pa_hash.C: removed old extra include
20524:
20525: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
20526: checks [for hp, there are such in math.h]
20527:
20528: * src/classes/op.C: ^for endless loop check strightened
20529:
20530: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
20531: behavior in native calls. it left unchanged, so ^for ^foreach &
20532: co can use r.root to write their i & key,value there
20533:
20534: * src/classes/op.C: detected for var storage bug, fixed.
20535: todo:foreach
20536:
20537: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
20538: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
20539: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
20540: changing of hash inside of foreach
20541:
20542: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
20543: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
20544: were hash.foreach
20545:
20546: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
20547: types/pa_vstring.C, types/pa_vstring.h:
20548: ^foreach[key|value]{body}[[separator]|{separator}]
20549:
20550: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
20551: types/pa_vcookie.C: ^hash.delete[key]
20552:
20553: 2001-10-31 paf
20554:
20555: * src/main/: compile.C, pa_common.C: completely empty file now
20556: considered "read", not ignored [not perfect trick used]
20557:
20558: * src/main/pa_common.C: simplier common ifdefs
20559:
20560: * src/main/pa_common.C: typing bug in common - bad ifdeff
20561:
20562: * src/main/pa_db_connection.C: z
20563:
20564: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
20565: lockdetector flags
20566: dbenv.lk_detect=DB_LOCK_RANDOM;
20567:
20568: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
20569: from accidental show [imagine user forgot @exception]
20570:
20571: * src/classes/table.C: ^table.save[[nameless|+append;]path]
20572:
20573: * src/: classes/file.C, classes/image.C, classes/mail.C,
20574: classes/string.C, classes/xnode.C, include/pa_common.h,
20575: main/pa_common.C: ^string.save[[append;]path]
20576:
20577: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20578: main/execute.C: \ in expression: int divide 10/3=3
20579:
20580: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
20581: inside of ^cache
20582:
20583: * src/: include/pa_threads.h, main/pa_db_connection.C,
20584: main/pa_db_table.C, targets/cgi/pa_threads.C,
20585: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
20586: needed
20587:
20588: 2001-10-30 paf
20589:
20590: * src/: classes/classes.dsp, main/main.dsp,
20591: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20592: types/types.dsp: enabled debug incremental compile
20593:
20594: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20595: form post data line endings not reformatted now.
20596:
20597: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
20598: now required [had bug when file= has no value]
20599:
20600: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
20601: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
20602: cstr(asis) default param removed
20603:
20604: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
20605:
20606: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
20607:
20608: * src/include/pa_dir.h: LOAD_DIR fixed
20609:
20610: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
20611: was broken} fix_line_breaks
20612:
20613: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
20614: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
20615: packed with #pragma pack
20616:
1.116 moko 20617: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 20618:
20619: 2001-10-29 paf
20620:
20621: * src/types/pa_wcontext.h: bitfield syntax stricter
20622:
20623: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
20624: string hash.puts
20625:
20626: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
20627:
20628: * src/include/pa_sql_connection.h: there were one wrong
20629: SQL_CONNECTION_FUNC_GUARDED [failed]
20630:
20631: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
20632: param.someday either ifdef or remove it
20633:
20634: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
20635:
20636: * src/main/untaint.C: optimizing returned after debugging
20637:
20638: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
20639: main/untaint.C: memory hunging #pragma pack(1)
20640:
20641: 16 419 844 13 169 394
20642:
20643: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20644: targets/cgi/pa_pool.C: String size_t replace to uint in proper
20645: places [todo:Array]
20646:
20647: * src/: main/execute.C, targets/cgi/pa_pool.C,
20648: targets/cgi/parser3.dsp, types/pa_wcontext.h,
20649: types/pa_wwrapper.h: debugging memory WContext flags to bits
20650:
20651: total 5 652 652/158731 total 5 469 332/158731
20652:
20653: * src/: include/pa_array.h, main/pa_array.C: debugging memory
20654: Array:: without cache in get/put now
20655:
20656: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
20657: 18:25:27 2001] total 5 652 652/158731
20658:
20659: * src/: include/pa_string.h, main/pa_string.C,
20660: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
20661: now
20662:
20663: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
20664: 18:11:53 2001] total 5796092/158731
20665:
20666: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
20667: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
20668: key ref now
20669:
20670: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
20671: 17:11:17 2001] total 16867948/202658
20672:
20673: * src/: classes/file.C, classes/image.C, classes/string.C,
20674: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
20675: main/execute.C, main/pa_array.C, main/pa_common.C,
20676: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20677: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
20678: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
20679: string::as_int/double now usually uses stack, not heap [200K out
20680: of 17M :)] VString(String&) not copies reference [29M -> 17M]
20681:
20682: * src/main/pa_sql_driver_manager.C: ping to have services [old
20683: hiding bug]
20684:
20685: * src/Makefile.am: .am order
20686:
20687: * src/: include/pa_array.h, include/pa_charset_manager.h,
20688: include/pa_db_connection.h, include/pa_db_manager.h,
20689: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
20690: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20691: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
20692: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
20693: required "friend class"
20694:
20695: ../include/pa_request.h:51: friend declaration requires
20696: class-key, i.e. `friend class Temp_lang'
20697:
20698: * src/: include/pa_exception.h, include/pa_sql_connection.h,
20699: main/pa_exception.C, main/pa_sql_driver_manager.C,
20700: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
20701:
20702: the idea is to #1 jump to C++ some function to main body, where
20703: every function stack frame has exception unwind information and
20704: from there... #2 propagate_exception()
20705:
20706: 2001-10-28 paf
20707:
20708: * src/main/pa_db_connection.C: removed old consts
20709:
20710: * src/main/pa_db_connection.C: expire table [was accidently pasted
20711: with wrong type/cast]
20712:
20713: * src/main/: pa_db_connection.C, pa_db_table.C: exception
20714: translation
20715:
1.116 moko 20716: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 20717: remember to build DB2 with -fexceptions!!!
20718:
20719: * src/main/pa_db_table.C: DB_RMW defed
20720:
20721: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
20722: include/pa_db_connection.h, include/pa_db_manager.h,
20723: include/pa_db_table.h, main/pa_db_connection.C,
20724: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
20725:
20726: 2001-10-27 paf
20727:
20728: * src/: classes/hashfile.C, include/pa_db_connection.h,
20729: include/pa_db_table.h, main/pa_db_connection.C,
20730: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
20731: types/pa_vhashfile.C: DB2 ifdefs
20732:
1.116 moko 20733: * src/: classes/Makefile.am, include/pa_config_fixed.h,
20734: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 20735: makes with DB2
20736:
1.116 moko 20737: * src/: include/pa_config_auto.h.in, main/Makefile.am,
20738: types/Makefile.am: makes db
1.95 moko 20739:
20740: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
20741: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
20742: globals.C
20743:
20744: * src/: classes/hashfile.C, include/pa_db_connection.h,
20745: include/pa_db_table.h, main/pa_db_connection.C,
20746: main/pa_db_table.C: ^hashfile.clear[]
20747:
20748: * src/classes/classes.awk: no $ in var names
20749:
20750: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
20751: connection&table [forgotten calls]
20752:
20753: 2001-10-26 paf
20754:
20755: * src/main/pa_db_connection.C: db checkpoints
20756:
20757: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
20758: checkpoints
20759:
20760: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
20761: default. but entities still reparsed. todo: tothink
20762:
20763: * src/main/pa_db_connection.C: db recover mech 2
20764:
20765: * src/: classes/hashfile.C, include/pa_db_connection.h,
20766: include/pa_db_manager.h, include/pa_db_table.h,
20767: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20768: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
20769: types/pa_vhashfile.h: db connections & tables now cached at
20770: create time & multithreaded
20771:
20772: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
20773: parsed_source
20774:
20775: * src/main/pa_db_connection.C: about to remove connection from
20776: vhashfile
20777:
20778: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
20779: transaction commit/rollback responsibility left to parent [as it
20780: sould - else there were a bug with double free]
20781:
20782: * src/include/pa_db_table.h: db: child transaction commit/rollback
20783: responsibility left to parent [as it sould - else there were a
20784: bug with double free]
20785:
20786: 2001-10-25 paf
20787:
20788: * src/: classes/hashfile.C, include/pa_common.h,
20789: include/pa_db_connection.h, include/pa_db_manager.h,
20790: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
20791: types/pa_vhashfile.C, types/pa_vhashfile.h,
20792: include/pa_db_table.h, main/pa_db_table.C: started db_home
20793: [multiple, cached] todo: autorecover [tried, but not succeded,
20794: yet]
20795:
20796: * src/include/pa_dir.h: ancient gpf on dir not found fixed
20797:
20798: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
20799: transaction parent passed
20800:
20801: 2001-10-24 parser
20802:
1.116 moko 20803: * src/classes/Makefile.am: makes
1.95 moko 20804:
20805: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
20806: isapi/pool_storage.h: pool_storage fixed
20807:
20808: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
20809: types/pa_vform.h: form fix_line_breaks
20810:
1.116 moko 20811: * src/targets/cgi/pool_storage.h: makes
1.95 moko 20812:
20813: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
20814: targets/cgi/pool_storage.h: makes
20815:
20816: * src/sql/pa_sql_driver.h: version
20817:
20818: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
20819: types/pa_vform.C, types/pa_vform.h: .am
20820:
20821: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
20822: this: DB_RMW Acquire write locks instead of read locks when doing
20823: the retrieval. Setting this flag may decrease the likelihood of
20824: deadlock during a read-modify-write cycle by immediately
20825: acquiring the write lock during the read part of the cycle so
20826: that another thread of control acquiring a read lock for the same
20827: item, in its own read-modify-write cycle, will not result in
20828: deadlock
20829:
20830: * src/targets/isapi/parser3isapi.dsp: doc
20831:
20832: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
20833:
20834: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
20835:
20836: * src/: classes/hashfile.C, include/pa_db_connection.h,
20837: main/pa_db_connection.C: hashfile expired deleted from db when
20838: get & iterate
20839:
20840: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
20841: expiring 1
20842:
20843: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
20844:
20845: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
20846: db_connection not bothers with key when not returning expired
20847: data
20848:
20849: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20850: types/pa_vhashfile.C: db_cursor constructor public now
20851:
20852: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20853: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
20854: stamped, todo: put_element analize
20855:
20856: * src/: include/pa_db_connection.h, include/pa_string.h,
20857: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
20858: serialize. todo stamp
20859:
20860: 2001-10-23 parser
20861:
20862: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
20863: classes/image.C, classes/mail.C, classes/response.C,
20864: classes/string.C, classes/table.C, classes/xdoc.C,
20865: include/pa_config_fixed.h, include/pa_db_connection.h,
20866: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
20867: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
20868: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
20869: types/pa_vtable.C: ^hashfile.hash[]
20870:
20871: * src/: classes/hashfile.C, classes/xdoc.C,
20872: include/pa_config_fixed.h, main/pa_db_manager.C,
20873: main/pa_globals.C: ifdefs so it compiled without db
20874:
20875: * src/: classes/hashfile.C, include/pa_db_connection.h,
20876: include/pa_db_manager.h, main/pa_db_connection.C,
20877: main/pa_db_manager.C, types/pa_vhashfile.h:
20878: ^hashfile.transaction{code} ^hashfile:clear[filename]
20879: ^hashfile.delete[key]
20880:
20881: 2001-10-22 parser
20882:
20883: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
20884: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
20885:
20886: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
20887: classes/xnode.C, include/pa_charset_connection.h,
20888: include/pa_db_connection.h, include/pa_db_manager.h,
20889: include/pa_exception.h, include/pa_sapi.h,
20890: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20891: include/pa_stylesheet_connection.h,
20892: include/pa_stylesheet_manager.h,
20893: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20894: main/pa_db_connection.C, main/pa_db_manager.C,
20895: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
20896: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20897: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
20898: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
20899: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
20900: types/types.dsp: hashfile 0
20901:
20902: * src/types/pa_vhashfile.C: z
20903:
20904: * src/: classes/classes.dsp, classes/hashfile.C,
20905: include/pa_config_fixed.h, main/execute.C,
20906: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
20907: types/pa_vhashfile.h, types/types.dsp: hashfile -100
20908:
20909: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
20910:
20911: * src/: include/pa_exception.h, include/pa_request.h,
20912: main/execute.C, main/pa_exception.C, main/pa_request.C,
20913: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20914: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
20915:
20916: 2001-10-19 parser
20917:
20918: * src/include/pa_pool.h: header
20919:
20920: * src/main/pa_pool.C: auto compiled on gcc
20921:
20922: * src/classes/image.C: comment
20923:
1.116 moko 20924: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 20925:
20926: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20927: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20928: types/pa_vxnode.h: xnode clone got freed
20929:
20930: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20931: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
20932: can free up xalandomstring resulting from pool::transcode
20933:
20934: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
20935: include/pa_config_fixed.h, include/pa_exception.h,
20936: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
20937: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
20938: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
20939: to c++ exceptions 1xml configure fixed to exclude xalan-patch
20940: from non-xml compile
20941:
20942: * src/main/pa_request.C: pool:: context - get_context
20943:
20944: * src/: classes/classes.h, classes/date.C, classes/double.C,
20945: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
20946: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
20947: classes/string.C, classes/table.C, classes/void.C,
20948: include/pa_config_fixed.h, include/pa_exception.h,
20949: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
20950: main/compile.C, main/compile_tools.C, main/execute.C,
20951: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
20952: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
20953: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
20954: main/pa_string.C, main/pa_table.C, main/untaint.C,
20955: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20956: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
20957: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
20958: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
20959: types/pa_vstateless_class.h, types/pa_vtable.C,
20960: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
20961: exceptions 0
20962:
20963: * src/classes/classes.awk: $ removed
20964:
20965: 2001-10-18 parser
20966:
20967: * src/types/pa_vcookie.C: cookie:CLASS
20968:
20969: * src/main/main.dsp: project
20970:
20971: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
20972: set_document & ctor question "who owns document" solved
20973:
20974: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
20975:
20976: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20977: main/pa_pool.C: encoding in dom creating funcs
20978:
20979: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
20980: be transformed now
20981:
20982: * src/classes/xdoc.C: dom created by create can be transformed now
20983:
20984: * src/classes/xdoc.C: z
20985:
20986: * src/classes/xdoc.C: comment
20987:
20988: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
20989: create now uses XercesDocumentBridge, appendChild&co now works
20990:
20991: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
20992: @ recompile
20993:
20994: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
20995: $origin @exception[
20996:
20997: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
20998: tag names forced to XML lang
20999:
21000: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
21001: leechy-found bugs in code&doc fixed
21002:
21003: 2001-10-17 parser
21004:
21005: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
21006: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
21007: n functionality preserved
21008:
21009: * src/types/pa_vimage.h: removed unused vimage::save
21010:
21011: 2001-10-16 parser
21012:
21013: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
21014:
21015: * src/classes/: xnode.C: removed few dom returns & changed op.txt
21016:
21017: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
21018:
21019: * src/classes/image.C: image.copy tolerance
21020:
21021: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
21022: ineffective, but works for small paleted image
21023:
21024: * src/types/pa_vimage.C: comment
21025:
21026: * src/classes/image.C: gd size/resize bugfix
21027:
21028: * src/: classes/classes.dsp, main/main.dsp,
21029: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21030: types/types.dsp: ident >nul 2>&1
21031:
21032: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
21033: systems
21034:
21035: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
21036: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
21037:
21038: 2001-10-15 parser
21039:
21040: * src/main/execute.C: z
21041:
21042: * src/classes/: xdoc.C: !::create{qualifiedName}
21043:
21044: * src/types/pa_vxnode.C: document_type_node.
21045: !readonly attribute DOMString name
21046: !notation_node.
21047: !readonly attribute DOMString publicId
21048: !readonly attribute DOMString systemId
21049:
1.116 moko 21050: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
21051: ::write badly passed string too transparently [failed to
21052: intercept it]
1.95 moko 21053:
21054: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
21055: include/pa_request.h, main/pa_sql_driver_manager.C,
21056: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21057: types/pa_vxnode.h: DOM1 major addtion, only few
21058: attributes/methods left
21059:
21060: 2001-10-13 parser
21061:
21062: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21063: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
21064: in main handler
21065:
21066: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
21067: cleanups & frees order
21068:
21069: * src/types/pa_vcode_frame.h: couple comments
21070:
21071: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
21072: transparent enough to handle hash if creation&passing
21073:
21074: * src/: include/pa_config_fixed.h, main/execute.C,
21075: main/pa_exception.C: noticed that vcodeframe not transparent
21076: enough, would change now
21077:
21078: 2001-10-12 parser
21079:
21080: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
21081: fixed. initialization&free on each thread!
21082:
21083: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
21084: handling changed: now type of default param analized always, not
21085: only at problem time, thus helping early problem spotting
21086:
21087: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
21088: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
21089: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21090: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
21091: multithread bug fixed. initialization&free on each thread!
21092:
21093: 2001-10-11 parser
21094:
21095: * src/classes/xnode.C: xnode.selectSingle now
21096:
21097: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
21098: include/pa_pool.h, include/pa_stylesheet_connection.h,
21099: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
21100: convertors out of Pool into Exception
21101:
21102: * src/main/pa_string.C: const
21103:
21104: * src/: include/pa_string.h, main/pa_string.C: restructured string:
21105: linked pieces of same language together prior to String::replace
21106:
21107: * src/classes/hash.C: !^hash.add[addme]
21108: !^hash.sub[subme]
21109: !^a.union[b] = new
21110: !^a.intersection[b] = new
21111: !^a.intersects[b] = bool
21112:
21113: * src/classes/hash.C: !^hash::append[append_from]
21114:
21115: * src/: classes/hash.C, types/pa_vhash.h:
21116: !^hash::create[[copy_from]]
21117:
21118: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21119: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
21120: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
21121: fixed. got rid of empty_string, which caused errors - it hasnt
21122: exception but somebody[value.bark] tried to throw it on it's pool
21123:
1.116 moko 21124: * src/include/pa_config_auto.h.in: makes
1.95 moko 21125:
21126: 2001-10-10 parser
21127:
21128: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
21129:
21130: * src/main/: compile.tab.C, compile.y: ^a[
21131:
21132: @next_method << now unclosed ] would be reported here
21133:
21134: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
21135: compile error
21136:
21137: 2001-10-09 parser
21138:
1.116 moko 21139: * src/: classes/Makefile.am, main/Makefile.am,
21140: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 21141:
21142: * src/classes/Makefile.am: makes
21143:
21144: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
21145: win32 errors intercepted [xalan transformer patched and
21146: incorporated]
21147:
21148: * src/: classes/classes.dsp, classes/xdoc.C,
21149: include/pa_stylesheet_connection.h, main/main.dsp,
21150: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21151: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
21152: patches starting
21153:
21154: * src/classes/: string.C, table.C: ^string.save[file]
21155:
21156: * src/classes/: date.C, table.C: calendar moved to date
21157:
21158: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
21159: string/table] now
21160:
21161: * src/classes/: op.C, table.C: z
21162:
21163: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
21164: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
21165: types/pa_vxnode.h: table:menu & op for delims made allowed not to
21166: be code [be string..]
21167:
21168: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
21169: table.C: lots of
21170: params->as_int/double/as_string/as_junction/as_no_junction
21171: messages added
21172:
21173: 2001-10-08 parser
21174:
21175: * src/: classes/date.C, classes/image.C, classes/string.C,
21176: classes/table.C, classes/void.C, include/pa_request.h:
21177: params->as_int/double message added
21178:
21179: * src/classes/image.C: image:circle [and round arc] uses Bresenham
21180:
21181: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
21182: image:sector removed image:html internal "line-*" attribs
21183:
21184: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
21185: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
21186:
21187: * src/types/pa_vcookie.C: removing cookie made more netscape-like
21188: way
21189:
21190: * src/: classes/file.C, classes/form.C, main/pa_common.C,
21191: main/untaint.C: header untainting to UL_HTTP_HEADER,
21192: UL_MAIL_HEADER made nonforced [only tainted pieces]
21193:
21194: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
21195: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
21196: @ SAPI::log
21197:
21198: * src/main/untaint.C: \r to ' ' in origins mode
21199:
21200: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
21201: set]
21202:
21203: * src/: classes/xdoc.C, include/pa_config_fixed.h,
21204: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
21205: nonstandard liaison freed up
21206:
21207: 2001-10-07 parser
21208:
21209: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
21210: project
21211:
21212: 2001-10-05 parser
21213:
21214: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
21215: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
21216: from outputing to cerr. lots of "todos"
21217:
21218: * src/main/untaint.C: http_header tainting more gentle with
21219: enquoting now
21220:
21221: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
21222: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
21223: xml errorhandler. fixed string.replace a little, read @test
21224:
21225: * src/main/pa_string.C: found replace bug - first_that_starts(char
21226: *) does not have limit, and looks further eos, fixing....
21227:
21228: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
21229:
21230: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
21231:
21232: * src/main/: pa_charset_connection.C: ctype another mem clear
21233: bugfix
21234:
1.116 moko 21235: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
21236: $result[^[$p^]z] now works fine
1.95 moko 21237:
21238: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
21239: wrong. fixed it
21240:
21241: * src/main/pa_charset_connection.C: unicode zero pair at the beging
21242: of totable appered to be vital
21243:
21244: 2001-10-04 parser
21245:
21246: * src/classes/image.C: ^image.length[text]
21247:
21248: 2001-10-03 parser
21249:
21250: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
21251:
21252: * src/main/pa_request.C: restored pcre defaulting in request
21253: [mindlessly "optimized" yesterday] comment left
21254:
21255: 2001-10-02 parser
21256:
21257: * src/: main/pa_charset_manager.C,
21258: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
21259: needed
21260:
21261: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
21262: forgot non-xml pool.*charset needed
21263:
21264: * src/classes/table.C: # config comments fixed
21265:
21266: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
21267: charset_connection #comment now
21268:
21269: * src/: classes/classes.dsp, types/types.dsp: release projects
21270: options fixed to use release msvcrt lib
21271:
21272: * src/main/pa_charset_connection.C: pcre tables now const inside
21273: removed default - pcre handles that internally fixed bug on
21274: not-cleaning tables [previously was calloced, now member]
21275:
21276: * src/: include/pa_request.h, main/pa_charset_connection.C,
21277: main/pa_request.C, types/pa_vstring.h: pcre tables now const
21278: inside removed default - pcre handles that internally fixed bug
21279: on not-cleaning tables [previously was calloced, now member]
21280:
21281: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
21282: tested charset reload on file change @ apache version = OK tested
21283: freeing up prev encoding on adding new = OK
21284:
21285: 2001-10-01 parser
21286:
21287: * src/main/pa_charset_connection.C: removed entitify external hack
21288: [internal installed]
21289:
1.116 moko 21290: * src/main/Makefile.am: makes+removed dtd
1.95 moko 21291:
21292: * src/: include/pa_charset_connection.h,
21293: include/pa_charset_manager.h,
21294: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21295: main/pa_charset_connection.C, main/pa_charset_manager.C,
21296: main/pa_request.C: charset loading & caching mech 0
21297:
21298: * src/: include/pa_stylesheet_connection.h,
21299: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21300: main/pa_globals.C, main/pa_request.C: would make charset loading
21301: & caching mech now
21302:
21303: 2001-09-30 parser
21304:
21305: * src/main/pa_request.C: forgot to fill toTable
21306:
21307: * src/: include/pa_config_fixed.h, main/pa_request.C: started
21308: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
21309: failed on win32 for now..
21310:
21311: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
21312: now charsets table configuration variable is: CHARSETS
21313:
21314: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
21315: ctype with unicode 1. todo: no П entities on output somehow
21316:
21317: * src/: classes/file.C, classes/op.C, classes/string.C,
21318: include/pa_request.h, main/pa_request.C: started ctype with
21319: unicode values
21320:
21321: 2001-09-28 parser
21322:
21323: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
21324: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
21325: string passed AS-IS now
21326:
21327: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
21328: way of user-configuring... todo: implement
21329:
21330: 2001-09-27 parser
21331:
21332: * src/classes/table.C: table.sort changed to sort table itself
21333:
21334: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
21335: X^.getElementsByTagName[tagname] = array of xnode
21336: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
21337: nodes removed - regretfully not supported @ xalan. maybe someday
21338: would reimplement, if needed.
21339:
21340: win32build system: solved long waiting anti-non-started-apache
21341: problem
21342:
21343: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
21344: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21345: types/types.dsp: win32 ident make system so not to rebuild
21346: library [ident.C.new]
21347:
21348: 2001-09-26 parser
21349:
21350: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
21351: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
21352: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21353: types/pa_vxnode.C, types/types.dsp: z
21354:
21355: * src/classes/classes.C: forgot one non-xml check
21356:
1.116 moko 21357: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21358: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 21359:
21360: * src/targets/cgi/parser3.C: z
21361:
21362: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
21363: targets/isapi/parser3isapi.C: #ifdef SMTP
21364:
21365: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
21366: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21367: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
21368: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
21369: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21370: types/types.dsp: xdoc&xnode now
21371:
21372: * src/: classes/classes.C, classes/classes.awk,
21373: classes/classes.dsp, classes/classes.h, classes/date.C,
21374: classes/dnode.C, classes/dnode.h, classes/dom.C,
21375: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21376: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
21377: classes/op.C, classes/response.C, classes/string.C,
21378: classes/table.C, classes/void.C, include/pa_array.h,
21379: include/pa_common.h, include/pa_config_fixed.h,
21380: include/pa_config_includes.h, include/pa_dictionary.h,
21381: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
21382: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21383: include/pa_socks.h, include/pa_sql_connection.h,
21384: include/pa_sql_driver_manager.h, include/pa_stack.h,
21385: include/pa_string.h, include/pa_stylesheet_connection.h,
21386: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
21387: include/pa_xslt_stylesheet_manager.h, main/compile.C,
21388: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21389: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
21390: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
21391: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
21392: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
21393: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21394: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
21395: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21396: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21397: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
21398: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21399: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
21400: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
21401: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21402: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
21403: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
21404: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
21405: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
21406: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
21407: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
21408: types/pa_vmethod_frame.h, types/pa_vobject.h,
21409: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21410: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21411: types/pa_vstateless_object.h, types/pa_vstring.C,
21412: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
21413: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
21414: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
21415: main.dsp splitted to main+classes+types along to .am
21416:
21417: * src/classes/Makefile.am: removed useless var
21418:
21419: * src/: classes/classes.cmd, main/main.dsp,
21420: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
21421: main.dsp
21422:
21423: 2001-09-25 parser
21424:
21425: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
21426: 1251 though, todo ICU
21427:
1.116 moko 21428: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 21429: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 21430: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
21431: types/pa_vdom.h: xml configure makes
1.95 moko 21432:
21433: 2001-09-24 parser
21434:
1.116 moko 21435: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
21436: types/Makefile.am: makes
1.95 moko 21437:
1.116 moko 21438: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 21439:
21440: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
21441: started unix makes update
21442:
21443: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
21444: started unix makes update
21445:
21446: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
21447:
21448: * src/types/pa_value.h: z
21449:
21450: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
21451: bugs with usinge hash/table in expressions
21452:
21453: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
21454: resolved conflicts fixed [const]
21455:
21456: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
21457: classes/table.C, include/pa_request.h, include/pa_sapi.h,
21458: main/compile.C, main/compile.tab.C, main/compile.y,
21459: main/compile_tools.h, main/main.dsp, main/pa_common.C,
21460: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21461: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
21462: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
21463: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
21464: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
21465: with before_xml [merge2 actually didn't happen - i've created
21466: tags on wrong branch. so this merge is in fact re-merge]
21467:
21468: 2001-09-21 parser
21469:
21470: * src/: main/main.dsp, targets/cgi/parser3.dsp,
21471: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
21472: produced "" in make file and sadly wrong interpreted on load]
21473:
1.116 moko 21474: * src/: classes/classes.h, classes/hash.C, classes/op.C,
21475: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
21476: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21477: include/pa_sql_driver_manager.h, include/pa_string.h,
21478: main/compile.tab.C, main/main.dsp, main/pa_common.C,
21479: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
21480: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 21481:
21482: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
21483: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
21484: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
21485: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21486: main/pa_pool.C, main/pa_request.C,
21487: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
21488: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21489: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
21490: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
21491: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
21492: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
21493: types/pa_vrequest.C, types/pa_vresponse.h,
21494: types/pa_vstateless_class.C, types/pa_vstring.C,
21495: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
21496: created new projects for sql drivers [planning to remove sql
21497: drivers from main cvs project] first, will join latest changes
21498:
21499: * src/classes/: dom.C: defaulted dom writing methods encoding to
21500: pool.get_charset
21501:
21502: * src/classes/dom.C: defaulted dom writing methods encoding to
21503: pool.get_charset
21504:
21505: * src/include/pa_pool.h: defaulted dom writing methods encoding to
21506: pool.get_charset
21507:
21508: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
21509: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
21510: methods encoding to pool.get_charset
21511:
21512: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
21513: transcoder were created right "unsupported encoding" message.
21514: not @ set time, but @ use time, so until xml output functions
21515: .string, .file, .save used - no encoding name check occur
21516:
21517: reduced transcode buffer size to 60 fixed pool cleanup - no
21518: registration needed, pools are officially destructured
21519:
21520: 2001-09-20 parser
21521:
21522: * src/classes/image.C: 20K preload on jpg measure [image::measure]
21523:
21524: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
21525: $MAIN:DEFAULTS.content-type[$.charset[here]]
21526:
21527: * src/: classes/dnode.C, classes/dom.C,
21528: include/pa_config_includes.h, include/pa_globals.h,
21529: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21530: main/pa_pool.C, targets/cgi/parser3.dsp,
21531: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
21532: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
21533: Pool::transcode 0
21534:
21535: * src/classes/dom.C: dom. string save file moved output xml options
21536: to last param and made it optional
21537:
21538: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
21539: dnodes
21540: !$attributenode.specified = boolean
21541: true if the attribute received its value explicitly
21542: in the XML document,
21543: or if a value was assigned programatically with the
21544: setValue function.
21545: false if the attribute value came from the default value
21546: declared in the document's DTD.
21547: !$pinode.target = target of this processing instruction
21548: XML defines this as being the first token following the
21549: markup
21550: that begins the processing instruction.
21551: XPath:
21552: !^node.select[xpath/query/expression] = hash of 0->node0
21553: 1->node1
21554: !^node.select-single[xpath/query/expression] = first node if
21555: any
21556:
21557: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
21558: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
21559: some 'const's added
21560:
21561: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
21562: expression context now, there value = size and boolean value
21563: size!=0
21564:
21565: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
21566: can be used in expression context now, there value = size and
21567: boolean value size!=0
21568:
21569: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
21570: types/pa_vstring.h: dnode .file .string .save moved back to dom
21571: due to strange xalan bug
21572:
21573: 2001-09-18 parser
21574:
21575: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
21576: classes/image.C, classes/op.C, classes/table.C,
21577: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
21578: include/pa_sql_driver_manager.h, main/compile.C,
21579: main/compile.tab.C, main/compile.y, main/compile_tools.h,
21580: main/execute.C, main/pa_common.C, main/pa_request.C,
21581: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21582: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21583: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
21584: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
21585: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
21586: before_xml branch ^if(def $hash) now true only when
21587: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
21588:
21589: * src/: classes/op.C, main/execute.C: operators self changed to
21590: root ^for variable context changed to self
21591:
21592: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
21593: dnode 1
21594:
21595: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
21596: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
21597:
21598: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
21599: poly* fixed
21600:
21601: 2001-09-17 parser
21602:
21603: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
21604: types/pa_vdom.h: started dnode+dom
21605:
21606: dnode DOM methods: $node.name $node.value
21607: ...others...
21608:
21609: ^node.xpath[/rates/USD] = hash
21610: $hash[
21611: $.0[node0]
21612: $.1[node1]
21613: ]
21614:
21615: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
21616: applies to all linear primitives
21617:
21618: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
21619: include/pa_stylesheet_connection.h, main/main.dsp,
21620: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
21621: types/pa_vimage.h: started dnode DOM: $node.name
21622: $node.value ...others... ^node.xpath[/rates/USD] = hash
21623: dom(dnode)
21624:
21625: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
21626: main/compile.y, main/compile_tools.h, main/execute.C,
21627: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
21628: in expression compound($aa.zz.xx) names now can have minus '-' in
21629: name after '.'
21630:
21631: 2001-09-15 parser
21632:
21633: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
21634: image: $line-width ^line(...)[**** style]
21635:
21636: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
21637: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
21638: pool_storage - cleanups first, allocations second. apache wisely
21639: does just like that
21640:
21641: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
21642: rewritten using template, no bugs now
21643:
21644: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
21645: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
21646: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
21647: poorly started isapi pool_storage, would rewrite using template
21648: now
21649:
21650: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
21651: include/pa_stylesheet_connection.h, main/main.dsp,
21652: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
21653: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
21654: xalan objects freed up [introducing Pool::register_cleanup]
21655:
21656: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
21657: comments
21658:
21659: 2001-09-14 parser
21660:
21661: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
21662: z
21663:
21664: * src/: classes/dom.C, classes/file.C, classes/image.C,
21665: classes/mail.C, include/pa_common.h,
21666: include/pa_sql_driver_manager.h, include/pa_string.h,
21667: include/pa_stylesheet_connection.h,
21668: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21669: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
21670: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
21671: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
21672: compiled&cached
21673:
21674: 2001-09-13 parser
21675:
21676: * src/: classes/dom.C, classes/file.C, classes/image.C,
21677: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
21678:
21679: * src/classes/dom.C: dom:file content-type(.method)
21680:
21681: * src/: include/pa_common.h, include/pa_globals.h,
21682: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
21683: string now more informative error messages
21684:
21685: * src/: include/pa_globals.h, include/pa_request.h,
21686: main/pa_request.C, targets/cgi/parser3.C,
21687: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
21688: ParserSiteConfig .../parser3.conf
21689:
21690: cgi&isapi looks for {configure|c:\windows}/parser3.conf
21691:
21692: 2001-09-12 parser
21693:
21694: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21695: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
21696: precise error reporting: "connection string must start with
21697: protocol://" now
21698:
21699: * src/main/compile.tab.C: fixed - subname code parts actually []
21700: braced
21701:
21702: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
21703: lexer on LS_USER level did [] matching without setting nestage,
21704: introduced special LS_NAME_SQUARE_PART state
21705:
21706: 2001-09-11 parser
21707:
21708: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
21709: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
21710: languages+=xml
21711:
21712: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
21713:
21714: * src/classes/dom.C: ^dom:save/string/file[output options] output
21715: options: $.method[xml|html|text] detection fixed
21716:
21717: * src/types/pa_vdom.h: messages
21718:
21719: * src/classes/dom.C: ^dom:save/string/file[output options] output
21720: options: $.method[xml|html|text] detection fixed
21721:
21722: 2001-09-10 parser
21723:
21724: * src/classes/dom.C: ^dom:save/string/file[output options] output
21725: options: $.method[xml|html|text] $.encoding[windows-1251|...]
21726:
21727: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
21728: added]
21729:
21730: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21731: ^dom.xslt[stylesheet filename] 0
21732:
21733: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21734: ^dom.xslt[stylesheet filename] -1 doc is lying
21735:
21736: * src/classes/dom.C: ^dom.file[encoding] = file
21737:
21738: * src/classes/: dom.C: ^dom.string[encoding] 1
21739: ^dom.save[encoding;filename]
21740:
21741: * src/classes/dom.C: ^dom.string[] 0
21742:
21743: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
21744:
21745: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
21746: types/pa_vform.h: ^dom.save[b.xml] 0
21747:
21748: 2001-09-08 parser
21749:
21750: * src/types/pa_vform.C: $form:tables.name.field
21751:
21752: 2001-09-07 parser
21753:
21754: * src/classes/table.C: table:empty removed, superceded by ^if(def
21755: $table)...
21756:
21757: * src/targets/cgi/parser3.C: z
21758:
21759: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
21760: from '' to int/double is 0]
21761:
21762: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
21763: $table) is false when table is empty
21764:
21765: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
21766: !$form:tables $atable[$form:tables.a]
21767: ^atable.menu{a=$atable.element}[,]
21768:
21769: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
21770: types/pa_vform.h, types/pa_vhash.h: !$form:fields
21771:
1.116 moko 21772: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21773: types/pa_vdom.h, types/pa_vform.C: merged with successful start
21774: of dom
21775:
21776: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
21777: types/pa_vform.C, types/pa_vform.h: z
21778:
21779: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
21780: element [not last]
21781:
1.116 moko 21782: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21783: types/pa_vdom.h: introducing dom. dom:load[a.xml]
21784:
21785: 2001-09-06 parser
21786:
21787: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21788: table with one column 'element' and two rows: 1 and 2
21789:
21790: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21791: table with one column 'element' and two rows: 1 and 2
21792:
21793: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
21794: bad int/double conversions, and now $form:nonexistent.int(88)
21795: would return 88
21796:
21797: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
21798: types/pa_vhash.h: now there's special hash key '_default'
21799: [instead of ^_default method] $hash[ $.a[1] $.b[2]
21800: $._default[xx] ] $hash.c
21801:
21802: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
21803: fixed [thanks, fif], ^; were treated there non-literally
21804:
21805: * src/doc/doxygen.cfg: merged new default options from 1.2.10
21806: doxygen
21807:
21808: * src/: classes/image.C, classes/op.C, classes/string.C,
21809: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
21810: types/pa_vtable.C: few #ifndef DOXYGEN
21811:
21812: 2001-09-05 parser
21813:
21814: * src/classes/: string.C, table.C: sql options can be void [same as
21815: image:html the other day]
21816:
21817: * src/targets/cgi/Makefile.am: .am undo
21818:
21819: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21820: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
21821: macro expantion on param, simply qoutes whatever passed, undone
21822:
21823: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21824: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
21825: STRINGIZE(name) #name invented
21826:
21827: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21828: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
21829: MAIN_SQL_DRIVERS_NAME "drivers"
21830:
21831: moved to be availible to all users
21832:
21833: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
21834: SQL_DRIVER_CREATE_FUNC_NAME
21835:
21836: * src/classes/mail.C: MAIN:MAIL check fixed
21837:
21838: 2001-09-04 parser
21839:
21840: * src/classes/image.C: image.html now can accept void params
21841:
21842: * src/targets/isapi/parser3isapi.C: z
21843:
21844: * src/targets/cgi/parser3.C: full_file_spec bug
21845:
21846: * src/targets/cgi/parser3.C: getenvcheck
21847:
21848: * src/targets/cgi/parser3.C: zz
21849:
21850: * src/targets/cgi/parser3.C: zzz
21851:
21852: * src/classes/date.C: date
21853:
21854: * src/classes/date.C: date:sql-string is now without ''
21855:
1.116 moko 21856: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 21857: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
21858: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
21859:
1.116 moko 21860: * src/include/pa_config_auto.h.in: makes
1.95 moko 21861:
21862: 2001-09-03 parser
21863:
21864: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
21865:
21866: 2001-09-01 parser
21867:
21868: * src/classes/image.C: letter_spacing
21869:
21870: * src/classes/image.C: image: font params changed
21871:
21872: * src/classes/image.C: image: as_int as_string used
21873:
21874: * src/types/pa_vmethod_frame.h: $result[] now gets properly
21875: analized
21876:
21877: 2001-08-31 parser
21878:
21879: * src/targets/cgi/parser3.C: z
21880:
1.116 moko 21881: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
21882: cygwin
1.95 moko 21883:
21884: * src/classes/void.C: void:int/double += (default)
21885:
21886: * src/classes/image.C: image:font added space param image:font
21887: changed charwidth alg, added kerning const[for now]
21888:
21889: * src/classes/: string.C, table.C: string:int/double (defaults)
21890:
21891: 2001-08-29 parser
21892:
21893: * src/main/pa_exception.C: exception redundant debug info
21894:
21895: 2001-08-28 parser
21896:
21897: * src/classes/image.C: image error msgs
21898:
21899: * src/classes/image.C: image: gifsize little endian
21900:
21901: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
21902: doxygeneration
21903:
21904: * src/: classes/Makefile.am, main/Makefile.am,
21905: targets/cgi/Makefile.am, types/Makefile.am: .am-s
21906:
21907: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
21908: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
21909:
21910: * src/main/compile.C: NO_STRING_ORIGIN check2
21911:
21912: * src/classes/table.C: NO_STRING_ORIGIN check
21913:
21914: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
21915: storage class specifiers invalid in friend function declarations
21916:
21917: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
21918: main/untaint.C, targets/cgi/parser3.C,
21919: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
21920: case of limit
21921:
21922: * src/: classes/file.C, main/pa_common.C: file:move
21923: autocreate/remove dest/src dir
21924:
21925: * src/: classes/string.C, include/pa_dictionary.h,
21926: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
21927: main/untaint.C: pa_directory speeded up. moved zero 'from' check
21928: to directory constructor. string:replace
21929:
21930: 2001-08-27 parser
21931:
21932: * src/classes/image.C: fixed jpgsize alg
21933:
21934: * src/classes/image.C: fixed jpgsize alg
21935:
21936: * src/main/pa_exception.C: z
21937:
21938: * src/main/pa_common.C: removed debug info from pa_common
21939:
21940: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
21941: [auto.p from current dir loading]
21942:
1.116 moko 21943: * src/: main/pa_common.C, main/pa_exception.C,
21944: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
21945: for solaris -lsocket
1.95 moko 21946:
21947: 2001-08-24 parser
21948:
21949: * src/targets/cgi/parser3.C: not cgi extra \n 3
21950:
21951: * src/targets/cgi/parser3.C: not cgi extra \n 2
21952:
21953: * src/targets/cgi/parser3.C: not cgi extra \n
21954:
21955: * src/main/pa_sql_driver_manager.C: z
21956:
21957: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
21958: sql* removed services from disconnect - cross-request ideological
21959: probs.
21960:
21961: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
21962: cross-request ideological probs. oracle - fixed bug: cs
21963: allocated on request.pool and got freed before disconnect
21964:
21965: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
21966: mallocs fixed
21967:
21968: 2001-08-23 parser
21969:
21970: * src/classes/file.C: minor bug in file:save fixed
21971:
21972: * src/main/pa_sql_driver_manager.C: oracle: dlink
21973:
21974: 2001-08-22 parser
21975:
21976: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
21977: types/pa_vfile.h: file:load|save[text|binary;
21978:
21979: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
21980:
21981: 2001-08-21 parser
21982:
21983: * src/classes/: file.C, table.C: ^file:list
21984:
21985: 2001-08-20 parser
21986:
21987: * src/: main/compile.tab.C, main/compile.y,
21988: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
21989: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
21990: recousively caused problems: inc incremeted 123 literal!! fixed
21991:
21992: 2001-08-10 parser
21993:
21994: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
21995:
21996: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21997: added
21998:
21999: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22000: added
22001:
22002: * src/classes/table.C: table:sort restored [it was bad test :(]
22003:
22004: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
22005: ''
22006:
22007: * src/main/: pa_request.C: wanted to make const int
22008: MAX_EXECUTE_SECONDS=1;
22009:
22010: but couldnt, set_callback_and_alarm appeared to be not exported
22011: :(
22012:
22013: * src/main/pa_string.C: string.match hanged on. there were a hang
22014: check but it weren't wise enough
22015:
22016: @parse[dateString][tmp]
22017: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
22018: #end
22019:
22020: @main[] ^parse[2001-02-03]
22021:
22022: * src/classes/: table.C: table:sort now default desc
22023:
22024: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
22025: table.sort now creates new sorted table
22026:
22027: 2001-08-09 parser
22028:
22029: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
22030:
22031: * src/classes/hash.C: hash:_default now [was hash:default]
22032:
22033: * src/classes/op.C: case without switch check added
22034:
22035: * src/types/pa_vcookie.C: cookie name&value origins added, more
22036: precise $ORIGINS(1)
22037:
22038: * src/main/Makefile.am: .am
22039:
22040: * src/classes/void.C: void: int double copy/paste from int: bug
22041: fixed
22042:
22043: * src/classes/void.C: void: int double copy/paste from int: bug
22044: fixed
22045:
22046: 2001-08-07 parser
22047:
22048: * src/: classes/double.C, classes/int.C, classes/string.C,
22049: classes/table.C, include/pa_globals.h, main/pa_globals.C:
22050: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
22051: string, table
22052:
22053: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
22054: srand made working
22055:
22056: 2001-08-06 parser
22057:
22058: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
22059: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22060: main/compile.tab.C, main/compile.y, main/pa_array.C,
22061: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
22062: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
22063:
22064: * src/main/pa_exec.C: exec win32 real filename
22065:
22066: * src/classes/file.C: exec stderr out
22067:
22068: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
22069:
22070: 2001-08-03 parser
22071:
22072: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
22073:
22074: 2001-08-02 parser
22075:
22076: * src/: classes/string.C, classes/table.C, include/pa_array.h,
22077: main/execute.C, main/pa_exec.C: introducing Array_iter
22078:
22079: * src/main/execute.C: detected quick_get recursion bug. changed to
22080: get@execute, but needs array iterator, separate from array to
22081: avoid it & use caching
22082:
22083: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
22084: bug fixed
22085:
22086: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
22087: main/execute.C, main/pa_globals.C: found another multithread bug
22088: in op.C (last, last global var killed) :)
22089:
22090: 2001-08-01 parser
22091:
22092: * src/: include/pa_dictionary.h, include/pa_globals.h,
22093: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
22094: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22095: main/untaint.C: speeded up typo-html replacements. introducing
22096: Dictionary with first-char caching
22097:
22098: 2001-07-31 parser
22099:
22100: * src/types/Makefile.am: pa_vtable.C added to .am
22101:
22102: * src/main/compile.tab.C: added, so that could be compiled even on
22103: non-bison-enabled platforms
22104:
22105: 2001-07-28 parser
22106:
22107: * src/classes/table.C: table:hash always produces hash, when can't
22108: - empty
22109:
22110: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
22111: skipped \n
22112:
22113: 2001-07-27 parser
22114:
22115: * src/classes/: double.C, int.C, string.C: provided meaningful msg
22116: on int/double/string :sql without result and default
22117:
22118: 2001-07-26 parser
22119:
22120: * src/classes/op.C: fixed bad multithread bug with strangly global
22121: OP
22122:
22123: * src/main/compile.y: $man[$.age[zzz]] 0
22124:
22125: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
22126: creation syntax problem persists. restored $: for a while.
22127: thinking of $man[$.age[zzz]] syntax now
22128:
22129: * src/: classes/double.C, classes/int.C, classes/string.C,
22130: include/pa_opcode.h, main/compile.C, main/compile.y,
22131: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
22132: types/pa_vmethod_frame.h, types/pa_wcontext.h,
22133: types/pa_wwrapper.h: fixing :: realization #1
22134:
22135: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
22136: main/compile_tools.h, main/execute.C, main/pa_request.C,
22137: types/pa_vmethod_frame.h: introducing :: this is constructor call
22138: prefix. ordinary : remains for static accesses
22139:
22140: 2001-07-25 parser
22141:
22142: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
22143: fields 2. methods 3. columns
22144:
22145: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
22146: quote. optimized double&int tostring-s
22147:
22148: * src/main/: compile.C, compile.y, compile_tools.h: allowed
22149: whitespace before first method decl
22150:
22151: * src/classes/table.C: allowed nontable result in table:sql,
22152: results in empty table
22153:
22154: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
22155: lines before first method decl
22156:
22157: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
22158: types/pa_vtable.h: ^table.record[] now $table.fields
22159:
22160: * src/main/compile.y: $var[] is now empty string, not void
22161:
22162: * src/main/: compile.y, execute.C: $var[] is now empty string, not
22163: void
22164:
22165: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
22166: main/pa_globals.C: match replace code context moved to implicit
22167: $match context
22168:
22169: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
22170: main/compile_tools.h, main/execute.C: with killed, code storage
22171: introduced with former 'with' syntax
22172:
22173: 2001-07-24 parser
22174:
22175: * src/: main/compile.C, main/execute.C, main/pa_string.C,
22176: types/pa_value.h: first get_element, next get operator
22177:
22178: * src/main/compile.y: removed @end handling
22179:
22180: * src/main/: compile.C, compile.y: @end handling method2
22181:
22182: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
22183: file:move
22184:
22185: * src/main/pa_common.C: file_read close @ eof when imgsize bug
22186: fixed
22187:
22188: 2001-07-23 parser
22189:
22190: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
22191: driver
22192:
22193: * src/classes/hash.C: changed sql driver query interface
22194:
22195: * src/: classes/hash.C, classes/string.C, classes/table.C,
22196: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
22197: changed sql driver query interface
22198:
22199: 2001-07-20 parser
22200:
22201: * src/types/pa_vrequest.C: X!$browser:type
22202:
22203: * src/: classes/file.C, classes/string.C, include/pa_string.h,
22204: main/execute.C, main/pa_string.C, types/pa_valiased.C,
22205: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
22206: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
22207: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
22208: types/pa_vobject.h, types/pa_vrequest.C,
22209: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
22210: ^class:method dynamic calls allowed. ^BASE.method call disabled.
22211: BASE element globally removed
22212:
22213: 2001-07-18 parser
22214:
22215: * src/classes/file.C: file:exec/cgi msg
22216:
22217: * src/classes/file.C: $file:exit-code renamed to 'status'
22218:
22219: * src/: classes/file.C, main/pa_exec.C: file:exec
22220:
1.116 moko 22221: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
22222: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
22223: removed $id from *.in *.am
1.95 moko 22224:
22225: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
22226: abbrevations
22227:
22228: * src/: classes/date.C, classes/mail.C, classes/math.C,
22229: classes/string.C, classes/table.C, include/pa_globals.h,
22230: include/pa_string.h, main/execute.C, main/pa_globals.C,
22231: main/pa_request.C, main/pa_string.C, main/untaint.C,
22232: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
22233: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
22234: $ORIGINS(1) output tracing mode
22235:
22236: 2001-07-13 parser
22237:
22238: * src/: classes/double.C, classes/int.C, classes/string.C,
22239: include/pa_request.h, main/execute.C, main/pa_request.C:
22240: auto.p[@auto], /news/auto.p[no @auto], so that initializing
22241: second would not call first @auto
22242:
22243: * src/main/: execute.C, pa_request.C: order of MAIN parents was
22244: wrong, fixed
22245:
22246: 2001-07-12 parser
22247:
22248: * src/types/pa_value.h: pa_value.putelement modification of system
22249: classes prevented
22250:
22251: 2001-07-11 parser
22252:
22253: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
22254: table $piece
22255:
22256: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22257: types/pa_vstateless_class.h: $file created by file:state +=
22258: .atime .mtime .ctime +found&fixed bug with exceptions on
22259: get_junction-created objects [they were on wrong pool]
22260:
22261: 2001-07-09 parser
22262:
22263: * src/main/untaint.C: qp wrong name
22264:
22265: * src/: classes/date.C, classes/string.C, classes/table.C,
22266: main/compile.y: date format 0
22267:
22268: 2001-07-07 parser
22269:
22270: * src/: classes/date.C, classes/table.C, include/pa_common.h,
22271: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
22272: roll table calendar
22273:
22274: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
22275: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
22276: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
22277: include/pa_request.h, main/main.dsp, types/pa_value.h,
22278: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
22279: string. todo: sql, calendar
22280:
22281: 2001-07-06 parser
22282:
22283: * src/: classes/math.C, include/pa_request.h, main/execute.C,
22284: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
22285:
22286: 2001-07-03 parser
22287:
22288: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
22289: classes/random.C, main/main.dsp: class random renamed to math,
22290: operators became methods
22291:
22292: * src/classes/op.C: pow sqrt
22293:
22294: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
22295:
22296: 2001-07-02 parser
22297:
22298: * src/classes/table.C: ^table.columns column renamed from 'name' to
22299: 'column'
22300:
22301: * src/classes/hash.C: ^hash.keys[]
22302:
22303: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
22304:
22305: * src/main/: compile.y, compile_tools.h: in expressions now allowed
22306: 'strings'
22307:
22308: 2001-06-29 parser
22309:
22310: * src/main/: execute.C: /0 %0 checkes ver 2
22311:
22312: * src/main/execute.C: /0 %0 checke
22313:
22314: * src/classes/Makefile.am: nothing - void
22315:
22316: * src/classes/table.C: empty strings @ sql
22317:
22318: 2001-06-28 parser
22319:
22320: * src/: classes/double.C, classes/file.C, classes/form.C,
22321: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22322: classes/op.C, classes/random.C, classes/response.C,
22323: classes/string.C, classes/table.C, classes/void.C,
22324: main/compile.C, main/compile_tools.C, main/execute.C,
22325: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22326: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22327: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22328: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22329: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
22330: targets/isapi/parser3isapi.C, main/compile.y: */ static const
22331: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
22332: $";
22333:
22334: * src/: classes/double.C, classes/file.C, classes/form.C,
22335: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22336: classes/op.C, classes/random.C, classes/response.C,
22337: classes/string.C, classes/table.C, classes/void.C,
22338: main/compile.C, main/compile.y, main/compile_tools.C,
22339: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22340: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22341: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22342: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22343: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 22344: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 22345:
22346: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
22347: $class:name: == ${class:name}:
22348:
22349: * src/classes/string.C: exactly one
22350:
22351: 2001-06-27 parser
22352:
22353: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
22354: types/pa_vvoid.h: nothing renamed to void
22355:
22356: * src/classes/op.C: ^switch ^case
22357:
22358: * src/main/compile.y: nothing renamed to void
22359:
22360: * src/: classes/hash.C, classes/table.C, main/compile.y,
22361: main/execute.C, main/main.dsp, main/pa_request.C,
22362: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
22363: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
22364: void
22365:
22366: * src/main/compile.y: lexer: $zzzz^zzzz were name part
22367:
22368: 2001-05-28 parser
22369:
22370: * src/doc/html2chm.cmd: removed >a
22371:
22372: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
22373: project options [some bugs]
22374:
22375: * src/doc/sources2html.cmd: z
22376:
22377: * src/: classes/classes.C, main/compile.C, main/compile.y,
22378: main/execute.C: operators are not in root class again
22379:
22380: 2001-05-24 parser
22381:
22382: * src/targets/cgi/parser3.dsp: project file
22383:
22384: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
22385: ^log ^exp
22386:
22387: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
22388: conversions in @exception[params]
22389:
22390: * src/main/pa_request.C: // no _ conversions in @exception[params]
22391:
22392: 2001-05-23 parser
22393:
22394: * src/main/pa_string.C: string cmp bug
22395:
22396: * src/classes/: mail.C, op.C: rem max 1000
22397:
22398: * src/: classes/op.C, main/compile.y: allow one empty line before
22399: LS_DEF_NAME
22400:
22401: 2001-05-22 parser
22402:
22403: * src/classes/op.C: if params code-required
22404:
22405: 2001-05-21 parser
22406:
22407: * src/types/pa_vstring.C: eoleof
22408:
22409: * src/classes/Makefile.am: .AM
22410:
22411: * src/classes/nothing.C: resultless ^sql moved to nothing:
22412:
22413: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
22414:
22415: * src/: classes/double.C, classes/nothing.C, classes/string.C,
22416: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
22417: types/pa_vunknown.h, classes/hash.C, main/compile.y,
22418: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
22419: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
22420: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
22421: 'nothing'
22422:
22423: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
22424: vstring::set_string
22425:
22426: * src/classes/: double.C, int.C, string.C: int,double;sql
22427:
22428: * src/: classes/hash.C, classes/int.C, classes/string.C,
22429: classes/table.C, include/pa_string.h, main/pa_string.C,
22430: types/pa_vstring.C, types/pa_vstring.h: started int:sql
22431:
22432: * src/: classes/classes.C, classes/hash.C, classes/op.C,
22433: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
22434: hash:sql moved to main trunc. operators.txt updated
22435:
22436: * src/classes/: hash.C, op.C, table.C: hash:sql
22437:
22438: * src/classes/op.C: z
22439:
22440: * src/: main/compile.C, classes/classes.C: 1
22441:
22442: * src/: classes/classes.C, main/compile.C, main/compile.y,
22443: main/execute.C: 0
22444:
22445: * src/main/execute.C: z
22446:
22447: * src/targets/cgi/parser3.C: z
22448:
22449: * src/targets/cgi/parser3.C: argv can be just "parser3". made
22450: site_auto_path "." in that case
22451:
22452: * src/targets/cgi/: parser3.C: z
22453:
22454: * src/main/pa_request.C: .am
22455:
22456: * src/: main/pa_request.C, targets/cgi/parser3.C:
22457: pcre_tables=pcre_default_tables;
22458:
22459: 2001-05-19 parser
22460:
22461: * src/main/pa_string.C: z
22462:
22463: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
22464: introducing String::cstr_bufsize, returns just size+1 for as_is
22465: target.
22466:
22467: * src/: main/untaint.C, targets/cgi/pa_pool.C,
22468: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
22469: used, 4* mem wasted
22470:
22471: * src/classes/string.C: root context in match replace body now
22472: unchanged
22473:
22474: * src/types/pa_value.h: parameter # 1 based
22475:
22476: * src/main/pa_common.C: common: actual filename '%s'
22477:
22478: * src/classes/string.C: z
22479:
22480: * src/classes/Makefile.am: classes/.am
22481:
22482: * src/classes/: Makefile.am: classes/.am
22483:
22484: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
22485: targets/cgi/pa_pool.C: classes/.am
22486:
22487: 2001-05-18 parser
22488:
1.116 moko 22489: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
22490: pa_threads.C ins
1.95 moko 22491:
22492: * src/targets/cgi/Makefile.am: .am pa_threads.C added
22493:
22494: 2001-05-17 parser
22495:
22496: * src/: classes/string.C, include/pa_config_fixed.h,
22497: include/pa_config_includes.h, main/compile.y,
22498: main/compile_tools.h, main/execute.C, main/pa_array.C,
22499: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
22500: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
22501: types/pa_vform.C: #include "pa_config_includes.h" removed from
22502: most .C
22503:
22504: * src/doc/html2chm.cmd: z
22505:
22506: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
22507: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
22508:
22509: * src/main/pa_sql_driver_manager.C: moved expiration to
22510: get_connection_from_cache
22511:
22512: * src/main/pa_sql_driver_manager.C: cache expiration bf
22513:
22514: * src/: classes/classes.h, include/pa_sql_connection.h,
22515: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
22516: cache expiration[use SQL_Driver::disconnect]
22517:
22518: * src/main/pa_table.C: table.locate current restored on "not found"
22519:
22520: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
22521: line no
22522:
22523: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22524: ANTI_ENDLESS_EXECUTE_RECOURSION
22525:
22526: * src/: classes/op.C, include/pa_sql_connection.h,
22527: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
22528: sql/pa_sql_driver.h: fixed problem at last: 2connections own
22529: 1driver and set_services fight for driver::fservices. before fix
22530:
22531: * src/: classes/op.C, include/pa_config_fixed.h,
22532: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
22533: main/pa_sql_driver_manager.C: found problem at last: 2connections
22534: own 1driver and set_services fight for driver::fservices. before
22535: fix
22536:
22537: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22538: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22539: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
22540: pa_threads.C
22541:
22542: * src/include/pa_threads.h: removed targets/parser
22543:
22544: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
22545: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
22546: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
22547: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
22548: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
22549: headers
22550:
22551: * src/: classes/image.C, include/pa_sql_driver_manager.h,
22552: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
22553: order prevented sqlmanager to see MULTYTHREAD define
22554:
22555: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22556: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
22557: put/gets
22558:
22559: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
22560: from hash.h
22561:
22562: * src/: classes/op.C, include/pa_sql_connection.h,
22563: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
22564: from cache ->set_services(&services);
22565:
22566: 2001-05-16 parser
22567:
22568: * src/targets/cgi/parser3.C: z
22569:
22570: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
22571: debug, #ifdefed some. would debug later, on more precise sample
22572: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
22573: $name.$tail[$tail!] $name.$tail } ok3
22574:
22575: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
22576: removed array debug. before vstring rebasing
22577:
22578: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
22579: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
22580: array debugged; adjusted
22581:
22582: * src/main/: pa_sql_driver_manager.C, pa_string.C:
22583: SQL_Driver_manager line no for connect/charset errors
22584:
22585: 2001-05-15 parser
22586:
22587: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
22588: main/pa_string.C: string+array made linear grows
22589:
22590: * src/: include/pa_string.h, main/pa_string.C,
22591: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
22592: grow lineary, not exponentialy
22593:
22594: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
22595: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
22596: with fullchunk cmps
22597:
22598: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
22599: 70041= 81
22600:
22601: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
22602: targets/cgi/parser3.C: detected huge mem allocation: size/times
22603: malloc 27809390/368771, calloc 3232/83. would test now
22604:
22605: * src/: classes/random.C, main/compile.y, main/execute.C,
22606: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
22607: numbered params had wrong name - for instance: bad error message
22608: in ^for[] bad body type. fixed
22609:
22610: 2001-05-14 parser
22611:
22612: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
22613: main/untaint.C: ^string.upper|lower[]
22614:
22615: 2001-05-11 parser
22616:
22617: * src/: classes/double.C, classes/image.C, classes/op.C,
22618: classes/string.C, classes/table.C, classes/unknown.C,
22619: main/execute.C, types/pa_value.h, types/pa_vbool.h,
22620: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
22621: types/pa_vunknown.h: op: MAX_LOOPS as_int
22622:
22623: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
22624: .dsp for win32tools
22625:
22626: 2001-05-11 paf
22627:
22628: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
22629: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
22630: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
22631: targets/isapi/kill.pl: moved win32 helpers to /win32tools
22632:
22633: 2001-05-10 paf
22634:
22635: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
22636: for C++, that's all
22637:
1.116 moko 22638: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
22639: pa_config_includes.h: inline wonders
1.95 moko 22640:
22641: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
22642: doc/doxygen.cmd: hash.C added
22643:
22644: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
22645:
22646: * src/main/compile.y: @end grammar: allowed zero strings in control
22647: menthod
22648:
22649: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
22650: pa_vstateless_object.h: changed priority: field before method
22651: lookup in vclass & vobject
22652:
22653: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
22654: grammar: priorities changes [lowerd && prior] vobject: now first
22655: fields, next methods
22656:
22657: 2001-05-08 paf
22658:
22659: * src/main/pa_table.C: table columnname2item on nameless ignored
22660: bark=false. fixed
22661:
22662: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
22663: types/pa_vmethod_frame.h: hash:default works at last!
22664:
22665: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
22666: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
22667: hash:default
22668:
22669: * src/classes/table.C: z
22670:
22671: * src/classes/table.C: table:hash always hash of hash now
22672:
22673: * src/classes/table.C: table:empty return bool now
22674:
22675: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
22676: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22677: types/pa_vtable.h: table:hash
22678:
22679: * src/classes/table.C: table:record have name
22680:
22681: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
22682: returns vunknown
22683:
22684: * src/classes/: double.C, int.C, op.C, string.C:
22685: int,double,string:int[] double[] string:length[] results now have
22686: hames
22687:
22688: * src/: classes/op.C, classes/table.C, main/main.dsp,
22689: types/pa_vtable.h: removed table:find. table:locate and op:eval
22690: now return bool
22691:
22692: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
22693: in method checkparams again. fixed
22694:
22695: 2001-05-07 paf
22696:
22697: * src/doc/chm.cmd: cmd
22698:
22699: * src/: classes/image.C, classes/mail.C, classes/string.C,
22700: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
22701: types/pa_value.h: method reported errors on wrong pool
22702:
22703: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
22704: now
22705:
22706: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
22707: include/code.h, include/pa_opcode.h, main/compile.C,
22708: main/compile_tools.h, main/execute.C, types/pa_value.h,
22709: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22710: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22711: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
22712: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22713: types/pa_vmethod_frame.h, types/pa_vobject.h,
22714: types/pa_vrequest.h, types/pa_vresponse.h,
22715: types/pa_vstateless_class.h, types/pa_vstring.h,
22716: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22717: types/pa_wwrapper.h: pa_code.h
22718:
22719: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
22720:
22721: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
22722: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
22723: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22724: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
22725: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22726: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
22727: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
22728: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
22729: types/pa_vtable.h: dox, split by not clean parts also
22730:
22731: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22732: types/pa_vtable.h: table: fields, then methods. so to enable
22733: 'dir' fields & co. more
22734:
22735: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
22736: so to enable 'dir' fields & co.
22737:
22738: * src/main/compile.y: grammar: @end
22739:
22740: 2001-05-04 paf
22741:
22742: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
22743: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
22744:
22745: * src/: classes/classes.h, classes/double.C, classes/file.C,
22746: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22747: classes/op.C, classes/random.C, classes/response.C,
22748: classes/string.C, classes/table.C, classes/unknown.C,
22749: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
22750: method dox
22751:
22752: 2001-05-03 paf
22753:
22754: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
22755: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22756: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
22757: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22758: doc/string.dox, doc/targets.dox, doc/value.dox,
22759: main/pa_request.C: dox splitted .dox files and added some
22760:
22761: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
22762:
22763: 2001-05-02 paf
22764:
22765: * src/classes/: image.C, table.C: table:dir result are not tainted
22766: by file_name language now
22767:
22768: 2001-04-28 paf
22769:
22770: * src/classes/classes.inc: removed classes.inc
22771:
22772: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
22773: from .am
22774:
22775: * src/classes/classes.awk: skipped classes in .awk
22776:
22777: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
22778: classes/classes.inc, classes/double.C, classes/file.C,
22779: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
22780: classes/string.C, classes/table.C, classes/unknown.C,
22781: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
22782: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
22783: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
22784: pa_methoded back to classes/classes.h
22785:
22786: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
22787:
22788: * src/: classes/Makefile.am, classes/classes.awk,
22789: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
22790: classes/ls.exe, main/bison.exe: classes.inc autogenerator
22791:
22792: * src/: classes/classes.C, classes/classes.h, classes/double.C,
22793: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
22794: classes/response.C, classes/string.C, classes/table.C,
22795: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
22796: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
22797: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
22798: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
22799: include|main/pa_methoded
22800:
22801: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
22802: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
22803:
22804: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
22805: moved some configured data to request::classes_conf moved some
22806: string crations from globals to M... [works]
22807:
22808: * src/: classes/form.C, classes/mail.C, classes/op.C,
22809: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
22810: main/pa_request.C: moved some configured data to
22811: request::classes_conf moved some string crations from globals to
22812: M...
22813:
22814: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
22815: about to move configured data to special request hash
22816:
22817: * src/: classes/classes.C, classes/classes.h, classes/file.C,
22818: classes/form.C, classes/mail.C, include/pa_request.h,
22819: main/pa_request.C: configure started
22820:
22821: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
22822: 2. todo: methoded-configure
22823:
22824: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22825: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22826: classes/_random.h, classes/_response.h, classes/_string.h,
22827: classes/_table.h, classes/_unknown.h, classes/classes.inc,
22828: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22829: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22830: classes/random.C, classes/response.C, classes/string.C,
22831: classes/table.C, classes/unknown.C, include/pa_globals.h,
22832: include/pa_request.h, main/compile.y, main/execute.C,
22833: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22834: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22835: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
22836: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
22837: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22838: types/pa_vrequest.h, types/pa_vresponse.h,
22839: types/pa_vstateless_class.h, types/pa_vstring.h,
22840: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22841: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
22842: methoded-configure
22843:
22844: * src/: classes/file.C, classes/table.C, main/compile.y,
22845: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
22846: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
22847: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
22848:
22849: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
22850: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22851: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22852: classes/random.C, classes/response.C, classes/string.C,
22853: classes/table.C, classes/unknown.C, include/pa_request.h,
22854: main/compile.y, main/execute.C, main/pa_globals.C,
22855: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
22856: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
22857: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
22858: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
22859: beautifying just compiled. todo: debug, configure
22860:
22861: 2001-04-27 paf
22862:
22863: * src/: classes/file.C, classes/image.C, classes/table.C,
22864: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
22865: beautifying -99
22866:
22867: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
22868: classes/_response.h, classes/_unknown.h, classes/classes.C,
22869: classes/classes.h, classes/double.C, classes/file.C,
22870: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22871: classes/op.C, classes/random.C, classes/response.C,
22872: classes/string.C, include/pa_globals.h, main/main.dsp,
22873: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
22874: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22875: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
22876: types/pa_vunknown.h: beautifying -100
22877:
22878: * src/main/compile.y: serge@ found @CLASS bug. fixed
22879:
22880: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
22881: classes/_op.h, classes/_random.h, classes/_table.h,
22882: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
22883: classes/op.C, classes/random.C, classes/response.C,
22884: classes/string.C, classes/table.C, classes/unknown.C,
22885: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22886: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22887: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
22888: beautifying
22889:
22890: 2001-04-26 paf
22891:
22892: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
22893:
22894: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
22895: documentation ++
22896:
22897: * src/: classes/_exec.h, doc/doxygen.cfg,
22898: include/pa_config_fixed.h, include/pa_config_includes.h,
22899: targets/cgi/pa_pool.C: code documentation ++
22900:
22901: * src/: classes/_image.h, classes/op.C, classes/random.C,
22902: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22903: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22904: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
22905: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22906: types/pa_vmethod_frame.h, types/pa_vobject.h,
22907: types/pa_vrequest.C, types/pa_vrequest.h,
22908: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
22909: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
22910: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
22911: code documentation ++
22912:
22913: * src/: classes/image.C, classes/mail.C, classes/string.C,
22914: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
22915: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
22916: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
22917: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22918: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
22919: types/pa_vobject.h, types/pa_vstateless_class.h,
22920: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
22921:
22922: * src/main/: pa_request.C, pa_string.C: z
22923:
22924: * src/: include/pa_common.h, include/pa_types.h,
22925: main/pa_sql_driver_manager.C: module [and, guess, isapi]
22926: connection caching fixed. request-pooled-url were stored into
22927: global connectioncache
22928:
22929: 2001-04-25 paf
22930:
22931: * src/: doc/doxygen.cfg, doc/doxygen.txt,
22932: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
22933:
22934: * src/: include/code.h, include/pa_common.h, main/compile.y,
22935: main/execute.C, main/pa_common.C: -d
22936:
22937: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
22938: illegal call check a bit improved, but still under iis no mapping
22939: of dir with parser allowed!
22940:
22941: 2001-04-24 paf
22942:
22943: * src/targets/Makefile.am: apache module lib .am
22944:
22945: * src/main/pa_exec.C: windows32 buildCommand
22946:
22947: 2001-04-23 paf
22948:
22949: * src/targets/cgi/Makefile.am: win32 conditional
22950:
22951: * src/targets/cgi/Makefile.am: win32 conditional
22952:
22953: * src/targets/cgi/Makefile.am: liblink
22954:
22955: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
22956: vfile fields return type
22957:
22958: * src/types/pa_vfile.h: vfile fields return type
22959:
22960: * src/include/pa_config_auto.h.in: .h.in
22961:
22962: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
22963: types/Makefile: makefiles removed
22964:
22965: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
22966: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
22967:
22968: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
22969: [tested: i & g ]
22970:
22971: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
22972: @test noticed series in isapi, check how initialize_random_class
22973: is called! [must be called only once]
22974:
22975: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
22976: would not be 'unknown column'
22977:
22978: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
22979: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
22980:
22981: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
22982: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
22983: [now doesnt]
22984:
22985: * src/targets/cgi/parser3.C: cgi cmdline ver
22986:
22987: * src/targets/cgi/parser3.C: cgi /// @test disable
22988: /cgi-bin/parser3/auto.p
22989:
22990: * src/main/untaint.C: untaint without charset
22991:
22992: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
22993: main/pa_common.C: common: file_write /// @test mkdirs
22994: file_delete rmdirs
22995:
22996: * src/main/untaint.C: mail header only once to =?
22997:
22998: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
22999: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
23000: main/untaint.C: untaint - @test optimize whitespaces for
23001: all but 'html'
23002:
23003: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
23004: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23005: main/untaint.C: untaint - @test mail-header
23006:
23007: 2001-04-20 paf
23008:
23009: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
23010: include/pa_request.h, include/pa_string.h, main/compile.y,
23011: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23012: targets/cgi/parser3.C: $MAIN:LOCALE
23013:
23014: * src/main/untaint.C: z
23015:
23016: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
23017:
23018: 2001-04-19 paf
23019:
23020: * src/main/compile_tools.h: $a$b bugfix
23021:
23022: * src/targets/cgi/parser3.C: z
23023:
23024: * src/classes/file.C: z
23025:
23026: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
23027: done: header to $fields. waits for header '\' tricks
23028:
23029: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23030: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
23031: changed urlencode here and in untaint.C to HTTP standard's " and
23032: \" mech
23033:
23034: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
23035: http://alx/~paf/ doesnt load /auto.p
23036:
23037: 2001-04-18 paf
23038:
23039: * src/main/pa_request.C: 1
23040:
23041: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
23042: linux @alx
23043:
23044: 2001-04-17 paf
23045:
23046: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
23047: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
23048: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
23049: enabled
23050:
23051: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23052: classes/_exec.h, classes/_file.h, classes/_form.h,
23053: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23054: classes/_random.h, classes/_response.h, classes/_string.h,
23055: classes/_table.h, classes/_unknown.h, classes/file.C,
23056: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
23057: include/pa_config_fixed.h, include/pa_config_includes.h,
23058: include/pa_hash.h, include/pa_sql_driver_manager.h,
23059: include/pa_version.h, main/Makefile.am, main/compile.y,
23060: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
23061: main/pa_sql_driver_manager.C, sql/Makefile.am,
23062: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
23063: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
23064: types/pa_vform.C, types/pa_vimage.h: exec @jav
23065:
23066: * src/: include/pa_sql_driver_manager.h,
23067: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
23068: types/pa_vimage.h: sql driver interface now has initialize(client
23069: .so)
23070:
23071: 2001-04-16 paf
23072:
23073: * src/Makefile.am: compile2 cygwin
23074:
23075: * src/: include/pa_config_includes.h, main/pa_exec.C,
23076: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
23077:
23078: * src/targets/cgi/Makefile.am: compile0 jav
23079:
23080: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23081: classes/_exec.h, classes/_file.h, classes/_form.h,
23082: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23083: classes/_random.h, classes/_response.h, classes/_string.h,
23084: classes/_table.h, classes/_unknown.h, classes/image.C,
23085: classes/mail.C, classes/op.C, classes/random.C,
23086: include/pa_config_fixed.h, include/pa_config_includes.h,
23087: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
23088: main/compile.y, main/pa_common.C, main/pa_exec.C,
23089: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
23090: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
23091: compile-1
23092:
23093: 2001-04-15 paf
23094:
23095: * src/classes/op.C: z
23096:
23097: * src/classes/table.C: table:empty +=process
23098:
23099: * src/types/pa_value.h: MethodParams !junction
23100:
23101: * src/: classes/_string.h, classes/double.C, classes/file.C,
23102: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23103: classes/random.C, classes/response.C, classes/string.C,
23104: classes/table.C, classes/unknown.C, main/pa_request.C:
23105: MethodParams everywhere
23106:
23107: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
23108: types/pa_vmethod_frame.h: MethodParams in op.C
23109:
23110: 2001-04-12 paf
23111:
23112: * src/: classes/image.C, types/pa_vimage.h: image:font :text
23113:
23114: * src/: classes/_unknown.h, classes/unknown.C,
23115: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23116: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
23117:
23118: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
23119:
23120: * src/classes/image.C: image:gif now does not have params
23121:
23122: * src/classes/image.C:
23123: image:line/fill/rectangle/bar/replace/polygon/polybar
23124:
23125: * src/: classes/image.C, classes/op.C, main/execute.C,
23126: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
23127: for var now written not to r.wcontext, but to r.root cleared
23128: "entered_object" state
23129:
23130: 2001-04-11 paf
23131:
23132: * src/classes/image.C: image:create image:load
23133:
23134: * src/: classes/image.C, main/main.dsp: gd with mem write + image
23135: just compiled
23136:
23137: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23138: todo: gif without file
23139:
23140: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23141: started porting to Pooled descendant
23142:
23143: * src/: classes/image.C, main/execute.C, main/main.dsp,
23144: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
23145: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
23146: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
23147:
23148: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
23149: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
23150: end. switching to python imaging lib
23151:
23152: * src/main/main.dsp: gd+smtp made separate libs
23153:
23154: * src/: include/pa_globals.h, include/pa_string.h,
23155: main/pa_common.C, main/pa_request.C, main/untaint.C,
23156: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
23157: length
23158:
23159: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
23160: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
23161: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
23162: UL_FILE_NAME of posted file name
23163:
23164: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
23165: post [broke when moved post read to core]
23166:
23167: 2001-04-10 paf
23168:
23169: * src/classes/image.C: image:html done
23170:
23171: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
23172:
23173: * src/classes/image.C: z
23174:
23175: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
23176: forgotten!
23177:
23178: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23179: main/pa_request.C, main/pa_string.C, main/untaint.C,
23180: types/pa_vimage.h: image:measure -90
23181:
23182: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23183: classes/_int.h, classes/_mail.h, classes/_op.h,
23184: classes/_random.h, classes/_response.h, classes/_string.h,
23185: classes/_table.h, classes/file.C, classes/mail.C,
23186: include/pa_common.h, include/pa_globals.h, main/execute.C,
23187: main/main.dsp, main/pa_common.C, main/pa_globals.C,
23188: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
23189: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
23190: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
23191: compiled
23192:
23193: * src/classes/mail.C: minor bug with unclear from/to
23194:
23195: * src/classes/mail.C: sendmail unix skipping defaults
23196:
23197: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
23198: sendmail unix added defaults
23199:
23200: * src/classes/mail.C: unix sendmail compiled. todo:testing
23201:
23202: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
23203:
23204: 2001-04-09 paf
23205:
23206: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
23207: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
23208: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
23209: targets/isapi/parser3isapi.dsp: all targets exec
23210:
23211: * src/: include/pa_sapi.h, include/pa_string.h,
23212: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23213: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
23214: args in apache:util.script
23215:
23216: * src/include/pa_string.h: written but not tested exec with env for
23217: unix
23218:
23219: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
23220: targets/cgi/parser3.C: exec win32 env
23221:
23222: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
23223: 0
23224:
23225: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
23226: main/execute.C, main/main.dsp, main/pa_globals.C,
23227: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
23228: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
23229:
23230: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
23231: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
23232:
23233: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
23234: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
23235:
23236: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
23237: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
23238: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23239: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23240: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
23241: exec class just compiled. moved post read to request core
23242:
23243: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
23244: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
23245: main/pa_globals.C, targets/cgi/parser3.C,
23246: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
23247: are already read by vform
23248:
23249: 2001-04-08 paf
23250:
23251: * src/: classes/file.C, classes/mail.C, classes/string.C,
23252: include/pa_request.h, include/pa_string.h, main/pa_request.C:
23253: uuencode. string<<
23254:
23255: 2001-04-07 paf
23256:
23257: * src/classes/mail.C: z
23258:
23259: * src/classes/mail.C: z
23260:
23261: * src/classes/mail.C: ^mail[$attach
23262:
23263: * src/classes/mail.C: ^attach dead end
23264:
23265: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
23266: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23267: targets/isapi/parser3isapi.C: mail:send 1
23268:
23269: * src/: classes/mail.C, main/pa_request.C: z
23270:
23271: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
23272: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
23273: compiled
23274:
23275: * src/classes/mail.C: +=
23276:
23277: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
23278: prepared
23279:
23280: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
23281: include/pa_globals.h, include/pa_string.h, main/main.dsp,
23282: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23283: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
23284:
23285: 2001-04-06 paf
23286:
23287: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
23288: main/pa_string.C: table:dir 1
23289:
23290: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
23291: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
23292:
23293: * src/: classes/_op.h, classes/_root.h, classes/op.C,
23294: classes/root.C, include/pa_globals.h, include/pa_request.h,
23295: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
23296: main/pa_request.C: renamed 'root' to 'op'
23297:
23298: * src/classes/: _op.h, op.C: renamed from 'root'
23299:
23300: * src/types/pa_valiased.C: another root inherititance skipped
23301:
23302: * src/main/: compile.C, compile.y, execute.C: operators are now not
23303: root methods of parent class. just 'ROOT' class
23304:
23305: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
23306: @office
23307:
23308: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
23309:
23310: 2001-04-05 paf
23311:
23312: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
23313: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
23314: constructor flag dropped at get_method_frame and remembered into
23315: method_frame
23316:
23317: * src/: classes/file.C, classes/root.C, classes/string.C,
23318: classes/table.C, main/pa_request.C: junction to code&expression
23319: in errors
23320:
23321: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23322: main/pa_string.C, targets/isapi/parser3isapi.dsp:
23323: $LOCALE:ctype[Russian_Russia.1251]
23324:
23325: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23326: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
23327: main/pa_table.C: hash now not thread-safe.
23328:
23329: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23330: main/untaint.C: z
23331:
23332: * src/: classes/random.C, classes/root.C, classes/table.C,
23333: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
23334: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
23335: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
23336: types/pa_wcontext.h: sql quote. string untaint UL_SQL
23337:
23338: * src/: classes/table.C, include/pa_sql_connection.h,
23339: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
23340:
23341: * src/classes/table.C: select * from hren error contains statement
23342:
23343: * src/: classes/table.C, include/pa_sql_connection.h,
23344: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
23345: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
23346:
23347: * src/: classes/root.C, include/pa_sql_connection.h,
23348: include/pa_sql_driver.h, main/main.dsp,
23349: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
23350: services for conv memory & error reporting
23351:
23352: 2001-04-04 paf
23353:
23354: * src/doc/doxygen.cfg: z
23355:
23356: * src/include/pa_sql_driver.h: mysql connect
23357:
23358: * src/include/pa_sql_driver.h: mysql info
23359:
23360: * src/: classes/root.C, include/pa_sql_driver.h,
23361: include/pa_sql_driver_manager.h, main/main.dsp,
23362: main/pa_sql_driver_manager.C: more manager&connection&driver
23363:
23364: * src/sql/Makefile.am: forgot to add mysql client
23365:
23366: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
23367: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
23368: [forgot to add libltdl, added]
23369:
23370: * src/: Makefile.am, classes/root.C, classes/string.C,
23371: classes/table.C, include/pa_globals.h, include/pa_hash.h,
23372: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
23373: include/pa_string.h, include/pa_table.h, main/main.dsp,
23374: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23375: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
23376: -1000 just compiled
23377:
23378: * src/: classes/random.C, classes/root.C, classes/table.C,
23379: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
23380: main/pa_request.C, types/pa_vclass.h: sql frame -10
23381:
23382: 2001-04-03 paf
23383:
23384: * src/types/pa_vform.C: z
23385:
23386: * src/: classes/string.C, types/pa_vform.C: string:match replace
23387: assigned lang
23388:
23389: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
23390: {}[]< empty []
23391:
23392: * src/: classes/file.C, classes/string.C, classes/table.C,
23393: include/pa_string.h, main/pa_common.C, main/pa_string.C,
23394: main/untaint.C: string:match replace 2. string.cstr(forced lang)
23395:
23396: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23397: string:match replace strange matches
23398:
23399: * src/classes/string.C: string:match replace 0
23400:
23401: * src/: classes/string.C, main/pa_string.C: string:match replace
23402: prepared 2
23403:
23404: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23405: string:match replace prepared
23406:
23407: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23408: string:match replace -11
23409:
23410: * src/: classes/string.C, include/pa_globals.h,
23411: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
23412: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
23413:
23414: * src/: classes/string.C, include/pa_globals.h,
23415: include/pa_string.h, main/main.dsp, main/pa_globals.C,
23416: main/pa_string.C: string:match [search] -1 just compiled
23417:
23418: * src/types/pa_vstring.C: z
23419:
23420: * src/: classes/double.C, classes/file.C, classes/form.C,
23421: classes/int.C, classes/response.C, classes/root.C,
23422: classes/string.C, classes/table.C, include/pa_string.h,
23423: main/pa_string.C: string:match -10 [frame]
23424:
23425: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
23426: main/pa_request.C: z
23427:
23428: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
23429: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
23430: todo/tests
23431:
23432: * src/include/pa_common.h: z
23433:
23434: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
23435: main/pa_request.C, targets/cgi/parser3.C,
23436: targets/isapi/parser3isapi.C, types/pa_vfile.C:
23437: content-disposition
23438:
23439: * src/: include/pa_common.h, include/pa_globals.h,
23440: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23441: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
23442:
23443: * src/: include/pa_common.h, include/pa_request.h,
23444: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
23445: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23446: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
23447: response:body
23448:
23449: * src/classes/table.C: table:append now uses string::split
23450:
23451: * src/classes/table.C: z
23452:
23453: * src/: classes/file.C, classes/root.C, classes/string.C,
23454: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
23455: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
23456: include/pa_string.h, main/execute.C, main/pa_string.C,
23457: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
23458: string::pos & cmp & piece bugs fixed. string::split new
23459: table:load separated from set table:set implemented with clean \n
23460: \t searches
23461:
23462: 2001-04-02 paf
23463:
23464: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23465: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
23466: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23467: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
23468: it in table:set/load
23469:
23470: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
23471: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
23472:
23473: * src/classes/random.C: random:generate 1
23474:
23475: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
23476: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23477: types/pa_value.h: random:generate
23478:
23479: 2001-03-30 paf
23480:
23481: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
23482: todo: table flip and append. string::pos
23483:
23484: * src/: classes/double.C, classes/file.C, classes/int.C,
23485: classes/response.C, classes/root.C, classes/string.C,
23486: classes/table.C, main/compile.y, main/execute.C,
23487: types/pa_value.h, types/pa_vstateless_class.C,
23488: types/pa_vstateless_class.h: static|dynamic|any method
23489: registration
23490:
23491: * src/: classes/file.C, classes/table.C, include/pa_table.h,
23492: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
23493: table:flip
23494:
23495: 2001-03-29 paf
23496:
23497: * src/classes/string.C: string:xsplit forgot that they must result
23498: in 1 row N column [not vice versa]
23499:
23500: * src/classes/string.C: z
23501:
23502: * src/classes/string.C: string: rsplit
23503:
23504: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23505: string: lsplit
23506:
23507: * src/: classes/string.C, include/pa_string.h, main/execute.C,
23508: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
23509: lsplit -1
23510:
23511: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
23512: string: pos
23513:
23514: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23515: string: pos -1
23516:
23517: * src/: classes/string.C, classes/table.C, include/pa_string.h,
23518: main/compile.y, main/pa_request.C, main/pa_string.C,
23519: main/untaint.C: string: left right mid
23520:
23521: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
23522: main/compile_tools.h, main/main.dsp, types/pa_value.h,
23523: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
23524: and [;] are different now.
23525:
23526: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23527: main/untaint.C: pool.request undone
23528:
23529: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23530: main/untaint.C: pool.request
23531:
23532: 2001-03-28 paf
23533:
23534: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23535: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23536: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
23537: $request:browser [.type .version]; unknown.get_double now = 0.
23538:
23539: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23540: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
23541: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
23542: types/pa_vform.C: file:load autodetection of mime-type by
23543: user-file-name
23544:
23545: * src/: classes/file.C, main/execute.C, main/pa_common.C,
23546: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
23547: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
23548:
23549: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
23550: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
23551: write. must be self.set
23552:
23553: * src/: classes/file.C, classes/root.C, classes/table.C,
23554: include/pa_table.h, main/pa_table.C: table:locate1, file:test
23555:
23556: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
23557: include/pa_table.h, main/pa_array.C, main/pa_table.C,
23558: types/pa_vtable.h: table:locate just compiled
23559:
23560: 2001-03-27 paf
23561:
23562: * src/main/: execute.C, pa_common.C: fixed r/w context of
23563: code-params2, fixed ntfs hardlink slow dir update
23564:
23565: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
23566: types/pa_wcontext.h: fixed r/w context of code-params
23567:
23568: * src/: classes/table.C, main/execute.C: about to change junction
23569: rcontext!!
23570:
23571: * src/: classes/double.C, classes/int.C, classes/root.C,
23572: classes/string.C, classes/table.C, main/compile_tools.C,
23573: main/execute.C, main/pa_request.C, main/untaint.C,
23574: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
23575: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23576: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
23577: types/pa_vunknown.h: sort 0
23578:
23579: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
23580: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
23581: renamed to are_static_calls_disabled
23582:
23583: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
23584: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
23585: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23586: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
23587:
23588: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
23589:
23590: * src/: classes/table.C, include/pa_common.h, main/compile.y:
23591: started table:sort fixed minor bug in #...^{
23592:
23593: * src/: classes/table.C, include/pa_common.h, main/compile.y,
23594: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
23595: decided to have as it were. stepped back. grammar: added 'in'
23596: 'is' 'lt'&co follow-space check
23597:
23598: 2001-03-26 paf
23599:
23600: * src/: classes/file.C, classes/root.C, classes/table.C,
23601: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
23602: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23603: main/pa_table.C: moved ::save to pa_table. disabled @auto
23604: invocation in ^process
23605:
23606: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
23607:
23608: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
23609: main/pa_array.C: table:record
23610:
23611: * src/: main/untaint.C, targets/cgi/parser3.C,
23612: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23613: targets/isapi/pool_storage.h, types/pa_valiased.h,
23614: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
23615: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
23616: types/pa_vtable.h: z
23617:
23618: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
23619: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
23620: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23621: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
23622: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
23623: method realisations on 'self' validity - they now can simply
23624: assume that 'self' is V{Proper} .
23625:
23626: 2001-03-25 paf
23627:
23628: * src/main/untaint.C: z
23629:
23630: * src/main/: pa_request.C, untaint.C: moved default typo-table to
23631: lowlevel - it initialization could be skipped if failed in @auto.
23632: so that exception report would use some table
23633:
23634: * src/main/pa_request.C: table empty lines ignored. system-default
23635: content type assigned in output:result [can fail in main:auto and
23636: skipped normal defaults extraction]
23637:
23638: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
23639: bug
23640:
23641: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
23642: processing to table [except preliminary \r\n \r \n replacements
23643: to "\n"]
23644:
23645: * src/: classes/table.C, main/untaint.C: html-typo - decided to
23646: move all the processing to table
23647:
23648: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
23649: main/pa_table.C, main/untaint.C: returned table originating.
23650: useful for reporting typo table problems origin. think would be
23651: useful somewhere else
23652:
23653: * src/main/untaint.C: typo \r \r\n \n properly handled
23654:
23655: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
23656: include/pa_table.h, main/compile.y, main/compile_tools.C,
23657: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
23658: main/pa_string.C, main/pa_table.C, main/untaint.C,
23659: types/pa_vcookie.h: typo & typo-default
23660:
23661: 2001-03-24 paf
23662:
23663: * src/main/pa_common.C: z
23664:
23665: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
23666: targets/cgi/parser3.C: html-typo 2
23667:
23668: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
23669: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
23670: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
23671: main/execute.C, main/pa_array.C, main/pa_globals.C,
23672: main/pa_request.C, main/pa_string.C, main/untaint.C,
23673: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23674: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
23675: noticed double default content-type prob. run cgi.cmd tomorrow
23676: first html-typo sample. detected << problem: they become ltlt too
23677: fast
23678:
23679: * src/main/compile.y: z
23680:
23681: * src/main/: compile.y, compile_tools.h: #comment
23682:
23683: * src/: classes/file.C, classes/root.C, classes/table.C,
23684: include/pa_common.h, include/pa_request.h, main/compile.y,
23685: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23686: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
23687: stringified
23688:
23689: * src/types/pa_valiased.C: decided to String-ify file_read
23690:
23691: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
23692: isapi/parser3isapi.dsp: cgi: sapi::log
23693:
23694: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
23695: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
23696: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
23697: error log experiments failed - cgi under iis got no access to
23698: log. registereventsource simply failed with 5(illegal call) code,
23699: while worked OK as standalone executable. isapi: used
23700: HSE_APPEND_LOG_PARAMETER feature
23701:
23702: * src/: include/pa_common.h, include/pa_globals.h,
23703: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23704: targets/isapi/parser3isapi.C: fixed default content-type
23705: allocation storage
23706:
23707: * src/: include/pa_globals.h, include/pa_request.h,
23708: main/pa_globals.C, main/pa_request.C: z
23709:
23710: * src/: include/pa_array.h, include/pa_hash.h,
23711: include/pa_request.h, main/compile.y, main/pa_array.C,
23712: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23713: types/pa_vcookie.C: cyclic uses ignored. defaulted default
23714: content-type
23715:
23716: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
23717: sanity
23718:
23719: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
23720: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
23721: away freeze mech. no danger now for you can't do
23722: ^request:process[@new-method[] body] trick anymore. still
23723: remains $some_instance.process[@new-method[] possibility] but
23724: would leave it as a feature. see index for sample
23725:
23726: * src/: include/pa_common.h, main/pa_common.C,
23727: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
23728: monkey every target
23729:
23730: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23731: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
23732: types/pa_vform.C, types/pa_vform.h: auto.p monkey
23733:
23734: 2001-03-23 paf
23735:
23736: * src/: include/pa_pool.h, main/pa_request.C,
23737: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
23738: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23739: targets/isapi/pool_storage.h: isapi: dumb pool storage
23740:
23741: * src/targets/isapi/pa_pool.C: decided to continue with extension
23742:
23743: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
23744: it would be better to rewrite as filter then to deal with pool
23745:
23746: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
23747: now like in cgi, not from APPL_PHYSICAL_PATH
23748:
23749: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23750: include/pa_config_fixed.h, include/pa_config_includes.h,
23751: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
23752: include/pa_version.h, main/compile.y, main/execute.C,
23753: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23754: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23755: main/untaint.C, targets/cgi/parser3.C,
23756: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
23757: cgi: reinvent document_root and request_uri under iis. autoconf
23758: updated. introducing ap_config_includes
23759:
23760: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
23761:
23762: * src/targets/cgi/parser3.C: cgi: only one pool now
23763:
23764: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
23765: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23766: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23767: types/pa_venv.h, types/pa_vform.C: sapi made object
23768:
23769: * src/: include/pa_globals.h, main/pa_request.C,
23770: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23771: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23772: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
23773:
23774: * src/: main/pa_request.C, targets/cgi/parser3.C,
23775: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23776: isapi minor env beauty
23777:
23778: * src/: main/pa_request.C, targets/cgi/parser3.C,
23779: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23780: isapi document_root 0
23781:
23782: 2001-03-22 paf
23783:
23784: * src/targets/isapi/parser3isapi.C: isapi keep-alive
23785:
23786: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
23787: isapi/parser3isapi.C: z
23788:
23789: * src/: include/pa_pool.h, main/pa_request.C,
23790: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
23791:
23792: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
23793: kill.pl: isapi added utils
23794:
23795: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
23796: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23797: types/pa_vform.C: isapi 0
23798:
23799: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
23800: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23801: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
23802: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
23803: started isapi
23804:
23805: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
23806: some comments
23807:
23808: * src/: include/pa_globals.h, include/pa_request.h,
23809: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
23810: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
23811: parser_root_auto_path parser_site_auto_path
23812:
23813: * src/types/pa_vcookie.C: cookie attr decoded
23814:
23815: 2001-03-21 paf
23816:
23817: * src/targets/cgi/parser3.C: z
23818:
23819: * src/include/pa_globals.h: post. todo: config of auto.p path
23820:
23821: * src/: include/pa_globals.h, targets/cgi/parser3.C,
23822: types/pa_venv.h: in cookie & env. todo:post
23823:
23824: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
23825: classes/root.C, classes/table.C, include/pa_array.h,
23826: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
23827: include/pa_request.h, include/pa_string.h, main/Makefile.am,
23828: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
23829: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23830: main/pa_table.C, main/untaint.C, targets/Makefile.am,
23831: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23832: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
23833: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
23834: shifted apache branch on main trunc
23835:
23836: * src/: include/pa_common.h, include/pa_globals.h,
23837: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23838: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
23839: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
23840: starting mod_parser3
23841:
23842: * src/targets/cgi/parser3.C: starting mod_parser3
23843:
23844: 2001-03-20 paf
23845:
23846: * src/: main/pa_common.C, targets/cgi/Makefile.am,
23847: targets/cgi/parser3.C: automake compiled and works. todo:make
23848: win32 ifdefs work and add ifdef unistd
23849:
23850: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
23851: main/Makefile.am, main/pa_common.C, main/pa_request.C,
23852: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
23853: z
23854:
23855: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
23856: main/execute.C, main/pa_common.C, types/Makefile.am: removing
23857: locking
23858:
23859: * src/: classes/Makefile.am, types/Makefile.am: z
23860:
23861: * src/: Makefile.am, classes/file.C, classes/root.C,
23862: classes/table.C, include/pa_array.h, include/pa_request.h,
23863: include/pa_string.h, main/Makefile.am, main/execute.C,
23864: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23865: main/pa_string.C, main/untaint.C, targets/Makefile.am,
23866: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23867: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
23868:
23869: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23870: main/pa_request.C, types/pa_vfile.h: ^table:save
23871:
23872: * src/: classes/file.C, classes/table.C, include/pa_array.h,
23873: include/pa_common.h, include/pa_request.h, include/pa_string.h,
23874: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
23875: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
23876: types/pa_vform.h: z
23877:
23878: * src/include/pa_string.h: z
23879:
23880: * src/: classes/_request.h, classes/request.C, main/main.dsp,
23881: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
23882: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23883: :Value
23884:
23885: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
23886: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23887: :VStateless_object
23888:
23889: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
23890: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
23891: :VStateless_object
23892:
23893: * src/: main/main.dsp, targets/cgi/parser3.dsp,
23894: types/pa_valiased.C, types/pa_vform.h: commented VForm
23895:
23896: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
23897: types/pa_valiased.h, types/pa_value.h,
23898: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
23899: types/pa_vstateless_object.h: moved common get_element part from
23900: stateless object&class into VAliased
23901:
23902: * src/: classes/_env.h, classes/_table.h, classes/env.C,
23903: classes/table.C, main/execute.C, main/main.dsp,
23904: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
23905: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
23906: now :Value
23907:
23908: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
23909: main/execute.C, main/main.dsp, main/pa_globals.C,
23910: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
23911:
23912: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
23913: doxx
23914:
23915: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
23916: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23917: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
23918: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
23919: and ^file:save
23920:
23921: 2001-03-19 paf
23922:
23923: * src/types/pa_vfile.C: z
23924:
23925: * src/: classes/file.C, classes/request.C, classes/table.C,
23926: include/pa_string.h, main/main.dsp, main/pa_pool.C,
23927: main/pa_request.C, main/untaint.C, types/pa_value.h,
23928: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
23929:
23930: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
23931: include/pa_string.h, include/pa_table.h, main/main.dsp,
23932: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
23933: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
23934: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
23935: classes/_file.h, classes/file.C, types/pa_vfile.C,
23936: types/pa_vfile.h: file class just compiled
23937:
23938: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
23939: include/pa_table.h, include/pa_types.h, main/execute.C,
23940: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23941: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
23942: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
23943:
23944: * src/include/pa_pool.h: z
23945:
23946: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
23947: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
23948: Hash::Value to Val so to doxygen would finlly stop confusing
23949: those Value-s
23950:
23951: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
23952: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
23953: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23954: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23955: include/pa_types.h, main/compile.C, main/compile.y,
23956: main/compile_tools.C, main/compile_tools.h, main/execute.C,
23957: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
23958: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
23959: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23960: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
23961:
23962: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
23963: derivates somehow unlinked. don't know why yet
23964:
23965: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
23966: include/pa_string.h, include/pa_threads.h, main/compile.C,
23967: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23968: main/execute.C, main/pa_array.C, main/pa_common.C,
23969: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
23970: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23971: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
23972:
23973: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
23974: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
23975: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
23976: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
23977: types/pa_vrequest.h: doc: detected Value derivates prob
23978:
23979: * src/include/pa_globals.h: z
23980:
23981: * src/: classes/_request.h, classes/request.C, include/code.h,
23982: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
23983: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
23984: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
23985: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
23986: main/execute.C, main/pa_pool.C, main/pa_request.C,
23987: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23988: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
23989:
23990: 2001-03-18 paf
23991:
23992: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
23993: cookie: allowed access to hash-assigned
23994:
23995: * src/targets/cgi/parser3.C: z
23996:
23997: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
23998: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
23999: include/pa_types.h, main/main.dsp, main/pa_common.C,
24000: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24001: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24002: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
24003: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
24004: types/pa_vunknown.h: cookie class
24005:
24006: * src/main/pa_request.C: zero length output allowed
24007:
24008: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
24009: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
24010:
24011: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
24012: lang switch
24013:
24014: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
24015: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24016: types/pa_value.h, types/pa_vhash.h:
24017: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
24018:
24019: * src/main/execute.C: z
24020:
24021: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
24022: targets/cgi/parser3.C: taint[uri
24023:
24024: * src/: classes/request.C, classes/response.C, classes/root.C,
24025: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
24026: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
24027: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
24028:
24029: * src/: classes/root.C, classes/string.C, include/pa_string.h,
24030: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24031: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
24032: types/pa_vstateless_class.C: convinient string(pool, char *src,
24033: bool tainted) ctor
24034:
24035: * src/: include/pa_hash.h, include/pa_request.h,
24036: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
24037: main/pa_request.C, main/pa_string.C, main/untaint.C,
24038: targets/cgi/parser3.C: proper @exceptions params tainting
24039:
24040: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
24041: response fields to header
24042:
24043: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
24044: z
24045:
24046: * src/: classes/_response.h, classes/response.C,
24047: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
24048: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
24049: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24050: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
24051: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
24052: $response: 0 request::core exception rethrow
24053:
24054: 2001-03-16 paf
24055:
24056: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
24057: types/pa_vrequest.h: native method' class call with less params
24058: then needed error reporting
24059:
24060: * src/: classes/_request.h, classes/request.C,
24061: include/pa_globals.h, include/pa_request.h, main/execute.C,
24062: main/main.dsp, main/pa_globals.C, main/pa_request.C,
24063: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
24064: types/pa_vrequest.h: $request : query :uri
24065:
24066: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
24067: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
24068: types/pa_wcontext.h: $result
24069:
24070: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
24071:
24072: * src/: classes/double.C, include/code.h, main/compile.y,
24073: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
24074: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
24075:
24076: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
24077: main/compile.y, main/execute.C, types/pa_value.h,
24078: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
24079: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
24080: wcontext conflict
24081:
24082: * src/: main/execute.C, types/pa_value.h,
24083: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
24084: $string.field
24085:
24086: 2001-03-15 paf
24087:
24088: * src/main/pa_request.C: news sample
24089:
24090: * src/: main/compile.y, main/execute.C, main/pa_request.C,
24091: targets/cgi/parser3.C, types/pa_vstring.h: @exception
24092:
24093: * src/main/: compile.y, execute.C: z
24094:
24095: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
24096: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
24097: pre pre works
24098:
24099: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24100: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
24101: fillfields just compiled
24102:
24103: 2001-03-14 paf
24104:
24105: * src/: include/pa_request.h, main/pa_request.C,
24106: targets/cgi/parser3.C: z
24107:
24108: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24109: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
24110: types/pa_vstring.h: limits -1
24111:
24112: * src/: include/pa_globals.h, include/pa_request.h,
24113: include/pa_types.h, main/main.dsp, main/pa_globals.C,
24114: main/pa_request.C, targets/cgi/parser3.C,
24115: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
24116: request_info -1
24117:
24118: * src/: include/pa_globals.h, main/pa_globals.C,
24119: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24120: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
24121: vform_fields_fill
24122:
24123: * src/targets/cgi/parser3.C: # if MSVC
24124:
24125: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
24126: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
24127:
24128: * src/targets/cgi/parser3.C: z
24129:
24130: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
24131: include/pa_string.h, include/pa_types.h, main/compile.y,
24132: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
24133: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
24134: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
24135: types/pa_vunknown.h: global handler, exceptions in parser3
24136:
24137: 2001-03-13 paf
24138:
24139: * src/: classes/form.C, main/compile.y, main/core.C,
24140: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
24141: types/pa_vform.h, types/pa_vstateless_class.C,
24142: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
24143: instead
24144:
24145: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24146: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
24147: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
24148: started cgi target
24149:
24150: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24151: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
24152: before error show with parser
24153:
24154: * src/: classes/_form.h, classes/form.C, include/core.h,
24155: include/pa_request.h, main/core.C, main/pa_request.C,
24156: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
24157:
24158: * src/targets/cgi/: parser.dsp, parser3.dsp: z
24159:
24160: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
24161: parser3.C: renamed targets/ parser to cgi
24162:
24163: * src/: classes/double.C, classes/env.C, classes/int.C,
24164: classes/root.C, classes/string.C, classes/table.C,
24165: include/pa_request.h, types/pa_vhash.h: z
24166:
24167: * src/: classes/_env.h, classes/env.C, classes/root.C,
24168: include/core.h, include/pa_pool.h, include/pa_request.h,
24169: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
24170: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24171: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
24172: [historical moment :)]
24173:
24174: * src/: include/code.h, include/pa_string.h, main/compile.y,
24175: main/execute.C, main/pa_string.C: 'value is type' expr operator
24176:
24177: * src/types/pa_venv.h: $ENV 1
24178:
24179: * src/main/execute.C: z
24180:
24181: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
24182: future methods of ENV constructor if
24183:
24184: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
24185: class
24186:
24187: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24188: classes/_root.h, classes/_string.h, classes/_table.h,
24189: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24190: classes/string.C, classes/table.C, include/pa_request.h,
24191: main/compile.C, main/compile_tools.h, main/core.C,
24192: main/execute.C, main/main.dsp, main/pa_request.C,
24193: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24194: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24195: types/pa_vobject.h, types/pa_vstateless_class.C,
24196: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24197: types/pa_wcontext.h: $ENV: re 0, stateless classes
24198:
24199: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24200: classes/_root.h, classes/_string.h, classes/_table.h,
24201: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24202: classes/string.C, classes/table.C, include/pa_request.h,
24203: main/compile.C, main/compile_tools.h, main/core.C,
24204: main/execute.C, main/main.dsp, main/pa_request.C,
24205: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24206: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24207: types/pa_vobject.h, types/pa_vstateless_class.C,
24208: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24209: types/pa_wcontext.h: $ENV: re 0, stateless classes
24210:
24211: * src/: include/pa_request.h, main/compile.C, main/execute.C,
24212: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
24213: yesterdays bad decision on execute_static_method
24214:
24215: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
24216:
24217: * src/: classes/double.C, classes/int.C, classes/root.C,
24218: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
24219:
24220: * src/main/pa_request.C: z
24221:
24222: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24223: include/pa_pool.h: skipped_restructure_exceptions_dead_end
24224:
24225: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24226: include/pa_pool.h, main/pa_request.C:
24227: restructure_exceptions_dead_end
24228:
24229: * src/: classes/root.C, main/compile.y: ^if required junctions.
24230: allowed ; inside {} to break params
24231:
24232: * src/classes/root.C: ^eval
24233:
24234: * src/: classes/_string.h, classes/double.C, classes/int.C,
24235: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
24236: string ^format
24237:
24238: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
24239: 'bad' but not 'enough'
24240:
24241: * src/: classes/double.C, classes/root.C, classes/table.C,
24242: include/pa_common.h, include/pa_types.h, main/compile.y,
24243: main/pa_common.C, main/pa_request.C, main/untaint.C,
24244: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
24245: types/pa_wwrapper.h: think constructing flag as is is bad
24246:
24247: * src/: classes/double.C, classes/int.C, classes/root.C,
24248: classes/string.C, classes/table.C, main/core.C, main/execute.C,
24249: types/pa_vint.h: ^for
24250:
24251: 2001-03-12 paf
24252:
24253: * src/classes/table.C: table ^empty
24254:
24255: * src/: classes/table.C, include/pa_table.h: table ^menu
24256:
24257: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
24258: ^offset ^line ^count
24259:
24260: * src/classes/root.C: ^round() ^floor() ^ceiling()
24261: ^abs() ^sign()
24262:
24263: * src/classes/: root.C, table.C: ^use
24264:
24265: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24266: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
24267: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
24268: ^while. switched off wcontext.constructing after write(value) or
24269: auto-vhash-constructing
24270:
24271: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24272: main/pa_request.C: fail_if_junction_ helper func
24273:
24274: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24275: include/pa_request.h, main/execute.C, main/main.dsp,
24276: main/pa_common.C, main/pa_request.C: ^process error point by
24277: actual method_name, not source. ^load
24278:
24279: * src/types/pa_vtable.h: table: no, better with string in cells...
24280:
24281: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
24282: classes/_table.h, classes/table.C, main/untaint.C: z
24283:
24284: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
24285: include/pa_table.h, main/core.C, main/execute.C,
24286: main/pa_common.C, main/pa_request.C, main/pa_table.C,
24287: types/pa_value.h: table:set 0
24288:
24289: * src/: classes/root.C, include/core.h, include/pa_array.h,
24290: include/pa_request.h, include/pa_table.h, main/core.C,
24291: main/main.dsp, main/pa_request.C, main/pa_table.C,
24292: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
24293: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
24294: types/pa_vstring.h: freeze, ^table:create[] -1
24295:
24296: * src/: classes/root.C, types/pa_value.h: z
24297:
24298: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
24299: get_method in couple places optimizing them
24300:
24301: * src/classes/root.C: z
24302:
24303: * src/: classes/root.C, types/pa_vclass.h: process temp main
24304: zeroing
24305:
24306: * src/: classes/double.C, classes/int.C, classes/root.C,
24307: classes/string.C, include/pa_common.h, include/pa_request.h,
24308: include/pa_string.h, include/pa_types.h, main/compile.C,
24309: main/compile.y, main/compile_tools.h, main/execute.C,
24310: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24311: types/pa_vmframe.h: ^process. actual names to store param and
24312: check_actual_numbered_params for better place diagnostics
24313:
24314: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
24315: method-junctions bug fixed
24316:
24317: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
24318: pa_vstateless_object.h, pa_vstring.h: stateless_object
24319:
24320: 2001-03-11 paf
24321:
24322: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
24323: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
24324: VDouble VInt base now VObject_base - without fields
24325:
24326: * src/: classes/root.C, include/core.h, main/core.C: z
24327:
24328: * src/: classes/double.C, classes/int.C, classes/root.C,
24329: classes/string.C, include/core.h, include/pa_hash.h,
24330: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
24331: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
24332:
24333: * src/: classes/double.C, classes/int.C, classes/root.C,
24334: include/pa_request.h, main/execute.C: intercept_string
24335:
24336: * src/: classes/double.C, classes/int.C, classes/root.C,
24337: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
24338:
24339: * src/: classes/double.C, classes/int.C, include/pa_request.h:
24340: ^inc-s(expr)
24341:
24342: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24343: classes/_root.h, classes/_string.h, classes/double.C,
24344: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24345: include/code.h, include/core.h, include/pa_array.h,
24346: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24347: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24348: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24349: include/pa_types.h, main/compile.C, main/compile.y,
24350: main/compile_tools.C, main/compile_tools.h, main/core.C,
24351: main/execute.C, main/pa_array.C, main/pa_common.C,
24352: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
24353: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24354: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24355: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24356: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24357: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24358: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24359: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
24360:
24361: * src/: main/pa_request.C, types/pa_vhash.h: z
24362:
24363: * src/: include/core.h, include/pa_request.h, main/core.C,
24364: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
24365:
24366: * src/: include/pa_valiased.h, include/pa_value.h,
24367: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24368: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24369: include/pa_vjunction.h, include/pa_vmframe.h,
24370: include/pa_vobject.h, include/pa_vstring.h,
24371: include/pa_vunknown.h, include/pa_wcontext.h,
24372: include/pa_wwrapper.h, main/compile.y, main/core.C,
24373: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
24374: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
24375: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24376: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24377: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24378: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24379: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24380: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
24381: include/
24382:
24383: 2001-03-10 paf
24384:
24385: * src/: include/core.h, include/pa_request.h, main/core.C,
24386: main/pa_request.C: run+auto=run
24387:
24388: * src/: classes/root.C, include/pa_request.h: minor if junction bug
24389:
24390: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24391: classes/_root.h, classes/_string.h, classes/double.C,
24392: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24393: include/code.h, include/core.h, include/pa_array.h,
24394: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24395: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24396: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24397: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
24398: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24399: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24400: include/pa_vjunction.h, include/pa_vmframe.h,
24401: include/pa_vobject.h, include/pa_vstring.h,
24402: include/pa_vunknown.h, include/pa_wcontext.h,
24403: include/pa_wwrapper.h, main/compile.C, main/compile.y,
24404: main/compile_tools.C, main/compile_tools.h, main/core.C,
24405: main/execute.C, main/pa_array.C, main/pa_cframe.C,
24406: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
24407: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24408: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
24409: main/pa_wcontext.C: sources header
24410:
24411: * src/main/pa_request.C: auto..
24412:
24413: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24414: main/pa_request.C: auto tree0
24415:
24416: * src/: include/core.h, include/pa_request.h, main/compile.y,
24417: main/core.C, main/pa_request.C: names to core.C
24418:
24419: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
24420: include/pa_request.h, main/core.C, main/execute.C,
24421: main/pa_common.C, main/pa_request.C: root auto.p loaded
24422:
24423: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
24424: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
24425: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24426: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
24427:
24428: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
24429: @auto[] realised. auto.p scan togo
24430:
24431: * src/: include/pa_request.h, main/execute.C: autocalc
24432: code-junctions result now have names
24433:
24434: * src/: classes/double.C, classes/int.C, classes/root.C,
24435: classes/string.C, include/pa_request.h, include/pa_string.h,
24436: include/pa_wcontext.h, main/compile.y, main/execute.C,
24437: main/pa_string.C, main/pa_wcontext.C: tainting 0
24438:
24439: * src/classes/env.C: env:file/line
24440:
24441: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
24442: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
24443: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
24444: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
24445: main/compile_tools.C, main/compile_tools.h, main/core.C,
24446: main/execute.C, main/main.dsp, main/pa_cframe.C,
24447: main/pa_request.C, main/pa_wcontext.C: const fight finished
24448:
24449: * src/include/pa_vclass.h: const fight to go
24450:
24451: * src/: classes/_env.h, classes/env.C, classes/root.C,
24452: include/pa_request.h, include/pa_vclass.h, main/core.C,
24453: main/main.dsp: env0
24454:
24455: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
24456: classes/_string.h, classes/double.C, classes/int.C,
24457: classes/root.C, classes/string.C, include/pa_request.h,
24458: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
24459: include/pa_wcontext.h, main/core.C, main/main.dsp,
24460: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
24461: main/pa_wcontext.C: ^lang prepare0
24462:
24463: 2001-03-09 paf
24464:
24465: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
24466: construct proper naming
24467:
24468: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
24469: classes/double.C, classes/int.C, classes/root.C,
24470: classes/string.C, include/code.h, include/pa_value.h,
24471: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
24472: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24473: main/compile.y, main/compile_tools.C, main/core.C,
24474: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
24475: and ^double[]. fixed expr type
24476:
24477: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24478: ^string.length[]
24479:
24480: 2001-03-08 paf
24481:
24482: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
24483:
24484: * src/: include/pa_vclass.h, include/pa_vstring.h,
24485: include/pa_wcontext.h, main/compile.y, main/core.C,
24486: main/execute.C, main/main.dsp: dead end: vstring can't be
24487: derivated from vobject
24488:
24489: * src/: include/pa_vclass.h, include/pa_vhash.h,
24490: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
24491:
24492: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
24493: remained clone conseqs
24494:
24495: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
24496:
24497: * src/main/pa_vclass.C: wow! vclass were out of vcs
24498:
24499: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
24500: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
24501: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
24502: include/pa_vobject.h, include/pa_vstring.h,
24503: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24504: main/execute.C: withoud cloning. didn't need it actually, params
24505: got passed from out unnamed ewpool
24506:
24507: * src/: include/pa_vdouble.h, include/pa_vhash.h,
24508: include/pa_vjunction.h, include/pa_vobject.h,
24509: include/pa_vunknown.h, main/compile.y: cloning dead end
24510:
24511: * src/: include/pa_bool.h, include/pa_double.h,
24512: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
24513: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
24514: include/pa_vjunction.h, include/pa_vmframe.h,
24515: include/pa_vobject.h, include/pa_vstring.h,
24516: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24517: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
24518: to give params proper names
24519:
24520: * src/main/pa_wcontext.C: z
24521:
24522: * src/: include/pa_vmframe.h, main/execute.C: added names to
24523: unknown values in get_element and unfilled params. removed wrong
24524: name change in get_element
24525:
24526: * src/main/execute.C: z
24527:
24528: * src/main/execute.C: fixed problems calling operators in
24529: constructors
24530:
24531: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
24532: detected problems calling operators in constructors
24533:
24534: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24535: autocalc def to string
24536:
24537: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
24538: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
24539:
24540: * src/classes/root.C: added root.c
24541:
24542: * src/: include/pa_request.h, include/pa_value.h,
24543: include/pa_vcframe.h, include/pa_vmframe.h,
24544: include/pa_wcontext.h, main/compile.C, main/compile.y,
24545: main/core.C, main/execute.C, main/pa_cframe.C,
24546: main/pa_wcontext.C: 'if' just compiled
24547:
24548: * src/: include/pa_vbool.h, include/pa_vdouble.h,
24549: include/pa_vjunction.h, include/pa_vmframe.h,
24550: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
24551: main/pa_wcontext.C: z
24552:
24553: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
24554: main/core.C, main/execute.C, main/main.dsp: z. detected probs
24555: with parameter names in operator methods
24556:
24557: * src/main/compile.y: minor renamings in .y
24558:
24559: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24560: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
24561: @BASE. changed 'RUN' assignment mech
24562:
24563: * src/main/execute.C: z
24564:
24565: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24566: main/compile_tools.h, main/execute.C: made class: dynamic, not
24567: static. so to enable runtime ^use
24568:
24569: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
24570:
24571: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24572: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
24573:
24574: * src/main/execute.C: root root in code-junction
24575:
24576: 2001-03-07 paf
24577:
24578: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
24579: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
24580:
24581: * src/: include/pa_stack.h, include/pa_value.h,
24582: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
24583: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
24584: fixed rwcontext of {} params up
24585:
24586: * src/main/: compile.y, compile_tools.h: ^func(params)
24587:
24588: * src/main/compile.y: .y priorities syntax shaped up a bit
24589:
24590: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
24591: include/pa_vunknown.h, main/compile.y, main/execute.C,
24592: main/pa_hash.C: expr def in -f
24593:
24594: * src/main/: compile.y, execute.C: expr calls
24595:
24596: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
24597: fixed
24598:
24599: * src/main/compile.y: expr quoted code
24600:
24601: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
24602: support0
24603:
24604: * src/main/compile.y: expr string comparisons 0
24605:
24606: * src/: include/pa_string.h, main/compile.y, main/execute.C,
24607: main/pa_string.C: just compiled lt&co
24608:
24609: * src/main/execute.C: ^var.menu{$field} problem detected. that
24610: $field not a $var.field
24611:
24612: 2001-03-06 paf
24613:
24614: * src/main/compile.y: .y expr visible-shorter
24615:
24616: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
24617: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
24618: logical
24619:
24620: * src/: include/pa_vstring.h, main/compile.y: problems with
24621: skipping whitespace in yylex
24622:
24623: * src/include/pa_vbool.h: forgot this
24624:
24625: * src/: include/code.h, main/compile.y, main/execute.C: without
24626: string ops in expressions 0
24627:
24628: * src/: include/pa_value.h, include/pa_vdouble.h,
24629: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
24630: main/execute.C, main/main.dsp: !~
24631:
24632: * src/: include/pa_vcframe.h, include/pa_vclass.h,
24633: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
24634: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24635: include/pa_vunknown.h, include/pa_wcontext.h,
24636: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24637: main/compile_tools.h, main/execute.C: +-*/
24638:
24639: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
24640: main/compile_tools.h: grammar-1.1 $a(z) $a=0
24641:
24642: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
24643: main/execute.C: expr grammar-1 2*2=4.000000 :)
24644:
24645: * src/main/compile.y: expr grammar-1
24646:
24647: * src/main/compile.y: expr lexx1
24648:
24649: * src/main/: compile.y, execute.C, main.dsp: z
24650:
24651: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
24652: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
24653: main/execute.C: expr lex0 exec-1
24654:
24655: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
24656:
24657: 2001-02-26 paf
24658:
24659: * src/main/compile.y: max_string in yyerror bug fix
24660:
24661: 2001-02-25 paf
24662:
24663: * src/: include/pa_value.h, include/pa_vmframe.h,
24664: include/pa_wcontext.h, main/execute.C: VAliased3
24665:
24666: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
24667:
24668: * src/main/execute.C: VAliased1
24669:
24670: * src/: include/pa_request.h, include/pa_value.h,
24671: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
24672: VAliased0
24673:
24674: * src/: include/pa_pool.h, include/pa_request.h,
24675: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
24676: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
24677: VAliased just compiled
24678:
24679: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
24680: include/pa_vobject.h, main/execute.C: alias dead end
24681:
24682: * src/: include/pa_value.h, include/pa_vclass.h,
24683: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24684: main/main.dsp: no not get fields into interm VFielded class.
24685: fields & staticfields 1
24686:
24687: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
24688: include/pa_vobject.h, include/pa_wcontext.h,
24689: include/pa_wwrapper.h, main/core.C, main/execute.C,
24690: main/main.dsp: would now get fields into interm VFielded class
24691:
24692: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24693: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24694: include/pa_wcontext.h, main/compile.y, main/core.C,
24695: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
24696: main/pa_wcontext.C: virtuals2
24697:
24698: * src/main/compile.y: : 1
24699:
24700: * src/main/compile.y: rethought to $class:static.field.subfield
24701:
24702: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
24703: $class:element
24704:
24705: * src/: include/pa_value.h, include/pa_vmframe.h,
24706: include/pa_wwrapper.h, main/compile.y, main/execute.C,
24707: main/pa_wcontext.C: before execute class calls rewrite
24708:
24709: * src/: include/pa_request.h, main/compile.C, main/core.C: default
24710: name RUN, also alias
24711:
24712: * src/main/compile.y: escaping bug
24713:
24714: * src/: include/pa_request.h, include/pa_value.h,
24715: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
24716: main/core.C, main/execute.C, main/pa_common.C: vobject1
24717:
24718: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24719: include/pa_vmframe.h, include/pa_vobject.h,
24720: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24721: main/compile_tools.h, main/execute.C: ^class:method() just
24722: compiled
24723:
24724: 2001-02-24 paf
24725:
24726: * src/main/main.dsp: no bison -d
24727:
24728: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
24729: class' err msg wrong
24730:
24731: * src/main/compile.y: z
24732:
24733: * src/main/: compile.y, core.C: yylex need some @special lines adj
24734:
24735: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
24736: main/compile.y, main/compile_tools.h, main/core.C: modules0
24737:
24738: * src/: include/pa_vclass.h, main/core.C: z
24739:
24740: * src/: include/pa_value.h, include/pa_vclass.h,
24741: include/pa_vobject.h, main/main.dsp: vobject00
24742:
24743: * src/main/pa_array.C: minor bug in expanding very small arrays.
24744: 60% from 1 were 0
24745:
24746: * src/: include/pa_value.h, include/pa_wcontext.h,
24747: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
24748: as bad as you've named it: wcontext.value() was not a perfect
24749: idea
24750:
24751: * src/main/execute.C: codeframe1
24752:
24753: * src/: include/pa_value.h, include/pa_vcframe.h,
24754: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
24755: include/pa_vjunction.h, include/pa_vmframe.h,
24756: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24757: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
24758: just compiled
24759:
24760: * src/: include/pa_vframe.h, main/compile.y: found junction
24761: ideology @: ^x{$a()) must construct current wcontext element, so
24762: smart wcontext handling needed
24763:
24764: * src/main/compile.y: fixed grammar bugs in constructor/params
24765: klinch
24766:
24767: * src/main/: compile.y, execute.C: fixed empty constructor
24768: optimized empty case. failed on calls - produced empty string
24769: param
24770:
24771: * src/main/compile.y: fixed last \n macrotemplate strip bug
24772:
24773: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
24774: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
24775: main/compile_tools.C, main/compile_tools.h, main/core.C,
24776: main/execute.C: code junctions0. something wrong with last \n
24777: macrotemplate strip
24778:
24779: * src/: include/pa_value.h, main/compile.C, main/core.C,
24780: main/pa_value.C: minor error reporting format beautifyings
24781:
24782: * src/: include/pa_value.h, include/pa_vclass.h,
24783: include/pa_vframe.h, main/core.C, main/execute.C,
24784: main/pa_value.C: get_method RIP. junctions everywhere. call with
24785: junctions0
24786:
24787: 2001-02-23 paf
24788:
24789: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
24790: pa_wwrapper.h: lara came, can't work, sorry :(
24791:
24792: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
24793: junction
24794:
24795: * src/: include/pa_vframe.h, include/pa_vunknown.h,
24796: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
24797: main/execute.C, main/main.dsp, main/pa_value.C: call0
24798:
24799: * src/: include/pa_hash.h, include/pa_value.h,
24800: include/pa_wcontext.h, main/core.C, main/execute.C,
24801: main/main.dsp, main/pa_hash.C: started call. store param, vframe
24802: done
24803:
24804: * src/include/pa_wcontext.h: z
24805:
24806: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
24807: wrong grammar in complex constructor case
24808:
24809: * src/main/: compile.y, execute.C: empty constructor bug fixed
24810:
24811: * src/main/execute.C: with result rwpool
24812:
24813: * src/: include/pa_value.h, main/core.C, main/execute.C,
24814: main/main.dsp: value named
24815:
24816: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
24817: strign 2 value in 2 places in execute
24818:
24819: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
24820: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
24821: wcontext.put_element when wcontext fvalue==0
24822:
24823: 2001-02-22 paf
24824:
24825: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24826: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
24827: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
24828:
24829: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
24830: erroreos checkout
24831:
24832: * src/: include/pa_request.h, main/compile.y: $self.put(val)
24833:
24834: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
24835: main/compile_tools.h, main/pa_array.C: $self.get
24836:
24837: * src/main/: compile.C, compile.y, compile_tools.C: z
24838:
24839: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
24840: bit. finished now.
24841:
24842: * src/main/compile.y: $: finished
24843:
24844: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
24845:
24846: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
24847: main/execute.C: OP_STRING better then some xxx _VALUE
24848:
24849: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
24850: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24851: string to vstring it .y all
24852:
24853: * src/: include/pa_request.h, include/pa_stack.h,
24854: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
24855: all
24856:
24857: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
24858: precise parse error line:col
24859:
24860: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
24861: main/pa_hash.C, main/pa_pool.C: TRY...
24862:
24863: * src/: include/pa_exception.h, include/pa_pool.h,
24864: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
24865: main/compile.C, main/compile.y, main/compile_tools.C,
24866: main/core.C, main/pa_array.C, main/pa_exception.C,
24867: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
24868: main/pa_table.C: removed exception from request
24869:
24870: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
24871: some forgotten
24872:
24873: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24874: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
24875: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
24876: get/put simple vars to VClass works0
24877:
24878: * src/: include/pa_array.h, include/pa_wcontext.h,
24879: main/pa_string.C: in process, but found that exceptions are too
24880: global
24881:
24882: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
24883: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
24884: main/execute.C, main/pa_string.C: write_value write_string 0 it
24885: seems wcontext must write strings regardles of fvalue!=0
24886:
24887: 2001-02-21 paf
24888:
24889: * src/main/execute.C: tired :)
24890:
24891: * src/main/: compile.C, compile.y, execute.C: store0
24892:
24893: * src/: include/compile.h, include/execute.h, include/pa_array.h,
24894: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
24895: include/pa_wcontext.h, main/compile.C, main/compile.y,
24896: main/execute.C, main/main.dsp, main/pa_array.C,
24897: main/pa_request.C: get put -1 [just compiled]
24898:
24899: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
24900: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
24901: main/main.dsp, main/pa_request.C: request core methods0
24902:
24903: * src/: include/compile.h, include/pa_array.h, main/compile.C,
24904: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
24905: execute
24906:
24907: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
24908: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
24909: methods and one_big_piece. now compile returns array<method*>
24910:
24911: * src/main/compile.y: more straightforward yylex[end]
24912:
24913: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
24914: string.operator==(char*)
24915:
24916: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
24917: main/execute.C, main/pa_array.C: after array.const get wonders
24918:
24919: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
24920: pa_string.h, pa_value.h: struck with const array.gets
24921:
24922: * src/main/: execute.C: z
24923:
24924: * src/main/: compile.y, execute.C: z
24925:
24926: * src/main/: compile.C, compile.y, compile_tools.h: error
24927: processing in eval & yyerror so it wouldn't cause memleaks.
24928:
24929: * src/main/: compile.C, compile.y: failed to add absolute precies
24930: parse error positions. leaving RIGHTMOST position as
24931: @file[line:col]
24932:
24933: * src/: include/compile.h, main/compile.C, main/compile.y,
24934: main/compile_tools.h: line numbers needed. would add them to .y
24935: now internally. externally it's not as precise as needed
24936:
24937: * src/: include/code.h, include/pa_types.h, main/compile.C,
24938: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24939: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
24940: compiler works ok
24941:
24942: 2001-02-20 paf
24943:
24944: * src/main/: compile.C, compile.y, compile_tools.C,
24945: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
24946: not perfect
24947:
24948: * src/: include/code.h, include/compile.h, include/execute.h,
24949: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
24950: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24951: main/compile.C, main/compile.y, main/compile_tools.C,
24952: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
24953: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24954: main/pa_string.C, main/pa_table.C: bison[yacc] first time
24955: compiled. execute=dump for now
24956:
24957: * src/main/core.C: core rewrite using yacc investigations now will
24958: be compile[yacc]/execute[opcodes]
24959:
24960: 2001-02-15 paf
24961:
24962: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
24963: rewrite as turing machine? for it seems it would be it's too many
24964: ifs with this syntax now
24965:
24966: 2001-02-14 paf
24967:
24968: * src/main/core.C: get_params 1
24969:
24970: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
24971: :( ]
24972:
24973: * src/main/core.C: varios breaks
24974:
24975: * src/main/core.C: get names 3
24976:
24977: * src/main/core.C: get names 2
24978:
24979: * src/main/core.C: get names 1
24980:
24981: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
24982: names 0
24983:
24984: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
24985: text repassing2 operator static vars
24986:
24987: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
24988: main/pa_string.C: process text repassing
24989:
24990: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24991: module:calls changes
24992:
24993: 2001-02-13 paf
24994:
24995: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24996: ^class:calls[] started
24997:
24998: * src/: include/pa_value.h, main/core.C: z
24999:
25000: * src/main/core.C: operators : and self. prefixes
25001:
25002: * src/main/core.C: z
25003:
25004: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25005: tested
25006:
25007: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25008: optimized
25009:
25010: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
25011: would change privates to better support optimization
25012:
25013: * src/: include/pa_string.h, main/pa_string.C:
25014: String_iterator::skip_to todo:optimize
25015:
25016: 2001-02-12 paf
25017:
25018: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
25019: String_iterator
25020:
25021: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
25022: comments
25023:
25024: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
25025: self/methodref joined
25026:
25027: 2001-02-11 paf
25028:
25029: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
25030: main/main.dsp: core started. core.C, context&value .h
25031:
25032: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25033: include/pa_string.h, main/main.dsp, main/pa_array.C,
25034: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
25035:
25036: 2001-01-30 paf
25037:
25038: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
25039: comments
25040:
25041: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
25042: main/pa_pool.C: moved pa_pool.C to be target specific
25043:
25044: * src/: include/pa_exception.h, include/pa_pool.h,
25045: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
25046: to & changes
25047:
25048: * src/: include/pa_exception.h, include/pa_pool.h,
25049: include/pa_request.h, include/pa_table.h, main/pa_array.C,
25050: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
25051: re-associated. that's much better even removed 'die' necessety
25052:
25053: * src/: include/pa_error.h, include/pa_exception.h,
25054: include/pa_pool.h, include/pa_request.h, main/main.dsp,
25055: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
25056: targets/Makefile.am: lowered targets/parser into subdir, added
25057: parser_Pool(Pool) failed to add. would think..
25058:
25059: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
25060: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
25061: main/pa_string.C, main/pa_table.C: Table more like C++ style
25062: hence lots of 'const'
25063:
25064: * src/: include/pa_error.h, include/pa_request.h,
25065: include/pa_string.h, include/pa_table.h, main/pa_error.C,
25066: main/pa_table.C: Error fixed
25067:
25068: 2001-01-29 paf
25069:
25070: * src/: include/pa_array.h, include/pa_common.h,
25071: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
25072: include/pa_request.h, include/pa_string.h, include/pa_table.h,
25073: main/Makefile.am, main/pa_array.C, main/pa_common.C,
25074: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
25075:
25076: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25077: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25078: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
25079: main/pa_string.C, main/pa_table.C: Request Error Table
25080:
25081: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
25082: templates"
25083:
25084: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
25085: main/main.dsp, main/pa_array.C: templates failed no template
25086: specializations [VC6], no library auto instantation [VC6, GNU c++
25087: 2.95.2-6 from latest cygwin]
25088:
25089: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25090: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25091: main/main.dsp, main/pa_array.C, main/pa_string.C,
25092: main/pa_table.C: Table started would test template Array now
25093:
25094: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25095: String originating
25096:
25097: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
25098: main/pa_hash.C: made local Hash-es not thread safe=quicker by
25099: SYNCHRONIZED(thread_safe)
25100:
25101: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
25102: parts to top
25103:
25104: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
25105: main/pa_threads.C: decided on one global_mutex, like PHP as I can
25106: see: needed only in global Hash now, made Hash:: put/get
25107: SYNCHRONIZED
25108:
25109: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
25110: main/pa_threads.C: added pa_threads
25111:
25112: Mutex
25113:
25114: * src/include/pa_hash.h: some comments
25115:
25116: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
25117: Array& operator += (Array& src)
25118:
25119: * src/main/pa_array.C: expand not convinient, would rewrite
25120:
25121: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
25122: (Array& src)
25123:
25124: rethought, would change now
25125:
25126: 2001-01-27 paf
25127:
25128: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
25129: caching
25130:
25131: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25132: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
25133: cache rethought to chunk caching
25134:
25135: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25136: include/pa_string.h, main/main.dsp, main/pa_array.C,
25137: main/pa_hash.C, main/pa_string.C: Array 0
25138:
25139: * src/main/pa_string.C: String::operator ==
25140:
25141: * src/main/pa_hash.C: String(&String)
25142:
25143: * src/main/pa_hash.C: added pa_hash.C [forgotten]
25144:
25145: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
25146: main/main.dsp, main/pa_string.C: uint, and added pa_types &
25147: pa_hash[forgotten]
25148:
25149: 2001-01-26 paf
25150:
25151: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25152: removed templates [vc++ suxx]
25153:
25154: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
25155: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
25156:
25157: * src/include/: pa_pool.h, pa_string.h: pa_pool split
25158:
1.119 moko 25159: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 25160:
1.119 moko 25161: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 25162: check
25163:
25164: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
25165: dynamic row_count
25166:
25167: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25168: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25169: targets/Makefile.am: Initial revision
25170:
25171: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25172: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25173: targets/Makefile.am: creating parser3 module
25174:
E-mail: