Annotation of parser3/ChangeLog, revision 1.185
1.185 ! moko 1: 2023-11-26 moko
! 2:
! 3: * tests/: 274.html, results/224.processed, results/274.processed:
! 4: tests for date double, int, bool added (related to feature #1235)
! 5:
! 6: * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
! 7: added for date class (implements feature #1235)
! 8:
! 9: 2023-11-23 moko
! 10:
! 11: * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
! 12: and '-' strings are no longer can be treated as number 0,
! 13: exception thrown (fixes bug #1234)
! 14:
1.184 moko 15: 2023-11-18 moko
16:
17: * src/include/pa_types.h: minor
18:
19: * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
20:
21: * tests/: 389.html, results/389.processed: error messages for some
22: OS differs a bit, reducing failing tests for them
23:
24: 2023-11-17 moko
25:
26: * tests/: 423.html, results/423.processed: test for optional
27: @auto[] inheritance added (related to feature #1233)
28:
29: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
30: types/pa_vstateless_class.C: optional @auto[] inheritance
31: implemented if defined with two args (path, class name)
32: (implements feature #1233)
33:
34: * src/: classes/double.C, classes/int.C, classes/math.C,
35: include/pa_random.h, include/pa_types.h, main/pa_common.C,
36: types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
37: sync double->int overflow behavour under different architectures
38: (fixes bug #1232)
39:
40: * tests/: 422.html, results/422.processed: int clipping added
41:
42: 2023-11-16 moko
43:
44: * tests/: 422.html, results/422.processed: test for int and uint
45: overflow in ^n.format[d/u/x]
46:
47: * src/classes/math.C: bugfix: crc32 should not be negative (under
48: Apple M1 when negative double converts to uint the result is 0)
49: and crc32 should be 32 bits
50:
51: * src/main/pa_common.C: avoid (uint)<negative double> conversion as
52: on Apple M1 it's 0
53:
54: * src/classes/file.C: bugfix: crc32 should not be negative (under
55: Apple M1 when negative double converts to uint the result is 0)
56: and crc32 should be 32 bits
57:
1.183 moko 58: 2023-10-07 moko
59:
60: * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
61: behavour with other OP_NUM_*, related to bug #1230
62:
63: 2023-10-06 moko
64:
65: * tests/: 338.html, results/338.processed: test for bug #1230 added
66:
67: * src/: main/execute.C, types/pa_vdate.h: force double operands to
68: be converted to double to avoid 80 bit operations in x87 mode
69: (fixes bug #1230)
70:
71: 2023-10-05 moko
72:
73: * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
74: compatibility
75:
76: * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
77:
78: * tests/: 421.html, results/421.processed: test to cover all
79: classes and objects nonexistent method and field exceptions
80: (related to feature #1080 and #1227)
81:
82: * tests/results/: 182.processed, 324.processed: undefined method ->
83: <type> method not found exception (related to feature #1080)
84:
85: * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
86: pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
87: "element can not be fetched from" for them, "field not found" for
88: all other types (related to bug #1227)
89:
90: 2023-10-03 moko
91:
92: * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
93: <type> method not found" exception now thrown for static calls
94: instead of "undefined method" without class name (related to
95: feature #1080)
96:
97: 2023-10-02 moko
98:
99: * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
100: pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
101: <method name>, Comment: <type> method not found" exception now
102: thrown for all dynamic objects instead of "undefined method"
103: without class name (implements feature #1080)
104:
1.182 moko 105: 2023-10-01 moko
106:
107: * src/classes/json.C: we don't have a dynamic json object.
108:
109: 2023-09-28 moko
110:
111: * tests/: 420.html, results/261.processed, results/420.processed:
112: tests updated after bug #1228 fix reverted
113:
114: * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
115: whitespace string is hash compatible, so we don't want $s.key to
116: return a junction
117:
118: * tests/: 261.html, 420.html, results/261.processed,
119: results/420.processed: test for bug #1227 added, test updated
120: after bug #1228 fixed
121:
122: * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
123: now throws exception as $non-empty-string.field (fixes bug #1227)
124:
125: * src/types/pa_vstring.h: allow $string.method access (fixes bug
126: #1228)
127:
128: 2023-09-26 moko
129:
130: * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
131: src/classes/classes.C, src/classes/classes.awk,
132: src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
133: src/classes/double.C, src/classes/file.C, src/classes/form.C,
134: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
135: src/classes/inet.C, src/classes/int.C, src/classes/json.C,
136: src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
137: src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
138: src/classes/regex.C, src/classes/response.C,
139: src/classes/string.C, src/classes/table.C, src/classes/void.C,
140: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
141: src/include/pa_array.h, src/include/pa_base64.h,
142: src/include/pa_cache_managers.h, src/include/pa_charset.h,
143: src/include/pa_charsets.h, src/include/pa_common.h,
144: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
145: src/include/pa_dictionary.h, src/include/pa_dir.h,
146: src/include/pa_exception.h, src/include/pa_exec.h,
147: src/include/pa_globals.h, src/include/pa_hash.h,
148: src/include/pa_http.h, src/include/pa_memory.h,
149: src/include/pa_opcode.h, src/include/pa_operation.h,
150: src/include/pa_os.h, src/include/pa_pool.h,
151: src/include/pa_random.h, src/include/pa_request.h,
152: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
153: src/include/pa_sapi.h, src/include/pa_socks.h,
154: src/include/pa_sql_connection.h,
155: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
156: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
157: src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
158: src/include/pa_table.h, src/include/pa_threads.h,
159: src/include/pa_types.h, src/include/pa_uue.h,
160: src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
161: src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
162: src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
163: src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
164: src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
165: src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
166: src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
167: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
168: src/main/compile.tab.C, src/main/compile.y,
169: src/main/compile_tools.C, src/main/compile_tools.h,
170: src/main/execute.C, src/main/pa_base64.C,
171: src/main/pa_cache_managers.C, src/main/pa_charset.C,
172: src/main/pa_charsets.C, src/main/pa_common.C,
173: src/main/pa_dictionary.C, src/main/pa_dir.C,
174: src/main/pa_exception.C, src/main/pa_exec.C,
175: src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
176: src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
177: src/main/pa_request.C, src/main/pa_socks.C,
178: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
179: src/main/pa_stylesheet_connection.C,
180: src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
181: src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
182: src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
183: src/main/untaint.C, src/main/helpers/simple_folding.pl,
184: src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
185: src/targets/apache/mod_parser3_core.C,
186: src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
187: src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
188: src/types/pa_method.h, src/types/pa_property.h,
189: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
190: src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
191: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
192: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
193: src/types/pa_vcookie.h, src/types/pa_vdate.C,
194: src/types/pa_vdate.h, src/types/pa_vdouble.h,
195: src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
196: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
197: src/types/pa_vhash.C, src/types/pa_vhash.h,
198: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
199: src/types/pa_vimage.C, src/types/pa_vimage.h,
200: src/types/pa_vint.h, src/types/pa_vjunction.C,
201: src/types/pa_vjunction.h, src/types/pa_vmail.C,
202: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
203: src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
204: src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
205: src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
206: src/types/pa_vobject.h, src/types/pa_vregex.C,
207: src/types/pa_vregex.h, src/types/pa_vrequest.C,
208: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
209: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
210: src/types/pa_vstateless_class.h,
211: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
212: src/types/pa_vstatus.h, src/types/pa_vstring.C,
213: src/types/pa_vstring.h, src/types/pa_vtable.C,
214: src/types/pa_vtable.h, src/types/pa_vvoid.C,
215: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
216: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
217: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
218: src/types/pa_wwrapper.h: copyright, authors actualized
219:
1.181 moko 220: 2023-08-20 moko
221:
222: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
223: commited (related to feature #1219)
224:
225: 2023-08-16 moko
226:
227: * src/main/pa_random.C: replaced clock precision with monotonicity
228: counter, good for Windows version with low clock frequency
229: (related to feature #1229)
230:
231: 2023-08-15 moko
232:
233: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
234: fixes related to feature #1229
235:
236: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
237: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
238: (implements feature #1229)
239:
1.180 moko 240: 2023-08-02 moko
241:
242: * tests/: results/417.processed, 417.html: test for empty string
243: match after last char added (related to bug #1224)
244:
245: * src/main/pa_string.C: avoid prestart++ after last char on zero
246: length match (related to bug #1224)
247:
1.179 moko 248: 2022-11-22 moko
249:
250: * tests/: 419.html, results/419.processed: test for L_URI and path
251: removeal from filename added (related to bug #1204)
252:
253: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
254: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
255: attribute value, L_URI should be used
256:
1.178 moko 257: 2022-09-21 moko
258:
259: * src/targets/cgi/parser3.C: more clear error messages
260:
261: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
262: SAPI_Info will return 0 in read_post and post_size !=
263: content_length will be thrown
264:
1.177 moko 265: 2022-08-23 moko
266:
267: * src/types/pa_vmail.C: .tables addes as .raw contains only last
268: header value
269:
270: 2022-08-22 moko
271:
272: * tests/: 418.html, results/418.processed: test for
273: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
274: to #1225)
275:
276: * src/classes/hash.C: keep old behavoir by default
277:
278: * src/classes/hash.C: ^hash_a.intersection[hash_b;
279: $.order[self|arg] ] added (implements #1215)
280:
1.176 moko 281: 2022-03-21 moko
282:
283: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
284: xmlInitCharEncodingHandlers is called in libxml static
285: initializers before gc_substitute_memory_management_functions in
286: pa_globals and thus gc may not see reference to our
287: xmlCharEncodingHandler and free it.
288:
1.175 moko 289: 2022-01-26 moko
290:
291: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
292:
1.174 moko 293: 2021-12-28 moko
294:
295: * tests/: 417.html, results/417.processed: test for empty string
296: match added (related to bug #1224)
297:
298: * src/main/pa_string.C: empty string match now works (fixes bug
299: #1224)
300:
1.173 moko 301: 2021-12-24 moko
302:
303: * tests/: 415_dir/29.p, results/415.processed: yet another test
304:
305: 2021-12-23 moko
306:
307: * src/: classes/table.C, main/pa_request.C: warnings war
308:
309: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
310: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
311:
312: 2021-12-21 moko
313:
314: * tests/: 416.html, results/416.processed: test for ^break[] in
315: ^hash/table.select[] (related to feature #1222)
316:
317: * src/classes/: hash.C, table.C: ^break[] support for
318: ^hash/table.select[] (implements feature #1222)
319:
1.172 moko 320: 2021-11-30 moko
321:
322: * src/targets/cgi/parser3.C: default sock_ready interval changed to
323: 0.5 sec
324:
1.171 moko 325: 2021-11-10 moko
326:
327: * tests/results/415.processed: more syntax errors tests added
328:
329: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
330: 28.p: minor syntax error tests
331:
332: * src/main/pa_exception.C: pa_strdup added for compatibility
333:
334: * src/classes/curl.C: hint to call ^curl:options[
335: $.library[correct.libcurl.so.name] ] added if default load fails.
336:
337: 2021-11-09 moko
338:
339: * src/main/compile.y: error message can be on stack
340:
341: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
342:
343: * src/main/pa_charset.C: memcpy is more correct and efficient in
344: this case then strncpy
345:
346: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
347: instead of strcpy where possible
348:
349: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
350: used to avoid MAX_STRING limit in Exception comment
351:
352: * tests/results/415.processed: compiler exceptions are no longer
353: limited to MAX_STRING
354:
355: * src/main/: compile.y, compile_tools.h: Parse_control uses const
356: char * instead of fixed buffer
357:
358: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
359: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
360: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
361: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
362: results/415.processed: tests for parser.compile exceptions added
363:
364: 2021-11-08 moko
365:
366: * src/: classes/math.C, include/pa_common.h, main/compile.y,
367: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
368: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
369: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
370: drawbacks
371:
1.170 moko 372: 2021-11-06 moko
373:
374: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
375: (implements feature #1219)
376:
377: * tests/: 414.html, results/414.processed: test for
378: ^hash.rename[from;to] added (related to feature #1144)
379:
380: 2021-11-05 moko
381:
382: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
383: (related to feature #1144)
384:
385: 2021-11-04 moko
386:
387: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
388: added (implements feature #1144)
389:
1.169 moko 390: 2021-10-19 moko
391:
392: * tests/: 413.html, results/413.processed: test for hash no longer
393: is accepted as file parameter (related to bug #1218)
394:
395: * src/: classes/curl.C, classes/file.C, classes/image.C,
396: classes/math.C, classes/xdoc.C, types/pa_value.C,
397: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
398: longer is accepted as file parameter (fixes bug #1218)
399:
1.168 moko 400: 2021-07-19 moko
401:
402: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
403: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
404:
1.167 moko 405: 2021-04-16 moko
406:
407: * src/types/pa_vmail.C: message can be null when e-mail is broken,
408: processing it leads to assertions.
409:
1.166 moko 410: 2021-03-25 moko
411:
412: * tests/: 412.html, results/412.processed: test to demonstrate bug
413: #1213
414:
1.165 moko 415: 2021-02-12 moko
416:
417: * tests/: 360.html, results/360.processed, results/363.processed:
418: parser method call in expression mode no longer differs from call
419: in string mode (related to feature #1211)
420:
421: 2021-02-11 moko
422:
423: * src/types/pa_vmail.C: mail parsing with Windows line endings
424: fixed (bug #1212)
425:
426: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
427: when called $v[^test[]] vs $v(^test[]), numbers are converted to
428: strings in both calls (implements feature #1211)
429:
1.164 moko 430: 2021-01-28 moko
431:
432: * buildall, etc/auto.p.in: to remove last patch in debian package
433:
434: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
435: 3.4.7b
436:
1.162 moko 437: 2021-01-21 moko
438:
439: * src/main/pa_http.C: no alarm() in file::load when web server mode
440: is MULTITHREADED
441:
1.157 moko 442: 2021-01-20 moko
443:
1.161 moko 444: * src/targets/apache/mod_parser3.c: it is more correct to recommend
445: 'a2enmod mpm_prefork'
446:
1.160 moko 447: * src/targets/apache/mod_parser3.c: prefork name is now
448: 'libapache2-mpm-itk'
449:
450: * src/targets/apache/mod_parser3_core.C: last regular malloc
451: removed
452:
1.159 moko 453: * src/targets/isapi/Makefile.am: -pa_threads.C
454:
1.158 moko 455: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
456: 3.4.6
457:
1.157 moko 458: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
459:
460: * etc/auto.p.in: @config[result] added to simplify $cfg change in
461: /httpd.p
462:
463: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
464: ^use[/httpd.p] + optional ^preprocess[] (related to feature
465: #1203)
466:
467: 2021-01-19 moko
468:
469: * buildall: --disable-parallel-mark added to avoid "number of
470: processors" threads creation for heap marking as it conflicts
471: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
472: limits threads)
473:
1.156 moko 474: 2021-01-16 moko
475:
476: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
477: main/pa_globals.C, main/pa_memory.C,
478: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
479: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
480: feature #1209)
481:
482: 2021-01-15 moko
483:
484: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
485: 3.4.6rc
486:
487: * src/classes/json.C: get_delim added for delimiter caching (10%
488: faster on large json)
489:
490: 2021-01-14 moko
491:
492: * operators.txt: updated with 3.4.6 changes
493:
494: * tests/results/224.processed: test result modified after
495: today(shift) implemented
496:
497: * tests/: 407.html, results/407.processed: test for ^hash.select
498: option $.default(bool) added (related to feature #1172)
499:
500: * src/classes/hash.C: ^hash.select option $.default(bool) added
501: (related to feature #1172)
502:
503: * tests/: 141.html, results/141.processed: test modified for
504: feature #1185.
505:
506: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
507: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
508: options $.lower(bool) (implements feature #1185)
509:
510: 2021-01-11 moko
511:
512: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
513: #1192)
514:
515: * tests/: 411.html, results/411.processed: test for ^date::today(N)
516: added (related to feature #1192)
517:
1.155 moko 518: 2021-01-05 moko
519:
520: * tests/: 270.html, results/270.processed: test modified to work
521: under Windows
522:
523: * tests/: 390.html, 395.html, results/395.processed: tests updated
524: 4 windows
525:
526: * tests/: 410.html, results/410.processed: test for
527: $CLASS-GETTER-PROTECTED(false) added
528:
529: 2021-01-04 moko
530:
531: * tests/: 409.html, results/409.processed, results/auto.p: test for
532: $MAIN:LOCALS(true) added
533:
1.154 moko 534: 2021-01-03 moko
535:
536: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
537: types/pa_vclass.h, types/pa_vstateless_class.C,
538: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
539: +LOCALS. $main -> $MAIN in exception texts (implements feature
540: #1207)
541:
542: 2021-01-02 moko
543:
544: * etc/auto.p.in: minor
545:
546: * src/main/pa_request.C: sending headers only after opening file to
547: allow error reporting if file was not opened (foreign group,
548: etc).
549:
550: 2020-12-31 moko
551:
552: * src/: include/pa_request.h, main/pa_request.C,
553: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
554:
555: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
556: main/pa_request.C: get_class_ref added and used
557:
558: * etc/auto.p.in: @CLASS httpd added
559:
560: * etc/auto.p.in: @auto[] is now first
561:
562: 2020-12-30 moko
563:
564: * tests/: 408.html, results/408.processed: test for bug #1166
565: (windows only) added
566:
567: * src/main/pa_common.C: create_dir_for_file should not create dir
568: for trailing / (fixes bug #1166)
569:
570: * tests/: 341.html, results/341.processed: tests for
571: ^nameless_table.hash[] added (related to feature #1138)
572:
573: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
574: (implements feature #1138), extra fields in named tables no
575: longer ignored (implements feature #1138)
576:
577: * tests/results/390.processed: updated after exception text change
578:
579: 2020-12-29 moko
580:
581: * tests/: 407.html, results/407.processed: +$._default check
582:
583: * src/classes/hash.C: keep $_default in ^hash.reverse[]
584:
585: * tests/: 407.html, results/407.processed: test for ^hash.select[]
586: and ^hash.reverse[] added (releated to feature #1172)
587:
588: * src/classes/hash.C:
589: ^hash.select[key;value](bool-condition)[options hash] +
590: ^hash.reverse[] added (implements feature #1172)
591:
592: * src/types/pa_vtable.h: warning war
593:
594: * src/include/pa_config_fixed.h: win32 fix
595:
1.153 moko 596: 2020-12-27 moko
597:
598: * tests/: 406.html, results/406.processed: test results updated
599:
600: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
601: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
602: spelling
603:
604: 2020-12-26 moko
605:
606: * tests/: 406.html, results/406.processed: tests for
607: ^table.rename[] added (related to feature #1148)
608:
609: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
610: ^table.rename[column name from;column name to], ^table.rename[
611: $.[column name from][column name to] ... ] added (implements
612: feature #1148)
613:
614: 2020-12-25 moko
615:
616: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
617: request_info now on stack to avoid yet another THREAD_LOCAL
618: memory deallocation issue (now with cookies), explained in #1203
619:
620: * src/types/pa_vcookie.C: fields should be inited
621:
622: 2020-12-24 moko
623:
624: * src/include/pa_stylesheet_connection.h: looks like
625: xsltFreeStylesheet leads to memory double-free. If so, it's for
626: sure libxml bug, but we have GC anyway, so we just remove this
627: call and see...
628:
629: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
630: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
631: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
632: abort.c:65:8 frame #3: 0x00000000004da663
633: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
634: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
635: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
636: malloc.c:617:9 frame #5: 0x0000000000577f0c
637: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
638: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
639: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
640: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
641: frame #8: 0x000000000050d35c
642: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
643: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
644: frame #10: 0x00000000004436e5
645: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
646: [inlined]
647: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
648: pa_stylesheet_connection.h:62:3
649:
650: 2020-12-23 moko
651:
652: * src/classes/image.C: ^image::measure[; $.video() ] option added
653:
654: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
655: ^image::measure[; $.video(true) ] added
656:
657: * src/main/pa_exec.C: not cleared automatically in multithreaded
658: httpd mode for unknown reasons
659:
660: 2020-12-22 moko
661:
662: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
663: error_log uri of currently processed document", but never used
664: and conflicts with how libgc stops threads on FreeBSD (#define
665: SIG_SUSPEND SIGUSR1), thus removed.
666:
667: 2020-12-21 moko
668:
669: * src/main/pa_request.C: +comment
670:
1.151 moko 671: 2020-12-20 moko
672:
1.152 moko 673: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
674: it is more safe to have versions of pa_strdup with one and two
675: arguments, as helper_length=0 not always mean that strlen()
676: should be called, but means zero.
677:
678: * src/targets/isapi/parser3isapi.C: minor
679:
680: * src/main/pa_http.C: +valid_http_method
681:
1.151 moko 682: * src/: include/pa_http.h, main/pa_http.C,
683: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
684:
685: 2020-12-17 moko
686:
687: * tests/: 405.html, results/405.processed: test for split by regex
688: added (related to feature #1160)
689:
690: * src/classes/string.C: split by regex implemented (feature #1160)
691:
692: * src/classes/string.C: minor
693:
694: * tests/: 404.html, results/404.processed: test for whitespace
695: string is now OK for table argument (related to feature #1169)
696:
697: * src/: classes/image.C, classes/string.C, classes/table.C,
698: types/pa_vmethod_frame.C: whitespace string is now OK for table
699: argument (as with hash) (implements feature #1169)
700:
701: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
702: limit for comment (fixes bug #1102)
703:
704: * src/targets/cgi/parser3.C: +HAVE_TLS check
705:
706: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
707:
708: * src/include/pa_config_includes.h: HAVE_TLS used
709:
710: * configure.ac: +TLS check
711:
712: * src/main/pa_http.C: content logging added
713:
714: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
715: clear_response_headers added
716:
717: 2020-12-16 moko
718:
719: * buildall: as we now use threads, libatomic_ops still required for
720: some OS.
721:
722: * src/main/pa_request.C: whitespace
723:
724: * src/: include/pa_request.h, main/pa_request.C:
725: Request::Exception_trace::table extracted and used
726:
727: * src/main/pa_request.C: moving output_result call outside of try
728: as network exceptions should not be handled by parser code
729:
730: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
731: logging network exchange
732:
733: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
734: via network if it was network write error.
735:
736: * src/targets/cgi/parser3.C: log -> pa_log
737:
738: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
739:
740: * src/main/pa_threads.C: getpid() if no gettid() found
741:
742: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
743: we need to ignore "void" connections from browsers (browsers open
744: connections in advance and they will be empty if user does not
745: request more pages)
746:
747: 2020-12-15 moko
748:
749: * src/targets/cgi/parser3.C: avoid previous uri in logs
750:
751: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
752: RequestController not needed in httpd mode
753:
754: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
755: classes/classes.h, classes/curl.C, classes/date.C,
756: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
757: classes/hashfile.C, classes/image.C, classes/inet.C,
758: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
759: classes/memcached.C, classes/memory.C, classes/op.C,
760: classes/reflection.C, classes/regex.C, classes/response.C,
761: classes/string.C, classes/table.C, classes/void.C,
762: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
763: include/pa_array.h, include/pa_base64.h,
764: include/pa_cache_managers.h, include/pa_charset.h,
765: include/pa_charsets.h, include/pa_common.h,
766: include/pa_config_fixed.h, include/pa_config_includes.h,
767: include/pa_dictionary.h, include/pa_dir.h,
768: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
769: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
770: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
771: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
772: include/pa_request_charsets.h, include/pa_request_info.h,
773: include/pa_sapi.h, include/pa_socks.h,
774: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
775: include/pa_stack.h, include/pa_string.h,
776: include/pa_stylesheet_connection.h,
777: include/pa_stylesheet_manager.h, include/pa_symbols.h,
778: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
779: include/pa_uue.h, include/pa_xml_exception.h,
780: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
781: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
782: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
783: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
784: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
785: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
786: main/compile.tab.C, main/compile.y, main/compile_tools.C,
787: main/compile_tools.h, main/execute.C, main/pa_base64.C,
788: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
789: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
790: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
791: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
792: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
793: main/pa_sql_driver_manager.C, main/pa_string.C,
794: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
795: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
796: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
797: main/untaint.C, sql/pa_sql_driver.h,
798: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
799: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
800: targets/isapi/parser3isapi.C, types/pa_junction.h,
801: types/pa_method.h, types/pa_property.h, types/pa_value.C,
802: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
803: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
804: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
805: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
806: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
807: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
808: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
809: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
810: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
811: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
812: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
813: types/pa_vmemory.h, types/pa_vmethod_frame.C,
814: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
815: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
816: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
817: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
818: types/pa_vstateless_object.h, types/pa_vstatus.C,
819: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
820: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
821: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
822: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
823: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
824:
825: * src/main/pa_request.C: old compilers support
826:
827: * tests/: 362.html, results/362.processed: test updated after
828: changes after upgrade to libxml2-2.9.9 were made (related to bug
829: #1108)
830:
831: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
832: removed, as xsltFreeStylesheet has side effects on original doc.
833: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
834: not updated after xdoc modification (part 3 of test 362).
835: (related to bug #1108)
836:
837: * src/targets/isapi/parser3isapi.C: +pa_strcat
838:
839: * src/: classes/memory.C, include/pa_memory.h,
840: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
841: PA_GC_GCOLLECT used
842:
843: * src/include/pa_memory.h: +PA_GC_COLLECT
844:
845: * src/targets/cgi/parser3.C: msvs support fixes
846:
847: * src/lib/gc/include/gc.h: more cleanup
848:
849: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
850:
851: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
852: targets/cgi/parser3.C: $main:HTTPD.mode implemented
853:
854: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
855:
856: * configure.ac: pthread.h added to checked headers
857:
858: * src/classes/table.C: string stream is back :)
859:
860: * src/classes/memory.C: GC_generate_random_backtrace no longer
861: exists
862:
863: * src/main/pa_globals.C: GC_dont_gc replaced
864:
865: * src/lib/gc/include/gc.h: major cleanup, only used functions are
866: left to simplify adding new functions. depricated GC_dont_gc
867: replaced with GC_disable and GC_enable calls.
868:
869: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
870: CORD_from_file* not used and thus removed
871:
872: * src/lib/gc/include/gc_allocator.h: minor cleanup
873:
874: 2020-12-14 moko
875:
876: * src/classes/: curl.C, memory.C, table.C: every TLS should be
877: referenced elsewhere, or GC will collect it.
878:
879: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
880: main/pa_xml_io.C: bugfix: TLS variables should be referenced
881: elsewhere, or GC will collect them (and we'll get GPF in
882: multithreaded enviroment). May be it can be also fixed by some
883: GC call, not sure. But this fix costs nothing (but hours of
884: debugging to find the issue :).
885:
1.150 moko 886: 2020-12-11 moko
887:
888: * configure.ac: gettid() check added
889:
890: * src/main/pa_threads.C: HAVE_GETTID used
891:
892: * src/include/pa_config_auto.h.in: +HAVE_GETTID
893:
894: * src/: include/pa_threads.h, main/pa_threads.C: now unified
895: version for isapi/cgi/apache
896:
897: * buildall: threads are now required.
898:
899: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
900: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
901: main/main.vcproj: pa_threads.C moved to main
902:
903: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
904: isapi/pa_threads.C: pa_threads.C moved to main
905:
906: * src/: main/Makefile.am, targets/cgi/Makefile.am,
907: targets/apache/Makefile.am: pa_threads.C moved to main
908:
909: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
910:
911: * src/: include/pa_stylesheet_connection.h,
912: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
913: and weird GPF in multithreaded httpd is gone
914:
915: * src/include/: pa_stylesheet_connection.h,
916: pa_sql_driver_manager.h: whitespace
917:
918: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
919:
920: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
921: main/pa_stylesheet_manager.C: whitespace, warning war
922:
923: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
924: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
925: parser_multithreaded never used
926:
927: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
928:
929: 2020-12-10 moko
930:
931: * src/: include/pa_config_includes.h, include/pa_http.h,
932: main/pa_http.C, targets/cgi/parser3.C: initial support for
933: MULTITHREADED and PARALLEL httpd server modes
934:
935: * src/main/pa_globals.C: GC_java_finalization is depricated
936:
937: 2020-12-09 moko
938:
939: * etc/auto.p.in: + @httpd-main
940:
941: * src/: include/pa_common.h, main/pa_request.C,
942: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
943: work
944:
945: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
946: slow file_read_binary no longer used, send_range added
947:
948: 2020-12-08 moko
949:
950: * src/main/pa_request.C: >4Gb support
951:
952: * src/targets/cgi/parser3.C: msvc warning war
953:
954: * src/: include/pa_config_includes.h, main/pa_http.C,
955: main/pa_request.C: msvc warnings war
956:
957: * src/classes/image.C: warning war
958:
959: * src/classes/table.C: MSVC warning war
960:
961: * src/targets/cgi/parser3.C: msvc warnings war
962:
963: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
964: added
965:
1.149 moko 966: 2020-12-07 moko
967:
1.150 moko 968: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
969: avoid logging beside system-wide auto.p
970:
971: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
972:
973: * configure, configure.ac, src/include/pa_config_auto.h.in:
974: configure options added:
975:
976: --with-system-cfg=FILE to specify system-wide auto.p
977: --with-system-log=FILE to specify system-wide parser3.log
978:
979: * Makefile.am: bin no longer exists
980:
981: * configure, configure.ac: auto.p moved to etc to simplify debian
982: package
983:
984: * buildall: auto.p and parser3.charsets moved to their default
985: location after install
986:
987: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
988:
989: * aclocal.m4, configure: automake 1.15 -> 1.16.1
990:
1.149 moko 991: * src/targets/cgi/parser3.C: locate_config call returned to
992: original place as it requires pa_thread_request() under Windows
993:
994: * src/targets/cgi/parser3.C: renaming
995:
996: 2020-12-06 moko
997:
998: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
999: check added
1000:
1001: 2020-12-04 moko
1002:
1003: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
1004: main/pa_request.C: unified uint64_t lseek implemented to support
1005: >4Gb files under x86, including Windows
1006:
1007: 2020-12-02 moko
1008:
1009: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
1010: with max_file_size
1011:
1012: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1013: support for processing files sized >4Gb on 32 bit planforms
1014:
1015: * tests/399.html: file moved
1016:
1017: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
1018:
1019: * src/targets/cgi/pa_sapi_info.h: warning war
1020:
1021: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
1022: warning war
1023:
1024: 2020-12-01 moko
1025:
1026: * src/classes/image.C: mp4 extended size (>4Gb) support added
1027:
1028: * src/classes/image.C: for "size not found" exception to be shown
1029: if size not found until eof
1030:
1031: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
1032: bit linux)
1033:
1034: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
1035: #1188)
1036:
1037: 2020-11-30 moko
1038:
1039: * src/classes/image.C: definitions moved closer to code
1040:
1041: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
1042: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
1043: 395_dir/3_VP8X.webp, results/395.processed,
1044: results/396.processed: tests for ^image::measure[] .webp support
1045: added, all image files moved into one directory (related to
1046: feature #1188)
1047:
1048: * src/classes/image.C: ^image::measure[] now supports webp (feature
1049: #1188)
1050:
1.148 moko 1051: 2020-11-29 moko
1052:
1053: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
1054: processing, unnessesary defines removed
1055:
1056: 2020-11-24 moko
1057:
1058: * tests/results/: 099.processed, 100.processed, 205.processed,
1059: 309.processed, 310.processed: Content-Disposition: inline
1060: returned
1061:
1062: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
1063: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
1064: ] added (related to bug #1204)
1065:
1066: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
1067: ] supported to avoid Content-Disposition: inline;
1068: filename="<file>.ext" but still set Content-Type for ext (related
1069: to bug #1204)
1070:
1.147 moko 1071: 2020-11-22 moko
1072:
1073: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
1074: types/pa_vfile.C: pa_filename added to avoid useless rsplit
1075:
1076: * src/main/pa_request.C: content_disposition_inline returned.
1077:
1078: 2020-11-17 moko
1079:
1080: * src/main/pa_request.C: empty main method name support
1081:
1082: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
1083: config_handler added, stdout flush added.
1084:
1085: 2020-11-16 moko
1086:
1087: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
1088:
1089: * tests/results/: 099.processed, 205.processed, 237.processed,
1090: 309.processed, 310.processed: Content-Disposition: inline is not
1091: required and should not contain filename="<name>"
1092:
1093: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
1094: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1095: targets/isapi/parser3isapi.C: pa_strcat implemented and used
1096:
1.146 moko 1097: 2020-11-14 moko
1098:
1099: * src/targets/cgi/parser3.C: spelling
1100:
1101: * src/targets/cgi/parser3.C: renaming
1102:
1103: * src/targets/cgi/parser3.C: args_skip removed, locate_config
1104: relocated
1105:
1106: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
1107: before request processing, which is weired
1108:
1109: 2020-11-13 moko
1110:
1111: * src/main/pa_http.C: pa_recv added with timeout support, thus read
1112: copied in httpd.
1113:
1114: 2020-11-12 moko
1115:
1116: * src/main/pa_http.C: ALARM code unified to be used in httpd
1117:
1118: * src/: include/pa_request.h, main/pa_request.C,
1119: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
1120:
1121: * src/main/pa_http.C: URI validation added
1122:
1123: * src/targets/cgi/parser3.C: filespec_to_process now variable,
1124: can't be empty but can be null. httpd-main is now main method
1125: name for httpd mode
1126:
1127: 2020-11-11 moko
1128:
1129: * src/main/pa_request.C: path_translated can be null in httpd mode
1130:
1131: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
1132: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
1133: classes/xdoc.C, include/pa_request.h, main/execute.C,
1134: main/pa_request.C: r.absolute -> r.full_disk_path
1135:
1136: * src/targets/cgi/parser3.C: if filename to process is not
1137: specified, auto.p should be present.
1138:
1.145 moko 1139: 2020-11-03 moko
1140:
1141: * src/: classes/op.C, include/pa_request.h: unused argument removed
1142:
1143: * src/main/pa_request.C: content_disposition_inline is the default,
1144: not required.
1145:
1.144 moko 1146: 2020-10-29 moko
1147:
1148: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
1149: ^use[file; $.main(true) ] implemented for auto.p processing and
1150: path_translated changing to correct relative files path
1151: calculation in httpd mode
1152:
1153: * src/: include/pa_request.h, main/pa_request.C:
1154: fail_on_read_problem removed, as it allways true, as if should
1155: be.
1156:
1157: * src/: include/pa_request.h, main/pa_request.C,
1158: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1159: targets/isapi/parser3isapi.C: clearing config_filespec when
1160: config was not found, thus flag not required and removed.
1161:
1162: 2020-10-28 moko
1163:
1164: * tests/: 402.html, results/402.processed: error reporting test
1165:
1166: * src/main/execute.C: better error reporting when
1167: $result[^hash::create[]] in @main.
1168:
1169: * src/main/: execute.C, pa_request.C: frame.result() should be used
1170: + minor optimization
1171:
1172: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
1173: main/pa_xml_io.C: execute_*_method simplified and unified
1174:
1175: 2020-10-27 moko
1176:
1177: * tests/: 306.html, results/306.processed: a bit more testing. :)
1178:
1179: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
1180: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
1181: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
1182: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
1183: types/pa_vmethod_frame.h, types/pa_vobject.C,
1184: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
1185: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
1186: longer used in object-prototype mode
1187:
1188: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
1189: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
1190: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
1191: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
1192: $form:name[value] features
1193:
1.143 moko 1194: 2020-10-18 moko
1195:
1196: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
1197:
1198: 2020-10-15 moko
1199:
1200: * src/main/pa_http.C: url no longer needed as
1201: ALTER_EXCEPTION_SOURCE is used
1202:
1203: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
1204: main/pa_http.C: check_file_size filespec is now optional
1205:
1206: * src/: classes/curl.C, include/pa_exception.h,
1207: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
1208: ALTER_EXCEPTION_COMMENT added for better error reporting
1209:
1210: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
1211: results/346-curl.processed, results/379-curl.processed,
1212: results/379.processed: test results updated as load now provides
1213: better error reporting + curl responses updated
1214:
1215: 2020-10-14 moko
1216:
1217: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
1218: main/pa_string.C, targets/apache/mod_parser3_core.C,
1219: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
1220: checked. 10 is now default base, no hex autodetect by default
1221:
1222: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1223: connection socket closing in destructor + accept exception
1224: handling
1225:
1226: * src/targets/cgi/parser3.C: warning war
1227:
1228: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
1229: main/pa_request.C, targets/apache/mod_parser3_core.C,
1230: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
1231: exception handling unified
1232:
1233: 2020-10-13 moko
1234:
1235: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
1236: autodetection
1237:
1238: * src/targets/apache/mod_parser3_core.C: reverted to atoi
1239:
1240: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
1241:
1242: * src/main/pa_http.C: warning war
1243:
1.142 moko 1244: 2020-10-12 moko
1245:
1.143 moko 1246: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
1247: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
1248: unhandled exception code optimization
1249:
1250: * src/targets/cgi/parser3.C: request_info now global variable
1251:
1252: * src/main/pa_http.C: http_read_response moved to HTTP_response
1253: class
1254:
1255: * src/: include/pa_http.h, main/pa_http.C,
1256: targets/cgi/pa_sapi_info.h: read_post implemented
1257:
1.142 moko 1258: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1259: [host:]port syntax support in httpd mode
1260:
1261: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
1262: targets/cgi/parser3.C: populate_env added
1263:
1264: * src/include/pa_hash.h: to make get(char *) compiling in
1265: HashStringString
1266:
1267: 2020-10-10 moko
1268:
1269: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
1270: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
1271:
1272: * src/: include/pa_http.h, include/pa_request_info.h,
1273: main/pa_http.C, main/pa_string.C,
1274: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
1275: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1276: types/pa_vrequest.C: initial httpd mode implementation
1277:
1.141 moko 1278: 2020-10-04 moko
1279:
1280: * src/targets/cgi/parser3.C: options together
1281:
1282: 2020-09-30 moko
1283:
1284: * src/main/pa_http.C: renamed
1285:
1.140 moko 1286: 2020-08-14 moko
1287:
1288: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
1289: src/targets/cgi/Makefile.am: no httpd as separate library
1290:
1291: 2020-08-13 moko
1292:
1293: * src/targets/cgi/parser3.C: SAPI::die used in exception in
1294: unhandled exception handler to report 500 instead of 200 it was
1295: before.
1296:
1297: * src/targets/apache/mod_parser3_core.C: minor cleanup
1298:
1299: * src/: include/pa_sapi.h, main/untaint.C,
1300: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1301: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
1302: thus replaced with SAPI::die and removed
1303:
1304: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
1305: cgi/parser3.C: whitespace
1306:
1307: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
1308:
1309: 2020-08-12 moko
1310:
1311: * src/targets/cgi/parser3.C: duplicate info in signal logging
1312: removed, whitespace was: SIGPIPE received while executing code.
1313: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
1314: cl=0]
1315:
1316: * parser3.sln: + httpd.vcproj
1317:
1318: 2020-08-11 moko
1319:
1320: * src/targets/cgi/Makefile.am: +libhttpd
1321:
1322: * configure.ac, src/lib/Makefile.am: +libhttpd
1323:
1.139 moko 1324: 2020-07-13 moko
1325:
1326: * tests/: 401.html, results/401.processed: test for hash key does
1327: not keep language, but tainted in foreach.
1328:
1.138 moko 1329: 2020-07-01 moko
1330:
1331: * tests/: 235.html, results/235.processed: test result updated as
1332: messages before attachments implemented (feature #1176)
1333:
1.137 moko 1334: 2020-06-27 moko
1335:
1336: * tests/: 400.html, results/400.processed: test updated to check
1337: ^return{code}
1338:
1339: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
1340: fixed
1341:
1342: 2020-06-26 moko
1343:
1344: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
1345: added (related to https://www.parser.ru/forum/?id=85319)
1346:
1347: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
1348: when $result assignment was last statement in the method
1349: (https://www.parser.ru/forum/?id=85319)
1350:
1.136 moko 1351: 2020-05-23 moko
1352:
1353: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
1354: whitespace, unused level removed
1355:
1356: 2020-05-19 moko
1357:
1358: * src/types/pa_vmail.C: whitespace
1359:
1360: * src/types/pa_vmail.C: files should be processed last (related to
1361: feature #1176)
1362:
1.135 moko 1363: 2020-05-12 moko
1364:
1365: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
1366: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
1367:
1368: * configure.ac: FreeBSD1X.X check added to avoid
1369: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
1370:
1.134 moko 1371: 2020-02-26 moko
1372:
1373: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
1374: compilation issue (related to bug #1201)
1375:
1376: * src/main/pa_common.C: entry_readable -> entry_exists,
1377: undocumented access(fname, R_OK) call removed (fixes bug #1201)
1378: -f and -d now works under Windows in UTF-8 with Russian
1379: filenames.
1380:
1381: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
1382: advice (related to feature #1199)
1383:
1384: 2020-02-25 moko
1385:
1386: * buildall: --silent removed
1387:
1388: * configure.ac: gmime-3.0 support
1389:
1390: * buildall: --with-system-mailreceive option added to build with
1391: system libgmime
1392:
1393: * src/types/pa_vmail.C: avoiding
1394: https://github.com/jstedfast/gmime/issues/83 "feature" (related
1395: to feature #1199)
1396:
1.133 moko 1397: 2020-02-18 moko
1398:
1399: * src/classes/op.C: windows x64 debug mode compile fix
1400:
1401: * src/main/pa_globals.C: no longer required due to -MD -> -MT
1402: change (releated to feature #1200)
1403:
1404: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1405: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
1406: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
1407: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
1408: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1409: targets/apache/ApacheModuleParser3.vcproj,
1410: targets/apache/ApacheModuleParser3Core.vcproj,
1411: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1412: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
1413: dependency (related to feature #1200)
1414:
1.132 moko 1415: 2020-02-12 moko
1416:
1417: * src/types/pa_vmail.C: minimize diff
1418:
1419: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
1420: #1199)
1421:
1.131 moko 1422: 2020-01-18 moko
1423:
1424: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
1425:
1.130 moko 1426: 2019-12-28 moko
1427:
1428: * src/targets/cgi/parser3.C: avoid empty ?
1429:
1430: 2019-12-27 moko
1431:
1432: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
1433: DOCUMENT_ROOT (related to feature #1164)
1434:
1435: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
1436: fcgiwrap setup (implements feature #1164)
1437:
1438: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
1439: but no issues found (related to feature #1164)
1440:
1441: * src/targets/cgi/parser3.C: actualized
1442:
1443: 2019-12-26 moko
1444:
1445: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
1446: removed
1447:
1448: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
1449: removed
1450:
1451: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
1452: allocation errors, we don't want default gc warnings (without
1453: timestamp and URI).
1454:
1455: * src/: classes/memory.C, main/pa_globals.C,
1456: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1457: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
1458: pa_globals_init
1459:
1460: * src/main/pa_globals.C: setup_hex_value() removed, static array
1461: initialization used (optimization)
1462:
1463: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
1464: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
1465: pa_socks_init/pa_socks_done moved inside pa_globals_init
1466: (optimization)
1467:
1.129 moko 1468: 2019-12-09 moko
1469:
1470: * src/include/pa_config_fixed.h: warning war
1471:
1.128 moko 1472: 2019-12-08 moko
1473:
1474: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
1475: process grammar under Unix.
1476:
1477: 2019-12-07 moko
1478:
1479: * tests/389.html: For Windows XP. :)
1480:
1481: * tests/388-sql.html: Windows compatibility added
1482:
1483: 2019-12-06 moko
1484:
1485: * src/targets/cgi/parser3.C: warning war
1486:
1487: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
1488: == sizeof(CORD)) to avoid aligning bugs in future
1489:
1490: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
1491: XML_STATIC
1492:
1493: * src/include/pa_request.h: StackItem() not required
1494:
1495: * src/include/pa_stack.h: warning war
1496:
1497: * src/include/pa_config_includes.h: GCC warning silenced
1498:
1499: * src/include/pa_memory.h: warning war: the program should also
1500: define 'void operator delete [](void*, std::size_t)'
1501: [-Wsized-deallocation]
1502:
1503: * src/types/: pa_vregex.h, pa_vtable.h: warning war
1504:
1505: * src/classes/string.C: not reqired cast removed
1506:
1507: * src/classes/string.C: not reqired cast removed
1508:
1509: 2019-12-05 moko
1510:
1511: * src/lib/sdbm/pa_file_io.C: warning war
1512:
1513: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
1514: enum Language : size_t - required for VS2015+ to make
1515: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
1516: without it (related to feature #1198)
1517:
1518: 2019-12-04 moko
1519:
1520: * src/main/pa_base64.C: unsigned char -> uchar
1521:
1522: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
1523: as other libs
1524:
1525: * src/include/pa_version.h: +amd64
1526:
1527: 2019-12-03 moko
1528:
1529: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
1530: release
1531:
1532: * src/include/pa_config_includes.h: warning war
1533:
1534: * src/classes/image.C: warning war
1535:
1536: * src/main/pa_globals.C: x64 libs support
1537:
1538: * src/include/pa_config_includes.h: warning war
1539:
1540: * src/types/pa_method.h: warning war
1541:
1.127 moko 1542: 2019-11-28 moko
1543:
1544: * src/classes/math.C: vs2003 compatibility + warning war
1545:
1546: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
1547: libxml2-2.9.9 (related to feature #1136)
1548:
1549: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
1550: typecast for more compatibility (related to feature #1136)
1551:
1552: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
1553: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
1554: feature #1136)
1555:
1556: 2019-11-26 moko
1557:
1558: * src/main/: compile_tools.C, compile_tools.h: invalid assert
1559: removed (it was failing in $$var case), condition added
1560:
1.126 moko 1561: 2019-11-25 moko
1562:
1563: * tests/: 397.html, 399.html, results/141.processed,
1564: results/399.processed: base64 options tested
1565:
1566: * src/: classes/math.C, main/pa_http.C: base64 options used
1567:
1568: * src/main/pa_base64.C: base64 encode rewritten, base64 options
1569: implemented (feature #986)
1570:
1571: * src/main/pa_cache_managers.C: whitespace
1572:
1573: * tests/: 397.html, 399.html, results/399.processed: tests for
1574: ^base64 encode options added (related to feature #986)
1575:
1576: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
1577: pa_base64_encode(file) removed - more memory, but faster and less
1578: code (related fo feature #986)
1579:
1580: 2019-11-24 moko
1581:
1582: * tests/: 155.html, results/155.processed: limit and offset in
1583: ^table::load[] now supported, thus test added
1584:
1585: * src/: classes/file.C, classes/table.C, include/pa_common.h,
1586: main/pa_common.C: optimization: offset and limit options parsing
1587: moved inside file_load.
1588:
1589: 2019-11-23 moko
1590:
1591: * src/: classes/file.C, classes/op.C, include/pa_common.h,
1592: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
1593: optimization: file_read replaced with simplified file_read_binary
1594:
1595: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
1596: types/pa_vform.C: whitespace
1597:
1598: * src/: include/pa_common.h, main/pa_common.C: never used params
1599: removed
1600:
1601: 2019-11-21 moko
1602:
1603: * tests/: 193.html, results/193.processed, results/389.processed:
1604: test results updated as now base64 does not discard tail without
1605: padding (related to feature #986)
1606:
1607: 2019-11-20 moko
1608:
1609: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
1610: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
1611: pa_base64_decode (related to feature #986)
1612:
1613: * tests/398.html: tests for base64 decode added (related to feature
1614: #986)
1615:
1616: * src/main/pa_base64.C: base64_decode rewritten - padding option
1617: support, padding inside base 64 supported (related to feature
1618: #096)
1619:
1620: 2019-11-19 moko
1621:
1622: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
1623: FreeBSD 12
1624:
1.125 moko 1625: 2019-11-16 moko
1626:
1627: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
1628: support added, step support removed (related to #986)
1629:
1630: 2019-11-15 moko
1631:
1632: * src/classes/math.C: using log since log2 is not present on
1633: FreeBSD < 8.4 (related to feature #1177)
1634:
1635: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
1636: pa_base64_size extracted and used for files as well (related to
1637: feature 986)
1638:
1639: 2019-11-14 moko
1640:
1641: * tests/: 397.html, results/397.processed: + content check
1642:
1643: * tests/: 141.html, results/141.processed: make test resuls more
1644: readable
1645:
1646: * tests/: 397.html, results/193.processed, results/397.processed:
1647: test results updated after \x00 character was disabled in
1648: math:convert string mode (related to feature #1177)
1649:
1650: * src/classes/: math.C, string.C: \\x00 character disabled while
1651: converting to string (as in base64, related to feature #1177)
1652:
1653: * src/classes/file.C: more correct arguments separation
1654:
1655: * src/: classes/file.C, classes/math.C, classes/string.C,
1656: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1657: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
1658: options added, but not yet implemented (related to feature #986)
1659:
1660: * src/classes/math.C: whitespace
1661:
1662: 2019-11-13 moko
1663:
1664: * tests/: 397.html, results/397.processed: +tainting test (related
1665: to feature #1177)
1666:
1667: * src/classes/math.C: as we now produce not only digits, result
1668: should be tainted (related to feature #1177)
1669:
1670: * src/main/pa_base64.C: whitespace
1671:
1672: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
1673: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1674: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
1675: implementation moved from pa_common.h and pa_common.C
1676:
1677: 2019-11-12 moko
1678:
1679: * tests/: 275.html, results/275.processed: out of range test fixed,
1680: as ^math:convert now supports arbitrary precision
1681:
1682: 2019-11-11 moko
1683:
1684: * tests/results/389.processed: uctualized error message
1685:
1686: * tests/: 389.html, 397.html, results/397.processed: tests for
1687: ^math:convert added (related to feature #1177)
1688:
1689: * src/classes/math.C: ^math:convert now supports arbitrary
1690: precision, alphabet support added (implements feature #1177)
1691:
1.124 moko 1692: 2019-11-06 moko
1693:
1694: * tests/: 181.html, results/181.processed: entities usage added,
1695: more entites load tests (related to bug #842 discussion)
1696:
1697: 2019-11-05 moko
1698:
1699: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
1700: call from xmlFileOpen if http://localhost/<file> was not found
1701: (related to bug #842)
1702:
1703: * src/main/pa_xml_io.C: rename
1704:
1705: * src/main/pa_xml_io.C: +MemoryStream constructor
1706:
1707: * src/main/pa_xml_io.C: whitespace
1708:
1.123 moko 1709: 2019-10-31 moko
1710:
1711: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
1712: XML_PARSE_NOENT) added to fix entities load, (related to feature
1713: #1181)
1714:
1.122 moko 1715: 2019-10-25 moko
1716:
1717: * tests/: 388-sql.html, results/388-sql.processed: more multiple
1718: queries tests
1719:
1720: 2019-10-24 moko
1721:
1722: * tests/: 388-sql.html, results/388-sql.processed: support for
1723: pgsql driver test
1724:
1725: * tests/: 388-sql.html, results/388-sql.processed:
1726: multi_statements=1 now tested, mysql test now supported
1727: (connection must be specified in [parser3] section in .my.cnf)
1728: related to issues #1195 and #1194
1729:
1.121 moko 1730: 2019-09-11 moko
1731:
1732: * src/classes/int.C: whitespace
1733:
1734: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
1735: exception test
1736:
1737: * tests/results/388-sql.processed: sql queries now shown (related
1738: to feature #1196)
1739:
1740: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
1741: with old parser versions.
1742:
1743: * src/: classes/file.C, classes/hash.C, classes/string.C,
1744: classes/table.C, classes/void.C, include/pa_sql_connection.h,
1745: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
1746: instead of connect string in query_event_handlers exceptions
1747: (implements feature #1196)
1748:
1.120 moko 1749: 2019-09-06 moko
1750:
1751: * tests/388-sql.html: mysql compat
1752:
1753: * src/: classes/hash.C, classes/string.C, classes/table.C,
1754: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
1755: sql_ variables declaration moved to pa_common.h
1756:
1.116 moko 1757: 2019-01-15 moko
1758:
1759: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
1760: logically sorted
1761:
1762: 2018-12-27 moko
1763:
1764: * src/include/pa_config_includes.h: warning war:
1765: -Wdeprecated-register added for C++ 17
1766:
1767: 2018-10-15 moko
1768:
1769: * configure.ac: FreeBSD 11.2 can be build with ./configure
1770: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
1771: --with-xml=/usr/local/
1772:
1773: 2018-09-24 moko
1774:
1775: * tests/: 396.html, 396.tiff, results/396.processed: test for
1776: ^image::measure[] now supports tiff added (related to feature
1777: #1188)
1778:
1779: * src/classes/image.C: ^image::measure[] now supports tiff
1780: (implements feature #1188)
1781:
1782: 2018-09-20 moko
1783:
1784: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
1785: files measure added (related to ticket #1188)
1786:
1787: * src/classes/image.C: measure of bmp files implemented (related to
1788: ticket #1188)
1789:
1790: 2018-09-18 moko
1791:
1792: * tests/: 394-curl.html, results/394-curl.processed,
1793: results/auto.p: test for bug #1187 (max_file_size check for head
1794: requests) added
1795:
1796: 2018-08-24 moko
1797:
1798: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
1799: response content-length check is required (fixes bug #1187)
1800:
1801: 2018-05-11 moko
1802:
1803: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
1804: $.append(bool) ] option added (related to feature #919)
1805:
1806: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
1807: from misha@ patch (implements feature #919)
1808:
1809: 2018-03-22 moko
1810:
1811: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
1812: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
1813: with 128kb buffer. Now works at least 12 times faster. :) May be
1814: Windows-only problem.
1815:
1816: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
1817: build fix)
1818:
1819: 2018-02-03 moko
1820:
1821: * src/main/execute.C: removes irrelevant lines from exception stack
1822: trace when exceptions occurs in assigment (fixes bug #1165)
1823:
1824: * tests/: 393.html, results/393.processed: test for behavour after
1825: "Property can not be created, already exists field with that
1826: name" exception removed (related to feature #1183)
1827:
1828: * src/types/pa_vclass.C: "Property can not be created, already
1829: exists field with that name" exception removed (implements
1830: feature #1183)
1831:
1832: 2018-01-19 moko
1833:
1834: * src/classes/string.C: whitespace
1835:
1836: * src/classes/string.C: whitespace
1837:
1838: * tests/: 392.html, results/392.processed: test for
1839: ^regex::create[$regex] added (related to feature #1135)
1840:
1841: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
1842: ^regex::create[$regex] added (implements feature #1135)
1843:
1844: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
1845: commented define added (related to feature #1157)
1846:
1847: 2018-01-17 moko
1848:
1849: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
1850:
1851: 2018-01-15 moko
1852:
1853: * tests/: 390.html, results/390.processed: real path replaced by
1854: stub
1855:
1856: * tests/: 391.html, results/391.processed: test for feature #1181
1857: (XML_PARSE_HUGE exception) added
1858:
1859: 2018-01-11 moko
1860:
1861: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
1862: XML_PARSE_HUGE option passed by default (implements feature
1863: #1181)
1864:
1865: * src/classes/string.C: whitespace
1866:
1867: 2017-12-10 moko
1868:
1869: * tests/: 389.html, 390.html, results/389.processed,
1870: results/390.processed: image code coverage tests added (related
1871: to feature #1125)
1872:
1873: 2017-12-08 moko
1874:
1875: * tests/: 346-curl.html, 388-sql.html, 389.html,
1876: results/346-curl.processed, results/388-sql.processed,
1877: results/389.processed: more code coverage tests
1878:
1879: * tests/: 264.html, results/264.processed: code coverage for
1880: ^file::exec[]
1881:
1882: 2017-12-07 moko
1883:
1884: * tests/: 174.html, 388-sql.html, 389.html,
1885: results/388-sql.processed, results/389.processed,
1886: results/174.processed: more coverage tests
1887:
1888: * src/classes/math.C: exception text actualized
1889:
1890: 2017-12-06 moko
1891:
1892: * tests/388-sql.html: $SQL can be here
1893:
1894: * tests/results/auto.p: $SQL not required here
1895:
1896: * tests/: 388-sql.html, 389.html, Makefile,
1897: results/388-sql.processed, results/389.processed, results/auto.p:
1898: code coverage tests for sql (using sqlite) and int/double/bool
1899: added (related to feature #1125)
1900:
1901: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1902: lib/json/json.vcproj, lib/md5/md5.vcproj,
1903: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
1904: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1905: targets/apache/ApacheModuleParser3Core.vcproj,
1906: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1907: types/types.vcproj: gc\include no longer required
1908:
1909: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
1910: required
1911:
1912: * src/: classes/Makefile.am, classes/table.C,
1913: include/pa_config_includes.h, include/pa_string.h,
1914: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1915: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
1916: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
1917: targets/apache/Makefile.am, targets/cgi/Makefile.am,
1918: types/Makefile.am: to be sure that our version of gc.h/cord.h is
1919: used, we now include it directly
1920:
1921: 2017-12-04 moko
1922:
1923: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
1924: memcached/memcached.vcproj, punycode/punycode.vcproj,
1925: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
1926: where required
1927:
1928: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
1929: now can be used to trace memory allocations
1930:
1931: * src/: classes/table.C, include/pa_config_includes.h,
1932: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1933: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
1934: method removes, libcord also can work without libgc
1935:
1936: * src/classes/json.C: pa_gc_malloc_atomic should not be used
1937:
1938: 2017-11-29 moko
1939:
1940: * src/classes/curl.C: no exception if some of ^curl:info[] elements
1941: are not present (related to feature #1173)
1942:
1943: * tests/346-curl.html: test updated to test curl content-length bug
1944: (related to feature #1173)
1945:
1946: * tests/results/346-curl.processed: more test for content-length
1947: curl bug (related to feature #1173)
1948:
1949: * tests/results/346-curl.processed: test results updated after
1950: #1173 implemented
1951:
1952: 2017-11-28 moko
1953:
1954: * src/classes/curl.C: another libcurl Content-length bug walkaround
1955: (related to feature #1173)
1956:
1957: 2017-11-27 moko
1958:
1959: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
1960: $.http_version[version string] added (implements feature #1173),
1961: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
1962: where $post(true) bug existed.
1963:
1964: 2017-11-18 moko
1965:
1966: * src/include/pa_memory.h: warning war (related to feature #1170)
1967:
1968: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
1969: feature #1170)
1970:
1971: 2017-11-17 moko
1972:
1973: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
1974: std::basic_stringstream used in ^table.csv-string[] is compatible
1975: with delete usage check only under Debian 9 (related to feature
1976: #1170)
1977:
1978: 2017-11-16 moko
1979:
1980: * src/: classes/curl.C, classes/hash.C, classes/json.C,
1981: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
1982: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
1983: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
1984: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
1985: types/pa_vxdoc.h: regular new/delete no longer used in our code,
1986: stubs defend from accidental use (implements feature #1170)
1987:
1988: 2017-06-24 moko
1989:
1990: * configure.ac: minor fix: thanks to alx@
1991:
1.115 moko 1992: 2017-05-29 moko
1993:
1994: * src/types/pa_vmail.C: mail headers are now correctly truncated -
1995: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
1996: added to avoid cutting of UTF-8 chars (fixed bug #123)
1997:
1998: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
1999: ignored, =?UTF-8?Q?= should start in case of leading space
2000: (related to bug #123)
2001:
2002: * buildall: echo -n -> printf for OS X. :)
2003:
2004: 2017-05-25 moko
2005:
2006: * tests/: 288.html, results/288.processed: test updated afted
2007: setting $o.prop without setter exception removed (related to
2008: feature #1157)
2009:
2010: * src/types/pa_vclass.C: no more "this property has no setter
2011: method" when setting $o.prop without setter (implements feature
2012: #1157)
2013:
2014: * buildall: echo \c -> echo -n for FreeBSD
2015:
2016: * configure, configure.ac, src/include/pa_config_auto.h.in,
2017: src/types/pa_vdouble.h: isfinite now checked in configure
2018:
2019: * compile, config.guess, config.sub, depcomp, install-sh, missing:
2020: upgraded to automake 1.15
2021:
2022: 2017-05-23 moko
2023:
2024: * src/types/pa_vdouble.h: finite returned where isfinite not
2025: defined
2026:
2027: 2017-05-22 moko
2028:
2029: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
2030:
2031: * buildall: extern CFLAGS setting support
2032:
2033: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
2034:
2035: * buildall: http -> https
2036:
2037: * buildall: gc-7.2f -> gc-7.6.0
2038:
2039: 2017-05-20 moko
2040:
2041: * buildall: https, pcre, xml, xslt updated to current versions
2042: (related to feature #1136)
2043:
2044: 2017-05-19 moko
2045:
2046: * tests/097.html: after parser.ru moved to https
2047:
2048: 2017-05-17 moko
2049:
2050: * tests/results/: 175.processed, 372.processed: tests resuls
2051: updated after lintian spelling typos fixed (related to bug #1156)
2052:
2053: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
2054: classes/string.C, classes/table.C, main/pa_charset.C,
2055: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
2056: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
2057: lintian reported by Sergey B Kirpichev (fixes bug #1156)
2058:
2059: * tests/results/096.processed: +XMP
2060:
2061: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
2062: $.xmp(true) options tested (test for feature #1154)
2063:
2064: * src/classes/image.C: ^image:measure[] options $.exif(false)
2065: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
2066: fetched by default! (implements feature #1154)
2067:
2068: 2017-05-16 moko
2069:
2070: * tests/: 256.html, results/256.processed: ^json:string[$image] now
2071: allowed (related to feature #1154)
2072:
2073: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2074: initial XMP implementation - without options and transcode
2075: (related to feature #1154)
2076:
2077: 2017-05-12 moko
2078:
2079: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2080: image: exif moved to ffields, skipped in ^image.html[] where
2081: iterators now used (preparation for feature #1154)
2082:
2083: 2017-05-05 moko
2084:
2085: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
2086: results/387.processed: test for circular class inheritance check
2087: added (related to bug #1150)
2088:
2089: * src/types/pa_vstateless_class.C: circular class inheritance check
2090: added (fixes endless add_derived bug #1150)
2091:
2092: 2017-05-04 moko
2093:
2094: * tests/: 386.html, results/386.processed: test for
2095: $table.value(number) added (related to feature #1152)
2096:
2097: * src/types/pa_vtable.C: table put_element: column value must be
2098: string - > column value must be string compatible to allow
2099: $t.value(1) (implements feature #1152)
2100:
2101: 2017-05-03 moko
2102:
2103: * src/main/pa_request.C: $use[$method] is not possible, reverting
2104: (related to feature #1151)
2105:
2106: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
2107: not possible, removing test (related to feature #1151)
2108:
2109: * src/: main/pa_request.C, types/pa_vstateless_class.h:
2110: get_element_method added and used to allow $use[$method] and
2111: $autouse[$method] (implements feature 1151)
2112:
2113: * tests/: 386.html, 386.p, results/386.processed: test for @use in
2114: variable added (related to feature #1151)
2115:
2116: * tests/results/226.processed: actualized after ^try-catch used
2117:
2118: * tests/: 226.html, 385.html, results/385.processed: test for
2119: @autouse in variable added
2120:
2121: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
2122:
1.114 moko 2123: 2017-02-27 moko
2124:
2125: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
2126:
1.113 moko 2127: 2017-02-20 moko
2128:
2129: * operators.txt: actualization + beauty
2130:
2131: 2017-02-16 moko
2132:
2133: * tests/: 384.html, results/384.processed: test for
2134: ^reflection:mixin[; $.name[] ] option added (related to feature
2135: #1089)
2136:
2137: * tests/: 384.html, results/384.processed: test for
2138: ^reflection:mixin[] added (related to feature #1089)
2139:
2140: * src/types/pa_value.h: warning war: virtual ~Value() added
2141:
1.112 moko 2142: 2017-02-15 moko
2143:
2144: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
2145: fixed
2146:
2147: * tests/: 320.html, results/320.processed: $.reverse(true/false)
2148: test added (related to feature #1069)
2149:
2150: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2151: compilation without HASH_ORDER fixed
2152:
2153: * src/: classes/reflection.C, include/pa_hash.h:
2154: $.reverse(true/false) added to ^reflection:methods[] (related to
2155: feature #1069)
2156:
2157: 2017-02-14 moko
2158:
2159: * tests/: 152.html, results/152.processed: test for $._default hash
2160: added (related to bug #1131)
2161:
2162: * tests/: 277.html, results/277.processed: test for hash with only
2163: $._default is now defined (related to bug #1131)
2164:
2165: * src/types/pa_vhash.h: hash with only $._default is now defined
2166: (fixed bug #1131)
2167:
2168: 2017-02-13 moko
2169:
2170: * tests/cat-windows.sh: cat-windows added (cygwin required)
2171:
2172: * tests/: 171.html, 264.html, 286.html, 370.html,
2173: results/320.processed, results/375.processed, results/auto.p:
2174: cat-windows.sh support added
2175:
2176: * tests/375.html: Windows support
2177:
2178: * tests/270.html: documented
2179:
2180: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
2181: (not backslashes) even under Windows (broke test 270)
2182:
2183: 2017-02-12 moko
2184:
2185: * tests/: descript.ion, todo.txt: cleanup
2186:
2187: 2017-02-09 moko
2188:
2189: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
2190: run_tests.cmd: Windows compatibility
2191:
2192: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
2193: incorrectly (GMT) if parser is called from cygwin
2194:
1.111 moko 2195: 2017-02-08 moko
2196:
1.112 moko 2197: * operators.txt: actualization 15% completed
2198:
2199: * operators.txt: cp1251 -> utf-8
2200:
2201: * NEWS, README: minor update
2202:
2203: * src/include/pa_config_includes.h: warning war continues
2204:
2205: * src/: include/pa_config_includes.h, include/pa_memory.h,
2206: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2207: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
2208: gcc 6.x issues fixed
2209:
1.111 moko 2210: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2211: classes/classes.h, classes/curl.C, classes/date.C,
2212: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2213: classes/hashfile.C, classes/image.C, classes/inet.C,
2214: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2215: classes/memcached.C, classes/memory.C, classes/op.C,
2216: classes/reflection.C, classes/regex.C, classes/response.C,
2217: classes/string.C, classes/table.C, classes/void.C,
2218: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2219: include/pa_array.h, include/pa_cache_managers.h,
2220: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2221: include/pa_config_fixed.h, include/pa_config_includes.h,
2222: include/pa_dictionary.h, include/pa_dir.h,
2223: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2224: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2225: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2226: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2227: include/pa_request_charsets.h, include/pa_request_info.h,
2228: include/pa_sapi.h, include/pa_socks.h,
2229: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2230: include/pa_stack.h, include/pa_string.h,
2231: include/pa_stylesheet_connection.h,
2232: include/pa_stylesheet_manager.h, include/pa_symbols.h,
2233: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
2234: include/pa_uue.h, include/pa_xml_exception.h,
2235: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
2236: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
2237: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2238: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
2239: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2240: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2241: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2242: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2243: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2244: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2245: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2246: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2247: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2248: main/pa_string.C, main/pa_stylesheet_connection.C,
2249: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
2250: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
2251: main/untaint.C, sql/pa_sql_driver.h,
2252: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2253: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2254: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2255: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2256: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2257: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2258: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
2259: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
2260: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
2261: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
2262: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
2263: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
2264: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
2265: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
2266: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
2267: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
2268: types/pa_vmemcached.h, types/pa_vmemory.h,
2269: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2270: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2271: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2272: types/pa_vresponse.C, types/pa_vresponse.h,
2273: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2274: types/pa_vstateless_object.h, types/pa_vstatus.C,
2275: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2276: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2277: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2278: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2279: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
2280: 2015->2017
2281:
1.110 moko 2282: 2017-02-07 moko
2283:
2284: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
2285:
2286: 2017-02-06 moko
2287:
2288: * src/main/pa_common.C: minor fixes, whitespace
2289:
2290: * src/: classes/curl.C, classes/file.C, classes/image.C,
2291: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
2292: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
2293: now used (implements feature #1081)
2294:
2295: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
2296:
2297: 2017-02-01 moko
2298:
2299: * src/include/pa_request.h: cleanup
2300:
2301: 2017-01-30 moko
2302:
2303: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
2304:
2305: 2017-01-29 moko
2306:
2307: * tests/: 383.html, results/383.processed: test for
2308: ^reflection:stack[] added (related to feature #1052)
2309:
2310: * src/classes/reflection.C: else added
2311:
2312: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
2313: $.max_file_lock_wait added (implements feature #1128)
2314:
2315: 2017-01-28 moko
2316:
2317: * tests/: 379-curl.html, results/379-curl.processed: curl empty
2318: body and other cases tests added (related to featue #1014)
2319:
2320: * src/classes/curl.C: bug if response is empty fixed (related to
2321: feature #1014)
2322:
2323: 2017-01-27 moko
2324:
2325: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
2326: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
2327: added (implements feature #1052)
2328:
2329: 2017-01-25 moko
2330:
2331: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
2332: method test added
2333:
2334: 2017-01-23 moko
2335:
2336: * src/classes/reflection.C: optimization: options->get replaced by
2337: hash iterator
2338:
2339: * tests/: 381.html, results/381.processed: now -> fixed date
2340:
2341: * src/main/pa_request.C: warning war
2342:
2343: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
2344: 5Mb (fixes bug #1058)
2345:
2346: * src/classes/curl.C: warning war
2347:
2348: * tests/: 381.html, results/381.processed: tests for ^json:string
2349: $.one-line(true) option added (related to feature #1124)
2350:
2351: * src/: classes/json.C, types/pa_value.h: $json-string
2352: $.one-line(true|false) options is now supported (implements
2353: feature #1124)
2354:
2355: * tests/: 380.html, results/380.processed: test for modified
2356: $.max_file_size added (related to bug #1014)
2357:
2358: * tests/: 379.html, results/auto.p: tests for rewritten http file
2359: load added (related to bug #1014)
2360:
2361: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2362: main/pa_common.C, main/pa_http.C: check_file_size added and used
2363: in curl / file load from disk and http, http file load rewritten
2364: (related to bug #1014)
2365:
2366: 2017-01-18 moko
2367:
2368: * tests/: 378.html, results/378.processed: tests for ^result[]
2369: added (related to feature #66)
2370:
2371: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
2372: Method::CO_WITHOUT_FRAME as frame still added in expression
2373: (related to feature #66)
2374:
2375: 2017-01-17 moko
2376:
2377: * tests/: 377.html, results/377.processed: test for different
2378: combinations of breaks in body and delimiter (related to bug
2379: #1077)
2380:
2381: * tests/: 376.html, results/376.processed: many ^break[] tests
2382: added (related to bug #1077)
2383:
2384: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
2385: passed to native method" exception added to avoid bugs due to
2386: WRITE_EXPR_RESULT skipped and native methods execution continues
2387: after ^break[] (related to bug #1077)
2388:
2389: 2017-01-14 moko
2390:
2391: * tests/: 330.html, results/330.processed: test results updated
2392: after ^break[] bugs where fixed (related to bug #1077)
2393:
2394: * tests/: 329.html, results/329.processed: test results updated
2395: after ^break[] bugs where fixed (related to bug #1077)
2396:
2397: * tests/results/320.processed: ^return[] added
2398:
2399: 2017-01-13 moko
2400:
2401: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
2402: classes/table.C, include/pa_request.h, main/execute.C,
2403: main/pa_request.C, targets/cgi/parser3.C,
2404: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
2405: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
2406: checked after each possible process/execute call (fixes bug
2407: #1077)
2408:
2409: 2016-12-29 moko
2410:
2411: * src/main/pa_common.C: warning war
2412:
2413: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
2414: include/pa_types.h, main/pa_request.C, main/pa_string.C:
2415: pa_file_size_limit added, ^math:random fixed for upper limit and
2416: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
2417: (related to feature #1014)
2418:
2419: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
2420: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
2421: (related to feature #1014)
2422:
2423: 2016-12-28 moko
2424:
2425: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
2426: warning war
2427:
2428: 2016-12-26 moko
2429:
2430: * tests/: 341.html, results/341.processed: test for
2431: ^table.hash[id;;$.type[string]] added (related to feature #1057)
2432:
2433: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
2434: (related to feature #1057)
2435:
2436: * src/types/pa_vdate.C: warning war continues...
2437:
2438: * src/: classes/date.C, classes/image.C, classes/table.C,
2439: include/pa_config_includes.h, types/pa_vfile.C: warning war
2440:
2441: * src/lib/gd/gifio.C: warning war / cleanup
2442:
2443: * src/lib/json/pa_json.C: warning war
2444:
2445: * src/classes/hash.C: warning war
2446:
2447: * src/types/pa_vfile.C: warning war
2448:
2449: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
2450: -Wall warning war continues
2451:
2452: * configure.ac: --with-build-warnings actualized
2453:
2454: 2016-12-25 moko
2455:
2456: * src/main/pa_exec.C: -wAll warning war
2457:
2458: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
2459: -wAll warning war
2460:
2461: * src/: include/pa_common.h, include/pa_sapi.h,
2462: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
2463: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
2464: -wAll warning war
2465:
2466: 2016-12-23 moko
2467:
2468: * src/lib/ltdl/Makefile.am: extra dist added
2469:
2470: * tests/results/344.processed: test result updated after $file.text
2471: prefetched in ^hash::create[$file] (related to feature #1075)
2472:
2473: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
2474: ^hash::create[$file] (related to feature #1075)
2475:
2476: 2016-12-22 moko
2477:
2478: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
2479: main/pa_request.C, main/pa_stylesheet_connection.C,
2480: types/pa_vfile.C: file_stat now return 64-bit size (implements
2481: #1014 under 32-bit unix versions)
2482:
2483: 2016-12-21 moko
2484:
2485: * tests/: 375.html, results/375.processed: test for exec returning
2486: stated file added (related to feature #1119)
2487:
2488: * src/classes/file.C: load should not return file with null body
2489: (fixes bug #1119)
2490:
2491: 2016-12-14 moko
2492:
2493: * tests/: 374.html, results/374.processed: test for $method.name
2494: added (related to feature #1117) plus method returning junction
2495: test
2496:
2497: 2016-12-13 moko
2498:
2499: * src/: include/pa_symbols.h, main/pa_symbols.C,
2500: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
2501: (implements feature #1117)
2502:
2503: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
2504: HEAD and TRACE can't have body (implements feature #1116)
2505:
2506: 2016-12-09 moko
2507:
2508: * tests/: 373.html, results/373.processed: tests for
2509: ^reflection:tainting added (related to feature #1098)
2510:
2511: * src/classes/reflection.C: ^reflection:tainting arguments order
2512: change (related to feature #1098)
2513:
2514: 2016-12-06 moko
2515:
2516: * src/: classes/reflection.C, include/pa_string.h,
2517: main/pa_string.C: ^reflection:tainting[$string] added (implements
2518: feature #1098)
2519:
2520: 2016-12-05 moko
2521:
2522: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
2523: (fixes bug #1114)
2524:
2525: 2016-12-04 moko
2526:
2527: * tests/: 206.html, results/206.processed: negative zero (0/-1)
2528: check added
2529:
2530: 2016-12-03 moko
2531:
2532: * tests/: 346-curl.html, results/346-curl.processed: test modified
2533: to test value.as_hash() usage
2534:
2535: * src/classes/curl.C: value.as_hash() used for correct hash
2536: processing
2537:
2538: * src/classes/reflection.C: exceptions texts fixes
2539:
2540: 2016-12-02 moko
2541:
2542: * tests/: 372.html, results/372.processed: tests for
2543: ^reflection:create[ $.class[name] $.constructor[name]
2544: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
2545: feature #1094)
2546:
2547: * src/types/pa_vmethod_frame.h: comment added: params should be
2548: declared outside of *_FRAME_ACTION as MethodParams destructor
2549: will be called in ~VNativeMethodFrame
2550:
2551: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
2552: ] minor fix
2553:
2554: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
2555: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
2556: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
2557: now supported (implements feature #1094) value::as_hash added
2558: (and should be used everywhere)
2559:
2560: * src/classes/reflection.C: cleanup
2561:
2562: 2016-12-01 moko
2563:
2564: * tests/: 356.html, results/356.processed: test for method
2565: junctions class name added to the resulting hash added (related
2566: to feature #1068)
2567:
2568: * src/classes/reflection.C: for method junctions class name added
2569: to the resulting hash (related to feature #1068)
2570:
2571: 2016-11-30 moko
2572:
2573: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
2574: exception (related to bug #1113)
2575:
2576: * src/types/pa_vhashfile.C: whitespace
2577:
2578: * src/main/pa_os.C: errno now returned as it should (fixes bug
2579: #1113)
2580:
2581: * tests/results/: 175.processed, 192.processed, 224.processed,
2582: 229.processed, 239.processed, 244.processed, 246.processed,
2583: 314.processed, 352.processed: tests results updated after method
2584: call exceptions improved as method now keeps its name
2585:
2586: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
2587: types/pa_vmethod_frame.h: method call exceptions improved as
2588: method now keeps its name
2589:
2590: * tests/: 224.html, 239.html, results/224.processed,
2591: results/239.processed: tests and tests results updated after
2592: Request::construct exception changed
2593:
2594: * src/: classes/reflection.C, main/execute.C: Request::construct
2595: exception optimized
2596:
2597: * tests/: 371.html, results/371.processed: test for
2598: WWrapper.get_element call in $.name.key[value] code added
2599: (related to feature #1091)
2600:
2601: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
2602: in $.name.key[value] code (related to feature #1091)
2603:
2604: 2016-11-29 moko
2605:
2606: * src/classes/op.C: VS warning war
2607:
2608: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
2609: C4239: nonstandard extension used : 'return' : conversion from
2610: 'Value' to 'Value &' (related to feature #1020)
2611:
2612: * src/: main/execute.C, types/pa_vmethod_frame.h,
2613: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
2614: used : 'return' : conversion from 'Value' to 'Value &' (related
2615: to feature #1020)
2616:
2617: * src/main/execute.C: VS warning war
2618:
2619: * src/targets/cgi/parser3.C: VS compatibility fix
2620:
2621: * src/include/pa_request.h: VS warning war
2622:
2623: * tests/: 370.html, results/370.processed: test for ^file::exec[
2624: ... $.stdin[$binary_file] ] added (related to bug #1044)
2625:
2626: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
2627: include/pa_string.h, main/pa_exec.C: pa_exec now supports
2628: $.stdin[$binary_file] (fixes bug #1044)
2629:
2630: 2016-11-28 moko
2631:
2632: * src/main/pa_exec.C: whitespace
2633:
2634: * src/main/pa_request.C: whitespace
2635:
2636: * tests/: 369.html, results/369.processed: test for
2637: $response:status usage added (related to feature #1099)
2638:
2639: * src/targets/cgi/parser3.C: HTTP response code used as exit status
2640: if < 100 (implements feature #1099)
2641:
2642: * src/targets/cgi/parser3.C: whitespace
2643:
2644: * src/targets/cgi/parser3.C: whitespace
2645:
2646: * tests/: 368.html, results/368.processed: test updated after
2647: ^reflection:filename[$method] added (related to feature #1053)
2648:
2649: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
2650: main/compile.y, main/execute.C, main/pa_request.C,
2651: types/pa_vclass.h: filename -> filespec,
2652: ^reflection:filename[$method] added (related to feature #1053)
2653:
2654: 2016-11-27 moko
2655:
2656: * tests/: 368.html, results/368.processed: test for
2657: reflection:filename[$class or object] added (related to feature
2658: #1053)
2659:
2660: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
2661: types/pa_vstateless_class.h: ^reflection:filename[$class or
2662: object] added (implements feature #1053)
2663:
2664: 2016-11-26 moko
2665:
2666: * src/: include/pa_request_info.h,
2667: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2668: remove_absolute_uri -> strip_absolute_uri
2669:
2670: 2016-11-25 moko
2671:
2672: * src/: include/pa_request_info.h,
2673: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2674: request_info.remove_absolute_uri added to remove possible
2675: http://site.name/ from $request:uri (implements feature #1112)
2676:
2677: 2016-11-24 moko
2678:
2679: * tests/: 367-curl.html, results/367-curl.processed: test for
2680: previous request headers clearing after redirect added (related
2681: to bug #1109)
2682:
2683: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
2684: response headers from previous requests are now cleared, only
2685: last request headers are collected (fixes bug #1109)
2686:
2687: * tests/results/: 266.processed, 321.processed, 356.processed:
2688: tests results updated as method name now added to the resulting
2689: hash for new syntax only (Imp1 compatimility fixed, related to
2690: feature #1068)
2691:
2692: * src/classes/reflection.C: method name now added to the resulting
2693: hash for new syntax only (Imp1 compatimility fixed, related to
2694: feature #1068)
2695:
2696: * tests/results/366.processed: test for native and parser
2697: implementation of ^use[] logic (related to feature #1074)
2698:
2699: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
2700: for native and parser implementation of ^use[] logic (related to
2701: feature #1074)
2702:
2703: 2016-11-23 moko
2704:
2705: * src/: classes/op.C, include/pa_request.h, main/compile.y,
2706: main/pa_request.C: @USE file now implemented as ^use[file;
2707: $.origin[origin_file] ] (implements feature #1074)
2708:
1.109 moko 2709: 2016-11-21 moko
2710:
1.110 moko 2711: * tests/: 365.html, results/365.processed: test for $caller bugs in
2712: 3.4.4 and $caller.method now tested (related to feature #1110)
2713:
2714: * tests/: 364.html, results/364.processed: $caller usage in
2715: different contexts now tested (related to feature #1110)
2716:
2717: * src/types/types.vcproj: +pa_vcaller_wrapper.h
2718:
2719: * src/types/Makefile.am: pa_vcaller_wrapper.h added
2720:
1.109 moko 2721: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
2722: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
2723: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
2724: used (implements feature #1110)
2725:
2726: 2016-11-20 moko
2727:
2728: * src/types/pa_vdouble.h: whitespace
2729:
2730: 2016-11-11 moko
2731:
2732: * tests/: 363.html, results/363.processed: more tests for feature
2733: #1091 (how parser methods work in expression context)
2734:
2735: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
2736: expressions strings are now written as strings, not values by
2737: write_as_string (related to feature #1091)
2738:
2739: * src/classes/op.C: to make more correct behavour in expression
2740: context
2741:
2742: 2016-11-07 moko
2743:
2744: * tests/: 362.html, results/362.processed: test for
2745: xsltParseStylesheetDoc caching as xsl modification after it added
2746: (related to bug #1108)
2747:
2748: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
2749: result now cached as xdoc is modified after it (fixes bug #1108)
2750:
2751: 2016-11-06 moko
2752:
2753: * src/types/pa_vxdoc.h: whitespace
2754:
2755: 2016-11-05 moko
2756:
2757: * src/types/pa_vmethod_frame.h: cleanup
2758:
2759: 2016-11-03 moko
2760:
2761: * tests/results/244.processed: more correct exception after method
2762: frames separation
2763:
2764: * src/types/pa_vmethod_frame.h: minor optimizaion
2765:
2766: * src/types/pa_method.h: optimization: params_count added
2767:
2768: * src/: classes/json.C, classes/op.C, classes/reflection.C,
2769: include/pa_request.h, main/execute.C, main/pa_request.C,
2770: types/pa_value.C, types/pa_vmethod_frame.C,
2771: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
2772: VMethodFrame now divided into VNativeMethodFrame,
2773: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
2774: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
2775: and used (related to feature #1104)
2776:
2777: 2016-11-02 moko
2778:
2779: * src/: classes/bool.C, classes/curl.C, classes/date.C,
2780: classes/double.C, classes/file.C, classes/hash.C,
2781: classes/hashfile.C, classes/image.C, classes/inet.C,
2782: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2783: classes/memcached.C, classes/op.C, classes/reflection.C,
2784: classes/regex.C, classes/string.C, classes/table.C,
2785: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
2786: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
2787: r.write (implements feature #1091)
2788:
2789: * src/main/execute.C: cleanup (related to feature #1104)
2790:
2791: * src/: include/pa_request.h, main/execute.C,
2792: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
2793: added, in_expression removed (implements feature #1104)
2794:
2795: 2016-10-31 moko
2796:
2797: * src/types/pa_value.C: whitespace
2798:
2799: 2016-10-28 moko
2800:
2801: * tests/results/244.processed: updated after error reporting fixed
2802: in pa_wcontext.C
2803:
2804: * src/types/pa_wcontext.C: error reporting fixed
2805:
2806: * src/types/pa_wcontext.h: whitespace
2807:
2808: * src/classes/image.C: not fully readed entries are no longer
2809: processed (fixes bug #1106)
2810:
2811: 2016-10-26 moko
2812:
2813: * src/classes/image.C: whitespace
2814:
2815: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
2816: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
2817: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
2818: longer required (related to feature #1091)
2819:
2820: * tests/results/: 264.processed, 350.processed: test results update
2821: reverted (whitespace optimization) after write_no_lang removed :)
2822: (related to feature #1091)
2823:
2824: * src/: classes/file.C, classes/hash.C, classes/op.C,
2825: classes/string.C, classes/table.C, classes/void.C,
2826: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
2827: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
2828: equal write_pass_lang (related to feature #1091)
2829:
2830: * tests/results/: 264.processed, 350.processed: test results
2831: updated (whitespace optimization) after write_assign_lang removed
2832: (related to feature #1091)
2833:
2834: * tests/: 361.html, results/361.processed: test for non-string
2835: ^untaint added (related to feature #1091)
2836:
2837: * src/: classes/curl.C, classes/date.C, classes/file.C,
2838: classes/hash.C, classes/op.C, classes/string.C,
2839: include/pa_request.h, main/execute.C: optimization:
2840: write_assign_lang removed as not required (first part of feature
2841: #1091 implementation)
2842:
1.108 moko 2843: 2016-10-12 moko
2844:
2845: * tests/: 360.html, results/360.processed: more test code (related
2846: to feature #1104)
2847:
2848: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
2849: include/pa_request.h, main/compile.y, main/execute.C: opcode
2850: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
2851: WContext is next task (implements feature #1104)
2852:
2853: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
2854: / CO_WITHOUT_WCONTEXT
2855:
2856: * tests/: 360.html, results/360.processed: test for in expression
2857: state (related to feature #1104)
2858:
2859: 2016-10-11 moko
2860:
2861: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
2862:
2863: * src/classes/op.C: default value removed from initializer
2864:
2865: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
2866:
2867: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
2868:
2869: 2016-10-10 moko
2870:
2871: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
2872: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
2873: to feature #42)
2874:
2875: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
2876: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
2877:
2878: 2016-10-08 moko
2879:
2880: * src/classes/double.C: whitespace
2881:
2882: 2016-10-07 moko
2883:
2884: * src/types/pa_vmethod_frame.h: reorder
2885:
2886: 2016-10-06 moko
2887:
2888: * src/classes/date.C: typo
2889:
2890: * src/types/pa_vmethod_frame.h: whitespace + cleanup
2891:
2892: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2893: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
2894: types/pa_vmethod_frame.h: params.get now returns Value&, not
2895: Value*
2896:
2897: * src/types/pa_vmethod_frame.C: params.get should return Value&.
2898:
2899: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
2900: removed; first as_* code rewrite
2901:
2902: 2016-10-05 moko
2903:
2904: * src/include/pa_request.h: whitespace
2905:
2906: * tests/: 359.html, results/359.processed: test for VCodeFrame and
2907: intercept_string added (related to feature #1097)
2908:
2909: * src/: classes/image.C, classes/op.C, classes/table.C,
2910: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2911: optimization: intercept_string removed (implements feature #1097)
2912:
2913: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
2914:
2915: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
2916: from VCodeFrame and WWrapper as not required
2917:
2918: 2016-10-04 moko
2919:
2920: * src/: classes/curl.C, classes/date.C, classes/double.C,
2921: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
2922: classes/int.C, classes/json.C, classes/op.C,
2923: classes/reflection.C, classes/string.C, classes/table.C,
2924: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2925: proces_to_value -> process after StringOrValue removed (related
2926: to feature #1020)
2927:
2928: * src/classes/form.C: whitespace
2929:
2930: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
2931:
2932: * tests/: 357.html, 358.html, results/357.processed,
2933: results/358.processed, results/auto.p: test for @conf
2934: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
2935:
2936: 2016-10-03 moko
2937:
2938: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
2939: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
2940: supported (implements feature #42)
2941:
2942: * src/types/pa_vregex.h: no reason for VRegex to be
2943: is_evaluated_expr
2944:
2945: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
2946: (implements feature #1095)
2947:
2948: 2016-10-01 moko
2949:
2950: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
2951: false by default (related to feature #1089)
2952:
2953: 2016-09-30 moko
2954:
2955: * src/types/pa_wcontext.h: cleanup
2956:
2957: 2016-09-29 moko
2958:
2959: * src/main/execute.C: whitespace
2960:
2961: * src/include/pa_request.h: whitespace
2962:
2963: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2964: classes/op.C, classes/table.C, include/pa_request.h,
2965: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
2966: types/pa_vobject.C, types/pa_wcontext.h: optimization:
2967: StringOrValue removed as it just slows down and adds complexity
2968: (implements feature #1020)
2969:
2970: 2016-09-28 moko
2971:
2972: * tests/: 356.html, results/266.processed, results/321.processed,
2973: results/356.processed: tests updated after name was added to
2974: method_info hash, test for ^reflection:method_info[junction]
2975: added (related to feature #1068)
2976:
2977: * src/classes/reflection.C: ^reflection:method_info[junction] now
2978: supported, method name added to the resulting hash (implements
2979: feature #1068)
2980:
2981: * tests/: 276.html, results/276.processed: more tests for
2982: ^reflection:delete[]
2983:
2984: * src/classes/reflection.C: fixed bug then ^reflection:delete
2985: didn't work on class and could damage native objects (like file)
2986:
2987: 2016-09-26 moko
2988:
2989: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
2990: results/345.processed, results/346-curl.processed,
2991: results/347-curl.processed, results/348.processed: numbers added
2992: to simplify diff analysis
2993:
2994: * tests/: 352.html, results/352.processed: test result updated as
2995: method name used
2996:
2997: * src/classes/reflection.C: method name used
2998:
2999: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
3000: its name
3001:
3002: * src/types/pa_method.h: whitespace
3003:
3004: * src/classes/reflection.C: both method and field with one name can
3005: exist.
3006:
3007: * src/classes/reflection.C: ^reflection:mixin added (implements
3008: feature #1089)
3009:
3010: * tests/: 355.html, results/355.processed: property appears in
3011: derived class if added in base test added
3012:
3013: * src/types/pa_vstateless_class.h: get_method declaration +
3014: whitespace
3015:
3016: * tests/: 354.html, results/354.processed: nice test from method
3017: and property with one name in class added
3018:
3019: 2016-09-23 moko
3020:
3021: * src/classes/reflection.C: ^reflection:method usage documented
3022:
3023: 2016-09-22 moko
3024:
3025: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
3026: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
3027: compile warning and GPF occures on VS2003 (related to feature
3028: #1087)
3029:
3030: * tests/: 350.html, results/350.processed: test added for
3031: $.encloser[] support in ^table::create (related to feature #11)
3032:
3033: * src/classes/table.C: another minor fix (related to feature #11)
3034:
1.107 moko 3035: 2016-09-21 moko
3036:
3037: * src/include/pa_config_fixed.h: vs2015 compilation fixes
3038:
3039: * src/: classes/curl.C, classes/file.C, classes/hash.C,
3040: classes/json.C, classes/string.C, classes/table.C,
3041: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3042: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3043: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
3044: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
3045: pa_charsets, vs2015 warning war
3046:
3047: * src/classes/table.C: vs2015 warning war
3048:
3049: * src/types/pa_vdate.C: vs2015 warning war
3050:
3051: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
3052:
3053: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
3054: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
3055:
3056: * src/main/pa_common.C: vs2015 compilation fixes
3057:
3058: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
3059: vs2015 compilation fixes
3060:
3061: * src/main/pa_charset.C: vs2015 warning war
3062:
3063: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
3064:
3065: * src/main/pa_charset.C: vs2015 warning war
3066:
3067: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
3068:
3069: * src/types/pa_vdate.C: vs2015 compilation fix
3070:
3071: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
3072:
3073: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
3074: VS2015 compilation fixes
3075:
3076: * src/classes/table.C: minor fix (related to feature #11)
3077:
3078: * tests/results/282.processed: no longer skipping extra enclosers
3079: (related to feature #11)
3080:
3081: * src/classes/table.C: minor fix + no longer skipping extra
3082: enclosers (related to feature #11)
3083:
3084: * src/classes/table.C: minor optimization (related to feature #11)
3085:
3086: * src/classes/table.C: minor fix and optimization (related to
3087: feature #11)
3088:
3089: 2016-09-20 moko
3090:
3091: * tests/: 353.html, results/353.processed: test for
3092: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
3093: added (related to bug #1090)
3094:
3095: * src/main/compile.y: PC.cclass->is_vars_local() check added for
3096: one_big_piece (fixes bug #1090)
3097:
3098: * tests/: 229.html, results/229.processed: code coverage tests
3099:
3100: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
3101: body) was called
3102:
3103: * src/classes/op.C: whitespace
3104:
3105: * tests/: 323.html, results/323.processed: test for code junction
3106: should not be returned by ^reflection:class, ^reflection:base
3107:
3108: * src/classes/reflection.C: bugfix: code junction should not be
3109: returned by ^reflection:class, ^reflection:base
3110:
3111: * tests/: 323.html, 352.html, results/352.processed: no more
3112: exception for ^reflection:method[class;no-such-method] (related
3113: to feature #1087)
3114:
3115: * src/classes/reflection.C:
3116: ^reflection:method[class;no-such-method] : exception -> void
3117: (related to feature #1087)
3118:
3119: * src/include/pa_request.h: request::write_value added to allow
3120: write value without convertion (related to issue #1091)
3121:
3122: 2016-09-19 moko
3123:
3124: * src/main/pa_random.C: windows build fix
3125:
3126: * src/types/pa_vhash.h: warning war
3127:
3128: 2016-09-14 moko
3129:
3130: * tests/: 352.html, 552.html, results/352.processed,
3131: results/552.processed: test for ^reflection:method[] extension
3132: added (related to feature #1087)
3133:
3134: * tests/: 552.html, results/552.processed: test for
3135: ^reflection:method[] extension added (related to feature #1087)
3136:
3137: * src/classes/reflection.C: compatibility issue fixed, VClass
3138: dynamic_cast check added (related to feature #1087)
3139:
3140: * tests/: 351.html, results/351.processed: test for @auto[]
3141: inheritance bug diring ^process[] added (related to bug #1088)
3142:
3143: * src/: classes/op.C, main/pa_request.C,
3144: types/pa_vstateless_class.C: set_method now checks for @auto[] to
3145: disable it inheritance during ^process (fixes bug #1088)
3146:
3147: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
3148: added (implements feature #1087)
3149:
3150: 2016-09-13 moko
3151:
3152: * tests/: 349.html, results/auto.p: test for objects prototyping
3153: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
3154: to feature #1086)
3155:
3156: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
3157: types/pa_vobject.C: objects now are not class instances, but have
3158: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
3159: in @conf (implements feature #1086)
3160:
3161: 2016-09-08 moko
3162:
3163: * src/: classes/file.C, classes/mail.C, classes/string.C,
3164: classes/table.C, main/pa_http.C, main/pa_string.C,
3165: include/pa_string.h: cleanup: string::split limit argument
3166: removed as no longer required, pos_after no longer reference
3167: (related to feature #11)
3168:
3169: * src/classes/table.C, tests/results/348.processed: now exception
3170: is rised when invalid option is passed to ^table::create[]
3171:
3172: * tests/: 282.cfg, 282.html, results/282.processed: more code
3173: coverage tests
3174:
3175: * tests/: 348.html, results/348.processed: code coverage tests
3176: added
3177:
3178: * tests/: 348.html, results/348.processed: generic ^table::create[]
3179: tests
3180:
3181: * tests/: 035.html, results/035.processed, results/272.processed:
3182: tests updated after $.encloser[] support for ^table::create
3183: implementation (related to feature #11)
3184:
3185: * src/classes/table.C: $.encloser[] support for ^table::create
3186: finally added (implements feature #11)
3187:
3188: 2016-09-07 moko
3189:
3190: * src/include/pa_string.h: added StringSplitHelper as friend
3191: (related to feature #11)
3192:
3193: * src/include/pa_string.h: body and langs now protected, not
3194: private to allow inheritance (related to feature #11)
3195:
3196: * src/classes/table.C: lsplit optimized before cloning for
3197: ^table::create with $.encloser[] (related to feature #11)
3198:
3199: * src/classes/table.C: optimizaion: TableControlChars.separators
3200: added and used (related to feature #11)
3201:
3202: * src/classes/table.C: spelling:
3203:
3204: TableSeparators -> TableControlChars column -> separator
3205: separators -> control_chars
3206:
3207: 2016-09-06 moko
3208:
3209: * src/main/pa_string.C: whitespace
3210:
3211: * src/main/pa_string.C: whitespace
3212:
3213: 2016-09-01 moko
3214:
3215: * tests/: 347-curl.html, results/347-curl.processed: to make tests
3216: results OS-independent
3217:
3218: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
3219: compiler (related to feature #1042)
3220:
3221: 2016-08-15 moko
3222:
3223: * src/include/pa_string.h: whitespace
3224:
3225: * src/classes/table.C: whitespace
3226:
1.106 moko 3227: 2016-08-05 moko
3228:
3229: * tests/: 344.html, results/344.processed: test for
3230: ^hash::create[$file] added (related to feature #1075)
3231:
3232: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
3233: supported (implements feature #1075)
3234:
3235: 2016-08-04 moko
3236:
3237: * tests/: 341.html, results/341.processed: more code coverage tests
3238:
3239: * tests/: 346-curl.html, results/346-curl.processed: more code
3240: coverage tests for curl
3241:
3242: * tests/: 346-curl.html, results/346-curl.processed: more code
3243: coverage tests for curl
3244:
3245: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
3246: results/223.processed: code coverage tests: $.form[ $.table[] ]
3247: test added
3248:
3249: * tests/: 223-curl.html, results/223-curl.processed: more code
3250: coverage tests for curl
3251:
3252: 2016-08-03 moko
3253:
3254: * src/classes/curl.C: dlink(curl_library) now called not once, but
3255: until it will be loaded, allowing to find existing library.
3256:
3257: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
3258: results/347-curl.processed: more code coverage tests for curl
3259:
3260: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
3261: results/339-curl.processed, results/346-curl.processed: curl
3262: functionality tests
3263:
3264: 2016-08-02 moko
3265:
3266: * tests/: 339.html, results/339.processed: test for tables in
3267: ^file:load[] and ^curl:load[] (commented) added (related to
3268: feature #1042)
3269:
3270: * tests/: 345.html, results/345.processed: code coverage tests for
3271: file class
3272:
3273: * tests/: 344.html, results/344.processed: code coverage tests
3274:
3275: * tests/: 344.html, results/344.processed: mdate removed from
3276: output
3277:
3278: * src/classes/file.C: minor bugfix: is_text should be taked from
3279: fcontent.is_text_mode() if not set (related to feature #1061)
3280:
3281: * tests/: 344.html, results/344.processed: more tests
3282:
3283: * tests/: 343.html, 344.html, results/343.processed,
3284: results/344.processed: tests for ^file::create[ $.from-charset
3285: and $.to-charset ] (related to feature #1061)
3286:
3287: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3288: aset_text_mode argument optimized
3289:
3290: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3291: checkBOM now used in detect_binary_content (related to feature
3292: #1061)
3293:
3294: * src/main/pa_request.C: load_charset no longer required to_upper
3295:
3296: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
3297: preserves original file mode (if no $.mode specified)
3298:
3299: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3300: ^file::create now supports $.from-charset[] and $.to-charset
3301: options (implements feature #1061), automatic transcode is done
3302: if text file is created from binary file and charset is detected.
3303:
3304: 2016-07-30 moko
3305:
3306: * src/classes/table.C: ^t.hash[..;] now supported (related to
3307: feature #1057)
3308:
3309: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
3310: added (related to feature #1057)
3311:
3312: * tests/: 286.html, results/286.processed: code tests coverage
3313:
3314: 2016-07-29 moko
3315:
3316: * src/classes/table.C: table size should be checked inside menu and
3317: foreach (related to feature #858)
3318:
3319: * src/: classes/curl.C, classes/file.C, classes/string.C,
3320: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3321: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
3322: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
3323: charsets.get now does str_upper inside (related to feature #1061)
3324:
3325: * tests/: 342.html, results/342.processed: more code coverage tests
3326:
3327: * tests/: 342.html, outputs/342.processed: table menu code coverage
3328: + foreach test added (related to feature #858)
3329:
3330: * tests/: 341.html, results/341.processed: tests for
3331: ^table.hash[]{code} added + code coverage tests (related to
3332: feature #1057)
3333:
3334: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
3335: value} support (implements feature #1057)
3336:
3337: * src/classes/table.C: whitespace
3338:
3339: 2016-07-28 moko
3340:
3341: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
3342: from URL, if not specified query string removed from url-based
3343: filenames in ^curl:load[] and ^file::load[] (related to feature
3344: #1042)
3345:
3346: 2016-07-27 moko
3347:
3348: * tests/: 340.html, results/340.processed: test for
3349: transcode_text_result=false added (related to issue #1042)
3350:
3351: 2016-07-26 moko
3352:
3353: * src/types/pa_vfile.C: file name should not be empty (if file path
3354: is folder and ends with /) (related to feature #1042)
3355:
3356: * src/main/pa_http.C: whitespace optimizaion
3357:
3358: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3359: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
3360: multiple headers, ^file::load supports headers transcoding
3361: (implements feature #1042)
3362:
3363: 2016-07-25 moko
3364:
3365: * src/include/pa_common.h: PA_DEFAULT added
3366:
3367: 2016-07-22 moko
3368:
3369: * tests/: 338.html, results/338.processed: test for
3370: $date.field(value) added (related to feature #1066)
3371:
3372: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3373: $date.field(value) now supported for y/m/d/h/m/s (implements
3374: feature #1066)
3375:
1.105 moko 3376: 2016-07-21 moko
3377:
3378: * src/: classes/file.C, classes/image.C, include/pa_common.h,
3379: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
3380: arguments removed; image.C - absolute path shown in exception
3381: (implements feature #1071)
3382:
3383: * tests/: 235.html, results/235.processed: test and test result
3384: updated after static boundary in mail and Errors-To: mail header
3385: removed (related to feature #1047)
3386:
3387: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
3388: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
3389: used, static boundary in mail removed, Errors-To: mail header
3390: removed (implements feature #1047)
3391:
3392: 2016-07-20 moko
3393:
3394: * src/: classes/reflection.C, types/pa_vstateless_class.h:
3395: equest.classes(): Value -> VStateless_class, part 3 (related to
3396: issue #1051)
3397:
3398: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
3399: request.classes(): Value -> VStateless_class, part 2 (related to
3400: issue #1051)
3401:
3402: * tests/results/: 224.processed, 323.processed: classes without
3403: methods should not be methoded (related to issue #1051)
3404:
3405: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
3406: main/compile_tools.h, main/pa_request.C: request.classes(): Value
3407: -> VStateless_class, part 1 (related to issue #1051)
3408:
3409: * tests/: 337.html, results/337.processed: test for
3410: ^reflection:fields_reference[] and VHashReference class added
3411: (related to feature #1072)
3412:
3413: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
3414: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
3415: and VHashReference added, allowing ^reflection:fields_reference[]
3416: implementation (closes feature #1072)
3417:
3418: 2016-07-19 moko
3419:
3420: * tests/: 323.html, results/323.processed: we want to see
3421: "methoded"
3422:
3423: * tests/: 336.html, results/336.processed: test for $BASE:property
3424: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
3425: #1059)
3426:
3427: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
3428: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
3429: somebody_entered_some_class, $BASE:property works again,
3430: ^BASE:method[] bugs fixed (fixes bug #1059)
3431:
3432: 2016-07-14 moko
3433:
3434: * tests/: 335.html, results/335.processed: test for feature #1055
3435: added
3436:
3437: * src/classes/hash.C: bugfix: $._default was not copied if empty
3438: feature: ^hash.contains[_default] added (implements feature
3439: #1055)
3440:
3441: 2016-07-13 moko
3442:
3443: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
3444: should not call @autouse (http://www.parser.ru/forum/?id=83480)
3445:
3446: 2016-07-05 moko
3447:
3448: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
3449: in ^hash.foreach (related to feature #1073)
3450:
3451: 2016-07-04 moko
3452:
3453: * tests/: 134.html, 281.html, results/134.processed,
3454: results/281.processed: tests updated after hash blocking removed
3455: (related to feature #1073)
3456:
3457: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
3458: no longer blocks on change during foreach (implements feature
3459: #1073)
3460:
3461: 2016-06-17 moko
3462:
3463: * tests/: 330.html, results/330.processed: try exception source
3464: test added (related to bug in #1062)
3465:
3466: * tests/: 334.html, results/334.processed: Exception stack trace
3467: test added (related to bug in $1062)
3468:
3469: * src/classes/op.C: Exception trace now correctly restored and
3470: errors reported (related to bug #1062)
3471:
1.104 moko 3472: 2016-05-25 moko
3473:
3474: * src/main/compile.y: minor cleanup + beauty
3475:
3476: 2016-05-24 moko
3477:
3478: * tests/: 333.html, results/333.processed: more exceptions testing
3479:
3480: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
3481: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
3482: features #1056, #1026)
3483:
3484: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
3485: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
3486: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
3487: (implements feature #1056)
3488:
3489: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3490: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
3491: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
3492: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
3493: feature #1026)
3494:
3495: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
3496: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
3497: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
3498: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
3499: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
3500: feature #1026)
3501:
3502: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3503: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
3504: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
3505: SYMBOLS_CACHING define implemented (related to feature #1026)
3506:
3507: * src/main/main.vcproj: + ps_symbols
3508:
3509: * src/: include/Makefile.am, include/pa_string.h,
3510: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
3511: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
3512: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3513: types/pa_vstateless_class.C: initial implementation for symbols
3514: cache (related to feature #1026)
3515:
3516: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
3517:
3518: * src/main/pa_globals.C: minor cleanup
3519:
3520: 2016-05-19 moko
3521:
3522: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
3523: (related to feature #1046)
3524:
3525: * tests/: 331.html, results/331.processed: test for
3526: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
3527: (related to feature #1051)
3528:
3529: * src/main/compile.y:
3530: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
3531: (implements feature #1054)
3532:
3533: 2016-05-18 moko
3534:
3535: * src/types/pa_vtable.C, tests/results/324.processed: no more
3536: "column not found" exception for ^table.no-such-method[] (related
3537: to feature #1046)
3538:
3539: * tests/: 261.html, results/261.processed: test added and updated
3540: after feature #1046 implementation
3541:
3542: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
3543: types/pa_vvoid.h: $string.anything works for whitespace strings,
3544: ^string.contains added for hash compatibility, $string.method no
3545: longer returns stting method (implements feature #1046)
3546:
3547: 2016-05-12 moko
3548:
3549: * src/classes/curl.C: content-type response header no longer
3550: ignored (fixes issue #1045)
3551:
3552: * tests/: 330.html, results/330.processed: test for incomplete
3553: finally execution when break occures added (related to issue
3554: #1077)
3555:
3556: * src/classes/op.C: bugfix: Request::skip reset is called before
3557: executing catch and finally code (fixes issue #1062)
3558:
3559: 2016-05-11 moko
3560:
3561: * tests/: 329.html, results/329.processed: test for invalid
3562: ^break[] behavour added (bug #1077)
3563:
3564: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
3565:
3566: 2016-04-24 moko
3567:
3568: * src/types/pa_vstateless_class.h: warning war
3569:
3570: 2016-04-17 moko
3571:
3572: * tests/: 328.html, results/328.processed: test for
3573: ^break(condition) and ^continue(condition) (related to feature
3574: #1063)
3575:
3576: * src/classes/op.C: ^break(condition) and ^continue(condition)
3577: implemented (feature #1063)
3578:
3579: 2016-04-12 moko
3580:
3581: * tests/results/280.processed: ordered hash now used for class
3582: methods and properties (test results updated for feature #1069)
3583:
3584: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
3585: to xdoc.C as under FreeBSD it was inited after and inheritance
3586: failed (related to issue #1051)
3587:
3588: * tests/: 320.html, results/320.processed: xdoc and xnode methods
3589: are printed to check inheritance (related to feature #1051)
3590:
1.103 moko 3591: 2016-04-09 moko
3592:
3593: * tests/results/320.processed: ordered hash now used for class
3594: methods and properties (test results updated for feature #1069)
3595:
3596: * src/types/pa_vstateless_class.h: ordered hash now used for class
3597: methods and properties (implements feature #1069)
3598:
3599: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
3600: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
3601: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
3602: feature #1051)
3603:
3604: 2016-04-07 moko
3605:
3606: * src/main/execute.C: returned Value in .CLASS case for VJunction
3607: (related to feature #1051)
3608:
3609: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
3610: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
3611: string constants deduplication (related to feature #1051)
3612:
3613: * tests/results/224.processed: test result updated (related to
3614: feature #1051)
3615:
3616: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
3617: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
3618: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
3619: types/pa_vstatus.h: classes hash now contains only
3620: VStateless_class derived objects, .CLASS is also allways
3621: VStateless_class derived object (related to feature #1051).
3622:
3623: 2016-04-06 moko
3624:
3625: * tests/results/323.processed: test result updated after feature
3626: #1051 implementation
3627:
3628: * src/: classes/classes.h, classes/op.C, classes/response.C,
3629: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3630: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
3631: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
3632: types/pa_vresponse.C, types/pa_vresponse.h,
3633: types/pa_vstateless_class.h: base -> methoded_donor for static
3634: classes, type() moved from VStateless_class to VClass and
3635: Methoded (implements feature #1051)
3636:
3637: 2016-04-04 moko
3638:
3639: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
3640: beauty: put_class added (related to feature #1051)
3641:
3642: 2016-04-01 moko
3643:
3644: * tests/results/: 175.processed, 192.processed, 224.processed,
3645: 229.processed, 244.processed, 246.processed, 316.processed: test
3646: results updated as class.type() removed from error messages, only
3647: type() left (related to feature #1051)
3648:
3649: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
3650: classes/op.C, classes/reflection.C, main/compile.y,
3651: main/compile_tools.h, main/execute.C, main/pa_request.C,
3652: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
3653: types/pa_vmethod_frame.h, types/pa_vobject.h,
3654: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
3655: from VStateless_class, type() is used instead (related to feature
3656: #1051)
3657:
3658: * src/classes/mail.C: old logic restored.
3659:
3660: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
3661: classes/classes.h, classes/curl.C, classes/date.C,
3662: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
3663: classes/hashfile.C, classes/image.C, classes/inet.C,
3664: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3665: classes/memcached.C, classes/memory.C, classes/reflection.C,
3666: classes/regex.C, classes/response.C, classes/string.C,
3667: classes/table.C, classes/xdoc.C, classes/xnode.C,
3668: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
3669: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
3670: feature #1051)
3671:
3672: 2016-03-30 moko
3673:
3674: * tests/: 327.html, results/224.processed, results/327.processed:
3675: test for TZ specification in ^date::create[], TZ is kept during
3676: ^date::create[$dt] (related to feature #1048)
3677:
3678: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
3679: ^date::create[], TZ is kept during ^date::create[$dt] (implements
3680: feature #1048)
3681:
3682: 2016-03-29 moko
3683:
3684: * tests/: 315.html, results/315.processed: test for timezone format
3685: +HHmm added (related to feature #1065)
3686:
3687: * src/classes/date.C: timezone format +HHmm now supported
3688: (implements feature #1065)
3689:
3690: 2016-03-28 moko
3691:
3692: * tests/: 202.html, results/131.processed, results/202.processed,
3693: results/224.processed, results/256.processed,
3694: results/315.processed: test results updated after %.2d now
3695: default for hours offset in iso-string (was %2d), test for
3696: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3697: added (related to feature #1065)
3698:
3699: 2016-03-27 moko
3700:
3701: * src/types/pa_vdate.C: '+' sign for zero offset (related to
3702: feature #1065)
3703:
3704: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3705: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3706: added (implements feature #1065)
3707:
3708: 2016-03-24 moko
3709:
3710: * tests/: 202.html, results/202.processed: test $date.week added
3711: (related to bug #1067)
3712:
3713: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
3714: date (fix for bug #1067)
3715:
3716: 2016-03-10 moko
3717:
3718: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
3719:
1.102 moko 3720: 2015-12-07 moko
3721:
3722: * tests/: 326.html, results/326.processed: test for .CLASS &
3723: .CLASS_NAME optimization added (related to feature #844)
3724:
3725: 2015-11-17 moko
3726:
3727: * tests/: 323.html, results/323.processed: order added
3728:
3729: * tests/: 325.html, results/325.processed: double range test added
3730: (related to bug #1049)
3731:
3732: 2015-11-16 moko
3733:
3734: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
3735: added to disallow NaN and Infinity (fixes bug #1049)
3736:
3737: 2015-11-11 moko
3738:
3739: * tests/324.html: parser 3.4.3 execution support added (related to
3740: feature #1017)
3741:
3742: * tests/: 324.html, results/324.processed: test for
3743: GET_ELEMENT4CALL feature added (feature #1017)
3744:
1.101 moko 3745: 2015-10-29 moko
3746:
3747: * operators.txt: updated for 3.4.4
3748:
3749: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
3750:
3751: * src/main/pa_exec.C: get_exit_status implemented for Windows
3752: (related to bug #1043)
3753:
3754: 2015-10-28 moko
3755:
3756: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
3757: hangup during ^file::exec (fixes bug #1043)
3758:
1.100 moko 3759: 2015-10-27 moko
3760:
3761: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
3762:
1.99 moko 3763: 2015-10-26 moko
3764:
1.100 moko 3765: * tests/322.html, src/classes/reflection.C: arguments reorder
3766: (related to issue #1041)
3767:
3768: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
3769: Copyright year updated
3770:
1.99 moko 3771: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
3772: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
3773: classes/form.C, classes/hash.C, classes/hashfile.C,
3774: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
3775: classes/mail.C, classes/math.C, classes/memcached.C,
3776: classes/memory.C, classes/op.C, classes/reflection.C,
3777: classes/regex.C, classes/response.C, classes/string.C,
3778: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
3779: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
3780: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
3781: include/pa_config_fixed.h, include/pa_config_includes.h,
3782: include/pa_dictionary.h, include/pa_dir.h,
3783: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
3784: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
3785: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
3786: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
3787: include/pa_request_charsets.h, include/pa_request_info.h,
3788: include/pa_sapi.h, include/pa_socks.h,
3789: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
3790: include/pa_stack.h, include/pa_string.h,
3791: include/pa_stylesheet_connection.h,
3792: include/pa_stylesheet_manager.h, include/pa_table.h,
3793: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
3794: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
3795: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
3796: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
3797: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
3798: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
3799: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
3800: main/compile.y, main/compile_tools.C, main/compile_tools.h,
3801: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
3802: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
3803: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
3804: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
3805: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
3806: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
3807: main/pa_string.C, main/pa_stylesheet_connection.C,
3808: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
3809: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
3810: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
3811: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
3812: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
3813: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
3814: targets/isapi/parser3isapi.C, types/pa_junction.h,
3815: types/pa_method.h, types/pa_property.h, types/pa_value.C,
3816: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
3817: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
3818: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
3819: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
3820: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
3821: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
3822: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
3823: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
3824: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
3825: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
3826: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
3827: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3828: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
3829: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
3830: types/pa_vresponse.C, types/pa_vresponse.h,
3831: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
3832: types/pa_vstateless_object.h, types/pa_vstatus.C,
3833: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
3834: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
3835: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3836: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
3837: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
3838:
3839: * src/targets/cgi/parser3.C: year updated
3840:
3841: * src/classes/reflection.C: VS2003 compatibility fixed (related to
3842: issue #1041)
3843:
3844: * tests/: 323.html, results/323.processed: test for base classes
3845: added
3846:
3847: * tests/: 261.html, results/261.processed: updated after better
3848: error reporting done for $string.key exception
3849:
3850: * src/types/pa_vstring.h: better error report for $string.key
3851: exception
3852:
3853: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
3854: copied as VObject::get_element4call to remove extra virtual call
3855:
3856: * tests/: 322.html, results/322.processed: test for
3857: ^reflection:is[] added (related to feature #1041)
3858:
3859: * src/classes/reflection.C: ^reflection:is empty value is void
3860: (related to feature #1041)
3861:
3862: * src/classes/reflection.C:
3863: ^reflection:is[class_name|code|method;[context;]element_name]
3864: added (implements feature #1041)
3865:
3866: 2015-10-24 moko
3867:
3868: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
3869:
1.98 moko 3870: 2015-10-22 moko
3871:
3872: * tests/: 321.html, results/321.processed: test for
3873: ^reflection:method_info[] file detection added
3874:
3875: * tests/: 320.html, results/320.processed: test for
3876: ^reflection:class_by_name[class_name] added (related to feature
3877: #993)
3878:
3879: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
3880: added (implements feature #993)
3881:
3882: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
3883: (related to feature #1017)
3884:
3885: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
3886: added (related to issue #1039)
3887:
3888: * src/main/pa_request.C: ^throw origin fixed (related to feature
3889: #1039)
3890:
3891: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
3892: for VDate
3893:
3894: * tests/results/182.processed: updated after feature #1038
3895: implemented
3896:
3897: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
3898: compile-time exception origin added (test for feature #1039)
3899:
3900: * src/: include/pa_request.h, main/compile.C, main/compile.y,
3901: main/pa_request.C: exception unification: compile-time exceptions
3902: now have origin, @USE origins also tracked (implements feature
3903: #1039)
3904:
3905: 2015-10-20 moko
3906:
3907: * src/main/pa_request.C: cleanup
3908:
3909: 2015-10-15 moko
3910:
3911: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
3912:
3913: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
3914: types/pa_vtable.C: new feature: no more $table.method and
3915: $hash.method, aliases for _at, _count, _key (related to feature
3916: #1017)
3917:
1.97 moko 3918: 2015-10-14 moko
3919:
1.98 moko 3920: * tests/: 317.html, results/317.processed: test for
3921: ^string.unescape[] added (related to feature #120)
3922:
1.97 moko 3923: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
3924: defined" bug (described in issue #1036)
3925:
3926: * tests/: 247.html, results/247.processed: test for checkBOM added
3927: (test for bug #1037)
3928:
3929: * src/: include/pa_charsets.h, main/pa_charsets.C,
3930: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
3931: it's not enforced, skips BOM signature if it complies charset
3932: (fixes bug #1037)
3933:
3934: 2015-10-13 moko
3935:
3936: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
3937: linking
3938:
3939: * src/classes/inet.C: vs2003 compilation fix
3940:
3941: * src/classes/math.C: warning war
3942:
3943: * src/lib/punycode/pa_punycode.c: warning war
3944:
3945: 2015-10-12 moko
3946:
3947: * src/lib/punycode/pa_punycode.c: warning war
3948:
3949: * parser3.sln: moved parser3 first, to make it default startup
3950: project
3951:
3952: * buildall: parser "mirror" now used for external libs sources
3953: (implements feature #1036)
3954:
3955: * buildall: most external libs are updated to their current
3956: versions (related to feature #1036)
3957:
3958: * src/classes/image.C: more tags added
3959:
3960: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
3961:
3962: 2015-10-11 moko
3963:
3964: * src/classes/curl.C: minor optimization (related to feature #1035)
3965:
3966: 2015-10-09 moko
3967:
3968: * src/classes/curl.C: pa_strdup added for strings from curl
3969: (related to feature #1035)
3970:
3971: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
3972: ULLONG_MAX definition
3973:
3974: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
3975: (implements feature #1035)
3976:
3977: * src/main/pa_charset.C: String::Body(String::C) used
3978:
3979: * src/main/pa_charset.C: exceptions unified
3980:
3981: * src/: include/pa_charset.h, main/pa_charset.C: declarations
3982: unified
3983:
3984: * src/: classes/file.C, classes/image.C, classes/mail.C,
3985: classes/op.C, classes/xdoc.C, classes/xnode.C,
3986: include/pa_string.h, main/pa_request.C, main/pa_string.C,
3987: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
3988: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
3989: String::Body(String::C) constructor added (related to bug #957)
3990:
3991: * src/classes/file.C: minor optimization
3992:
3993: * src/include/pa_hash.h: hash.get(char*) added, to minimize
3994: Cord(char*) autocreation (related to bug #957)
3995:
3996: * src/: classes/string.C, main/untaint.C: minor optimizations
3997:
3998: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
3999: String(char*, Lang, length) removed, String(C(), Lang) used
4000: instead (related to bug #957)
4001:
4002: 2015-10-08 moko
4003:
4004: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
4005: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
4006: main/untaint.C: Now char * is converted to CORD only using
4007: AS_CORD() to check for empty cord bug (fixes bug #957)
4008:
4009: * src/include/pa_hash.h: fixed compilation without
4010: HASH_CODE_CACHING
4011:
4012: * src/classes/string.C:
4013: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
4014: feature #120)
4015:
4016: * src/main/pa_common.C: reduce js flags checks count (related to
4017: feature #120)
4018:
1.96 moko 4019: 2015-10-07 moko
4020:
4021: * tests/: 275.html, results/275.processed: test modified after
4022: unsigned long long int support implemented (feature #1034)
4023:
4024: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
4025: pa_atoul added for unsigned long long int support
4026:
4027: 2015-10-06 moko
4028:
4029: * src/types/pa_vdate.C: INT_MAX used
4030:
4031: 2015-10-03 moko
4032:
4033: * tests/: 302.html, results/302.processed: test for bug #1023
4034: (\u2028, \u2029 escaping) added
4035:
4036: * src/main/untaint.C: \u2028, \u2029 are now escaped in
4037: json:string[] (fixes bug #1023)
4038:
4039: 2015-09-29 moko
4040:
4041: * tests/305.html: try-catch added for OS without ipv6 support
4042:
4043: * src/lib/json/pa_json.C: more unique prefixes for Solaris
4044: compilation
4045:
4046: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
4047: main/execute.C, types/pa_value.h, types/pa_vhash.h,
4048: types/pa_vtable.C, types/pa_vtable.h: get_element4call
4049: implemented to distinguish ^hash.method from $hash.field
4050: (implements feature #1017)
4051:
4052: * src/lib/punycode/pa_punycode.c: warning war
4053:
4054: * src/include/pa_config_includes.h: warning war
4055:
4056: * src/include/pa_config_includes.h: pragma warning actualized a bit
4057:
4058: * src/include/pa_config_includes.h: warning war
4059:
4060: * src/include/pa_hash.h: clang compilation fix
4061:
4062: 2015-09-27 moko
4063:
4064: * src/main/compile.tab.C: Bison 3 is now default
4065:
4066: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
4067:
4068: 2015-09-25 moko
4069:
4070: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
4071: works with undefined HASH_ORDER (related to feature #196)
4072:
4073: 2015-09-24 moko
4074:
4075: * tests/: 027.html, results/027.processed: test modified to test
4076: ^hash.sort (feature #196)
4077:
4078: * src/: classes/hash.C, include/pa_hash.h:
4079: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
4080: added (implements feature #196)
4081:
4082: * tests/: 316.html, results/316.processed: Added test for bug #1025
4083: (exception handling in non-cached ^cache), plus for "it does not
4084: have logical value" and "$exception.handled value must be either
4085: boolean or string 'cache'" exceptions.
4086:
4087: * src/classes/op.C: ^cache: exceptions now handled in non-cached
4088: code (fixes bug #1025)
4089:
1.95 moko 4090: 2015-09-23 moko
4091:
4092: * src/classes/table.C: warning war
4093:
4094: * src/: classes/math.C, types/pa_vcookie.C: warning war
4095:
4096: * src/classes/file.C: warning war
4097:
4098: * src/: include/pa_table.h, main/pa_table.C: warning war
4099:
4100: * src/: main/pa_request.C, classes/date.C: warning war
4101:
4102: * src/: types/pa_vdate.C, classes/op.C: warning war
4103:
4104: * tests/: 122.html, results/122.processed: win sync: to remove
4105: differences with OS that doesn't keep timezone change history
4106:
4107: * src/types/pa_vdate.C: tzset() should be called in Windows after
4108: TZ change (related to feature #36)
4109:
4110: * tests/: 075.html, results/075.processed: win sync: to remove
4111: differences with OS that doesn't keep timezone change history
4112:
4113: * tests/: 315.html, results/315.processed: win sync: to remove
4114: differences with OS that doesn't keep timezone change history
4115:
4116: * tests/: 256.html, results/256.processed: win sync: to remove
4117: differences with OS that doesn't keep timezone change history
4118:
4119: * tests/: 124.html, results/124.processed: win results sync: to
4120: avoid hitting time change hole.
4121:
4122: * src/types/pa_vdate.C: static returned. :)
4123:
4124: 2015-09-22 moko
4125:
4126: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
4127:
4128: * tests/results/131.processed: more tests for feature #1032
4129:
4130: * src/classes/date.C: minor fix related to feature #1032
4131:
4132: * operators.txt: ISO date creation documented (related to feature
4133: #1032)
4134:
4135: * operators.txt: iso-string documented (related to feature #1032)
4136:
4137: * tests/: 315.html, results/315.processed: more tests added
4138: (related to feature #1032)
4139:
4140: * tests/: 131.html, results/131.processed: date range checks
4141: updated (related to feature #36)
4142:
4143: * tests/: 315.html, results/057.processed, results/315.processed:
4144: test added for ISO date support (related to issue #315)
4145:
4146: * src/classes/date.C: more readable exceptions in date creation
4147: (related to ticket #1032)
4148:
4149: 2015-09-18 moko
4150:
4151: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
4152: added (related to issue #1032)
4153:
4154: * tests/results/256.processed, src/classes/json.C: iso-string
4155: documented (related to issue #1032)
4156:
4157: * tests/: 256.html, results/256.processed: ISO date check added
4158: (related to issue #1032)
4159:
4160: * tests/: 057.html, results/057.processed, results/224.processed:
4161: tests results updated after ISO date support implemented (related
4162: to feature #1032)
4163:
4164: * src/: classes/date.C, classes/image.C, types/pa_value.h,
4165: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
4166: ^date::create[string] constructor formalized, ^date.iso-string[]
4167: added (implements feature #1032)
4168:
4169: 2015-09-05 moko
4170:
4171: * operators.txt: actualized
4172:
4173: * operators.txt: date changes documented (related to ticket #36)
4174:
4175: 2015-09-04 moko
4176:
4177: * src/types/pa_vdate.C: warning war
4178:
4179: * src/: classes/op.C, types/pa_vhashfile.C: warning war
4180:
4181: 2015-09-03 moko
4182:
4183: * tests/results/096.processed: test result updated for 0..9999 year
4184: date range support (related to feature #36)
4185:
4186: * tests/: 314.html, results/314.processed: test for
4187: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
4188: bug #1031)
4189:
4190: * src/classes/string.C: Static calls fixed for ^string:base64[],
4191: ^string:idna[], ^string:js-escape[] (closes bug #1031)
4192:
1.116 moko 4193: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
4194: configure.in -> configure.ac
1.95 moko 4195:
1.116 moko 4196: * configure, configure.in, src/include/pa_config_auto.h.in: more
4197: correct timezone check for FreeBSD Warning war: configure.in ->
4198: configure.ac
1.95 moko 4199:
4200: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 4201: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
4202: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
4203: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
4204: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
4205: src/main/Makefile.am, src/targets/apache/Makefile.am,
4206: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 4207: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
4208: check added
4209:
4210: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
4211:
4212: * tests/results/: 124.processed, 224.processed: test resuls updated
4213: for new date implementation (related to feature #36)
4214:
4215: * src/: classes/date.C, classes/image.C, include/pa_common.h,
4216: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
4217: types/pa_vdate.h: new double date implementation with internal
4218: support for extended 0..9999 year range, default timezone support
4219: (related to feature #36)
4220:
4221: 2015-08-28 moko
4222:
4223: * src/types/pa_vmail.C: fixed $mail:received.date calculations
4224: (fixes bug #1030)
4225:
4226: 2015-08-21 moko
4227:
4228: * src/classes/inet.C: snprintf size "bug" commented
4229:
4230: * src/main/pa_common.C: snprintf comments updated
4231:
4232: 2015-08-16 moko
4233:
4234: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
4235:
4236: 2015-08-11 moko
4237:
4238: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4239: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
4240: can be null (fixes bug #1029)
4241:
4242: 2015-08-06 moko
4243:
1.116 moko 4244: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
4245: pa_vdate.C added
1.95 moko 4246:
4247: 2015-08-05 moko
4248:
4249: * tests/: 313.html, results/313.processed: test for
4250: ^table.count[columns] and ^table.flip[] with nameless tables
4251: (feature #1003)
4252:
4253: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4254: max_cell added, now ^table.count[columns] and ^table.flip[] works
4255: correctly for nameless tables (implements feature #1003)
4256:
4257: 2015-08-03 moko
4258:
4259: * tests/312.html: test for ^table.append[$hash] and
4260: ^table.insert[$hash] added (related to feature #1028)
4261:
4262: * src/classes/table.C: ^table.append[$hash] and
4263: ^table.insert[$hash] now supported (implements feature #1028)
4264:
4265: * tests/: 312.html, results/312.processed: test row copy in
4266: ^table.hash[; $.type[table] ] added (related to feature #1016)
4267:
4268: * src/classes/table.C: row copy now created in ^table.hash[;
4269: $.type[table] ] (related to feature #1016)
4270:
4271: 2015-07-29 moko
4272:
4273: * tests/: 312.html, results/312.processed: test for ^table.delete[]
4274: added (related to feature #1016)
4275:
4276: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4277: ^table.delete[] added to delete current row (related to feature
4278: 1016)
4279:
4280: 2015-07-28 moko
4281:
4282: * tests/: 312.html, results/312.processed: test for
4283: $table.column[value] and ^table.insert{row} (related to feature
4284: #1016)
4285:
4286: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
4287: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
4288: ^table.insert{row} are now implemented (feature #1016)
4289:
4290: * src/include/pa_array.h: Optimization: bool reverse removed from
4291: append(), insert() added, memmove arguments order in remove()
4292: fixed (related to feature #1016)
4293:
4294: 2015-07-23 moko
4295:
4296: * src/classes/json.C: tainted json and empty json exception added
4297: (implements feature #1015)
4298:
4299: * tests/: 311.html, results/311.processed: empty json and tainted
4300: json exception test added (related to issue #1015)
4301:
4302: 2015-07-22 moko
4303:
4304: * tests/: 311.html, results/311.processed: test for UTF-8
4305: processing added
4306:
4307: * tests/: 311.html, results/311.processed: test for
4308: json_exception_with_source added (related to issue #394)
4309:
4310: * src/classes/json.C: json_exception_with_source added (implements
4311: feature #394)
4312:
4313: 2015-06-29 moko
4314:
4315: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
4316: directories are now correctly determined if _d_type == DT_UNKNOWN
4317: (closes bug #1027)
4318:
4319: 2015-06-10 moko
4320:
4321: * src/types/pa_vxnode.h: extern "C" not requred and causes build
4322: error if libxml has LIBXML_ICU_ENABLED.
4323:
4324: 2015-06-04 moko
4325:
4326: * tests/099.html: ups, reverting
4327:
4328: * tests/: 099.html, 309.html, 310.html, results/309.processed,
4329: results/310.processed: tests for $response:body[ $.file[] ] and
4330: $response:last-modified added
4331:
4332: * src/main/pa_request.C: last-modified check fixed
4333:
4334: 2015-06-03 moko
4335:
4336: * tests/: 204.html, 205.html, 293.html, results/204.processed,
4337: results/205.processed, results/293.processed: $response:headers
4338: logging added (tests for feature #1007)
4339:
4340: * src/: include/pa_common.h, include/pa_request.h,
4341: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
4342: $response:headers are now in uppercase (closes feature #1007)
4343:
4344: 2015-06-02 moko
4345:
4346: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
4347: build errors reverted for clang compatibility
4348:
4349: 2015-06-01 moko
4350:
4351: * src/include/pa_memory.h: -pedantic build errors fixed
4352:
4353: * src/classes/math.C: -pedantic build error fixed
4354:
4355: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
4356:
4357: 2015-05-31 moko
4358:
4359: * src/classes/table.C: USE_STRINGSTREAM optimized
4360:
4361: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
4362: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
4363: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
4364: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
4365: types/pa_vxnode.h: warning war (-pedantic flag)
4366:
4367: 2015-05-28 moko
4368:
4369: * tests/: 308.html, results/308.processed: test for
4370: ^table::create[$t;], etc work added (related to bug #975)
4371:
4372: * src/classes/table.C: check_option_param removed,
4373: ^table::create[$t;], etc now works (fixes bug #975)
4374:
4375: 2015-05-27 moko
4376:
4377: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
4378: (Debian jessie) fixed (closes issue #1024)
4379:
4380: * tests/Makefile: sort added as in Debian jessie list become
4381: unsorted
4382:
4383: 2015-05-18 moko
4384:
4385: * tests/: 201.html, results/201.processed: test for
4386: ^string.trim[what] feature #1022
4387:
4388: * src/classes/string.C: ^string.trim[what] now supported,
4389: implements feature #1022
4390:
4391: 2015-05-17 moko
4392:
4393: * tests/results/185.processed: test result updated as feature #1021
4394: implemented (left/right accept negative parameter)
4395:
4396: * src/classes/string.C: left/right now accept negative parameter
4397: (implements feature #1021)
4398:
4399: 2015-05-08 moko
4400:
4401: * src/classes/math.C: isalnum -> pa_isalnum
4402:
4403: * src/main/execute.C: optimization in getter-junction processing
4404: (related to issue #997)
4405:
4406: 2015-05-07 moko
4407:
4408: * tests/: 307.html, results/307.processed: test for issue #997
4409: added
4410:
4411: * src/main/execute.C: process_getter result now checked if junction
4412: returned (closes issue #997)
4413:
4414: * tests/: 305.html, results/305.processed: sort added to ignore
4415: different order
4416:
4417: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
4418: assignment (closes issue #994)
4419:
4420: * tests/: 306.html, results/306.processed: test for issue #994
4421: added
4422:
4423: * tests/: 303.html, results/303.processed: two more errors tested
4424:
4425: 2015-05-06 moko
4426:
4427: * tests/: 305.html, results/305.processed: test for name2ip &
4428: ip2name added (related to feature #992)
4429:
4430: * tests/: 303.html, 304.html, results/303.processed,
4431: results/304.processed: tests for idna conversion added (related
4432: to issue #849)
4433:
4434: 2015-05-02 moko
4435:
4436: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
4437: implemented
4438:
4439: 2015-04-30 moko
4440:
4441: * src/main/pa_http.C: idna_host added, related to issue #849
4442:
4443: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
4444: (related to issue #849)
4445:
4446: 2015-04-24 moko
4447:
4448: * src/types/pa_vjunction.C: warning war
4449:
4450: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
4451: unification
4452:
4453: * src/lib/punycode/pa_idna.c: warning war
4454:
4455: 2015-04-22 moko
4456:
4457: * src/main/main.vcproj: punycode include path added
4458:
4459: * src/lib/punycode/pa_idna.c: windows compile error fixed
4460:
4461: * src/lib/punycode/pa_idna.c: warning war
4462:
4463: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
4464: project file added
4465:
4466: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
4467:
4468: * src/include/pa_memory.h: warning war
4469:
4470: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
4471: ^string:idna[xn--...], ^string.idna[] - idna conversion support
4472: implemented (related to feature #849)
4473:
4474: * configure.in, src/main/Makefile.am,
4475: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
4476: libpunycode added in Unix
4477:
4478: 2015-04-21 moko
4479:
4480: * configure.in: large files support
4481:
4482: 2015-04-15 moko
4483:
4484: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
4485: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
4486: pa_punycode.h: initial version for punycode/idna support library
4487: (ticket #849)
4488:
4489: 2015-04-08 moko
4490:
4491: * src/: classes/curl.C, classes/date.C, classes/file.C,
4492: classes/image.C, classes/mail.C, classes/reflection.C,
4493: classes/string.C, classes/xnode.C, include/pa_request.h,
4494: include/pa_string.h, include/pa_stylesheet_connection.h,
4495: main/compile.y, main/compile_tools.h, main/execute.C,
4496: main/pa_common.C, main/pa_request.C, main/pa_string.C,
4497: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
4498: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
4499: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
4500: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
4501: clang compiler warnings (closes issue #1018)
4502:
4503: * src/include/pa_string.h: String::Body comparation operators with
4504: char * added (related to issue #958)
4505:
4506: 2015-04-07 moko
4507:
4508: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
4509: pa_malloc/pa_free to remove system malloc/free usage (related to
4510: issue #1018)
4511:
4512: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
4513: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
4514: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
4515: main/pa_http.C, main/pa_request.C, main/pa_string.C,
4516: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
4517: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
4518: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
4519: malloc/strdup/free replaced with pa_ version and checks for
4520: accidental use of non-pa_ version added (related to issue #1018)
4521:
4522: 2015-04-03 moko
4523:
4524: * buildall: pcre-8.33 -> pcre-8.36
4525:
4526: * src/: main/compile.y, classes/form.C, classes/mail.C,
4527: classes/op.C, classes/string.C, main/compile.tab.C,
4528: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
4529: main/pa_sql_driver_manager.C, types/pa_vfile.C,
4530: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
4531: ticket #958)
4532:
4533: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
4534: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4535: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
4536: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
4537: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
4538: $request:headers, $request:method added (implements feature
4539: #1007)
4540:
4541: 2015-03-17 misha
4542:
4543: * tests/302.html: - test for
4544: ^json:string[...;$._default[method-name]]
4545:
4546: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4547: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
4548: option $._default[method-name] is specified in ^json:string[], a
4549: method with specified name will be called for classes/objects
4550: serialization ( new feature: #982 )
4551:
4552: 2015-03-16 misha
4553:
4554: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
4555: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
4556: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
4557: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
4558: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
4559: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
4560: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4561: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
4562: types/pa_vrequest.h, types/pa_vstateless_class.C,
4563: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4564: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
4565: $var.CLASS_NAME now have special opcodes. This can be switched
4566: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
4567: on pa_opcode.h ( new feature: #844 )
4568:
4569: 2015-03-15 misha
4570:
4571: * tests/075.html: - test for $response:header[]
4572:
4573: * src/types/pa_vresponse.C: - $response:header[] deletes header
4574: that was set earlie ( new feature: #1001 )
4575:
4576: 2015-03-12 misha
4577:
4578: * tests/246.html: - more tests for ^hash._at[]
4579:
4580: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
4581: accepts second param [key|value|hash] ( new feature: #1012 )
4582:
4583: 2015-03-09 moko
4584:
4585: * src/types/pa_vmail.C: exception for everything but
4586: $mail:received, closes issue #1011
4587:
4588: 2015-02-20 moko
4589:
4590: * tests/: 275.html, results/275.processed: hex detection in
4591: pa_atoui fix test (closes issue #1010)
4592:
4593: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
4594: issue #1010)
4595:
4596: 2015-02-17 moko
4597:
4598: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
4599: tainted.
4600:
4601: 2015-02-03 misha
4602:
4603: * tests/301.html: - test for ^json:string($double) causes
4604: exception. bugfix: #1008
4605:
4606: * src/classes/json.C: - ^json:string($double) causes exception.
4607: bugfix: #1008
4608:
4609: * tests/014.html: - updated for work with ^hash.delete[]
4610:
4611: 2015-01-12 misha
4612:
4613: * src/: classes/form.C, include/pa_common.h,
4614: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
4615: types/pa_vform.h: - supports body with PUT method as well ( new
4616: feature: #1006 )
4617:
4618: * src/classes/file.C: - warnings war
4619:
4620: 2015-01-11 misha
4621:
4622: * tests/300.html: - test for ^hash.delete[] is added
4623:
4624: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
4625: feature: #989 ) - tiny optimization in intersects
4626:
4627: 2015-01-06 moko
4628:
4629: * src/types/pa_vmail.C: file names transcode added, to and cc added
4630: with transcode, attachments detection fixed
4631:
4632: * src/main/pa_request.C: filling mail received after cgi/auto.p
4633: load to allow charset switch (related to issue #996)
4634:
4635: 2014-12-31 moko
4636:
4637: * src/types/pa_vmail.C: from and subject now transcoded if not
4638: UTF-8 source charset (fixes issue 996)
4639:
4640: * src/main/pa_exception.C: fixed string from stack bug (closes
4641: issue #1000)
4642:
4643: 2014-12-11 misha
4644:
4645: * src/types/pa_vhashfile.C: - check if key is not empty before
4646: access ( bug fix: #1005 )
4647:
4648: 2014-11-13 misha
4649:
4650: * src/main/compile.y: - PC.append does not reset to false while
4651: creating a new class. bugfix: #990
4652:
4653: * tests/299.html: - test for creation class after working with
4654: partial class (create+append)
4655:
4656: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
4657: #995
4658:
4659: * tests/232.html: - test for @get[def] added
4660:
4661: 2014-10-12 moko
4662:
4663: * src/lib/pcre/pcre_internal.vcproj: correct path
4664:
4665: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
4666: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
4667: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
4668: targets/apache/ApacheModuleParser3.vcproj,
4669: targets/apache/ApacheModuleParser3Core.vcproj,
4670: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4671: types/types.vcproj: project GUID inserted in *.vcproj for correct
4672: conversion in newer VS versions
4673:
4674: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
4675: pcre_internal.vcproj added
4676:
4677: 2014-08-28 moko
4678:
4679: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
4680: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
4681: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
4682:
4683: 2014-06-30 misha
4684:
4685: * tests/298.html: - tests for ^reflection:def[class;className]
4686: added
4687:
4688: * src/classes/reflection.C: - ^reflection:def[class;className]
4689: added ( new feature: #918 )
4690:
4691: 2014-06-29 misha
4692:
4693: * src/classes/table.C: - ^table::create[unsupported data] -
4694: exception comment changed to "body must be table or code" ( bug
4695: fix: #951 )
4696:
4697: * tests/: 261.html, results/261.processed: - tests for
4698: ^json:string[...;$.void[null|string]] added
4699:
4700: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
4701: option $.void[string|null] added to ^json:string[...] ( new
4702: feature: #952 )
4703:
4704: 2014-06-28 moko
4705:
4706: * src/classes/curl.C: $.charset now processed before other curl
4707: options (closes issue #980)
4708:
4709: 2014-05-23 misha
4710:
4711: * src/classes/json.C: - bug fix: #987
4712:
4713: 2014-05-04 misha
4714:
4715: * tests/: 253.html, 253_json.txt: - test for
4716: ^json:parse[$.int(false)] is added
4717:
4718: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
4719: default true). The option is similar to $.double(bool) but for
4720: integers.
4721:
4722: 2014-05-01 moko
4723:
4724: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
4725: #12 )
4726:
4727: 2014-04-16 moko
4728:
4729: * src/main/pa_http.C: response-charset option should finally work
4730: now (fix for issue #867)
4731:
4732: * src/main/pa_http.C: response-charset option should work now (fix
4733: for issue #867)
4734:
4735: 2014-03-07 moko
4736:
4737: * buildall: libgc moved
4738:
4739: * buildall: libgc moved
4740:
4741: 2013-12-29 moko
4742:
4743: * src/classes/string.C: ^string:js-unescape result now tainted,
4744: closes issue #966
4745:
4746: * tests/: 186.html, results/186.processed: ^string:js-unescape
4747: result now tainted, issue #966
4748:
4749: 2013-12-03 moko
4750:
4751: * src/: classes/memcached.C, types/pa_vmemcached.C,
4752: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
4753: option was added for http://www.parser.ru/forum/?id=79343
4754:
4755: * src/classes/file.C: bugfix for
4756: http://www.parser.ru/forum/?id=79337
4757:
4758: 2013-11-05 moko
4759:
4760: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
4761:
4762: * src/main/pa_globals.C: spelling fixed
4763:
4764: 2013-10-29 moko
4765:
4766: * src/lib/json/json.vcproj: json.c -> pa_json.C
4767:
4768: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
4769: #892
4770:
4771: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
4772: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
4773: exceptions to be thrown thougth json library), related to issue
4774: #892
4775:
4776: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
4777: related to issue #896
4778:
4779: 2013-10-24 moko
4780:
4781: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
4782:
4783: 2013-10-23 moko
4784:
4785: * README: actualization
4786:
4787: 2013-10-22 moko
4788:
4789: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
4790: compatibility patch from Sergey Kirpichev
4791:
4792: * tests/: 297.html, results/297.processed: non-working getter fix
4793: test for issue #948
4794:
4795: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
4796: called when saving value of $match variable in ^string.match[] to
4797: increase compatibility (related to issue #948).
4798:
4799: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
4800: usage optimization
4801:
4802: 2013-10-21 moko
4803:
4804: * tests/: 182.html, results/182.processed: local path removed for
4805: compatibility
4806:
4807: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
4808: results/244.processed, results/253.processed,
4809: results/254.processed, results/275.processed,
4810: results/281.processed: try_catch -> try-catch
4811:
4812: * tests/: 288.html, 294.html, 296.html, results/288.processed,
4813: results/294.processed, results/296.processed: try_catch ->
4814: try-catch
4815:
4816: 2013-10-20 moko
4817:
4818: * tests/: 296.html, results/296.processed: test for xsl exception
4819: for issue #938 added.
4820:
4821: * src/: include/pa_xml_exception.h,
4822: main/pa_stylesheet_connection.C: forgotten to be replaced
4823: XmlException is now replaced (once again closes issue #938)
4824:
4825: 2013-10-18 moko
4826:
4827: * buildall: disable clock_gettime detection to avoid librt linking
4828: (which in turn depends on libpthread), related to issue #943
4829:
4830: 2013-10-18 misha
4831:
4832: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
4833: lib/smtp/smtp.vcproj, main/main.vcproj,
4834: targets/apache/ApacheModuleParser3Core.vcproj,
4835: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4836: types/types.vcproj: - new locations for libxml2 includes where
4837: added to vcproj files
4838:
4839: 2013-10-18 moko
4840:
4841: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
4842: fix
4843:
4844: * tests/: 295.html, results/295.processed: test for issue #948
4845: updated
4846:
4847: * src/classes/table.C: hopefully last lost part for issue #948 fix.
4848: :)
4849:
4850: * tests/: 295.html, results/295.processed: test for issue #948
4851: added
4852:
4853: * src/: classes/hash.C, classes/string.C, classes/table.C,
4854: include/pa_request.h, types/pa_method.h: for getters and setters
4855: to be executed request.put_element should be called, not
4856: context.put_element (fixes issue #948)
4857:
4858: 2013-10-17 moko
4859:
4860: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
4861: LIBXML2_NEW_BUFFER check (closes issue #943)
4862:
4863: * buildall: libxml 2.9.1 build is broken --without-reader.
4864:
4865: 2013-10-16 moko
4866:
4867: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
4868:
4869: * tests/: 294.html, results/294.processed: test for issue #938
4870:
4871: * src/: classes/xdoc.C, classes/xnode.C,
4872: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
4873: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
4874:
4875: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
4876: libxslt-1.1.26 -> libxslt-1.1.28
4877:
4878: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
4879: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
4880: to '?', related to issue #938
4881:
4882: 2013-10-15 moko
4883:
4884: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
4885: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
4886: minor optimizations (closes issue #896)
4887:
4888: * tests/results/: 292.processed, 293.processed: results updated to
4889: comply with issue #896
4890:
4891: * tests/: 292.html, 293.html, results/292.processed,
4892: results/293.processed: tests for json escaping
4893:
4894: 2013-10-14 moko
4895:
4896: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
4897: and cleanup, code moved from .h to .C, no changes in code
4898:
4899: 2013-10-12 moko
4900:
4901: * tests/results/119.processed: updated test result commited
4902:
4903: * tests/: 291.html, results/291.processed: test for issue #894
4904: added
4905:
4906: * src/types/pa_wcontext.h: base methods call support function
4907: get_somebody_entered_some_class should not be true forever, as
4908: wcontext can have many get_elements calls (fixes issue #894)
4909:
4910: 2013-10-11 moko
4911:
4912: * tests/: 290.html, results/290.processed: test for junction GPF
4913: issue #942 added
4914:
4915: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
4916: to native method fixed (closes issue #942)
4917:
4918: * tests/: 158.html, results/158.processed: test for csv-string[]
4919: added
4920:
4921: * src/classes/table.C: minor fixes for table.csv-string[] (closes
4922: feature #907)
4923:
4924: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
4925: feature #907)
4926:
4927: 2013-10-09 moko
4928:
4929: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
4930: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
4931: types/pa_vstateless_class.C: GET_default, SET_default now works
4932: properly not only in objects, but in classes as well (closes
4933: issue #903)
4934:
4935: * tests/: 289.html, results/289.processed: GET/SET_default now
4936: works in classes, not only objects, test case added, related to
4937: issue #903
4938:
4939: * tests/: 288.html, results/288.processed: test for endless
4940: recursion bug added (related to issue #903)
4941:
4942: 2013-10-05 moko
4943:
4944: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
4945: classes/table.C, main/execute.C, types/pa_method.h,
4946: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
4947: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
4948: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
4949: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
4950: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
4951: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
4952: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
4953: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4954: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
4955: optimization: put_element no longer has "bool areplace" argument,
4956: related to issue #903
4957:
4958: 2013-10-03 moko
4959:
4960: * tests/results/182.processed: result for $.replace(false) test
4961: commited
4962:
4963: * src/classes/date.C: ^date::create(number) processed correctly
4964: (fixes issue #901)
4965:
4966: * src/classes/image.C: as_no_junction removed, as param can be
4967: expression (closes issue #931)
4968:
4969: * tests/233.html: test for issue #931 added
4970:
4971: 2013-10-02 moko
4972:
4973: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
4974: modified, test for $.replace(false) added
4975:
4976: * src/main/compile_tools.h: forgotten class replace returned. :)
4977:
4978: 2013-09-30 moko
4979:
4980: * tests/: 141.html, results/141.processed: md5 tainting test added
4981:
4982: * src/: classes/op.C, include/pa_request.h, main/compile.y,
4983: main/compile_tools.h, main/pa_request.C: allow_class_replace
4984: implemented; $.replace option added to ^process and ^use
4985:
4986: 2013-08-27 moko
4987:
4988: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
4989: cstr_to_string_body_untaint should be called with charsets for
4990: possible uri language and connection for possible sql language.
4991: related to issue #857
4992:
4993: * buildall: and -> or fixed
4994:
4995: 2013-08-26 moko
4996:
4997: * buildall: prepare_ functions logic changed to support
4998: gc-7.2d.tar.gz extracting to gc-7.2 directory
4999:
5000: 2013-08-23 moko
5001:
5002: * src/include/pa_config_fixed.h: gc and xml libs are now linked
5003: statically
5004:
5005: 2013-08-22 moko
5006:
5007: * src/classes/string.C: String::Empty used (related to issue #912)
5008: append_know_length removed (related to old GPF bug)
5009:
5010: 2013-08-21 moko
5011:
5012: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
5013:
5014: * src/classes/math.C: ^math:digest[...;$file] support added
5015: (related to ticket #857
5016:
5017: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
5018: implemented
5019:
5020: * src/types/pa_vhashfile.h: warning war
5021:
5022: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
5023: include/pa_request.h, main/pa_request.C, types/pa_value.h:
5024: anti_endless_json_string_recoursion removed from request;
5025: json_string_recoursion added to json_options; $.indent[indent
5026: value] now supported and passed within recoursion closes feature
5027: #937
5028:
5029: * tests/: 287.html, results/287.processed: test for feature #937
5030:
5031: 2013-07-31 moko
5032:
5033: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
5034: compilation having #define _S
5035:
5036: * src/main/pa_globals.C: cleanup
5037:
5038: 2013-07-30 moko
5039:
5040: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
5041: main/pa_common.C: vs2003 warning war
5042:
5043: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
5044:
5045: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
5046:
5047: * src/lib/md5/pa_sha2.c: warning war
5048:
5049: 2013-07-29 moko
5050:
5051: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
5052: patches from github
5053:
5054: * src/: classes/bool.C, classes/double.C, classes/int.C,
5055: classes/memcached.C, include/pa_config_includes.h,
5056: types/pa_vfile.C, types/pa_vfile.h: warning war
5057:
5058: * src/lib/json/json.vcproj: C++ -> C
5059:
5060: * src/lib/json/: json.c, pa_json.C: C++ warning revert
5061:
5062: * src/lib/json/: json.c, pa_json.C: windows compatibility
5063:
5064: * src/lib/json/: json.c, pa_json.C: windows compatibility
5065:
5066: * src/lib/json/: json.c, pa_json.C: warning war
5067:
5068: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
5069:
5070: * src/include/pa_config_fixed.h: uint16_t added
5071:
5072: * configure.in: uint16_t check added
5073:
5074: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 5075: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
5076: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
5077: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
5078: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 5079:
5080: 2013-07-25 moko
5081:
5082: * parser3.sln: dependencies added
5083:
5084: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
5085: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
5086: module support
5087:
5088: * src/targets/apache/mod_parser3_core.C: win32 cleanup
5089:
5090: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
5091:
5092: 2013-07-23 moko
5093:
5094: * src/: include/pa_memory.h, main/pa_memory.C: non-working
5095: PA_DEBUG_GC_MEMORY removed
5096:
5097: * src/: main/pa_globals.C, targets/cgi/parser3.C:
5098: PA_DEBUG_DISABLE_GC compilation fix
5099:
5100: * src/: classes/op.C, classes/table.C, include/pa_request.h,
5101: main/pa_request.C: outdated RESOURCES_DEBUG removed
5102:
5103: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
5104: garbage cleanup
5105:
5106: * src/main/pa_common.C: warning war
5107:
5108: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
5109:
5110: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
5111: minor cleanup
5112:
5113: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
5114: uses cygwin, not WIN32 implementation
5115:
5116: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
5117: able to exec shell scripts
5118:
5119: * src/classes/math.C: ifdef WIN32 cleanup
5120:
5121: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
5122:
5123: * src/classes/curl.C: LT_MODULE_EXT used
5124:
5125: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
5126:
5127: 2013-07-22 moko
5128:
5129: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
5130: includes fix
5131:
5132: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
5133:
5134: * configure.in, src/include/pa_config_includes.h,
5135: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
5136: src/main/pa_exec.C: includes cleanup
5137:
5138: * src/targets/cgi/parser3.C: 2012->2013
5139:
5140: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
5141:
5142: * configure.in, src/include/pa_config_includes.h,
5143: src/include/pa_http.h, src/lib/json/JSON_parser.h,
5144: src/main/pa_random.C, src/main/pa_socks.C,
5145: src/types/pa_vstatus.C: cygwin support cleanup
5146:
5147: * configure.in: dirent.h check added
5148:
5149: * src/: include/pa_config_includes.h, include/pa_dir.h,
5150: main/pa_dir.C: includes cleanup, dirent.h check added filePath
5151: not copied
5152:
5153: 2013-07-21 moko
5154:
5155: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
5156:
5157: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
5158: parser3.vcproj: unused getopt.h / getopt.c removed
5159:
5160: * operators.txt, src/classes/file.C, tests/022.html,
5161: tests/results/022.processed: ^file:list[path][$.filter[regexp]
5162: $.stat(true)] usage commented
5163:
5164: * configure.in, src/classes/file.C, src/include/pa_dir.h,
5165: src/main/pa_dir.C: ^file:list[] now has dir column and when
5166: $.stat(true) it has size/*date columns modified patch from misha@
5167: that closes issue #914.
5168:
5169: * src/: include/pa_config_includes.h, main/pa_globals.C:
5170: PA_RELEASE_ASSERTS removed
5171:
5172: * src/lib/md5/pa_md5c.c: minor cleanup
5173:
5174: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
5175: localeconv()->decimal_point usage remoed (related to issue #934)
5176:
5177: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
5178: cordprnt.c removed
5179:
5180: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
5181: pa-include/pa_errno.h, pa-include/pa_file_io.h,
5182: pa-include/pa_strings.h: includes cleanup
5183:
5184: * src/lib/md5/pa_md5c.c: headers cleanup
5185:
5186: 2013-07-20 moko
5187:
5188: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
5189: cleanup
5190:
5191: 2013-07-19 moko
5192:
5193: * src/classes/math.C: extern "C" added for crypt
5194:
5195: 2013-07-18 moko
5196:
5197: * src/classes/math.C: fix redhat7.2 build
5198:
5199: 2013-07-17 moko
5200:
5201: * configure.in, src/include/pa_config_includes.h,
5202: src/include/pa_config_fixed.h: headers actualized (inttypes.h
5203: added for uint8/32/64_t)
5204:
5205: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
5206: pa_config_includes.h used for uint32/64_t
5207:
5208: 2013-07-16 moko
5209:
5210: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
5211: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
5212: war
5213:
5214: * src/main/compile.tab.C: compile.y was updated
5215:
5216: * src/main/compile.y: warning war
5217:
5218: * src/: include/pa_exception.h, main/pa_exception.C,
5219: main/pa_xml_exception.C: warning war
5220:
5221: * src/: include/pa_common.h, main/pa_common.C: warning war
5222:
5223: * configure.in: beauty :)
5224:
5225: * tests/: 141.html, results/141.processed: sha256/512 added
5226:
5227: 2013-07-13 moko
5228:
5229: * src/lib/md5/md5.vcproj: sha2 added
5230:
5231: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
5232: classes/math.C: sha2 support (sha256/sha512 digest)
5233:
5234: 2013-07-08 moko
5235:
5236: * src/classes/image.C: directory read or other read problem message
5237: fixed (related to issue #933)
5238:
5239: 2013-07-07 moko
5240:
5241: * AUTHORS: + misha + moko. :)
5242:
5243: 2013-07-06 moko
5244:
5245: * src/: classes/curl.C, include/pa_globals.h,
5246: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
5247: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
5248: for lt_dlinit to be called once and lt_dlexit called at right
5249: place (related to issue #925)
5250:
5251: 2013-07-04 moko
5252:
5253: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
5254: VString::as_vfile now uses vfile.set_binary_string to avoid
5255: content-type to be set, as it brokes badly designed logic in
5256: response output. This hopefully finishes issue #928.
5257:
5258: * tests/results/: 256.processed, 286.processed: file now displayed
5259: as name, size, mode, content-type
5260:
5261: * src/main/pa_common.C: read error now reported cottectly (fixes
5262: issue #933
5263:
5264: 2013-06-28 moko
5265:
5266: * tests/: 286.html, results/286.processed: test extended
5267:
5268: * tests/: 286.html, results/286.processed: Test for issue #928
5269: added. it tests default content-type change.
5270:
5271: * src/types/pa_vfile.C: closes issue #928 - default content-type
5272: now updated
5273:
5274: 2013-06-25 moko
5275:
5276: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
5277: content-type for text/binary files without name added;
5278: ^file::create[$f;...] options now works properly and $f
5279: properties are default (fixes issue #928)
5280:
5281: 2013-05-16 misha
5282:
5283: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
5284: added
5285:
5286: * src/main/pa_table.C: - a tiny memory optimisation while creating
5287: table if specified limit is bigger than source rows count
5288:
5289: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
5290: added ( new feature: #858 )
5291:
5292: 2013-04-29 moko
5293:
5294: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
5295: $.ipresolve(0|1|2) added (closes issue #891)
5296:
5297: * src/lib/curl/curl.h: CURL_IPRESOLVE added
5298:
5299: 2013-04-24 moko
5300:
5301: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5302: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5303: types/pa_vmemcached.h: ^memcache.release[] added, calls
5304: memcached_quit (refs #893)
5305:
5306: 2013-04-22 moko
5307:
5308: * src/: include/pa_string.h, main/pa_common.C: no more double
5309: slashes in file path (fixes bug #872)
5310:
5311: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
5312: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
5313: #739)
5314:
5315: * tests/results/266.processed: $.max_params added (feature #915)
5316:
5317: * src/: include/pa_common.h, main/pa_http.C: response-charset
5318: option added to file::load (closes issue #867)
5319:
5320: 2013-04-20 misha
5321:
5322: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
5323: commited
5324:
5325: 2013-03-15 misha
5326:
5327: * src/classes/: hash.C, table.C: - Optimisation: do not create
5328: multiple empty strings while ::sql. uae String::Empty instead
5329:
5330: 2013-03-14 misha
5331:
5332: * src/classes/reflection.C: - for user classes
5333: ^reflection:method_info[] returns $.max_params and $.extra_param
5334: with $.call_type if they available ( new feature: #915 )
5335:
5336: * src/classes/file.C: - ^file:delete[] now supports an option
5337: $.exception(false) that suppress any exception while deleting
5338: file ( new feature: #916 )
5339:
5340: * src/classes/curl.C: - parsing cookies after curl:load now should
5341: work :)
5342:
5343: 2013-03-12 misha
5344:
5345: * src/types/pa_vfile.C: - if specified file_name is empty string
5346: set default name for the file
5347:
5348: 2013-03-11 misha
5349:
5350: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
5351: also available in $f.cookies
5352:
5353: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
5354: moved to a separate method
5355:
5356: 2013-03-10 moko
5357:
5358: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
5359: added
5360:
5361: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
5362: removed (declared by autoconf)
5363:
5364: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
5365: uint32_t define
5366:
5367: 2013-03-10 misha
5368:
5369: * src/classes/file.C: ^file:delete and ^file:move now support
5370: option $.keep-empty-dirs(true) ( new feature: #884 )
5371:
5372: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
5373: empty dirs is added
5374:
5375: 2013-03-10 moko
5376:
5377: * src/classes/: bool.C, double.C, int.C: default can be present,
5378: but default check removed from ^int/double/bool.int/double/bool
5379: for string.int/double/bool compatibility (related to issue #913)
5380:
5381: * src/classes/string.C: ^string.int/dobule/bool no longer
5382: internally throws exception if default is present (closes issue
5383: #913)
5384:
5385: 2013-03-09 misha
5386:
5387: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
5388: optimisations ( #845 )
5389:
5390: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
5391:
5392: 2013-03-08 moko
5393:
5394: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
5395: creates correct table (fixes issue #910)
5396:
5397: * src/classes/op.C: r.connection() -> r.connection(false) to allow
5398: use outside of 'connect' operator (fixes issue #911)
5399:
5400: * tests/results/: 096.processed, 122.processed: test results
5401: updated as doubles now printed with 15 significant digits, not 5
5402: (fixes issue #882)
5403:
5404: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
5405: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
5406:
5407: 2013-02-21 moko
5408:
5409: * src/classes/table.C: _locate_name_value does not check arguments
5410: count, so we check it in advance (fixes issue #905)
5411:
5412: 2012-10-23 moko
5413:
5414: * buildall: old shell for and echo compatibility (for six)
5415:
5416: 2012-10-19 moko
5417:
5418: * buildall: --strip added --disable-safe-mode listed in usage
5419:
5420: 2012-10-17 misha
5421:
5422: * src/classes/op.C: - apply-taint should not throw "outside
5423: connect" exception with sql lang now
5424:
5425: 2012-10-17 moko
5426:
5427: * src/main/pa_request.C: bugfix: safe mode should be inited for
5428: each request (for apache module)
5429:
5430: 2012-09-26 moko
5431:
5432: * src/doc/doxygen.cfg: png -> svg
5433:
5434: 2012-09-25 moko
5435:
5436: * tests/: 141.html, results/141.processed: md5 hmac added, long key
5437: test added
5438:
5439: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
5440: double use when key is long
5441:
5442: 2012-09-16 moko
5443:
5444: * src/classes/math.C: Format -> Method Encode -> Format
5445:
5446: * tests/: 141.html, results/141.processed: math:digest hmac test
5447: added
5448:
5449: 2012-09-14 moko
5450:
5451: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
5452: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
5453: implementation added
5454:
5455: 2012-09-12 moko
5456:
5457: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
5458: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
5459: targets.dox and string.dox slightly actualized
5460:
5461: 2012-08-31 moko
5462:
5463: * ChangeLog: now generated with patched cvs2cl.pl
5464:
5465: 2012-07-29 moko
5466:
5467: * tests/285.html, src/main/execute.C, tests/results/285.processed:
5468: result should be pushed after VMethodFrame destructor is called,
5469: as it deletes junctions from stack params (fixes issue #868)
5470:
5471: 2012-07-23 moko
5472:
5473: * INSTALL, README: buildall script usage documented, other outdated
5474: info updated.
5475:
5476: * buildall-with-xml, buildall-without-xml: replaced by buildall
5477:
5478: 2012-07-21 moko
5479:
5480: * buildall: glib does not compile when threads are disabled...
5481:
5482: * src/types/pa_vmail.C: g_assertion fixes for empty input
5483:
5484: * src/types/pa_vmail.C: yet another fix (strange GPF on object
5485: unref, can't unref nested objects)
5486:
5487: * src/types/pa_vmail.C: another check added
5488:
5489: 2012-07-19 moko
5490:
5491: * buildall: usage added
5492:
5493: * buildall: new buildall script that unites buildall-with-xml,
5494: buildall-without-xml, --with-apache and --with-mailreceive
5495:
5496: * configure.in: support for static gmime and dynamic glib linking.
5497: fixes for FreeBSD
5498:
5499: 2012-07-17 moko
5500:
5501: * configure.in: --with-mailreceive replaced
5502: --with-static-mailreceive and --with-shared-mailreceive pathlink
5503: removed
5504:
5505: 2012-07-16 moko
5506:
5507: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
5508: capitalized, content now decoded and text content converted to
5509: $request:charset. all properties are accessed by functions, this
5510: ready for dynamic load.
5511:
5512: 2012-06-28 moko
5513:
1.116 moko 5514: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
5515: 32 bit
1.95 moko 5516:
5517: 2012-06-27 moko
5518:
5519: * buildall-with-xml, buildall-without-xml: fetch requires -p for
5520: passive ftp
5521:
5522: * src/lib/ltdl/ltdl.vcproj: release build fixed
5523:
5524: * configure.in: 3.4.2 RC -> 3.4.2
5525:
5526: 2012-06-22 moko
5527:
5528: * src/types/pa_vfile.C: returned empty mode to stated files (issue
5529: #815)
5530:
5531: * tests/: 284.html, results/284.processed: output options test
5532: (feature #265)
5533:
5534: 2012-06-22 misha
5535:
5536: * tests/215.html: - little changes
5537:
5538: 2012-06-21 moko
5539:
5540: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
5541: types/pa_vxdoc.h: output_options returned and used (bugfix for
5542: feature #265)
5543:
5544: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
5545: breaks long .*, default 10M restored. (issue #216)
5546:
5547: * tests/: 283.html, results/283.processed: test for issue #815
5548: added
5549:
5550: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
5551: again, cstrm not required.
5552:
5553: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
5554: Win32 and broken FreeBSD (issue #45)
5555:
5556: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
5557:
5558: * src/main/pa_string.C: warnings war
5559:
5560: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
5561: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
5562: main/pa_socks.C, targets/apache/pa_threads.C,
5563: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5564: types/pa_vstatus.C: compilation under cygwin fixed
5565:
5566: 2012-06-19 moko
5567:
5568: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
5569: Windows fixed
5570:
5571: * parser3.sln: removed antique pcre_ctype
5572:
5573: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
5574:
5575: * src/include/pa_config_fixed.h: undefined reference to
5576: __imp__pcre_* fix for Windows
5577:
5578: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 5579: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
5580: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
5581: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
5582: define fixed
1.95 moko 5583:
5584: 2012-06-18 moko
5585:
5586: * src/classes/memcached.C: flush -> clear
5587:
5588: * src/classes/memcached.C: memcached does not support quotes even
5589: in server name
5590:
5591: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5592: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
5593: called on open to check servers existance. $.key(true) syntax
5594: now supported
5595:
5596: 2012-06-17 moko
5597:
5598: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
5599: cleanup
5600:
5601: * src/classes/table.C, tests/282.cfg, tests/282.html,
5602: tests/results/282.processed: encloser at the EOF bug fixed,
5603: incorrectly enclosed data now processed more logicaly (fixes
5604: #339)
5605:
5606: 2012-06-15 moko
5607:
5608: * buildall-without-xml: sync with buildall-with-xml
5609:
5610: * buildall-with-xml: download auto-detected between fetch and curl
5611:
5612: * configure.in: --with-gc and --with-pcre now also processed
5613: correctly
5614:
1.116 moko 5615: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
5616: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
5617: should be run on rol1 using automake / aclocal (GNU automake)
5618: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 5619:
5620: * configure.in: new PARSER_VERSION logic
5621:
5622: * src/include/pa_version.h: new pa_version.h logic
5623:
5624: * src/: classes/curl.C, classes/file.C, classes/image.C,
5625: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5626: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
5627: feols_normalized -> fis_text_content set_binary added
5628:
5629: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
5630:
5631: 2012-06-15 misha
5632:
5633: * src/: classes/curl.C, classes/file.C, classes/image.C,
5634: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5635: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
5636: ^file::create[text;content] EOLs in content now is normalized. (
5637: new feature: #815 )
5638:
5639: 2012-06-15 moko
5640:
5641: * configure.in: --disable-version-update added to disable version
5642: update with host information (for debian package) whitespace
5643: optimized
5644:
5645: * configure.in: version changed to 3.4.2 RC no-pic added for
5646: libtool
5647:
5648: * src/include/pa_version.h: Nice pa_version.h default. Please keep
5649: it.
5650:
5651: 2012-06-14 moko
5652:
5653: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
5654: tests/results/281.processed: "hash flocked" error removed for
5655: safe operations like ^h._count[] ( new feature: #335 )
5656:
1.116 moko 5657: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 5658:
5659: * buildall-with-xml, buildall-without-xml: --with-static -> --with
5660:
5661: * configure.in: --with-static/shared xml replaced with --with-xml,
5662: xml compilation check added
5663:
5664: * configure.in: --with-static/shared-gc, --with-static-pcre are
5665: replaced with --with-gc and --with-pcre test for pcre linking
5666: added
5667:
5668: 2012-06-13 moko
5669:
5670: * configure.in: apxs2 check optimized
5671:
5672: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
5673: .la, includes optimized
5674:
5675: * buildall-with-xml: --with-pic looks better for -fPIC
5676:
5677: * configure.in: switched to convenience library in static linking
5678:
5679: * src/targets/apache/Makefile.am: switched to convenience library
5680: usage to avoid libtool warnings
5681:
5682: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
5683: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
5684: smtp/Makefile.am: switched to convenience library usage
5685:
5686: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
5687:
5688: * src/targets/apache/Makefile.am: updated for libtool usage
5689:
5690: * buildall-without-xml: --with-included-ltdl added
5691:
5692: * buildall-without-xml: sync with buildall-with-xml
5693:
5694: * buildall-with-xml: --with-included-ltdl added $cflags added for
5695: -fPIC for x64 $download added for wget success check added
5696:
5697: * buildall-without-xml: --with-dynamic-stdcpp removed
5698:
5699: * configure.in: disable-static returned
5700:
5701: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
5702: LIBTOOLFLAGS
5703:
5704: 2012-06-12 moko
5705:
5706: * configure.in, src/targets/cgi/Makefile.am: disable-static not
5707: compatible with LIBTOOLFLAGS for unknown reasons
5708:
5709: * buildall-with-xml: --with-dynamic-stdcpp removed
5710:
5711: * configure.in: static/dynamic -lstdc++ linking option removed
5712: apxs2 check added
5713:
5714: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
5715: option removed
5716:
5717: 2012-06-10 moko
5718:
5719: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
5720: added
5721:
5722: * src/targets/cgi/pp3.cmd: old PAF stuff
5723:
1.116 moko 5724: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
5725: beauty
1.95 moko 5726:
5727: * depcomp: from libtool 2.4.2
5728:
5729: * configure.in: ltdl directory removed, it has correct Makefile.in
5730:
5731: 2012-06-09 moko
5732:
1.116 moko 5733: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
5734: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 5735: autogenerated files updated after libtool update
5736:
1.116 moko 5737: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
5738: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 5739: config_auto.h.in, config_fixed.h, configure, configure.ac,
5740: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
5741: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
5742: config/compile, config/config.guess, config/config.sub,
5743: config/depcomp, config/install-sh, config/ltmain.sh,
5744: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
5745: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
5746: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
5747: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
5748: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
5749: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
5750: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
5751: m4/lt~obsolete.m4: libtool updated to version 2.4.2
5752:
5753: * configure.in: preparation for new libtool
5754:
5755: * configure.in: Some beauty added :)
5756:
5757: * src/targets/apache/Makefile.am: := -> =
5758:
5759: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
5760: again. :)
5761:
5762: * src/include/pa_config_includes.h, configure.in: limits.h added,
5763: previously was taken from pcre_internal.h. :)
5764:
5765: * src/lib/pcre/Makefile.am: config.h returned
5766:
5767: * src/lib/pcre/config.h: still need this. :)
5768:
5769: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
5770:
5771: * configure.in: --with-charsets removed; --with-mysql-client & co
5772: removed
5773:
5774: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
5775: now in parser tree, no need to copy
5776:
5777: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
5778: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
5779: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
5780: debian/patches/101_pcre.patch - local copy of pcre_internal.h
5781: extracts now used old trash removed
5782:
5783: * etc/parser3.charsets/Makefile.am: charsets now in share
5784: (debian/patches/104_automake.patch) + all charsets are copied
5785:
5786: * buildall-with-xml, buildall-without-xml: curl option removed +
5787: extra arguments now supported
5788:
5789: 2012-06-08 misha
5790:
5791: * src/classes/table.C: - one params.as_hash usage was rolled back:
5792: the 2nd option in ^table.hash[] could be hash or table so
5793: .as_hash will throw an exception when table option is specified
5794:
5795: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5796: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
5797: classes/table.C, classes/void.C, classes/xdoc.C,
5798: include/pa_exception.h, types/pa_vmethod_frame.C,
5799: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
5800: and improved (whitespaces are allowed as empty options) -
5801: MethodParams::as_table is added - above methods are used for
5802: parsing methods' options ( new feature: #9 )
5803:
5804: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
5805: to vclass. now class fields can be accessible as a hash:
5806: $h[^hash::create[$asd:CLASS]]
5807:
5808: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
5809: have get_fields method so their fields can be accessed with
5810: ^reflection:fields[...] & ^reflection:field[...]
5811:
5812: 2012-06-06 misha
5813:
5814: * tests/280.html: - tests for
5815: ^reflection:method[obj-or-class;method],
5816: ^reflection:field[obj-or-class;field] and
5817: ^reflection:fields[obj-or-class] are added
5818:
5819: 2012-06-05 misha
5820:
5821: * src/classes/reflection.C: - ^reflection:method[class or
5822: object;method name] and ^reflection:field[class or object;field
5823: name] are added
5824:
5825: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
5826: is used
5827:
5828: * src/types/pa_method.h: - Method::as_vjunction method is added
5829:
5830: 2012-06-05 moko
5831:
1.116 moko 5832: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 5833:
5834: * src/classes/memcached.C: flish ttl fixed
5835:
5836: 2012-06-04 moko
5837:
5838: * src/classes/json.C, src/classes/op.C, tests/279.html,
5839: tests/results/279.processed: ^json:parse[] now supports $.taint
5840: option (new feature #833)
5841:
5842: 2012-06-04 misha
5843:
5844: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
5845: - search_stop method was moved from pa_vcookie.C to pa_common.C
5846:
5847: 2012-06-03 misha
5848:
5849: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
5850: cookies are parced and stored into $.cookies ( new feature: #31 )
5851:
5852: 2012-05-30 misha
5853:
5854: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
5855: incomplete class into a scope while @USE is found
5856:
5857: * src/main/compile.y: - add incomplete class into a scope while
5858: @USE and @CLASS instructions are found ( bugfix: #838 )
5859:
5860: 2012-05-30 moko
5861:
5862: * src/types/pa_vclass.C, tests/278.html,
5863: tests/results/278.processed: removed "property has no getter
5864: method" exception when GET_DEFAULT present (fixes #269)
5865:
5866: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
5867: $._default
5868:
5869: 2012-05-29 moko
5870:
5871: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
5872: uninitialized values usage (new feature: #154)
5873:
5874: 2012-05-28 moko
5875:
5876: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
5877: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
5878: src/types/pa_vdate.h, src/types/pa_vdouble.h,
5879: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
5880: src/types/pa_vobject.C, src/types/pa_vobject.h,
5881: src/types/pa_vstring.h, src/types/pa_vtable.C,
5882: tests/results/277.processed, src/types/pa_vtable.h,
5883: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
5884: ^json:string[$o; $.default[$method]] implemented for VObject (new
5885: feature #803)
5886:
5887: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
5888: tests/results/277.processed: json numbers are now treated as
5889: double ( new feature: #834 )
5890:
5891: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
5892: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
5893: added for out of range checks, zero division in vint/vdouble
5894: check added ( fixes #832 )
5895:
5896: * tests/: 275.html, results/275.processed: tests for pa_atoui added
5897: ( fixes #832 )
5898:
5899: 2012-05-28 misha
5900:
5901: * buildall-with-xml: - --without-lzma option is added to libxml2
5902: configure
5903:
5904: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
5905: added - tests for unsupported values for options $.file, $.table
5906: and $.date are added
5907:
5908: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
5909: accepts "stat" $.file[] option's value in addition to existed
5910: "text" and "base64" ( new feature: #835 )
5911:
5912: * tests/276.html: - test for
5913: ^reflection:delete[$object-or-class;field-name]
5914:
5915: * src/classes/reflection.C: -
5916: ^reflection:delete[$object-or-class;field-name] is added ( new
5917: feature: #268 )
5918:
5919: 2012-05-27 misha
5920:
5921: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
5922:
5923: 2012-05-24 misha
5924:
5925: * src/include/pa_common.h: - method lastposafter was removed
5926:
5927: * src/classes/file.C: - use strrpbrk & rskipchars instead of
5928: lastposafter - ^file:dirname[] & Co proper handle windows file
5929: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
5930: work as *nix commands
5931:
5932: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
5933:
5934: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
5935: rskipchars were added
5936:
5937: * tests/270.html: - more tests for ^file:find[]
5938:
5939: * tests/065.html: - more tests for ^file:dirname[] & Co
5940:
5941: * src/include/pa_version.h: - must be "win32" here. it is
5942: auto-generated on *nix
5943:
5944: 2012-05-24 moko
5945:
5946: * src/classes/math.C: ^math:convert[] now supports uint32 and
5947: throws overflow exception ( new feature: #830 )
5948:
5949: * tests/: 275.html, results/275.processed: test for ^math:convert[]
5950: uint32 support and overflow added ( new feature: #830 )
5951:
5952: 2012-05-23 moko
5953:
5954: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
5955: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
5956: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
5957: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
5958: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
5959: types/pa_vregex.h, types/pa_vstateless_class.C,
5960: types/pa_vstateless_class.h, types/pa_vstring.h,
5961: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
5962: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
5963: "return string as-is" removed from as_expr_result. ( new feature:
5964: #831 )
5965:
5966: * tests/results/244.processed: test changed after bug #782 fix
5967: commited
5968:
5969: * tests/results/229.processed: test results for bug #782 commited
5970:
5971: * tests/: 254.html, results/254.processed: uid now just compared,
5972: not printed. :)
5973:
5974: 2012-05-20 moko
5975:
5976: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
5977: feature: #341 )
5978:
5979: * tests/: 254.html, results/254.processed: test for
5980: ^reflection:uid[] added
5981:
5982: * tests/: 254.html, results/254.processed: test for
5983: ^reflection:uid[$obj] added
5984:
5985: 2012-05-17 misha
5986:
5987: * src/main/untaint.C: - do not replace ' char by _26 while
5988: exploding filespec-tainting ( new feature: #829 )
5989:
5990: 2012-05-12 moko
5991:
5992: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
5993: not.
5994:
5995: 2012-05-08 moko
5996:
5997: * src/types/pa_vmethod_frame.h: bug #782 fixed
5998:
5999: * tests/229.html: test for bug #782
6000:
6001: * tests/results/259.processed, src/main/pa_request.C,
6002: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
6003: src/types/pa_vstring.h, src/types/pa_vvoid.C,
6004: src/types/pa_vvoid.h: feature #154 - first empty param now
6005: string; defined locals are empty strings; $STRICT-VARS(true)
6006: added
6007:
6008: 2012-04-27 moko
6009:
1.116 moko 6010: * src/targets/apache/Makefile.am:
1.95 moko 6011: ../../lib/memcached/libmemcached.a added
6012:
6013: 2012-04-27 misha
6014:
6015: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
6016: ( #827 )
6017:
6018: 2012-04-25 moko
6019:
6020: * src/: classes/json.C, classes/memcached.C,
6021: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6022: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
6023: implemented.
6024:
6025: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
6026:
6027: 2012-04-23 moko
6028:
6029: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6030: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6031: types/pa_vmemcached.h: open allows options hash for new
6032: memcached(options) function
6033:
6034: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
6035: not appended
6036:
6037: 2012-04-21 moko
6038:
6039: * src/classes/curl.C: '' added. :)
6040:
6041: * src/classes/classes.vcproj: new curl.h location
6042:
6043: * src/classes/curl.C: verbose output redirection from stderr to
6044: file curl option added
6045:
6046: 2012-04-20 moko
6047:
6048: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
6049: contains what we need from curl, #ifdef HAVE_CURL removed
6050:
1.116 moko 6051: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 6052: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 6053: src/lib/Makefile.am, src/lib/curl/Makefile.am,
6054: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 6055: configure option
6056:
6057: 2012-04-19 moko
6058:
6059: * src/: classes/double.C, classes/inet.C, classes/int.C,
6060: classes/string.C, lib/gc/include/gc_allocator.h,
6061: types/pa_vform.C: PVS-Studio detected errors fixes, unused
6062: options from sql_result_string removed. (closes issue #468)
6063:
6064: * src/types/pa_vmemcached.C: empty string fix
6065:
6066: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
6067: pa_vstring.C, pa_vstring.h: serialization helpers moved to
6068: pa_vmemcached.C
6069:
6070: 2012-04-18 moko
6071:
6072: * src/targets/apache/mod_parser3.c: "Parser3 module requires
6073: apache2-mpm-prefork" error displayed in threaded mpm.
6074:
6075: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6076: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
6077: installed (issue #354)
6078:
6079: 2012-04-16 moko
6080:
6081: * src/types/pa_vmemcached.C: call to memcached_result_create and
6082: memcached_result_free removed
6083:
6084: 2012-04-14 moko
6085:
6086: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
6087:
6088: * src/types/pa_vmemcached.C: check_key added and used
6089:
6090: 2012-04-13 moko
6091:
6092: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
6093: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
6094: Serialization_data now added and used, VString now serialized
6095: with languages into memcached.
6096:
6097: 2012-03-28 moko
6098:
6099: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
6100: lib/memcached/pa_memcached.h: result lengths added
6101:
6102: 2012-03-27 moko
6103:
6104: * src/types/pa_vmemcached.C: strdup added
6105:
6106: 2012-03-24 moko
6107:
6108: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6109: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6110: types/pa_vmemcached.h: memcached: mget, flush, fttl added
6111:
6112: 2012-03-20 moko
6113:
1.116 moko 6114: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 6115:
6116: * src/targets/cgi/Makefile.am: cleanup
6117:
6118: * src/: types/Makefile.am, types/pa_vmemcached.C,
6119: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
6120:
6121: * src/: classes/Makefile.am, classes/memcached.C,
6122: lib/memcached/Makefile.am, lib/memcached/constants.h,
6123: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6124: lib/memcached/types.h, lib/Makefile.am: memcached initial
6125:
6126: 2012-03-16 moko
6127:
6128: * src/main/execute.C: ident now works under Linux + ident displays
6129: filenames (closes issue #818)
6130:
1.116 moko 6131: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 6132: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
6133: pa_vmethod_frame_local.h removed
6134:
6135: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
6136: classes/classes.h, classes/curl.C, classes/date.C,
6137: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
6138: classes/hashfile.C, classes/image.C, classes/inet.C,
6139: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
6140: classes/memory.C, classes/op.C, classes/reflection.C,
6141: classes/regex.C, classes/response.C, classes/string.C,
6142: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
6143: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
6144: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
6145: include/pa_config_fixed.h, include/pa_config_includes.h,
6146: include/pa_dictionary.h, include/pa_dir.h,
6147: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
6148: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
6149: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
6150: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
6151: include/pa_request_charsets.h, include/pa_request_info.h,
6152: include/pa_sapi.h, include/pa_socks.h,
6153: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
6154: include/pa_stack.h, include/pa_string.h,
6155: include/pa_stylesheet_connection.h,
6156: include/pa_stylesheet_manager.h, include/pa_table.h,
6157: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
6158: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
6159: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
6160: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
6161: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
6162: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
6163: main/compile.tab.C, main/compile.y, main/compile_tools.C,
6164: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
6165: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
6166: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
6167: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
6168: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
6169: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
6170: main/pa_string.C, main/pa_stylesheet_connection.C,
6171: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
6172: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
6173: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
6174: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
6175: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
6176: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
6177: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6178: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
6179: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
6180: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
6181: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
6182: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
6183: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6184: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
6185: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
6186: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
6187: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
6188: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
6189: types/pa_vmemory.h, types/pa_vmethod_frame.C,
6190: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
6191: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
6192: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
6193: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
6194: types/pa_vresponse.h, types/pa_vstateless_class.C,
6195: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
6196: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
6197: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
6198: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
6199: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6200: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
6201: ident now works under Linux + ident displays filenames (closes
6202: issue #818) Copyright updated
6203:
6204: 2012-03-13 moko
6205:
6206: * src/main/pa_string.C: compilation fix for feature #741
6207:
6208: 2012-03-09 misha
6209:
6210: * tests/193.html: - tests for ^string:base64[encoded] are updated
6211:
6212: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
6213: now detects invalid base64 chars in the middle of encoded stricg
6214: ( new feature: #55 )
6215:
6216: * src/include/pa_exception.h: - new exception type for base64
6217: decoding is added
6218:
6219: 2012-03-06 misha
6220:
6221: * tests/274.html: - tests for ^date::today[] and
6222: ^date.sql-string[datetime|date|time] are added
6223:
6224: * src/classes/date.C: - constructor ^date::today[] is added ( new
6225: feature: #811 ) - ^date.sql-string[] now can accept one param --
6226: strings "datetime", "date" or "time" - comments tidying up
6227:
6228: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
6229: date and time
6230:
6231: 2012-03-03 misha
6232:
6233: * tests/193.html: - tests for
6234: ^string:base64[encoded;$.strict(true)] are added
6235:
6236: * tests/results/auto.p: - try-catch operator is added
6237:
6238: * src/: classes/file.C, classes/string.C, include/pa_common.h,
6239: main/pa_common.C: - $.strict(true|false) option is added to
6240: base64 decode methods ( new feature: #55 )
6241:
6242: * src/main/pa_common.C: - base64 decode memory usage was decreased
6243: ( new feature: #819 )
6244:
6245: 2012-02-28 moko
6246:
6247: * src/classes/hash.C: ident test
6248:
6249: 2012-02-27 misha
6250:
6251: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
6252:
6253: 2012-01-08 misha
6254:
6255: * tests/273.html: - tests for ^string.replace[from;to] are added
6256:
6257: * src/: classes/string.C, include/pa_dictionary.h,
6258: main/pa_dictionary.C, main/pa_string.C: -
6259: ^string.replace[from;to] is added ( new feature: #741 ) -
6260: ^string.replace[one subst here] is slightly optimized
6261:
6262: 2011-12-07 misha
6263:
6264: * src/classes/table.C: - $t[^table::create{$empty}] now creates
6265: named table with one empty column ( bugfix: #63 )
6266:
6267: 2011-11-30 misha
6268:
6269: * src/classes/json.C: - it's possible to set user's method for
6270: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
6271: #763 )
6272:
6273: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
6274:
6275: 2011-11-23 misha
6276:
6277: * src/: classes/curl.C, classes/file.C, classes/image.C,
6278: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
6279: types/pa_vfile.h, types/pa_vform.C: - constructor
6280: ^file::create[mode;filename;content[;options]] now accepts binary
6281: mode and file-content - new constructor's format:
6282: ^file::create[string-or-file-content[;$.name[filename]
6283: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
6284: feature: #65 )
6285:
6286: * src/: include/pa_request.h, main/pa_request.C: - new method
6287: mime_type_of(const String*) is added
6288:
6289: * src/include/pa_exception.h: - new exception constant
6290: FILE_NAME_MUST_BE_SPECIFIED is added
6291:
6292: * src/classes/table.C: - bug with negative offset transformed into
6293: a feature. it means pointing to a row from the end of the table (
6294: new feature: #810 )
6295:
6296: 2011-11-19 misha
6297:
6298: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
6299: â ìåòîäå _select ( new feature: #810 )
6300:
6301: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
6302: options were specified together is simplified
6303:
6304: 2011-11-12 misha
6305:
6306: * src/main/pa_request.C: - forgotten fix for escaping filename in
6307: HTTP content-disposition header (a part of bug #361 )
6308:
6309: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
6310: checks for ancestors' classes as well ( new feature: #456 )
6311:
6312: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
6313: "without cycle" now have types "parser.break" and
6314: "parser.continue" instead of "parser.runtime" ( new feature: #799
6315: )
6316:
6317: 2011-11-11 misha
6318:
6319: * tests/results/: 099.processed, 100.processed, 205.processed,
6320: 237.processed: - since bug #361 was fixed the content of filename
6321: in HTTP headers is quoted
6322:
6323: * tests/results/270.processed: - result for test 270
6324:
6325: * tests/: 065.html, results/065.processed: - more tests for
6326: ^file:basename[] & Co were added
6327:
6328: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
6329:
6330: * tests/270.html: - tests for ^file:find[] are added
6331:
6332: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
6333: using option $.charset. option $.engoding is still supported but
6334: these options can not be specified together
6335:
6336: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
6337: comparation charset name with string "UTF-8" ( bugfix: #759 )
6338:
6339: 2011-10-11 misha
6340:
6341: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
6342: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
6343: #622)
6344:
6345: 2011-09-30 misha
6346:
6347: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
6348: exception "saving stat-ed file" ( bugfix: #395 )
6349:
6350: 2011-05-30 misha
6351:
6352: * src/classes/string.C: - fixed bug which was added with
6353: params.as_hash into string:sql
6354:
6355: 2011-05-29 misha
6356:
6357: * src/types/pa_value.C: - filename in content-disposition header
6358: must be quoted ( bugfix: #361 )
6359:
6360: 2011-05-27 misha
6361:
6362: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
6363: created file
6364:
6365: * src/classes/: hash.C, mail.C: - little tunning with get_hash
6366: usage
6367:
6368: * src/include/pa_exception.h: - one more string for exception was
6369: added
6370:
6371: 2011-05-25 misha
6372:
6373: * tests/269.html: - tests for checking input params in some dom
6374: methods
6375:
6376: * src/classes/: xdoc.C, xnode.C: - validation of some input params
6377: was added. it isn't possible not wo create xdoc with invalid
6378: tagName. ( bugfix: #160 )
6379:
6380: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
6381: string "data must be string" was mover from pa_exception.h to
6382: pa_xml_exception.h
6383:
6384: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
6385: as_xmlncname, as_xmlname and as_xmlnsuri were added
6386:
6387: * src/main/pa_xml_exception.C: - XmlException accepts more options
6388:
6389: * src/include/pa_xml_exception.h: - XmlException accepts more
6390: options - XML-related exception's strings were added
6391:
6392: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
6393: output_options were removed)
6394:
6395: 2011-05-19 misha
6396:
6397: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
6398: params.as_hash is used more while parsing methods hash-options
6399:
6400: 2011-05-18 misha
6401:
6402: * operators.txt: - info about json-serialization of xdoc was added
6403:
6404: * tests/256.html: - tests for json-serialization xdoc were added
6405:
6406: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
6407:
6408: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
6409: classes/json.C, classes/xdoc.C: - now json:string can serialize
6410: xdoc-objects. options (the same as ^xdoc.string[]) could be
6411: specified in $.xdoc[] ( new feature: #265 )
6412:
6413: 2011-05-15 misha
6414:
6415: * tests/268.html: - tests for ^table.count[with options] were added
6416:
6417: * src/classes/table.C: - method ^table.count[] now can accept
6418: options ( new feature: #93 ): ^table.count[column] returns number
6419: of columns for named table; ^table.count[cells] returns number of
6420: cells in the current row; ^table.count[] & ^table.count[rows]
6421: return number of rows in a table.
6422:
6423: * tests/267.html: - test for checking switch/case in boolean mode
6424: was added
6425:
6426: * src/classes/op.C: - if switch's or case's value is bool, they are
6427: compared as bool values, not as double values: new feature: #351
6428:
6429: 2011-05-06 misha
6430:
6431: * tests/242.html: - EOL before EOF was added
6432:
6433: * tests/169.html: - tests for splitting empty string and void were
6434: added
6435:
6436: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
6437: returned table with one empty cell)
6438:
6439: 2011-04-03 misha
6440:
6441: * src/include/pa_version.h, configure.in: - version in head was
6442: changed to 3.4.2b
6443:
6444: 2011-03-30 misha
6445:
6446: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
6447: as well ( new feature #294 )
6448:
6449: 2011-03-29 misha
6450:
6451: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
6452: limited to approx. 6 MB. previous limits were too big for real
6453: life. bugfix: #216
6454:
6455: 2011-03-04 moko
6456:
6457: * etc/parser3.charsets/cp866.cfg: Conforms to
6458: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
6459:
6460: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
6461: vlalek@
6462:
6463: 2011-02-22 misha
6464:
6465: * src/include/pa_charset.h, operators.txt: - some methods mustn't
6466: be under #ifdef XML or parser can't be compiled without xml
6467: support
6468:
6469: 2011-02-21 misha
6470:
1.116 moko 6471: * src/targets/apache/: Makefile.am: - mention
1.95 moko 6472: ApacheModuleParser3.vcproj was removed
6473:
6474: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
6475: removed)
6476:
6477: 2011-02-20 misha
6478:
6479: * tests/: 266.html, 266.p: - tests for checking $.inherited and
6480: $.overridden in ^reflection:method_info[...] were added
6481:
6482: * src/classes/reflection.C: - beautifying result of
6483: ^reflection:method_info[] ($.overridden/inherited)
6484:
6485: 2011-02-18 misha
6486:
6487: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
6488: and pa_isalnum instead of isalpha and isalnum - bug with
6489: redundand quoting lowercased latin chars while building email
6490: body was fixed
6491:
6492: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
6493: added (they check for latin chars only)
6494:
6495: 2011-02-16 misha
6496:
6497: * src/main/pa_charset.C: - bugfix: in some cases the calculating
6498: string size for transcoding gave too small value (should ever
6499: look for availability char in dest charset inspite of the char
6500: size)
6501:
6502: 2011-02-04 moko
6503:
6504: * tests/223.html: header values now not url-encoded (issue #195)
6505:
6506: 2011-02-01 misha
6507:
6508: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
6509:
6510: 2011-01-31 misha
6511:
6512: * src/main/pa_request.C: - throw exception if param file_name in
6513: use_file is empty
6514:
6515: 2011-01-08 moko
6516:
6517: * src/classes/curl.C: compilations errors fixed
6518:
6519: 2010-12-29 moko
6520:
6521: * tests/: 265.html, results/265.processed: test for issue #200
6522: added
6523:
6524: * src/main/pa_string.C: empty regex result check added (fixes issue
6525: #200)
6526:
6527: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
6528:
6529: * tests/results/223.processed: header values now not url-encoded
6530: (issue #195)
6531:
6532: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
6533: main/untaint.C: L_HTTP_HEADER now used in http headers values,
6534: pa_http_safe_header_name added for headers names (fixes bug #195)
6535:
6536: 2010-12-18 misha
6537:
6538: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
6539: => pa-include
6540:
6541: 2010-11-28 moko
6542:
6543: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
6544:
6545: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
6546: -> pa
6547:
6548: * configure.in: apr -> pa
6549:
6550: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
6551:
6552: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
6553: classes/Makefile.am, types/Makefile.am: apr -> pa
6554:
6555: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
6556: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
6557: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
6558: pa-include/pa_apr.h, pa-include/pa_errno.h,
6559: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
6560: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
6561: module apr name conflict resolved)
6562:
6563: 2010-11-27 misha
6564:
6565: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
6566: libbz2
6567:
6568: 2010-11-26 misha
6569:
6570: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
6571: warnings removed
6572:
6573: 2010-11-25 moko
6574:
6575: * operators.txt: $.indent(true)
6576:
6577: * operators.txt: another bugfix. :)
6578:
6579: * operators.txt: bugfix. :)
6580:
6581: * buildall-with-xml: libxml2-2.7.8 + with-apache
6582:
6583: 2010-11-24 moko
6584:
1.116 moko 6585: * configure: apxs support
1.95 moko 6586:
6587: * configure.in: apxs support -Bstatic gc removed for OS X
6588:
6589: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
6590:
6591: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
6592: THREAD_LOCAL usage
6593:
6594: * src/: classes/curl.C, include/pa_config_includes.h,
6595: main/pa_globals.C: THREAD_LOCAL defined and used
6596:
6597: 2010-11-23 moko
6598:
6599: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
6600: should be passed to pa_sleep, and only fractional part (bugfix:
6601: #188)
6602:
6603: * src/targets/apache/mod_parser3.c: 1.3 compatibility
6604:
6605: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6606: GC_dont_gc=1, as in cgi version
6607:
6608: * src/targets/apache/mod_parser3.c: warning war
6609:
6610: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6611: pa_httpd.h: version removed, some trash removed
6612:
6613: * src/targets/apache/mod_parser3.c: version removed (we don't want
6614: to show it), warning war
6615:
6616: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6617: pa_httpd.h: parser_status_allowed removed + merge config
6618: functions removed (override is the default) + beauty
6619:
6620: * src/: include/pa_request.h, main/pa_request.C,
6621: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
6622: hide $status used in apache module removed
6623:
6624: 2010-11-18 moko
6625:
6626: * operators.txt: $.table[compact] added for ^json:string[]
6627:
6628: 2010-11-16 moko
6629:
6630: * src/targets/apache/mod_parser3.c: some cleanup done
6631:
6632: * src/main/untaint.C: bugfix: first, second String::Body argument
6633: is hashcode; second, info.fragment_begin is original, not
6634: resulting length
6635:
6636: * src/classes/file.C: new feature: $.stdin now untainted
6637:
6638: * tests/results/264.processed: new feature: $.stdin[] now untainted
6639:
6640: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
6641:
6642: * src/classes/op.C: ^apply-taint[] method added
6643:
6644: * tests/: 264.html, results/264.processed: ^apply-taint[] test
6645: added; $.stdin untaint test added
6646:
6647: 2010-11-15 moko
6648:
6649: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
6650: removed
6651:
6652: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6653: pa_httpd.h: 2x2 calculated under apache2. :)
6654:
6655: 2010-11-13 moko
6656:
6657: * src/targets/apache/mod_parser3.c: initial changes to build module
6658: with apache 2.x includes
6659:
6660: * src/targets/apache/: Makefile.am, mod_parser3.c,
6661: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
6662: united apache 1.3 / apache 2.x DSO module
6663:
6664: 2010-11-09 moko
6665:
6666: * src/types/pa_method.h: check added to dissallow @method[name;*]
6667: syntax
6668:
6669: * tests/: 263.html, results/263.processed: test from method[*args]
6670: added
6671:
6672: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
6673: number of params can now be passed to a method declared with *arg
6674:
6675: 2010-11-06 moko
6676:
6677: * src/classes/table.C: formating fixed. :)
6678:
6679: * src/classes/table.C: closes #4: ^table.select now supports
6680: $.limit(), $.offset, $.reverse() options
6681:
6682: * tests/: 262.html, results/262.processed: test for ^table:select
6683: with options added (feature #4)
6684:
6685: * src/include/pa_array.h: remove function added
6686:
6687: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
6688: object in get_element/put_element, using static one.
6689:
6690: 2010-11-04 moko
6691:
6692: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
6693: options is passed
6694:
6695: * tests/: 256.html, results/256.processed: $.table[compact] feature
6696: now tested; k and p in handler now tested.
6697:
6698: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
6699: $.table[compact] feature added
6700:
6701: * src/classes/json.C: key is now passed to handler in
6702: value_json_string; ^json:string result now process tainting
6703: inside and returns clean string, related to issue #153
6704:
6705: * src/main/untaint.C: bugfix: charset can be null (in
6706: ^string:save[] as example), thus check is added
6707:
6708: 2010-10-31 moko
6709:
6710: * src/classes/string.C: error message changed (fixes issue #149)
6711:
6712: 2010-10-29 moko
6713:
6714: * src/main/pa_http.C: ":port" is now added to "Host:" header if
6715: port is not default (fixes issue #155); exception on invalid port
6716: added.
6717:
6718: * src/main/untaint.C: '*' is now not urlencoded to allow header
6719: "Accept: */*" to be passed
6720:
6721: 2010-10-28 moko
6722:
6723: * src/classes/curl.C: bugfix: detect_charset() was throwing
6724: exception on unknown charset even if response_charset was
6725: specified
6726:
6727: 2010-10-27 moko
6728:
6729: * src/classes/string.C: ^string.append removed for void
6730: compatibility
6731:
6732: 2010-10-26 moko
6733:
6734: * src/classes/json.C: libjson supports array at top level, we too
6735: (GPF fixed)
6736:
6737: 2010-10-25 moko
6738:
6739: * tests/: 253.html, results/253.processed: libjson supports array
6740: at top level, parser now supports it as well.
6741:
6742: * tests/261.html, tests/results/261.processed,
6743: src/types/pa_vstring.h: empty string is now void compatible
6744: (allows $empty.key)
6745:
6746: 2010-10-22 misha
6747:
6748: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
6749: while adding additional expires checkout)
6750:
6751: * tests/030.html: - test for session cookie was added
6752:
6753: 2010-10-21 moko
6754:
6755: * src/: classes/string.C, classes/void.C, main/execute.C,
6756: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
6757: string (feature #111)
6758:
6759: * tests/: 261.html, results/261.processed: checks void from string
6760: inheritance (feature #111)
6761:
6762: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
6763: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
6764: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
6765: now true by default
6766:
6767: 2010-10-17 moko
6768:
6769: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
6770: upload now uses binary blocks instead of L_FILE_POST tainting.
6771: (bugfix: #128)
6772:
6773: * tests/: 223.html, results/223.processed: binary file upload test
6774: added, GPF (issue #128) also checked in this test
6775:
6776: 2010-10-13 misha
6777:
6778: * tests/260.html: - test for math:convert
6779:
6780: * src/classes/math.C: - error in math:convert was fixed
6781:
6782: * operators.txt: - info about
6783: ^math:convert[number](from-base;to-base) was added
6784:
6785: * src/classes/math.C: - method
6786: ^math:convert[number](from-base;to-base) for converting number
6787: represention from one base to another was added ( new feature:
6788: #23 )
6789:
6790: 2010-10-13 moko
6791:
6792: * src/main/compile.tab.C: [] now is empty string, not void
6793:
6794: * src/main/compile.y: [] now is empty string, not void
6795:
6796: * src/types/pa_vvoid.h: void now passed as parameter
6797:
6798: * tests/: 259.html, results/259.processed: to test difference
6799: between void and empty string (see ticket #111)
6800:
6801: * tests/results/152.processed: $sEmpty[] is now empty string, not
6802: void
6803:
6804: * tests/256.html: $s[$void] is no longer empty string
6805:
6806: * tests/254.html: empty string is no longer void
6807:
6808: 2010-10-12 misha
6809:
6810: * src/types/pa_vcookie.C: - check if $.expires value can be
6811: converted to date during cookies set up ( bugfix: #104 )
6812:
6813: * tests/041.html: - more tests for ^table.locate were added
6814:
6815: * src/classes/table.C: - ^table.locate[field;value;options] didn't
6816: work ( bugfix: #129 ) - exception comment for incorrect options
6817: ^table.locate[field;value;options] was fixed
6818:
6819: 2010-10-10 moko
6820:
6821: * src/: classes/reflection.C, main/execute.C: constructor returning
6822: another object feature returned
6823:
6824: * tests/results/258.processed: test result updated as constructor
6825: returning another object feature returned
6826:
6827: * tests/: 258.html, results/258.processed: test for constructor
6828: returning another object
6829:
6830: 2010-10-08 misha
6831:
6832: * tests/257.html: - whitespaces after @METACOMMANDS and their
6833: options shouldn't cause exceptions any longer
6834:
6835: 2010-10-06 moko
6836:
6837: * src/classes/: hash.C, table.C: length from sql server is now
6838: ignored, as sql string can contain 0x00 inside (bugfix: #119)
6839:
6840: 2010-10-02 misha
6841:
6842: * operators.txt: - the X mark was removed from ^cache[file]. it is
6843: usable to delete cache file.
6844:
6845: 2010-10-02 moko
6846:
6847: * tests/: 253.html, results/253.processed: hook_key added for key
6848: checking
6849:
6850: * src/classes/json.C: null key bug fixed
6851:
6852: 2010-09-29 misha
6853:
6854: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
6855:
6856: 2010-09-25 moko
6857:
6858: * src/classes/json.C: small fixed
6859:
6860: * tests/results/: 253.processed, 255.processed: just updated
6861:
6862: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
6863: results/255.processed: charset transcode test added for
6864: json:parse
6865:
6866: 2010-09-24 moko
6867:
6868: * src/types/pa_value.h: warning war :)
6869:
6870: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
6871: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
6872: ^json:string
6873:
6874: 2010-09-22 moko
6875:
6876: * src/main/pa_charset.C: parser charset tables declare only
6877: white-space before 0x20, thus adding the missing chars
6878:
6879: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
6880: to http://unicode.org/Public/MAPPINGS/VENDORS/
6881:
6882: 2010-09-21 misha
6883:
6884: * src/main/compile.y: - some semicolons were added (VS2010 don't
6885: want to compile grammar if they are absent)
6886:
6887: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
6888:
6889: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
6890:
6891: * src/main/main.vcproj: - path to bison is changed
6892:
6893: 2010-09-21 moko
6894:
1.116 moko 6895: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
6896: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
6897: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 6898:
6899: 2010-09-20 misha
6900:
6901: * src/types/pa_vtable.C: - add EOLs while json-serializing table
6902:
6903: * src/classes/json.C: - add EOL while json-serializing hash
6904:
6905: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
6906: compilers don't like 'ES'.
6907:
6908: 2010-09-17 misha
6909:
6910: * operators.txt: - info about json class was added
6911:
6912: * src/classes/json.C: - ^json:string[object]
6913:
6914: * src/: include/pa_request.h, main/pa_request.C: - stuff for
6915: preventing infinite recursion while executing json:string was
6916: added
6917:
6918: * src/include/pa_string.h: - method append_quoted was added
6919:
6920: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
6921: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
6922: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
6923: was added to Value & Co
6924:
6925: * src/classes/date.C: - methods get_gmt_string and get_sql_string
6926: were used
6927:
6928: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
6929: were added
6930:
6931: 2010-09-10 moko
6932:
6933: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6934: die_or_abort (backport from 3.4.1)
6935:
6936: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6937: die_or_abort (bugfix: #106)
6938:
6939: 2010-09-09 moko
6940:
6941: * src/classes/json.C: warning war. :)
6942:
6943: 2010-09-08 misha
6944:
6945: * src/lib/json/Makefile.am: - additional include directories were
6946: added (for pa_memory.h and gc.h)
6947:
6948: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
6949: compile as C++ instead default - additional include directory was
6950: added (for gc.h)
6951:
6952: * src/types/pa_vform.C: - little code reformating
6953:
6954: * src/classes/file.C: - $.content-type option now can be specified
6955: in ^file::create ( new feature: #102 )
6956:
6957: 2010-09-08 moko
6958:
6959: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
6960: pa_malloc/pa_free
6961:
6962: 2010-09-07 moko
6963:
6964: * tests/results/254.processed: VStateless_class:put_element
6965: exception was fixed
6966:
6967: * src/types/: pa_value.h, pa_vstateless_class.h: now
6968: VStateless_class:put_element barks self.type, not this.type
6969: (bugfix: #105)
6970:
6971: 2010-09-06 moko
6972:
6973: * src/classes/reflection.C: bugfix: new String() is required for
6974: exception handling
6975:
6976: * tests/: 254.html, results/254.processed: test modified
6977:
6978: 2010-09-05 moko
6979:
6980: * tests/: 254.html, results/254.processed: ^reflection:copy test
6981: added
6982:
6983: * src/: classes/reflection.C, include/pa_request.h:
6984: ^reflection:copy implemented (new feature: #100)
6985:
6986: 2010-09-03 moko
6987:
6988: * src/lib/json/JSON_parser.C: c++ compatiblity
6989:
6990: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
6991: option testing added
6992:
6993: 2010-09-02 moko
6994:
6995: * src/classes/json.C: $.distinct[first|last|all] added
6996:
6997: 2010-09-01 moko
6998:
6999: * tests/results/253.processed: json test result
7000:
7001: * tests/: 253.html, 253_json.txt: json test added
7002:
7003: * src/classes/json.C: json.C update to actual version + hash key
7004: creation bugfix
7005:
7006: 2010-08-31 misha
7007:
7008: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
7009: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
7010: src/lib/Makefile.am, src/classes/Makefile.am,
7011: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
7012: json library was added
7013:
7014: 2010-08-30 moko
7015:
7016: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
7017: types/pa_vobject.C: cosmetic optimization in
7018: request:execute_method usage
7019:
7020: * src/: include/pa_charset.h, main/pa_charset.C: small
7021: optimization, just to decrease number of lines. :)
7022:
7023: 2010-08-27 misha
7024:
7025: * src/classes/op.C: - taint[json] was added
7026:
7027: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
7028: were added
7029:
7030: * src/main/pa_exec.C: - warning fix was rolled back.
7031:
7032: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
7033: include/pa_string.h: - taint[json] was added - escaping was
7034: slightly modified
7035:
7036: 2010-08-25 misha
7037:
7038: * src/classes/file.C: - typo in file:sql exception was fixed
7039:
7040: * src/main/pa_exec.C: - warning about declared and not used
7041: variable forced_allow was removed
7042:
7043: 2010-08-14 misha
7044:
7045: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
7046: were removed
7047:
7048: 2010-08-11 moko
7049:
7050: * tests/: 249.html, results/249.processed: default setter and
7051: anti-recursive default getter test added
7052:
7053: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
7054: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
7055: types/pa_vobject.h, types/pa_vstateless_class.C,
7056: types/pa_vstateless_class.h: default setter support +
7057: anti-recursive default getter support ( new feature: #13 )
7058:
7059: * src/include/pa_hash.h: optimization: threshold member removed
7060: from hash, reducing sizeof(hash)
7061:
7062: 2010-08-10 misha
7063:
7064: * tests/196.html: - junction-method was added to the test
7065:
7066: * tests/248.html: - ups. typo :)
7067:
7068: * tests/248.html: - test for checking .match with 4 params
7069:
7070: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
7071: 247_windows1251.txt: - test for "transcode file from utf-8 to
7072: $request:charset during loading if the BOM code is detected"
7073:
7074: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
7075: $request:charset during loading if the BOM code is detected ( new
7076: feature: #98 )
7077:
7078: 2010-08-05 misha
7079:
7080: * src/classes/image.C: - ^image.replace now can accept only 2
7081: params. in this case the whole image is affected ( new feature:
7082: #95 )
7083:
7084: 2010-08-04 misha
7085:
7086: * tests/246.html: - test tor ^hash._at[] was added
7087:
7088: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
7089: #53 )
7090:
7091: * src/include/pa_hash.h: - methods for accessing the first and the
7092: last values of ordered hash were added (first_value and
7093: last_value)
7094:
7095: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
7096: (similar to others file's methods):
7097: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
7098: #68 )
7099:
7100: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
7101:
7102: 2010-08-01 moko
7103:
7104: * src/classes/op.C: to correctly process $result[] in code, called
7105: from ^process
7106:
7107: * tests/245.html: $result in ^process[] test added
7108:
7109: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
7110: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
7111: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
7112: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
7113: caller, self) op_call(VMethodFrame &frame, bool constructing)
7114: removed, construct(class,method) added
7115:
7116: * tests/results/: 192.processed, 244.processed: request::construct
7117: added
7118:
7119: * tests/: 244.html, 245.html, results/244.processed,
7120: results/245.processed: object creation exceptions and ^process
7121: tests added
7122:
7123: 2010-07-28 misha
7124:
7125: * tests/make_tests.cmd: - win32 EOLs
7126:
7127: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
7128: tests on Win32 were added (The system timezone should be GMT+3)
7129:
7130: 2010-07-26 misha
7131:
7132: * tests/: 212.html, results/212.processed: - sizes were removed
7133: mecause they could be different on different OSs
7134:
7135: * tests/065.html: - make it "win32 friendly"
7136:
7137: 2010-07-25 misha
7138:
7139: * src/main/compile.y: - all EOLs between methods are removed during
7140: compilation ( new feature: #47 )
7141:
7142: * tests/results/149.processed: - prepare tests to trim trailing
7143: methods' EOLs
7144:
7145: * tests/149.html: - prepare tests to trim trailing methods' EOLs
7146:
7147: * tests/: results/006.processed, results/014.processed, 006.html,
7148: 014.html, 022.html: - prepare tests to trim trailing methods'
7149: EOLs
7150:
7151: * tests/: 059.html, 071.html, 149.html, results/059.processed,
7152: results/071.processed, results/022.processed: - prepare tests to
7153: trim trailing methods' EOLs
7154:
7155: * tests/: results/073.processed, results/109.processed,
7156: results/142.processed, results/144.processed,
7157: results/149.processed, 073.html, 096.html, 109.html, 142.html,
7158: 144.html: - prepare tests to trim trailing methods' EOLs
7159:
7160: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
7161: 149.html, 152.html, results/096.processed, results/107.processed,
7162: results/109.processed, results/142.processed,
7163: results/144.processed: - prepare tests to trim trailing methods'
7164: EOLs
7165:
7166: 2010-07-24 moko
7167:
7168: * tests/results/: 156.processed, 224.processed: fix for #54 changed
7169: the hash order in this test
7170:
7171: * tests/014.html: to check hash order, hash no is longer sorted
7172: before print
7173:
7174: * src/include/pa_hash.h: hash copy constructor now keeps order
7175: (bugfix: #54)
7176:
7177: 2010-07-23 moko
7178:
7179: * tests/results/224.processed: @auto[] is no longer inherited
7180:
7181: * src/types/pa_vstateless_class.C, tests/227.html,
7182: tests/results/227.processed: @auto[] is no longer inherited
7183: (bugfix: #57)
7184:
7185: 2010-07-22 misha
7186:
7187: * src/classes/table.C: - don't skip comment lines during
7188: table::load if encloser or separator is set as '#' ( new feature:
7189: #30 )
7190:
7191: * src/targets/cgi/parser3.C: - don't run as cgi if
7192: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
7193: #12 )
7194:
7195: * src/classes/file.C: - set PARSER_VARSION env before external
7196: script executing
7197:
7198: 2010-07-13 misha
7199:
7200: * tests/058.html: - test for suppressing @border was added - test
7201: for user attribute was added
7202:
7203: * tests/results/186.processed: unescaping from \uXXXX
7204:
7205: * tests/186.html: unescaping from \uXXXX
7206:
7207: * tests/: 239.html, results/239.processed: method call type
7208:
7209: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
7210: $junction_method.CLASS_NAME (+CLASS)
7211:
7212: 2010-07-07 misha
7213:
7214: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
7215: *nix
7216:
7217: 2010-07-05 misha
7218:
7219: * src/: classes/curl.C, classes/file.C, classes/hash.C,
7220: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
7221: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
7222: comment strings "options must be hash", "options must be hash,
7223: not code" and "called with invalid option" were replaced by
7224: constatns - exception comment string "invalid option passed" was
7225: replaced by "called with invalid option" (now in different
7226: methods are the same exception comment string)
7227:
7228: * src/include/pa_exception.h: - more exception strings were defined
7229:
7230: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
7231: types/pa_vstateless_class.h: - now we can define possible
7232: method's call type ( new feature: #5 ) 1.
7233: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
7234: methods 2. @static:method[params] (only static keyword could be
7235: used here) -- for specified methods
7236:
7237: * src/main/pa_common.C: - junction points should not be deleted on
7238: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
7239: cleanup
7240:
7241: 2010-07-03 misha
7242:
7243: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
7244: results/158.processed, results/160.processed,
7245: results/161.processed, results/162.processed,
7246: results/163.processed: - prepare tests to trim trailing methods'
7247: EOLs
7248:
7249: * tests/results/169.processed: - prepare tests to trim trailing
7250: methods' EOLs
7251:
7252: * tests/results/: 168.processed, 169.processed: - prepare tests to
7253: trim trailing methods' EOLs
7254:
7255: * tests/: results/170.processed, results/167.processed,
7256: results/168.processed, results/169.processed, 167.html, 168.html,
7257: 169.html: - prepare tests to trim trailing methods' EOLs
7258:
7259: * tests/: results/170.processed, results/171.processed,
7260: results/172.processed, results/173.processed,
7261: results/174.processed, results/175.processed, 170.html, 171.html,
7262: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
7263: trailing methods' EOLs
7264:
7265: * tests/: results/176.processed, results/180.processed,
7266: results/184.processed, results/185.processed,
7267: results/191.processed, results/192.processed,
7268: results/196.processed, results/197.processed,
7269: results/198.processed, 176.html, 180.html, 184.html, 185.html,
7270: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
7271: to trim trailing methods' EOLs
7272:
7273: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
7274: results/199.processed, results/208.processed,
7275: results/209.processed, results/213.processed,
7276: results/214.processed: - prepare tests to trim trailing methods'
7277: EOLs
7278:
7279: 2010-06-29 misha
7280:
7281: * tests/: 220.html, 218.html, results/218.processed,
7282: results/215.processed, results/217.processed, 215.html, 217.html:
7283: - prepare tests to trim trailing methods' EOLs
7284:
7285: * tests/: results/224.processed, 224.html, 223.html,
7286: results/223.processed, results/220.processed: - prepare tests to
7287: trim trailing methods' EOLs
7288:
7289: * tests/results/: 226.processed, 230.processed: - prepare tests to
7290: trim trailing methods' EOLs
7291:
7292: * tests/: 229.html, results/229.processed: - prepare tests to trim
7293: trailing methods' EOLs
7294:
7295: * tests/: 232.html, 235.html, results/232.processed,
7296: results/235.processed, 226.html, 227.html, 228.html, 230.html,
7297: results/226.processed, results/227.processed,
7298: results/228.processed, results/230.processed: - prepare tests to
7299: trim trailing methods' EOLs
7300:
7301: 2010-06-16 moko
7302:
7303: * tests/: 229.html, results/229.processed: elseif now supported in
7304: ^if
7305:
7306: * src/classes/op.C: new feature: #56 elseif now supported in ^if
7307:
7308: 2010-06-03 misha
7309:
7310: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
7311: instead of memcopy for overlaped regions
7312:
7313: 2010-05-25 misha
7314:
7315: * src/main/pa_common.C: - wanring about unused vars was removed
7316:
7317: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
7318: get_method_filename was moved to execute.C
7319:
7320: 2010-05-23 misha
7321:
7322: * src/main/pa_request.C: - more accurate detection of method's file
7323:
7324: 2010-05-22 misha
7325:
7326: * src/classes/reflection.C: - bugfix: core during detection of
7327: .file if filespec isn't detected successfully
7328:
7329: 2010-05-20 misha
7330:
7331: * src/main/pa_request.C: - fix in get_method_filename
7332:
7333: * src/include/pa_request.h: - new feature: #24 -- searching
7334: included file in @USE/^use is changed. if its filespec doesn't
7335: start from '/' it will be searched in caller file directory
7336:
7337: * src/classes/reflection.C: - ^reflection:method_info returns file
7338: where the method is defined
7339:
7340: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
7341: classes/op.C: - new feature: #24 -- searching included file in
7342: @USE/^use is changed. if its filespec doesn't start from '/' it
7343: will be searched in caller file directory
7344:
7345: * src/: classes/file.C, include/pa_common.h: - method lastposafter
7346: is moved to pa_common.h
7347:
7348: 2010-05-18 misha
7349:
7350: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
7351: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
7352: cookie parser decode \uXXXX as well as %uXXXX
7353:
7354: 2010-05-17 misha
7355:
7356: * src/classes/curl.C: beauty: - unused param is removed in method
7357: _curl_version_action - some spaces were removed or replaced by
7358: tabs
7359:
7360: * src/classes/table.C: - bugfix: #72 core with empty value during
7361: ^table.hash[...;name_of_the_last_column][$.type[string]]
7362:
7363: 2010-05-16 misha
7364:
7365: * src/classes/curl.C: new: #61 more curl options were added
7366: (contributed by Sumo)
7367:
7368: 2010-04-29 pretender
7369:
7370: * src/main/pa_string.C: fixes #63 Split result from empty string
7371: now empty string.
7372:
7373: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
7374: string type.
7375:
7376: 2010-04-28 pretender
7377:
7378: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
7379: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
7380: macrodefinition removed
7381:
7382: 2010-04-19 pretender
7383:
7384: * src/main/execute.C: fixes #60 Stacktrace now contains info for
7385: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
7386:
7387: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
7388: fixes #64 Now file.missing exception generates in unsafe mode to.
7389:
7390: * src/classes/file.C: fixes #48 Now not throw "not save environment
7391: variable" exception in grpunlim version.
7392:
7393: 2010-04-05 misha
7394:
7395: * src/classes/string.C: - new feature: 4th param was added to
7396: match. if specified its value is returned in case of nothing was
7397: found
7398:
7399: 2010-04-01 misha
7400:
7401: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
7402: multiple execution of /a/b/auto.p
7403:
7404: 2010-03-19 misha
7405:
7406: * src/main/execute.C: - core in $table1.$table2 was fixed
7407:
7408: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
7409:
7410: 2010-01-27 misha
7411:
7412: * src/main/pa_common.C: - bugfix: there are no excaption.type if
7413: trying to open file by path /existing-file/non-exixting-file
7414:
7415: 2010-01-26 misha
7416:
7417: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
7418: was added (returns file)
7419:
7420: 2009-12-22 misha
7421:
7422: * src/classes/curl.C: - method 'option' was renamed to 'options' -
7423: now parser doesn't have class curl if it was built without it
7424:
7425: 2009-12-15 misha
7426:
7427: * configure.in: - little cheat with curl include dir was added
7428:
7429: 2009-12-05 misha
7430:
7431: * src/classes/curl.C: - some fixes
7432:
7433: 2009-12-04 misha
7434:
7435: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
7436: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
7437: buildall-with-xml, buildall-without-xml, configure.in: - curl
7438: class was added
7439:
7440: * src/include/pa_hash.h: - hash-iterator was added
7441:
7442: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
7443: was added to pcre
7444:
7445: 2009-11-27 misha
7446:
7447: * src/classes/image.C: - don't add @border attribute to output of
7448: ^image.html[] if it was specified by user with empty value
7449:
7450: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
7451: root element and we are trying to access .documentElement
7452:
7453: 2009-11-11 misha
7454:
7455: * src/classes/table.C: - in ^table.flip[] look at number of columns
7456: instead of number of items in first row for named tables
7457:
7458: 2009-11-10 misha
7459:
7460: * operators.txt: - info about hash-options in ^file::create was
7461: added
7462:
7463: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
7464: added
7465:
7466: 2009-11-09 misha
7467:
7468: * buildall-with-xml: - moving to libxml 2.7.6
7469:
7470: * tests/236.html: - tests for comparations cords with functions
7471: were added
7472:
7473: * src/include/pa_string.h: - optimisation: cacheing of cstr was
7474: added
7475:
7476: * src/main/pa_http.C: - little optimisation
7477:
7478: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
7479: GPF mallocs + stringstream (table.save)
7480:
7481: * src/classes/file.C: - file::create now accepts 4th param: options
7482: with $.charset
7483:
7484: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
7485: bug in cord (comparation cords with functions was buggy)
7486:
7487: 2009-11-06 misha
7488:
7489: * src/main/pa_string.C: - bugfix: calculation string.length
7490: sometimes was buggy
7491:
7492: * src/classes/string.C: - bugfix: Temp_value_element wasn't
7493: destroyed if exception occured during match/replace
7494:
7495: * src/: main/pa_charset.C, include/pa_charset.h: - method
7496: lengthUTF8Char was added
7497:
7498: * src/classes/op.C: - clean tainting lang was added for user's
7499: usage
7500:
7501: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
7502: fixed: checkouts are required after GC_MALLOC
7503:
7504: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
7505:
7506: * operators.txt: - actually, there is no ^untaint[xml] in
7507: file::create
7508:
7509: 2009-10-15 misha
7510:
7511: * tests/: 235.html, 235_attach.txt: - tests for preparing email
7512: were added
7513:
7514: * tests/234.html: - more tests for checking ^taint[uri] escaping
7515: were added
7516:
7517: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
7518: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
7519: hacking: for dealing with transcoding+^taint[uri]
7520: transcode_and_untaint was replaced by untaint_and_transcode
7521:
7522: 2009-10-13 misha
7523:
7524: * tests/: 121.html, results/121.processed: - test transcoding +
7525: url-escaping now
7526:
7527: * tests/results/auto.p: - more helpers' methods were added
7528:
7529: * src/main/pa_globals.C: - die instead of abort
7530:
7531: 2009-10-06 misha
7532:
7533: * src/main/pa_common.C: - don't allocate memory during
7534: capitalization if input string is already capitalized
7535:
7536: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
7537:
7538: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
7539: use format function because it calls malloc
7540:
7541: * src/include/pa_common.h: - more capitalized headers were added
7542:
7543: * src/main/pa_common.C: - in safe mode clear executable bits during
7544: file writing
7545:
7546: 2009-10-05 misha
7547:
7548: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
7549:
7550: 2009-10-03 misha
7551:
7552: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
7553: ^img.text[] & ^img.length[] can work in utf-8 now
7554:
7555: * src/: include/pa_charset.h, main/pa_charset.C: - class
7556: UTF8_string_iterator was added
7557:
7558: * src/classes/image.C: - respect utf-8 when calculate alphabet
7559: length
7560:
7561: * src/classes/mail.C: - check from before get message.cstr
7562:
7563: 2009-10-02 misha
7564:
7565: * tests/233.html: - test for image.font, image.length, image.text
7566: with text in utf-8 were added
7567:
7568: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
7569:
7570: * buildall-with-xml, buildall-without-xml: - comment about gc
7571: version for freebsd 4 was added
7572:
7573: 2009-10-01 misha
7574:
7575: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
7576: terminator) - read_pipe were slightly optimized
7577:
7578: 2009-09-28 misha
7579:
7580: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
7581: removed
7582:
7583: * src/types/pa_vmail.C: - forgot about space after ':'
7584:
7585: * src/types/pa_vmail.C: - escape filenames while preparing mail
7586: body - small simplifications
7587:
7588: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
7589: inout params like pa_base64
7590:
7591: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
7592: option $.debug-print(1) was added to mail:send - changes for
7593: using uue_encode which uses less memory
7594:
7595: * src/main/pa_common.C: - pa_base64_encode uses less memory now
7596:
7597: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
7598: memory now
7599:
7600: 2009-09-26 misha
7601:
7602: * src/types/pa_vmail.C: - default encoding now is base64
7603:
7604: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
7605:
7606: 2009-09-25 misha
7607:
7608: * src/types/pa_vmail.C: - capitalization of headers was added to
7609: sending mail as well
7610:
7611: * buildall-with-xml: - catalog package was removed from libxml
7612:
7613: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
7614: win32 absolute path
7615:
7616: * src/include/pa_common.h: - one more capitalized header was added
7617:
7618: 2009-09-22 misha
7619:
7620: * INSTALL: - comment about building just httpd binary while
7621: building apache module was added
7622:
7623: 2009-09-21 misha
7624:
7625: * buildall-with-xml: - moving to the latest versions of xml libs:
7626: libxml 2.7.4 and libxslt 1.1.25
7627:
7628: 2009-09-19 misha
7629:
7630: * tests/231.html: - test for encoding cookie in win-1251
7631:
7632: 2009-09-18 misha
7633:
7634: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
7635: object] were added
7636:
7637: * operators.txt: - info about method ^reflection:fields[class or
7638: object] was added
7639:
7640: * src/classes/reflection.C: - method ^reflection:fields[class or
7641: object] was added
7642:
7643: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
7644: methods get_fields were added
7645:
7646: * tests/232.html: - tests for @GET[name]
7647:
7648: * src/classes/table.C: - some changes in handling hash-options for
7649: creare, join and locate
7650:
7651: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
7652: defined with option: the type of requested value
7653:
7654: 2009-09-17 misha
7655:
7656: * tests/212.html: - tests for .pattern and .options were added
7657:
7658: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
7659: $regex.options were added
7660:
7661: 2009-09-11 misha
7662:
7663: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
7664: rewrited. it checks not just one case of sending cookies during
7665: file::load[http], but also sending headers and fields (including
7666: files)
7667:
7668: 2009-09-10 misha
7669:
7670: * src/main/untaint.C: - workaround in file-spec lang for old Macs
7671: was removed => now parser can open files with Russian 'r' in
7672: filename
7673:
7674: * src/main/untaint.C: - bugfix: client charset whould be analized
7675: while escaping cookies but now source charset
7676:
7677: * src/main/pa_http.C: - bugfix: the values of http headers didn't
7678: ^tainted[uri] so it was possible to make request with incorrect
7679: http header
7680:
7681: * src/main/pa_http.C: - capitalization of http headers during
7682: file::load[http was slightly changes - bugfix: all headers which
7683: parser sends during file::load[http should be transcoded and only
7684: then escaped
7685:
7686: * src/main/untaint.C: - a bit more comments were added
7687:
7688: * src/classes/: file.C, string.C: - types where changes (minus 2
7689: warnings)
7690:
7691: * src/include/pa_common.h: - 2 capitalized strings for making http
7692: headers during file::load[http were added
7693:
7694: 2009-09-08 misha
7695:
7696: * operators.txt: - changes in file.save and string.save were added
7697:
7698: * tests/: 230.html, 230.txt: - tests for checking options in
7699: file.save and string.save were added
7700:
7701: * src/main/pa_request.C: - http headers names, which are passed to
7702: SAPI::add_header_attribute are lowercased now (it'll be
7703: capitalized in that method)
7704:
7705: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
7706: classes/string.C: - file_write accepts Request_charsets and asked
7707: charset and cound transcode content before writing - string.save
7708: and file.save have option $.charset now
7709:
7710: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
7711: classes/xdoc.C: - file_write accepts Request_charsets and asked
7712: charset and cound transcode content before writing
7713:
7714: * src/include/pa_exception.h: - new exception comment string was
7715: defined
7716:
7717: 2009-09-07 misha
7718:
7719: * src/main/compile.y: - grammar $name\ name stops now for regex
7720: sub-pattern\s
7721:
7722: 2009-09-04 misha
7723:
7724: * src/main/pa_http.C: - capitalization of http headers during
7725: file::load[http was implemented
7726:
7727: 2009-09-03 misha
7728:
7729: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
7730: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
7731: types/pa_vmail.C, targets/cgi/parser3.C,
7732: targets/isapi/parser3isapi.C: - back to storing response http
7733: headers in lowercase - capitalize them during output
7734:
7735: 2009-08-31 misha
7736:
7737: * src/classes/table.C: - allow call with any brackets (it could be
7738: useful in methods with explict result declaration)
7739:
7740: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
7741: correctly if $request:charset==koi8-r
7742:
7743: 2009-08-30 misha
7744:
7745: * src/: include/pa_common.h, main/pa_request.C: - http headers were
7746: changed: content-type => Content-type and so on
7747:
7748: * src/classes/file.C, src/include/pa_common.h,
7749: src/include/pa_request.h, src/main/pa_http.C,
7750: src/main/pa_request.C, src/types/pa_vcookie.C,
7751: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
7752: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
7753: tests/results/002.processed, tests/results/003.processed,
7754: tests/results/004.processed, tests/results/005.processed,
7755: tests/results/006.processed, tests/results/007.processed,
7756: tests/results/008.processed, tests/results/009.processed,
7757: tests/results/010.processed, tests/results/011.processed,
7758: tests/results/012.processed, tests/results/013.processed,
7759: tests/results/014.processed, tests/results/015.processed,
7760: tests/results/016.processed, tests/results/017.processed,
7761: tests/results/018.processed, tests/results/019.processed,
7762: tests/results/020.processed, tests/results/021.processed,
7763: tests/results/022.processed, tests/results/023.processed,
7764: tests/results/024.processed, tests/results/025.processed,
7765: tests/results/026.processed, tests/results/027.processed,
7766: tests/results/028.processed, tests/results/029.processed,
7767: tests/results/030.processed, tests/results/031.processed,
7768: tests/results/032.processed, tests/results/033.processed,
7769: tests/results/034.processed, tests/results/035.processed,
7770: tests/results/036.processed, tests/results/037.processed,
7771: tests/results/038.processed, tests/results/039.processed,
7772: tests/results/040.processed, tests/results/041.processed,
7773: tests/results/042.processed, tests/results/043.processed,
7774: tests/results/044.processed, tests/results/045.processed,
7775: tests/results/046.processed, tests/results/047.processed,
7776: tests/results/048.processed, tests/results/049.processed,
7777: tests/results/050.processed, tests/results/051.processed,
7778: tests/results/052.processed, tests/results/053.processed,
7779: tests/results/054.processed, tests/results/055.processed,
7780: tests/results/056.processed, tests/results/057.processed,
7781: tests/results/058.processed, tests/results/059.processed,
7782: tests/results/060.processed, tests/results/061.processed,
7783: tests/results/062.processed, tests/results/063.processed,
7784: tests/results/064.processed, tests/results/065.processed,
7785: tests/results/066.processed, tests/results/067.processed,
7786: tests/results/068.processed, tests/results/069.processed,
7787: tests/results/070.processed, tests/results/071.processed,
7788: tests/results/072.processed, tests/results/073.processed,
7789: tests/results/074.processed, tests/results/075.processed,
7790: tests/results/076.processed, tests/results/077.processed,
7791: tests/results/078.processed, tests/results/079.processed,
7792: tests/results/080.processed, tests/results/081.processed,
7793: tests/results/082.processed, tests/results/083.processed,
7794: tests/results/084.processed, tests/results/085.processed,
7795: tests/results/086.processed, tests/results/087.processed,
7796: tests/results/088.processed, tests/results/089.processed,
7797: tests/results/090.processed, tests/results/091.processed,
7798: tests/results/092.processed, tests/results/093.processed,
7799: tests/results/094.processed, tests/results/095.processed,
7800: tests/results/096.processed, tests/results/097.processed,
7801: tests/results/098.processed, tests/results/099.processed,
7802: tests/results/100.processed, tests/results/101.processed,
7803: tests/results/102.processed, tests/results/103.processed,
7804: tests/results/104.processed, tests/results/105.processed,
7805: tests/results/106.processed, tests/results/107.processed,
7806: tests/results/108.processed, tests/results/109.processed,
7807: tests/results/110.processed, tests/results/111.processed,
7808: tests/results/112.processed, tests/results/113.processed,
7809: tests/results/114.processed, tests/results/115.processed,
7810: tests/results/116.processed, tests/results/117.processed,
7811: tests/results/118.processed, tests/results/119.processed,
7812: tests/results/120.processed, tests/results/121.processed,
7813: tests/results/122.processed, tests/results/123.processed,
7814: tests/results/124.processed, tests/results/125.processed,
7815: tests/results/126.processed, tests/results/127.processed,
7816: tests/results/128.processed, tests/results/129.processed,
7817: tests/results/130.processed, tests/results/131.processed,
7818: tests/results/132.processed, tests/results/133.processed,
7819: tests/results/134.processed, tests/results/135.processed,
7820: tests/results/136.processed, tests/results/138.processed,
7821: tests/results/139.processed, tests/results/140.processed,
7822: tests/results/141.processed, tests/results/142.processed,
7823: tests/results/143.processed, tests/results/144.processed,
7824: tests/results/145.processed, tests/results/146.processed,
7825: tests/results/147.processed, tests/results/148.processed,
7826: tests/results/149.processed, tests/results/150.processed,
7827: tests/results/151.processed, tests/results/152.processed,
7828: tests/results/153.processed, tests/results/154.processed,
7829: tests/results/155.processed, tests/results/156.processed,
7830: tests/results/157.processed, tests/results/158.processed,
7831: tests/results/159.processed, tests/results/160.processed,
7832: tests/results/161.processed, tests/results/162.processed,
7833: tests/results/163.processed, tests/results/164.processed,
7834: tests/results/165.processed, tests/results/166.processed,
7835: tests/results/167.processed, tests/results/168.processed,
7836: tests/results/169.processed, tests/results/170.processed,
7837: tests/results/171.processed, tests/results/172.processed,
7838: tests/results/173.processed, tests/results/174.processed,
7839: tests/results/175.processed, tests/results/176.processed,
7840: tests/results/177.processed, tests/results/178.processed,
7841: tests/results/179.processed, tests/results/180.processed,
7842: tests/results/181.processed, tests/results/182.processed,
7843: tests/results/183.processed, tests/results/184.processed,
7844: tests/results/185.processed, tests/results/186.processed,
7845: tests/results/187.processed, tests/results/188.processed,
7846: tests/results/189.processed, tests/results/190.processed,
7847: tests/results/191.processed, tests/results/192.processed,
7848: tests/results/193.processed, tests/results/194.processed,
7849: tests/results/195.processed, tests/results/196.processed,
7850: tests/results/197.processed, tests/results/198.processed,
7851: tests/results/199.processed, tests/results/200.processed,
7852: tests/results/201.processed, tests/results/202.processed,
7853: tests/results/203.processed, tests/results/204.processed,
7854: tests/results/205.processed, tests/results/206.processed,
7855: tests/results/207.processed, tests/results/208.processed,
7856: tests/results/209.processed, tests/results/210.processed,
7857: tests/results/211.processed, tests/results/212.processed,
7858: tests/results/213.processed, tests/results/214.processed,
7859: tests/results/215.processed, tests/results/216.processed,
7860: tests/results/217.processed, tests/results/218.processed,
7861: tests/results/219.processed, tests/results/220.processed,
7862: tests/results/221.processed, tests/results/222.processed,
7863: tests/results/223.processed, tests/results/224.processed,
7864: tests/results/225.processed, tests/results/226.processed,
7865: tests/results/227.processed, tests/results/228.processed,
7866: tests/results/229.processed: - http headers were changed:
7867: content-type => Content-type and so on
7868:
7869: 2009-08-27 misha
7870:
7871: * src/: main/pa_random.C, include/pa_random.h,
7872: targets/cgi/parser3.C: - year was updated :)
7873:
7874: 2009-08-26 misha
7875:
7876: * tests/: 224.html, 224.p: - test for creating of parser object
7877: using constructor without params - little bugfix in test
7878:
7879: * src/main/compile_tools.h: - bugfix: should't call autouse while
7880: checking existed class while processing partial option
7881:
7882: * src/classes/reflection.C: - bugfix: core when creating object
7883: with reflection and constructor doesn't have params
7884:
7885: 2009-08-24 misha
7886:
7887: * tests/229.html: - tests for checking the number of parameters
7888: were added
7889:
7890: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
7891: number of method's parameters wasn't checked correctly (the bug
7892: was introduced in 3.4.0)
7893:
7894: 2009-08-22 misha
7895:
7896: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
7897: transcoded, but tainted pieces are escaped only when
7898: content-type==url-encoding
7899:
7900: * tests/228.html: - test for checking
7901: ^file::load[http://...;$.body[]]
7902:
7903: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
7904: post charset was too early (charsets is empty at this moment)
7905:
7906: 2009-08-21 misha
7907:
7908: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
7909: main/untaint.C: - some fixes with transcode+untaint
7910:
7911: 2009-08-15 misha
7912:
7913: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
7914: was increaced to 100 (was 50)
7915:
7916: * tests/227.html: - test for checking overriding properties in
7917: static classes was added
7918:
7919: * tests/: 226.html, 226.p: - test for @autoload[] was added
7920:
7921: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
7922: main/execute.C, main/pa_request.C, classes/reflection.C: -
7923: autouse was implemented
7924:
7925: 2009-08-14 misha
7926:
7927: * src/classes/reflection.C: - outdated checkout was removed
7928:
7929: * src/classes/reflection.C: - optimization - method ^dynamical was
7930: added.
7931:
7932: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
7933: types/pa_vstateless_class.h, main/execute.C: - optimization
7934:
7935: * src/types/pa_vclass.C: - exception if base on sytem class
7936:
7937: 2009-08-12 misha
7938:
7939: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
7940: pa_vstateless_class.h: - little optimisation
7941:
7942: 2009-08-11 misha
7943:
7944: * tests/224.html: - method_params => method_info - checking for
7945: $.inherited
7946:
7947: * src/classes/reflection.C, operators.txt: - method method_params
7948: was renamed to method_info and now it returns class name, if
7949: method was defined in ancestor
7950:
7951: * tests/225.html: - tests for cheching properties in hierarhical
7952: classes were added
7953:
7954: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
7955: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7956: main/compile.y, main/execute.C, classes/classes.C: - problems
7957: with properties in new classes implementation were fixed
7958:
7959: 2009-08-10 misha
7960:
7961: * src/main/execute.C: - now constructor shouldn't be defined in
7962: class. it could be defined in parent.
7963:
7964: 2009-08-09 misha
7965:
7966: * src/classes/reflection.C: - ^reflection:methods doesn't return
7967: base's methods
7968:
7969: 2009-08-08 misha
7970:
7971: * src/: classes/classes.h, classes/date.C, classes/file.C,
7972: classes/form.C, classes/hash.C, classes/hashfile.C,
7973: classes/image.C, classes/mail.C, classes/op.C,
7974: classes/reflection.C, classes/regex.C, classes/string.C,
7975: classes/table.C, classes/xdoc.C, classes/xnode.C,
7976: classes/xnode.h, include/pa_hash.h, main/execute.C,
7977: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
7978: types/pa_method.h, types/pa_property.h, types/pa_value.C,
7979: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
7980: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
7981: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
7982: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
7983: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
7984: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
7985: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
7986: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
7987: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
7988: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
7989: types/pa_vresponse.C, types/pa_vresponse.h,
7990: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7991: types/pa_vstateless_object.h, types/pa_vstatus.C,
7992: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
7993: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
7994: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
7995: types/pa_wwrapper.h, types/types.vcproj: - new classes
7996: implementation
7997:
7998: * buildall-with-xml, buildall-without-xml: - gc has a bug if
7999: USE_MUNMAP is used. so it is disabled as a workaround.
8000:
8001: 2009-08-05 misha
8002:
8003: * src/: main/pa_common.C, include/pa_common.h: - not needed
8004: parameter was removed
8005:
8006: * src/main/pa_http.C: - bugfix: error was during detecting
8007: content-type of file which was loaded by http
8008:
8009: 2009-08-01 misha
8010:
8011: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
8012: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
8013: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
8014: can't be disabled with defines any longer
8015:
8016: 2009-07-29 misha
8017:
8018: * src/classes/reflection.C, tests/results/224.processed: - for
8019: native methods with any call type now returned empty call_type
8020: value
8021:
8022: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
8023: classes/table.C, include/pa_hash.h, include/pa_request.h,
8024: main/pa_request.C: - break in cycles was optimized
8025:
8026: * INSTALL: - more defines were described
8027:
8028: 2009-07-28 misha
8029:
8030: * operators.txt: - some changes in information about reflection
8031: class
8032:
8033: * tests/: 224.html, 224.p: - tests for reflection class
8034:
8035: * src/classes/reflection.C: - some bugs were fixed, method classes
8036: was added, refactoring
8037:
8038: 2009-07-26 misha
8039:
8040: * src/classes/classes.vcproj: - reflection class wass added to
8041: project
8042:
8043: * operators.txt: - information about reflection class was added
8044:
8045: * src/classes/reflection.C: - class was redesigned
8046:
8047: 2009-07-24 misha
8048:
8049: * src/classes/: Makefile.am, reflection.C: - class reflection was
8050: added
8051:
8052: * src/types/pa_vstateless_class.h: - method for reflection method's
8053: in classes was added
8054:
8055: 2009-07-22 misha
8056:
8057: * src/main/compile_tools.h: - bugfix: $object.$var was
8058: over-optimized. it failed if $object1.$object2.field
8059:
8060: 2009-07-16 misha
8061:
8062: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
8063: lib/cord/cordxtra.c, lib/cord/include/cord.h,
8064: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
8065: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
8066: one more arg: length of cord
8067:
8068: 2009-07-15 misha
8069:
8070: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
8071: tainted in ^file::load[http://...;$.cookies[]]
8072:
8073: * src/classes/: op.C, regex.C, string.C: - new string with
8074: exception was used
8075:
8076: * src/include/pa_exception.h: - new string with exception was added
8077:
8078: * tests/223.html: - test for checking cookie-encoding during
8079: ^file::load[http was added
8080:
8081: * tests/: 221.html, 222.html: - tests for checking type of
8082: $table.fields.field were added
8083:
8084: * src/types/pa_vtable.C: - not used var decl was removed
8085:
8086: * src/include/pa_string.h: - use cached string length in Body::mid.
8087: it improves speed of match with brackets in pattern
8088:
8089: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
8090: outside
8091:
8092: 2009-07-14 misha
8093:
8094: * src/types/pa_vtable.C: - $table.fields.a return string even if
8095: column is empty (sometime returned void) - $table.fields was
8096: added for nameless tables
8097:
8098: * src/targets/cgi/getopt.c: - one warning resolved
8099:
8100: * src/main/pa_string.C: - potentian bug fixed
8101:
8102: * src/classes/op.C: - small optimization in taint/untaint
8103:
8104: 2009-07-13 misha
8105:
8106: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
8107: added
8108:
8109: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
8110: souldn't add the attribut to output
8111:
8112: 2009-07-11 misha
8113:
8114: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8115: stack size was increaced to 2MB (default=1MB)
8116:
8117: 2009-07-08 misha
8118:
8119: * src/main/pa_string.C: - link to UTF-8 description was added
8120:
8121: * src/include/pa_hash.h: - hash keeps element's order in more
8122: places (ex: ._keys[])
8123:
8124: * tests/220.html: - test for checking order of elements in hash in
8125: foreach was added
8126:
8127: * tests/172.html: - small changes in printing hash
8128:
8129: * tests/129.html: - small changes in printing hash
8130:
8131: * src/: include/pa_common.h, include/pa_hash.h,
8132: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
8133: types/pa_vmethod_frame.h: - hash now keeps order of elements
8134:
8135: * tests/014.html: - small changes in printing hash
8136:
8137: 2009-07-07 misha
8138:
8139: * src/classes/op.C: - new taint language "parser-code" was added
8140:
8141: * tests/219.html: - test for auto untaint parser code in process
8142: was added
8143:
8144: * src/classes/op.C: - tainted pieces in body of process are
8145: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
8146:
8147: * src/: include/pa_string.h, main/untaint.C: - new language
8148: L_PARSER_CODE for auto-untaint in process was added
8149:
8150: * src/: classes/file.C, classes/hash.C, classes/image.C,
8151: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
8152: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
8153: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
8154: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
8155: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
8156: code cleanup
8157:
8158: 2009-07-06 misha
8159:
8160: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
8161: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
8162: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8163:
8164: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
8165: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
8166: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
8167: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
8168: should be used
8169:
8170: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
8171: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
8172: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
8173: untaint_cstr[m] should be used
8174:
8175: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
8176: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8177:
8178: * tests/218.html: - test for checking automatic file-spec-taint was
8179: added
8180:
8181: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
8182: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
8183: classes/file.C, classes/hash.C, classes/image.C,
8184: classes/string.C, classes/table.C, classes/void.C,
8185: classes/xdoc.C: - optimizations and simplification of
8186: string.cstr(...)
8187:
8188: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
8189: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
8190: - optimizations and simplification of string.cstr(...)
8191:
8192: 2009-07-04 misha
8193:
8194: * tests/217.html: - test for recursion detection was added
8195:
8196: * src/: types/types.vcproj, main/main.vcproj,
8197: classes/classes.vcproj, targets/cgi/parser3.vcproj,
8198: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
8199: from .vcproj
8200:
8201: * src/types/pa_wwrapper.h: - dynamic_cast was removed
8202:
8203: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
8204: uploading files and case-insensitive http-method were added
8205:
8206: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
8207: tainted pattern in ^file:list[] was added
8208:
8209: 2009-07-03 misha
8210:
8211: * src/: classes/classes.vcproj, main/main.vcproj,
8212: types/types.vcproj, targets/cgi/parser3.vcproj,
8213: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
8214: for dynamic_cast) - little options changes
8215:
8216: * src/main/pa_http.C: - file::load[http works now with uploading
8217: files _and_ changing $.charset
8218:
8219: 2009-06-29 misha
8220:
8221: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
8222: while creating pattern
8223:
8224: 2009-06-25 misha
8225:
8226: * src/classes/image.C, operators.txt: - options' names for
8227: ^image.font were changed to $.space, $.width and $spacing -
8228: default space width now == gif's width
8229:
8230: 2009-06-24 misha
8231:
8232: * tests/215.html: - tests for $file.mode were added
8233:
8234: * operators.txt: - added info about $file.mode and changes in
8235: ^image.font[
8236:
8237: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
8238: param now could be omited - third param now could be hash (with
8239: all widths options: $.space-width, $.letter-width) - it's
8240: possible to specify tracking ($.letter-space)
8241:
8242: * src/classes/file.C: - file objects now could have mode field
8243: (text|binary)
8244:
8245: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
8246:
8247: 2009-06-23 misha
8248:
8249: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8250: trim can work with utf-8 chars now
8251:
8252: 2009-06-20 misha
8253:
8254: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
8255: was implemented
8256:
8257: * src/classes/table.C: - string length cacheing was implemented
8258:
8259: * src/include/pa_string.h: - string length cacheing was implemented
8260:
8261: 2009-06-17 misha
8262:
8263: * src/main/execute.C: - value param was removed from
8264: WContext::WContext
8265:
8266: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
8267: pa_wwrapper.h: - value param was removed from WContext::WContext
8268: - field wcontext was removed from VCodeFrame (using fparent
8269: instead)
8270:
8271: * tests/214.html: - test with hash copying
8272:
8273: 2009-06-16 misha
8274:
8275: * tests/: 062.html, results/062.processed: - evaluation hardcoded
8276: strings doesn't work in expression anymore
8277:
8278: * src/main/execute.C: - less calls for get_constructing() - little
8279: refactoring
8280:
8281: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
8282: include/pa_request.h: - less calls for get_constructing()
8283:
8284: * src/classes/: hash.C, hashfile.C: - fixed bug which was
8285: introduced with OPTIMIZE_SINGLE_STRING optimization
8286:
8287: 2009-06-14 misha
8288:
8289: * src/: classes/date.C, classes/file.C, classes/hash.C,
8290: classes/hashfile.C, classes/image.C, classes/regex.C,
8291: classes/table.C, classes/xdoc.C, classes/xnode.h,
8292: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8293: types/pa_vstateless_class.h, main/execute.C: - create object for
8294: storing object's fields only for parser objects
8295:
8296: 2009-06-13 misha
8297:
8298: * buildall-with-xml, buildall-without-xml: - new option was added
8299: for building GC (it slightly reduces memory usage)
8300:
8301: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
8302: single string write
8303:
8304: * src/main/execute.C: - bytecode optimization of ^class:constructor
8305: - optimization of single string write
8306:
8307: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
8308: - bytecode optimization of ^class:constructor
8309:
8310: 2009-06-09 misha
8311:
8312: * src/targets/cgi/parser3.C: - type size_t was changed to int in
8313: main (better compatibility)
8314:
8315: 2009-06-08 misha
8316:
8317: * src/main/compile.y: - I've forgot to commit it :(
8318:
8319: 2009-06-07 misha
8320:
8321: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
8322: WITH_READ and WITH_ROOT
8323:
8324: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8325: execute.C: - more optimizations for WITH_SELF, WITH_READ and
8326: WITH_ROOT - little refactoring
8327:
8328: 2009-06-06 misha
8329:
8330: * tests/213.html: - tests for 3rd match string-param were added
8331:
8332: * src/classes/string.C: - 3rd match param could be string now
8333:
8334: * src/main/: compile.y, compile_tools.h: - much more bytecode's
8335: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
8336: GET_OBJECT_ELEMENT
8337:
8338: 2009-06-05 misha
8339:
8340: * src/main/pa_http.C: - bugfix: content-length was not calculated
8341: if $.body was specified
8342:
8343: 2009-06-04 misha
8344:
8345: * src/classes/op.C: - optimizing write_assign_lang in connect
8346:
8347: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
8348:
8349: * src/main/execute.C: - little refactoring - optimizing
8350: write_assign_lang in taint/untaint
8351:
8352: * src/include/pa_opcode.h: - little refactoring
8353:
8354: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
8355: main/compile_tools.h, main/execute.C: - optimizations for
8356: $self.field, ^self.method, $self.field[...] and $self.field(...)
8357: were added
8358:
8359: 2009-06-03 misha
8360:
8361: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
8362:
8363: 2009-06-02 misha
8364:
8365: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
8366: include/pa_opcode.h: - refactoring in last optimizations
8367: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
8368: now but code is much easy and it is ready for further
8369: improvements.
8370:
8371: 2009-05-27 misha
8372:
8373: * src/: types/pa_junction.h, types/pa_vjunction.C,
8374: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
8375: changed in destructing junctions
8376:
8377: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
8378: String:Body
8379:
8380: 2009-05-26 misha
8381:
8382: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
8383: one method detect_charset was deleted - bug was fixed in this
8384: method (error while detecting charset in content_type withot last
8385: ';')
8386:
8387: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
8388: once
8389:
8390: 2009-05-25 misha
8391:
8392: * src/classes/file.C: - bugfix: file::exec didn't work after
8393: optimizing of helper_length
8394:
8395: 2009-05-24 misha
8396:
8397: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
8398: were added - little refactoring
8399:
8400: * src/main/execute.C: - core while printing in debug log
8401: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
8402: optimisations were added
8403:
8404: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
8405: were added
8406:
8407: 2009-05-23 misha
8408:
8409: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
8410: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
8411: CORD_cat optimization
8412:
8413: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
8414: - call constr optimisation under separate define now
8415:
8416: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
8417: in $b should be string, not void
8418:
8419: * src/main/compile.y: - little fix for rem-cut optimisation
8420:
8421: * src/: include/pa_opcode.h, main/compile_tools.C,
8422: main/compile_tools.h, main/execute.C: - optimisations for
8423: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
8424:
8425: * INSTALL: - description of some #defined were added
8426:
8427: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
8428: before 1st access (memory usage is reduced if don't access to
8429: .text field)
8430:
8431: * src/include/pa_array.h: - array grows step now not static (it
8432: reduces numbers of reallocs)
8433:
8434: 2009-05-20 misha
8435:
8436: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
8437: $.b(2), $c[d] and $.e[f] was added
8438:
8439: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8440: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
8441: $.e[f] was added
8442:
8443: * src/main/execute.C: - debug printing moved in defines
8444:
8445: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
8446: and little refactoring for OP_GET_OBJECT_ELEMENT +
8447: OP_GET_OBJECT_VAR_ELEMENT optimisation
8448:
8449: 2009-05-19 misha
8450:
8451: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8452: execute.C: - $a.$b & ^a.$b bytecode optimisation
8453:
8454: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
8455: ^a.$b optimisation)
8456:
8457: * src/main/compile.y: - compiler now generate new opcodes:
8458: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
8459: ^a.b - compiler now cut off ^rem{ with all content ; any number
8460: of params }
8461:
8462: * src/main/execute.C: - code for handle new opcodes
8463: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
8464:
8465: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
8466: added for LA2V and LA2S
8467:
8468: * src/include/pa_opcode.h: - new defines which can be used for
8469: disable some bytecode optimisation and new opcodes were added
8470:
8471: 2009-05-17 misha
8472:
8473: * src/lib/cord/cordxtra.c: - bugfix.
8474:
8475: * tests/212.html: - .size[] and .study_size[] were added to tests
8476:
8477: * operators.txt: - info about regex class was added
8478:
8479: * tests/212.html: - tests for regex class were added
8480:
8481: 2009-05-16 misha
8482:
8483: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
8484: gc7.1
8485:
8486: * tests/022.html: - test for ^file:list[path;] (empty second param)
8487: was added
8488:
8489: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
8490: param) should work
8491:
8492: 2009-05-15 misha
8493:
8494: * src/classes/table.C: - automatically disable stringstream usage
8495: on freebsd4
8496:
8497: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
8498: scope
8499:
8500: * tests/211.html: - test with different types of access to hash was
8501: added
8502:
8503: * tests/210.html: - test which checks for loosing tainting in
8504: hash's keys was added
8505:
8506: * tests/208.html: - some parser work added. or stime == 0 %-)
8507:
8508: * src/lib/cord/cordbscs.c: - little hack was added to cord
8509:
8510: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
8511:
8512: * src/include/pa_version.h, configure.in: - moko have made a lot of
8513: optimisations for increacing version number more dramatically :)
8514:
8515: * src/classes/date.C: - little refactoring: use constructor which
8516: accepts formated string
8517:
8518: * src/: include/pa_string.h, main/pa_string.C: - String constructor
8519: which can print formatted string was added
8520:
8521: 2009-05-14 misha
8522:
8523: * src/include/pa_string.h: - type was fixed
8524:
8525: * src/: classes/hashfile.C, classes/op.C,
8526: include/pa_cache_managers.h, include/pa_charset.h,
8527: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
8528: include/pa_request.h, include/pa_sql_driver_manager.h,
8529: include/pa_string.h, include/pa_stylesheet_manager.h,
8530: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
8531: main/pa_charsets.C, main/pa_string.C,
8532: main/pa_stylesheet_connection.C, types/pa_value.h,
8533: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8534: types/pa_vobject.C, types/pa_vstateless_class.C,
8535: types/pa_vstateless_class.h: - hash_code caching was implemented
8536: (seaches should be faster now)
8537:
8538: * src/: classes/file.C, classes/hash.C, classes/image.C,
8539: classes/string.C, classes/table.C, include/pa_string.h,
8540: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
8541: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
8542: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
8543: types/pa_vrequest.C: - String constructors don't have that stupid
8544: true/false param which means 'tainted'. they accept lang instead.
8545:
8546: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
8547: with OPTIMIZE_RESULT
8548:
8549: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
8550: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
8551:
8552: 2009-05-13 misha
8553:
8554: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
8555: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
8556: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8557: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
8558: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
8559: main/pa_common.C, main/pa_request.C, main/pa_string.C,
8560: include/pa_string.h, classes/date.C, classes/file.C,
8561: classes/hash.C, classes/image.C, classes/string.C,
8562: classes/table.C, classes/xdoc.C: - result optimisation -
8563: helper_length parameter removed from string constructors
8564:
8565: 2009-05-11 misha
8566:
8567: * tests/209.html: - tests for ^hash::create[hash] were added
8568:
8569: * tests/208.html: - tests for $status:rusage, $status:memory,
8570: ^memory:compact[] were added
8571:
8572: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
8573: log10 were added
8574:
8575: * tests/206.html: - test for try with finally was added
8576:
8577: 2009-05-10 misha
8578:
8579: * tests/205.html: - test for ^file::create[...] was added
8580:
8581: * tests/204.html: - test for ^response:clear[] was added
8582:
8583: * tests/038.html: - tests for trigonometric functions were added
8584:
8585: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
8586: added - more tests for .add, .sub, .union, .intersects and
8587: .intersections
8588:
8589: * tests/065.html: - test for ^file:dirname was added
8590:
8591: * tests/030.html: - test for $cookie:fields was added
8592:
8593: * tests/203.html: - test for ^h._keys[column name] was added
8594:
8595: * tests/201.html: - tests for .trim were added
8596:
8597: * tests/202.html: - tests for last-day,
8598: date:calendar[type](YYYY;MM;DD) were added
8599:
8600: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
8601: .offset[type](N) were added
8602:
8603: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
8604: and .pos[c](N) were added
8605:
8606: * tests/141.html: - test for math:sha1 was added
8607:
8608: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
8609:
8610: 2009-05-09 misha
8611:
8612: * src/main/compile.y: - rollback
8613:
8614: 2009-05-05 misha
8615:
8616: * src/main/pa_exec.C: - little optimisation: somewhere length() was
8617: replaced by is_empty()
8618:
8619: * src/: include/pa_string.h, main/pa_charset.C: - little
8620: optimisation: somewhere length() was replaced by is_empty()
8621:
8622: * src/classes/table.C: - little optimisation: somewhere length()
8623: was replaced by is_empty()
8624:
8625: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
8626: classes/op.C, classes/table.C, main/pa_exception.C: - little
8627: optimisation: somewhere length() was replaced by is_empty()
8628:
8629: 2009-05-04 misha
8630:
8631: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8632: types/pa_vstateless_class.h, main/execute.C,
8633: include/pa_request.h, classes/hash.C, classes/op.C,
8634: classes/table.C: - more optimisations were added: some operators
8635: don't switch write context anylonger
8636:
8637: 2009-05-01 misha
8638:
8639: * src/main/compile.y: - slightly more opcode optimisations for
8640: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
8641:
8642: * src/main/execute.C: - simplifying process for getters
8643:
8644: 2009-04-30 misha
8645:
8646: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
8647:
8648: * tests/results/199.processed: - test for checking $result into
8649: ^rem was added
8650:
8651: * tests/199.html: - test for checking $result into ^rem was added
8652:
8653: * tests/: 022.html, 096.html: - þsort after :list was asses (on
8654: some OS it returns list in different order)
8655:
8656: * src/: include/pa_array.h, include/pa_request.h,
8657: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
8658: changes in stack impl - get_element() optimisation: 3rd param
8659: removed - bugfix: problems with reading empty input param -
8660: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
8661:
8662: * tests/results/198.processed: - test for reading empty local var
8663: was added
8664:
8665: * tests/198.html: - test for reading empty local var was added
8666:
8667: 2009-04-29 misha
8668:
8669: * src/main/compile.y: - bugfix: couldn't compile because
8670: OP_VALUE__GET_ELEMENT should be unde #ifdef
8671:
8672: * src/: include/pa_array.h, include/pa_opcode.h,
8673: include/pa_request.h, main/compile.y, main/execute.C,
8674: main/pa_request.C, types/pa_vmethod_frame.C,
8675: types/pa_vmethod_frame.h: - we can work without opcode
8676: OP_STORE_PARAM, so it was removed
8677:
8678: 2009-04-28 misha
8679:
8680: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
8681: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
8682: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
8683: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
8684: 4.
8685: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
8686:
8687: * src/main/compile_tools.h: - new stuff for op-codes optimisation
8688:
8689: * src/: main/pa_string.C, classes/string.C: - !length() =>
8690: is_empty()
8691:
8692: 2009-04-27 misha
8693:
8694: * src/types/pa_vregex.h: - back explicit vars initialisation
8695:
8696: 2009-04-24 misha
8697:
8698: * src/classes/string.C: - ups. typo fixed
8699:
8700: * src/main/execute.C: - more replacements '*new VBool' to
8701: 'VBool::get' - checks for ^break[], ^continue[] and
8702: parser.interrupted were optimised
8703:
8704: * src/classes/string.C: - number of params.count() calls was
8705: slightly reduced
8706:
8707: 2009-04-23 misha
8708:
8709: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8710: make it x64 friendly
8711:
8712: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8713: parser is x64 friendly now
8714:
8715: 2009-04-22 misha
8716:
8717: * src/types/pa_vhashfile.C: - coder friendly exception about
8718: exceeding record size was added
8719:
8720: * src/classes/file.C: - use vregex object instead of direct calls
8721: methods from pcre lib
8722:
8723: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
8724: classes/string.C: - use vregex object instead of direct calls
8725: methods from pcre lib
8726:
8727: * src/: include/pa_common.h, main/pa_common.C: - method
8728: print_pcre_exec_error_text was moved to class vregex
8729:
8730: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
8731: was added
8732:
8733: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
8734: - class vregex was added
8735:
8736: 2009-04-21 misha
8737:
8738: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
8739:
8740: * src/: types/pa_junction.h, types/pa_value.C,
8741: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
8742: types/pa_wcontext.h, main/execute.C, classes/op.C: -
8743: junction-optimisation (destructors)
8744:
8745: * src/include/pa_array.h: - free under if now
8746:
8747: 2009-04-19 misha
8748:
8749: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
8750:
8751: 2009-04-18 misha
8752:
8753: * src/include/pa_version.h:
8754: :q :
8755:
8756: CV:
8757: ----------------------------------------------------------------------
8758:
8759: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
8760: refactoring
8761:
8762: * src/: include/pa_array.h, include/pa_hash.h,
8763: types/pa_vmethod_frame.h: - destructors under #ifdef now
8764:
8765: * src/include/pa_memory.h: - define for using destructors was added
8766:
8767: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8768: main/execute.C: - some junctions will be cached now
8769:
8770: * src/include/pa_hash.h: - hash destructor frees pairs now
8771:
8772: * src/include/pa_array.h: - inline was added to destructor
8773:
8774: * src/types/pa_method.h: - comment was changed
8775:
8776: 2009-04-17 misha
8777:
8778: * src/: include/pa_array.h, include/pa_hash.h,
8779: types/pa_vmethod_frame.h: - destructors were added
8780:
8781: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
8782: renamed to always_use_result
8783:
8784: * src/main/: compile.y, compile_tools.h: - rollback changes in
8785: compiler: full backward compatibility is better
8786:
8787: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
8788: result in var's hash
8789:
8790: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8791: optimisation in method_frame
8792:
8793: * src/include/pa_array.h: - optimisation in array (allocate
8794: elements only when needed)
8795:
8796: * src/types/pa_vresponse.C: - check for $response:headers field
8797: before looking at custom fields
8798:
8799: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
8800: not needed to check existance var with name 'result' in var's
8801: hash
8802:
8803: * src/main/compile.y: - compiler was changed: now it detects
8804: writings to $result and set flag writo_to_result in method
8805:
8806: * src/classes/string.C: - little optimisation: no needed to write
8807: number with lang
8808:
8809: * src/main/pa_charset.C: - methods readChar and skipChar which is
8810: used for read utf8-strings were renamed - is_escaped was renamed
8811: to isEscaped (to the same name convention)
8812:
8813: * src/: types/pa_method.h, main/compile_tools.h: - flag
8814: write_to_result added. compiler get this info from code.
8815:
8816: 2009-04-16 misha
8817:
8818: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
8819: String only before 1st write
8820:
8821: * src/include/pa_string.h: - not needed template removed
8822:
8823: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
8824: types/pa_vjunction.C, types/pa_vproperty.C,
8825: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
8826: main/pa_request.C, classes/bool.C, classes/double.C,
8827: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
8828: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
8829: bool objects)
8830:
8831: 2009-04-15 misha
8832:
8833: * src/lib/cord/cordxtra.c: - more optimisation
8834:
8835: * src/: include/pa_string.h, main/untaint.C: - String::append
8836: optimisation
8837:
8838: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
8839: then get and can sometime be used)
8840:
8841: * src/main/pa_string.C: - String::length optimisation
8842:
8843: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
8844: these methods read different strings
8845:
8846: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8847: fresult_initial_void removed + some optimisation - if $result
8848: defined we don't write to context anymore
8849:
8850: * src/main/pa_charset.C: - readChar => skipChar (in this place we
8851: need just skip char)
8852:
8853: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8854: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
8855: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
8856:
8857: * src/types/pa_vvoid.h: - added get() method for retreave one
8858: instance
8859:
8860: 2009-04-11 misha
8861:
8862: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
8863:
8864: * tests/197.html: - test for parser://test in xml was added
8865:
8866: * src/classes/string.C: - small optimisation
8867:
8868: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
8869: optimisation
8870:
8871: 2009-04-10 misha
8872:
8873: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
8874: to pcre-7.8
8875:
8876: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
8877:
8878: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
8879: added
8880:
8881: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
8882: $request:CLASS_NAME were added
8883:
8884: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
8885: were added
8886:
8887: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
8888: $env:CLASS_NAME were added
8889:
8890: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
8891: '@todo' now
8892:
8893: * src/targets/cgi/parser3.C: - size_t -> int for calming down
8894: compirer
8895:
8896: * src/main/pa_string.C: - little code cleanup
8897:
8898: * src/main/pa_common.C: - describe one more UTF-8 related error
8899: during PCRE compile/execute
8900:
8901: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
8902: normalizing todo-comments: '@todo' now
8903:
8904: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
8905:
8906: * src/main/pa_charset.C: - type changed for making compiler happy
8907:
8908: 2009-03-10 misha
8909:
8910: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
8911: in main()
8912:
8913: 2009-02-01 misha
8914:
8915: * src/main/pa_http.C: - bugfix: double CRLF before the end of
8916: boundary
8917:
8918: 2009-01-25 misha
8919:
8920: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
8921:
8922: * src/classes/file.C: - more changes for parsing different number
8923: of params for file::load
8924:
8925: * tests/193.html: - tests for exception while base64-decode binary
8926: to string was added
8927:
8928: * tests/192.html: - tests for file::load with different number of
8929: options
8930:
8931: * src/classes/math.C: - ups. forgot '+1'
8932:
8933: * src/: classes/table.C, classes/file.C, include/pa_common.h,
8934: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
8935: main/pa_http.C: - ^file::load[...;http://...;] now can post files
8936: (new option $.encode[multipart-form/data] should be specified) -
8937: $.method[] option for file::load now is not case-sensitive
8938:
8939: * src/: include/pa_string.h, main/untaint.C: - for file post the
8940: new taint language L_FILE_POST was added
8941:
8942: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
8943: main/main.vcproj, classes/math.C, include/Makefile.am: - some
8944: stuff was moved to separate files
8945:
8946: 2009-01-23 misha
8947:
8948: * src/classes/math.C: - little optimisation in ^math:sha1[] -
8949: spaces to tabs were converted
8950:
8951: 2009-01-12 misha
8952:
8953: * src/main/pa_http.C: - value of $.method[] option force uppercased
8954: now
8955:
8956: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
8957: types/pa_vform.C, types/pa_vmail.C: - some constants changed
8958: their names
8959:
8960: * src/main/pa_common.C: - changes in formating
8961:
8962: * src/: classes/file.C, main/pa_http.C: - some constants changed
8963: their names
8964:
8965: * src/include/pa_http.h: - some spaces were converted to tabs
8966:
8967: * src/include/pa_common.h: - some constants changed their names
8968:
8969: * src/classes/file.C: - fixed 4-th paramether for file::load -
8970: little code rewriting
8971:
8972: * src/types/pa_vfile.C: - little code rewriting
8973:
8974: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
8975: types/pa_value.h: - some formating changes
8976:
8977: * src/include/pa_common.h: - some formating spaces transformed to
8978: tabs
8979:
8980: * src/classes/string.C: - exception while base64-decode binary to a
8981: string
8982:
8983: 2009-01-11 misha
8984:
8985: * configure.in: - version changed to 3.3.1b
8986:
8987: 2008-09-05 misha
8988:
8989: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
8990: release_3_3_0 on 2008-09-05 10:59:35 +0000
8991:
8992: 2008-09-04 misha
8993:
8994: * tests/: 130.html, 131.html: - these exceptions not typeless
8995: anymore
8996:
8997: * src/classes/op.C: - exception with 'invalid taint language' not
8998: typeless anylonger
8999:
9000: * src/classes/image.C: - some exceptions while operations with
9001: image not typeless anymore
9002:
9003: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
9004: main/pa_exec.C, main/pa_http.C: - some exceptions while
9005: operations with files not typeless anymore
9006:
9007: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
9008: types/pa_vdate.h: - exceptions while checking date range not
9009: typeless anymore
9010:
9011: * src/include/pa_exception.h: - exception type string for invalid
9012: date range was added
9013:
9014: 2008-09-03 misha
9015:
9016: * src/: classes/file.C, main/pa_string.C: - exception while pce
9017: operations not typeless anymore
9018:
9019: * src/include/pa_exception.h: - exception type for pce operations
9020: was added
9021:
9022: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
9023: and .CLASS_NAME insite classes
9024:
9025: * src/classes/table.C: - don't save table header whiile
9026: ^table.save[append;filename] if file exists
9027:
9028: 2008-09-02 misha
9029:
9030: * src/main/compile.y, src/main/compile_tools.h,
9031: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
9032: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
9033: renamed to partial and it login changed: we must mark class as
9034: partial for allow their modifications in future.
9035:
9036: 2008-08-29 misha
9037:
9038: * tests/results/022.processed: - testing taint[regex] in mask for
9039: file:list
9040:
9041: * tests/022.html: - testing taint[regex] in mask for file:list
9042:
9043: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
9044: for file:list was added
9045:
9046: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
9047: file:list
9048:
9049: 2008-08-26 misha
9050:
9051: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
9052: last derived object
9053:
9054: * src/classes/image.C: - many strings "image.format" replaced by
9055: IMAGE_FORMAT constant string - handle GPS info while parse exif -
9056: understand some more exif tags
9057:
9058: * src/include/pa_exception.h: - string "image.format" was added
9059:
9060: 2008-08-21 misha
9061:
9062: * src/: main/pa_string.C, classes/file.C: - use method for print
9063: pcre_exec text error
9064:
9065: * src/main/pa_common.C: - method for print pcre_exec text error was
9066: added
9067:
9068: * src/include/pa_common.h: - method declaration for print pcre_exec
9069: text error was added
9070:
9071: 2008-08-19 misha
9072:
9073: * src/main/execute.C: - bugfix: opcodes must be in separate
9074: namespace while debug execution as well
9075:
9076: * tests/: 015.html, results/015.processed: - test for escaping some
9077: parser chars was added
9078:
9079: 2008-08-18 misha
9080:
9081: * tests/: 190.html, 190.p, results/190.processed: - test for
9082: $caller.self.field + default getter in one class was added
9083:
9084: * tests/: 189.html, results/189.processed: - test for
9085: ^date::create[date object]
9086:
9087: * tests/: 188.html, results/188.processed: - tests for match with
9088: UTF-8 strings
9089:
9090: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
9091: ^string.match[]
9092:
9093: * ChangeLog: - parser 3.3.0 beta13
9094:
9095: 2008-08-15 misha
9096:
1.116 moko 9097: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
9098: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
9099: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
9100: dftables.c: - old PCRE files removed
1.95 moko 9101:
9102: * src/lib/pcre/config.h: - configuration for PCRE library
9103:
9104: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
9105: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
9106:
9107: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
9108: library and set flag UTF8 if $request:charset is UTF-8
9109:
9110: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
9111: include/pa_config_fixed.h: - moved to new PCRE library
9112:
9113: * src/: main/main.vcproj, types/types.vcproj,
9114: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
9115: win32\pcre instead of parser3\src\lib\pcre
9116:
9117: * src/: include/pa_opcode.h, include/pa_operation.h,
9118: main/compile.C, main/compile.y, main/compile_tools.C,
9119: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
9120: opcodes were moved to separate namespace
9121:
9122: 2008-08-14 misha
9123:
9124: * src/types/pa_vstateless_class.C: - newline at the end missed
9125:
9126: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
9127: tainting
9128:
9129: 2008-08-11 misha
9130:
9131: * tests/: 187.html, 187.p, results/187.processed: - tests for
9132: $caller.self, $caller.self.field and $caller.self.field[value]
9133: were added
9134:
9135: * src/types/pa_vmethod_frame.h: - still need to check 'self'
9136: runtime as well (for $caller.self)
9137:
9138: 2008-07-25 misha
9139:
9140: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
9141: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
9142: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
9143: tests with international characters
9144:
9145: 2008-07-23 misha
9146:
9147: * src/main/pa_http.C: - escape $cookies as %uXXXX while
9148: file::load[...;http://
9149:
9150: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
9151: now everywhere in separate namespace
9152:
9153: * src/types/pa_vmethod_frame.h: - looking for caller before looking
9154: for vars
9155:
9156: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
9157: can be escaped by '^'
9158:
9159: 2008-07-22 misha
9160:
9161: * src/classes/string.C, tests/186.html: - names changes:
9162: escape=>js-escape, unescape=>js-unescape
9163:
9164: 2008-07-21 misha
9165:
9166: * tests/results/186.processed: - test for string escape/unescape
9167:
9168: * tests/186.html: - test for string escape/unescape
9169:
9170: * src/classes/string.C: - string has escape and unescape methods
9171: now
9172:
9173: * src/: include/pa_string.h, main/pa_string.C: - escape method was
9174: added
9175:
9176: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
9177: method-layers added (with different params)
9178:
9179: 2008-07-18 misha
9180:
9181: * tests/results/185.processed: - test for ^str.pos[substr](offset)
9182: was added
9183:
9184: * tests/185.html: - test for ^str.pos[sub](offset) added
9185:
9186: * src/classes/string.C, src/classes/void.C, operators.txt: -
9187: ^string.pos[substr](offset) -- 2nd param accepted now
9188:
9189: * src/main/pa_string.C: - .pos works fine with offset for utf-8
9190: strings
9191:
9192: 2008-07-17 misha
9193:
9194: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
9195: helper length added for mid for small optimisation
9196:
9197: 2008-07-16 misha
9198:
9199: * tests/: 185.html, results/185.processed: - tests for
9200: length/left/right/mid/pos with utf-8 strings
9201:
9202: * src/classes/string.C: - left/right/mid/length/pos works fine for
9203: utf-8 strings
9204:
9205: * src/main/untaint.C: - comments removed
9206:
9207: * src/: include/pa_string.h, main/pa_string.C,
9208: include/pa_charset.h, main/pa_charset.C: - methods for working
9209: with pos/mid for strings in utf-8 were added
9210:
9211: 2008-07-15 misha
9212:
9213: * tests/: 184.html, results/184.processed: - test for case body as
9214: expression: $var(^switch(1){^case(1)(true)..})
9215:
9216: * src/classes/op.C: - case body can be expression now:
9217: $var(^switch(1){^case(1)(true)..})
9218:
9219: * tests/: results/183.processed, 183.html: - added test for testing
9220: new cookie encoding (%uXXXX)
9221:
9222: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
9223: decoding for backward compatibility they decoded from %XX in
9224: request:charset too
9225:
9226: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
9227: - cookie class now decode cookies before first access after last
9228: request:charset changing (as form class).
9229:
9230: * src/main/pa_charset.C: - added method escape for escaping cookies
9231: as %uXXXX - before transcode calculate required space for dest
9232: string. it reduce mem usage for transcode
9233:
9234: * src/include/pa_charset.h: - added method escape for escaping
9235: cookies as %uXXXX
9236:
9237: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
9238: was added. will used for escaping cookies as %uXXXX
9239:
9240: * src/include/pa_common.h: - escape method has new option for skip
9241: converting '+' to a space char
9242:
9243: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
9244: transcode - escape method has new option for skip converting '+'
9245: to a space char
9246:
9247: 2008-07-08 misha
9248:
9249: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
9250: (no UE if more then 1 case matches anylonger) - optimization:
9251: doing searching.as_string() || searching.as_double() only once
9252:
9253: 2008-07-04 misha
9254:
9255: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
9256: now ^date::create[date object] works
9257:
9258: * src/classes/string.C: - left and right added as aliases for start
9259: and end in ^string.trim[]
9260:
9261: 2008-07-03 misha
9262:
9263: * src/classes/file.C: - allow $.limit for file::sql as well
9264:
9265: * src/classes/file.C: - allow $.offset option for file::sql - force
9266: send limit=1 to query for use sql specifics authomatically
9267:
9268: * src/classes/: hash.C, string.C, table.C: - don't throw exception
9269: if $.limit value if empty. autoconvert it as everywere
9270:
9271: 2008-07-02 misha
9272:
9273: * configure.in: - time to change version number to 3.3.0 %-)
9274:
9275: * src/include/pa_version.h: - time to change version number to
9276: 3.3.0 %-)
9277:
9278: 2008-06-26 misha
9279:
9280: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
9281: $.limit(0) fixes
9282:
9283: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
9284: - $.limit(0) fixes
9285:
9286: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
9287: new API)
9288:
9289: * src/: include/pa_sql_driver_manager.h,
9290: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
9291: classes/op.C: - document_root added
9292:
9293: * src/main/compile.tab.C: - error message was changed
9294:
9295: 2008-06-25 misha
9296:
9297: * src/main/compile.y: - error message was changed
9298:
9299: 2008-06-24 misha
9300:
9301: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
9302:
9303: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
9304: tests for @OPTIONS\nappend
9305:
9306: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
9307:
9308: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
9309:
9310: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
9311:
9312: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
9313: compile.y
9314:
9315: 2008-06-17 misha
9316:
9317: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
9318: compilation: ^if(default){true. it's incorrect. must be
9319: exception}
9320:
9321: 2008-06-16 misha
9322:
9323: * tests/: 181.ent, 181.html, results/181.processed: - test for
9324: checking external reference loading with 'http://localhost'
9325: prefix while creating xdoc
9326:
9327: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
9328: ^math:long2ip[] and ^math:ip2long[]
9329:
9330: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
9331: added which use scalar stateless class method when user object
9332: used in scalar context - use get_scalar_value when user object
9333: requested in scalar context
9334:
9335: * src/main/pa_common.C: - size must be int but not size_t or we
9336: can't compare with 0 sprintf result
9337:
9338: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9339: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
9340: with internal switch between local/global vars
9341:
9342: * src/types/pa_vclass.C: - register scalar if method @GET[] was
9343: specified
9344:
9345: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
9346: pa_vstateless_object.h: - stateless class and object now has
9347: private scalar field and getter/setter for working with it
9348:
9349: * src/classes/math.C: - methods math:long2ip & math:ip2long were
9350: moved to inet static class
9351:
9352: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
9353: class added (^inet:aton[IP], ^inet:ntoa(number))
9354:
9355: * tests/: 180.html, results/180.processed: - tests for
9356: ^math:long2ip(long) and ^math:ip2long[IP]
9357:
9358: * src/classes/math.C: - ^math:ip2long[IP] added
9359:
9360: 2008-06-11 misha
9361:
9362: * src/main/pa_xml_io.C: - use file_read_text again because of we
9363: need cut BOM code and remove DOS newline chars. but don't
9364: transcode it anyway.
9365:
9366: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
9367: main/pa_http.C: - option for disable transcoding while file_read
9368: and file_read_text added
9369:
9370: 2008-06-10 misha
9371:
9372: * tests/: 179.html, 179.p, results/179.processed: - test for many
9373: classes in 1 file
9374:
9375: * src/main/: compile.C, compile_tools.h: - compile return list of
9376: classes now.
9377:
9378: * src/main/: compile.y, compile.tab.C: - compile return list of
9379: classes now. internals.
9380:
9381: * src/main/pa_request.C: - compile return list of classes now. try
9382: call @conf and @auto for each returned class
9383:
9384: * src/include/pa_request.h: - compile return list of classes now
9385:
9386: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
9387: return list of classes when compile buf)
9388:
9389: 2008-06-07 misha
9390:
9391: * src/main/pa_request.C: - constructing VRequest object with 3rd
9392: param -- form
9393:
9394: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
9395: 3rd param: form. needed for get post_charset
9396:
9397: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
9398: added
9399:
9400: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
9401: types/pa_vform.C, types/pa_vform.h: - some polish
9402:
9403: 2008-06-06 misha
9404:
9405: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
9406: charset and decode chars from it but not from response:charset
9407:
9408: * src/main/pa_http.C: - detect_charset moved out of here
9409:
9410: * src/: include/pa_common.h, main/pa_common.C: - more helpers
9411: methods moved here - unescape_chars accepn one charset now
9412:
9413: * src/main/pa_http.C: - new constants used - don't allow
9414: $.content-type in ^file::load[;http://;$.method[POST]] - add
9415: charset info while ^file::load[;http://;$.method[POST]] - option
9416: $.omit-post-charset(true) added to ^file::load[;http://] for
9417: disabling charset during post
9418:
9419: * src/types/pa_vform.C: - new constants used
9420:
9421: * src/include/pa_common.h: - some constants were added
9422:
9423: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
9424: instead of StrEqNc
9425:
9426: * src/main/pa_common.C: - new method for caseless search
9427: c-substring in c-string - use isxdigit instead of is_hex_digit
9428:
9429: * src/include/pa_common.h: - new method for caseless search
9430: c-substring in c-string
9431:
9432: 2008-06-05 misha
9433:
9434: * tests/results/178.processed: - test for testing default getter
9435:
9436: * tests/178.html: - test for testing default getter
9437:
9438: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
9439: for test for testing default getter
9440:
9441: * src/main/execute.C: - default getter soul
9442:
9443: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
9444: requested objects' field not found
9445:
9446: * src/types/pa_vclass.C: - register default getter if defined - get
9447: default getter if requested field not found
9448:
9449: * src/types/pa_vstateless_object.h: - method get_default_getter was
9450: added
9451:
9452: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9453: pointer to default getter and methods for get/set it were added
9454:
9455: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
9456: auto_name field (for default getter)
9457:
9458: 2008-06-04 misha
9459:
9460: * src/main/pa_xml_io.C: - load external xml in binary mode (no
9461: transcoding, no cutting BOM code, no fixing line breaks) and get
9462: it to libxml "as is"
9463:
9464: 2008-06-03 misha
9465:
9466: * src/main/pa_common.C: - use store_Char instead of
9467: transcodeCharFromUTF8
9468:
9469: * src/: include/pa_charset.h, main/pa_charset.C: - method
9470: store_Char added, transcodeCharFromUTF8 -- removed
9471:
9472: 2008-06-02 misha
9473:
9474: * tests/: results/177.processed, 177.html: - test for checking
9475: .[acm]date after local ^file::load[] was added
9476:
9477: * tests/: results/176.processed, 176.html: - test for checking
9478: @OPTION\locals + @method[vars][locals] added
9479:
9480: * tests/results/auto.p: - CLASS_PATH specified for checking use
9481:
9482: 2008-05-30 misha
9483:
9484: * src/main/: compile.y, compile.tab.C: - changes in compiler:
9485: @OPTION\nlocals + @method[vars][;locals;] were added
9486:
9487: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
9488: moved to separate method op_code - switch from VMethodFrame to
9489: VMethodFrameGlobal + VMethodFrameLocal
9490:
9491: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
9492: was moved to separate method op_code
9493:
9494: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
9495: VMethodFrame now
9496:
9497: * src/types/pa_vstateless_class.h: - stateless class have bool flag
9498: all_vars_local as well
9499:
9500: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
9501: pa_vmethod_frame_local.h, Makefile.am: - who children for
9502: VMethodFrame were added: one (global) works as VMethodFrame
9503: before and second (local) write all vars in self vars scope
9504:
9505: * src/types/pa_method.h: - method has bool flag all_vars_local now
9506:
9507: 2008-05-29 misha
9508:
9509: * tests/: 129.html, results/129.processed: - more tests for
9510: ^table.hash[]
9511:
9512: * src/classes/hash.C: - ^hash::sql has a new option:
9513: $.type[hash|string|table] as ^table.hash[] one.
9514:
9515: * src/classes/op.C: - ^try has 3rd param now: finally code which
9516: executed anyway after try or catch section
9517:
9518: 2008-05-27 misha
9519:
9520: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
9521: must not fail if $.distinct(1) wasn't specified
9522:
9523: 2008-05-26 misha
9524:
9525: * src/classes/op.C: - allow ^throw[my type]
9526:
9527: 2008-05-22 misha
9528:
9529: * configure.in, configure: - version number updated to 3.2.4b
9530:
9531: * src/classes/: op.C, string.C: - trim format string before
9532: eval/format
9533:
9534: * tests/: results/175.processed, 175.html: - more tests for
9535: different format strings in .format[]
9536:
9537: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
9538: as well (not only %XX)
9539:
9540: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
9541: charset specified - checks for format before print number
9542: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
9543: (instead of tabs) removed
9544:
9545: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
9546: charset specified
9547:
9548: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
9549: char in requested charset from utf code was added
9550:
9551: 2008-05-19 misha
9552:
9553: * tests/: 174.html, results/174.processed: - test for
9554: ^hashfile.cleanup[] added
9555:
9556: * src/classes/hashfile.C: - optimization: don't create any key or
9557: value variable if it's name weren't specified
9558: (^hf.foreach[;v]{...})
9559:
9560: 2008-05-16 misha
9561:
9562: * src/classes/hash.C: - optimization: don't create any key variable
9563: if variable name wasn't specified (^h.foreach[;v]{...})
9564:
9565: 2008-05-15 misha
9566:
9567: * src/classes/op.C: - small changes
9568:
9569: * src/classes/hashfile.C: - code reformating (as hash.foreach)
9570:
9571: * src/classes/hash.C: - calculate var_context once before foreach
9572:
9573: 2008-05-14 misha
9574:
9575: * src/classes/hashfile.C: - incorrect vars context calculation for
9576: ^hashfile.foreach[;]{} fixed
9577:
9578: * src/classes/: hash.C, table.C: - little optimisation
9579:
9580: * src/classes/file.C: - bugfix: double absolute path while loading
9581: file
9582:
9583: * tests/: 174.html, results/174.processed: - tests for hashfile
9584: were added
9585:
9586: * buildall-with-xml: - moving to libxslt 1.1.24
9587:
9588: 2008-04-30 misha
9589:
9590: * src/classes/file.C: - stat file while loading (local only) so
9591: .adate, .mdate and .cdate available without additional ::stat
9592:
9593: 2008-04-28 misha
9594:
9595: * src/classes/file.C: - $.name and $.content-type available for
9596: stated file
9597:
9598: 2008-04-14 misha
9599:
9600: * src/targets/cgi/parser3.C: - new year in copyright %-)
9601:
9602: * src/include/pa_version.h: - new version number in head
9603:
9604: 2008-04-10 misha
9605:
9606: * tests/: 080.html, results/080.processed: - cut '0' from
9607: exponential part because of on diff OS it differ (20 or 020 for
9608: ex)
9609:
9610: * tests/: 119.html, results/119.processed: - check for encoding
9611: while creating xdoc
9612:
9613: 2008-04-09 misha
9614:
9615: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
9616:
9617: * src/main/pa_common.C: - comment added
9618:
9619: * src/classes/date.C: - little refactoring
9620:
9621: 2008-04-07 misha
9622:
9623: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
9624: style of ^table.save[]: prepare one big string and sabe it at
9625: once. it's safe on freebsd 4.x but use much more memory.
9626:
9627: * buildall-with-xml, buildall-without-xml: - option
9628: --disable-stringstream added (under comment. use it on freebsd
9629: 4.x)
9630:
9631: 2008-02-22 misha
9632:
9633: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
9634: specified together in file::load[;http] - get back transcoding
9635: $.body[] in file::load[;http]
9636:
9637: 2008-02-21 misha
9638:
9639: * src/classes/date.C: - ^date.gmt-string[] was added
9640:
9641: * src/types/pa_value.C: - method for output date in RFC 822 format
9642: moved to pa_common.h
9643:
9644: * src/include/pa_common.h: - method for output date in RFC 822
9645: format moved here from pa_value.C
9646:
9647: * src/types/pa_vmail.C: - fixed core in sending mail with
9648: attachment in simple mode ($.file[file here]) introduced in 3.2.2
9649:
9650: 2008-02-20 misha
9651:
9652: * src/main/pa_http.C: - transcode $.headers before escaping into
9653: specified charset while ^file::load[...;http://...] (L_URI
9654: instead of L_HTTP_HEADER) - $.cookies param available in
9655: ^file::load[;http://...] now (but we don't parse set-cookies from
9656: response yet) (cookies not transcoded as common $cookies)
9657:
9658: 2008-02-19 misha
9659:
9660: * src/main/pa_request.C: - rollback: we mustn't force taint
9661: $response:field values because in this case
9662: $response:locateion[http://...] don't works.
9663:
9664: 2008-02-15 misha
9665:
9666: * src/classes/op.C: - little refactoring
9667:
9668: * src/main/pa_http.C: - taint names of $.headers for load[;http
9669:
9670: * src/main/pa_request.C: - force taint values of $response:field
9671:
9672: 2008-02-14 misha
9673:
9674: * src/main/pa_request.C: - $response:field transcoded to
9675: $response:charset before escaping now
9676:
9677: * src/main/pa_http.C: - some outdated comments removed
9678:
9679: * src/classes/date.C: - lastdat -> last-day
9680:
9681: * src/classes/date.C: - ^date:lastday(year;month) and
9682: ^date.lastday[] were added - little code refactoring - comments
9683: changes
9684:
9685: * tests/: 159.html, results/159.processed: - test for number of
9686: days in February
9687:
9688: * src/types/pa_value.C: - fixes in code formatting
9689:
9690: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
9691: and comments
9692:
9693: 2008-02-13 misha
9694:
9695: * src/main/pa_common.C: - bugfix for february at leap year
9696:
9697: 2008-01-28 misha
9698:
9699: * tests/: 160.html, results/160.processed: - more test for cache
9700: added
9701:
9702: * src/classes/op.C: - bugfix: cache body executed twice if contains
9703: unhandled exception
9704:
9705: 2008-01-25 misha
9706:
9707: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
9708: bug when hashfile became inavailable after memory:compact)
9709:
9710: * src/lib/sdbm/apr_strings.C: - +arp_malloc
9711:
9712: 2008-01-22 misha
9713:
9714: * src/classes/table.C: - little refactiring and exception texts
9715: changes in method ^table.hash[]
9716:
9717: * src/types/pa_vcookie.C: - link to cookie specification changed
9718:
9719: 2008-01-21 misha
9720:
9721: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
9722: file::exec/cgi
9723:
9724: * src/classes/file.C: - bugfix: core while processing headers if
9725: executed cgi script don't return content
9726:
9727: 2008-01-18 misha
9728:
9729: * buildall-with-xml: - move to libxml2 version 2.6.31
9730:
9731: * src/include/pa_version.h, configure.in: - version number updated
9732: to '3.2.3b'
9733:
9734: 2007-12-28 misha
9735:
9736: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
9737: hash.contains
9738:
9739: 2007-12-27 misha
9740:
9741: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9742: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
9743: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
9744: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
9745: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9746: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
9747: src/targets/cgi/parser3.vcproj,
9748: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
9749: back to VS2003 because of Apache 1.3 module can't work if it was
9750: built in VS 2005. with cgi all file so VS2003 project files can
9751: be easy converted to the new format.
9752:
9753: 2007-12-04 misha
9754:
9755: * src/types/pa_vcode_frame.h: - changes in comment
9756:
9757: 2007-11-29 misha
9758:
9759: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
9760: intercept strings any longer
9761:
9762: * tests/: 173.html, results/173.processed: - tests for
9763: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
9764: but not in main code frame
9765:
9766: * tests/: 172.html, results/172.processed: - more tests for pass
9767: objects from code frames
9768:
9769: 2007-11-27 misha
9770:
9771: * tests/: 152.html, results/152.processed: - tests for converting
9772: strings 'true'/'false' to bool were added
9773:
9774: * tests/152.html: - added checks for converting strings
9775: 'true'/'false' to bool
9776:
9777: * src/classes/string.C: - ^srting.bool[] now can convert to bool
9778: not only strings with numbers but with values 'true'/'false' as
9779: well
9780:
9781: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
9782: for parser3.log increased
9783:
9784: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
9785:
9786: * src/include/pa_common.h: - remove_crlf return cstring size now
9787:
9788: * src/include/pa_types.h: - constant with buffer size for
9789: parser3.log added
9790:
9791: 2007-11-16 misha
9792:
9793: * tests/cat.sh: - script for tests for file::exec/cgi
9794:
9795: * tests/171.html: - tests for file::exec/cgi
9796:
9797: * tests/results/171.processed: - tests results for file::exec/cgi
9798:
9799: 2007-11-15 misha
9800:
9801: * src/main/pa_exec.C: - fixed incorrect exec code for unix
9802:
9803: * src/classes/file.C: - .body must be set before analyzing cgi
9804: headers
9805:
9806: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
9807: only if exec/cgi return anything.
9808:
9809: 2007-11-14 misha
9810:
9811: * operators.txt: - info about new text|binary option for
9812: file::exec/cgi was added
9813:
9814: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
9815: ^file:exec[[text|binary];script;...]
9816:
9817: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
9818: classes/string.C, classes/table.C: - more text strings moved to
9819: the one place
9820:
9821: 2007-11-09 misha
9822:
9823: * src/types/pa_vrequest.C: - $request:argv must be taint
9824:
9825: * ChangeLog: - $request:argv [patch from Sumo]
9826:
9827: * operators.txt: - $request:argv
9828:
9829: * src/: include/pa_request_info.h, types/pa_vrequest.C,
9830: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
9831:
9832: 2007-10-25 misha
9833:
9834: * buildall-with-xml, buildall-without-xml: - options preparations
9835: for ./configure rewrited
9836:
9837: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
9838: error occure in unhandled_exception finally fixed
9839:
9840: 2007-10-23 misha
9841:
9842: * tests/: 170.html, results/170.processed: - test for
9843: @method[][result]
9844:
9845: * operators.txt: - added info about node.prefix and
9846: node.namespaceURI
9847:
9848: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
9849:
9850: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
9851: added for node and attribute
9852:
9853: 2007-10-22 misha
9854:
9855: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
9856:
9857: * src/main/pa_request.C: - added const content-transfer-encoding
9858:
9859: * src/include/pa_request.h: - added const content-transfer-encoding
9860: - ups. constants must be in lowercase (for search)
9861:
9862: * src/types/pa_vmail.C: - more constants used -
9863: content-transfer-encoding: 8bit added
9864:
9865: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
9866:
9867: * src/include/pa_request.h: - more constants
9868:
9869: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
9870: ommit anymore if $.content-disposition was specified - little
9871: refactoring
9872:
9873: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
9874:
9875: 2007-10-17 misha
9876:
9877: * operators.txt: - info about
9878: table::create[nameless]{data}[>options<] was added
9879:
9880: * src/main/: compile.tab.C, compile.y: - if error occure while
9881: compile method don't put this method in methods table anymore.
9882: in other case the parser coredumped if @unhandled_exception
9883: method can't be compiled because of parser.compile error.
9884:
9885: * src/main/execute.C: - little code reformating
9886:
9887: * src/main/pa_request.C: - little code reformating - comment
9888: changed
9889:
9890: 2007-10-16 misha
9891:
9892: * tests/: 035.html, results/035.processed: - tests
9893: table::create[]{}[options] added
9894:
9895: * src/classes/table.C: - table::create[]{} now accept 3rd param:
9896: options (only $.seperator[] yet)
9897:
9898: 2007-10-10 misha
9899:
9900: * src/classes/table.C: - some contstants moved to pa_common.h -
9901: some code changes
9902:
9903: 2007-10-02 misha
9904:
9905: * src/main/pa_uue.C: - memory usage during uuencode reduced more
9906: then three time as much. but base64 encoding method still use
9907: less memory anyway.
9908:
9909: 2007-09-17 misha
9910:
9911: * operators.txt: - added info about $cookie:fields
9912:
9913: * src/types/pa_vcookie.C: - $cookie:fields available now
9914:
9915: * src/classes/hash.C: - some stuff for use with .for_each moved to
9916: common
9917:
9918: * src/include/pa_common.h: - some stuff for use with .for_each
9919: moved here
9920:
9921: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
9922:
9923: 2007-09-14 misha
9924:
9925: * buildall-with-xml: - new xml libs again =)
9926:
9927: 2007-08-28 misha
9928:
9929: * operators.txt: - texts about ^table.columns[[column name]] and
9930: ^string.split[...][v][column name] were added
9931:
9932: * tests/: 168.html, 169.html, results/168.processed,
9933: results/169.processed: - tests for ^table.columns[[column name]]
9934: and ^string.split[...][v][column name] were added
9935:
9936: * src/classes/table.C: - new option ^table.columns[[column name]]
9937: was added
9938:
9939: * src/classes/string.C: - new option ^string.split[...;v;[column
9940: name]]
9941:
9942: * src/include/pa_exception.h: - error text message for
9943: ^hash._keys[], ^table.columns[] and ^string.split[]
9944:
9945: 2007-08-27 misha
9946:
9947: * src/main/untaint.C: - try to fix coredump on unix if print to
9948: body ^taint[sql][something] outside of connect
9949:
9950: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
9951: outside of connect
9952:
9953: * buildall-with-xml, buildall-without-xml: - strip parser3 was
9954: added (commented by default)
9955:
9956: 2007-08-20 misha
9957:
9958: * operators.txt: - comment about new method ^node.hasAttributes[]
9959: was added
9960:
9961: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
9962: duplicated exception text strings were removed
9963:
9964: * src/include/pa_exception.h: - more exception text strings moved
9965: here
9966:
9967: * src/classes/table.C: - some duplicate exceptions' text strings
9968: removed
9969:
9970: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
9971: xdoc.C, xnode.C: - some duplicate exceptions' text strings
9972: removed
9973:
9974: * src/include/pa_exception.h: - some exception text strings movet
9975: to pa_exception
9976:
9977: * tests/: 149.html, results/149.processed: - test for
9978: ^xnode.hasAttributes[] was added - some code changes
9979:
9980: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
9981: added
9982:
9983: 2007-08-17 misha
9984:
9985: * tests/: results/006.processed, results/059.processed, 006.html,
9986: 059.html: - more tests for match
9987:
9988: * tests/: 129.html, results/129.processed: - tests for
9989: ^table.hash[...][$.type[string|hash|table]] added
9990:
9991: * src/targets/cgi/parser3.C: - little syntax changes
9992:
9993: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
9994: syntax changes
9995:
9996: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
9997: messages in parser3.log switched off by default. If someone
9998: really still need it: use $SIGPIPE(1)
9999:
10000: 2007-08-08 misha
10001:
10002: * buildall-with-xml, buildall-without-xml: - remove libs source
10003: files by default since now
10004:
10005: 2007-08-07 misha
10006:
10007: * buildall-without-xml: - some option syntax changes
10008:
10009: * buildall-with-xml: - compile libxml2 without http support - some
10010: option syntax changes
10011:
10012: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
10013:
10014: 2007-08-06 misha
10015:
10016: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
10017:
10018: * tests/: 160.html, results/160.processed: - cache test was
10019: rewrited
10020:
10021: 2007-07-06 misha
10022:
10023: * tests/: 153.html, results/153.processed: - added test for
10024: ^math:sha1[string]
10025:
10026: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
10027: transcoded
10028:
10029: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
10030: were added
10031:
10032: 2007-06-28 misha
10033:
10034: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
10035: some incorrect chars
10036:
10037: 2007-06-19 misha
10038:
10039: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
10040: were moved on top because of gcc 4 had a problems during
10041: building.
10042:
10043: 2007-06-18 misha
10044:
10045: * tests/results/019.processed: - new image commited
10046:
10047: 2007-06-09 misha
10048:
10049: * src/classes/: op.C, table.C: - in while and table.select method
10050: as_expression used now
10051:
10052: * src/types/pa_vmethod_frame.h: - method as_expression was added
10053:
10054: 2007-06-08 misha
10055:
10056: * tests/: 166.html, results/166.processed: - test for
10057: ^match[...][n]
10058:
10059: * tests/: 165.html, results/165.processed: - tests for loops
10060:
10061: * src/lib/cord/include/private/cord_pos.h: - back to origin value
10062: because of no speed/memory optimisation but some proglems with
10063: long cycles occure
10064:
10065: 2007-06-06 misha
10066:
10067: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
10068: ^table.select(true) and ^table.select(1) didn't works because of
10069: awaiting junction-param only. fixed.
10070:
10071: 2007-05-24 misha
10072:
10073: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
10074: with 0.5 secs interval
10075:
10076: * src/classes/op.C: - cache was rewrited. I hope it works with
10077: locking system now on unix
10078:
10079: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
10080: system locks which wait till other threads release it but try get
10081: lock, if fail wait 1 sec and make 10 attempts.
10082:
10083: * src/include/pa_os.h: - consts for blocking locks + some comments
10084: were added
10085:
10086: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
10087: opening files
10088:
10089: * src/classes/table.C: - changes in includes. if unclude <sstream>
10090: after our classes on unix it can't be build
10091:
10092: * src/types/pa_vhashfile.C: - not needed code removed
10093:
10094: 2007-05-23 misha
10095:
10096: * src/: classes/file.C, classes/op.C, main/pa_common.C,
10097: include/pa_common.h: - cosmetic changes
10098:
10099: 2007-05-18 misha
10100:
10101: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
10102: often. it's give some speed increasing
10103:
10104: * tests/results/160.processed: - returned time corrected
10105:
10106: * tests/160.html: - time increased because on unix 1 mean nothing
10107: :(
10108:
10109: * operators.txt: - added info about ^hash.contain[key]
10110:
10111: * src/classes/hash.C: - added ^hash.contain[key]
10112:
10113: * src/include/pa_hash.h: - added method for checking key exists in
10114: hash
10115:
10116: 2007-05-07 misha
10117:
10118: * src/include/pa_string.h: - was compilation error during build on
10119: freebsd4
10120:
10121: 2007-05-03 misha
10122:
10123: * src/classes/table.C: - option $.type[hash|string|table] was added
10124: for ^table.hash[]
10125:
10126: * src/classes/file.C: - comment removed
10127:
10128: 2007-04-26 misha
10129:
10130: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
10131: real files doesn't opened in place anymore
10132:
10133: 2007-04-24 misha
10134:
10135: * src/classes/math.C: - I thought one more time and remove lg(N) :)
10136:
10137: * src/include/pa_exception.h: "static" removed
10138:
10139: 2007-04-23 misha
10140:
10141: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
10142:
10143: * src/classes/math.C: added: - ^math:ln(N) (the same as
10144: ^math:log(N)) - ^math:lg(N)
10145:
10146: * tests/: 097.html, results/097.processed: - charsets converstion
10147: during ^file::load[text;http://...] added
10148:
10149: * tests/: 164.html, results/164.processed: - check for set expires
10150: as a date
10151:
10152: * tests/: 164.html, results/164.processed: - test for hashfile
10153:
10154: * src/classes/hashfile.C: - little comment changes
10155:
10156: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
10157: access
10158:
10159: * src/: classes/date.C, classes/double.C, classes/file.C,
10160: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
10161: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
10162: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
10163: classes/xnode.h, include/pa_request.h, main/execute.C,
10164: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10165: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
10166: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
10167: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
10168: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
10169: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
10170: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10171: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
10172: "parser.runtime" strings were removed
10173:
10174: * src/classes/hashfile.C: - with .clear[] called files_delete()
10175: now.
10176:
10177: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
10178:
10179: * src/include/pa_exception.h: - string constant with
10180: "parser.runtime" text was added
10181:
10182: 2007-04-20 misha
10183:
10184: * operators.txt: - some comments changing
10185:
10186: * operators.txt: - added info about .^hashfile.release[],
10187: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
10188:
10189: * configure: =cheching for unsetenv
10190:
10191: * src/classes/hashfile.C: - ^hashfile.cleanup[],
10192: ^hashfile.release[] were added
10193:
10194: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
10195: ^string.match[][] understand new option now: return number of
10196: matches but not table wit results
10197:
10198: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
10199: reopen now
10200:
10201: * src/classes/op.C: - bug. must be false
10202:
10203: * configure.in: - checking for unsetenv was added
10204:
10205: * src/types/pa_vform.C: - some comments
10206:
10207: 2007-04-18 misha
10208:
10209: * buildall-with-xml: moving to libxml2-2.6.28
10210:
10211: * buildall-with-xml, buildall-without-xml: added commented lines
10212: with --disable-safe-mode option
10213:
10214: * operators.txt: - info about $form:files
10215:
10216: 2007-04-17 misha
10217:
10218: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
10219: $form:files was added
10220:
10221: * tests/: 163.html, results/163.processed: removing auto format
10222:
10223: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
10224:
10225: 2007-04-16 misha
10226:
10227: * tests/: 163.html, results/163.processed: - test for .int[],
10228: floor, round, ceiling and .format[]
10229:
10230: * src/classes/file.C: - little optimization for getting args in
10231: exec/cgi
10232:
10233: 2007-04-13 misha
10234:
10235: * src/classes/file.C: - arguments for file::exec/cgi can be
10236: specified now as s table with one column
10237:
10238: 2007-03-27 misha
10239:
10240: * tests/: 162.html, results/162.processed: - test for
10241: ^table.select(^condition[$t])
10242:
10243: * tests/results/auto.p: - load windows-1251 charset for some tests
10244:
10245: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
10246:
10247: * tests/: results/161.processed, 161.html, 161_utf8.txt,
10248: 161_windows1251.txt: - added test for
10249: ^file::load[text;/local/file.txt;$.charset[...]]
10250:
10251: * tests/: results/013.processed, 013.html: - added test for
10252: checking $._default value while hash modifications
10253:
10254: * tests/: 160.html, results/160.processed: - add test for
10255: ^cache[key](secs){code}, ^cache[] and ^cache(0)
10256:
10257: 2007-03-22 misha
10258:
10259: * src/include/pa_common.h: - "charset" string defined for
10260: ^file::load[text;/local.txt] and ^table::load[/table.txt]
10261:
10262: * src/main/: pa_common.C, pa_http.C: - $.charset option for
10263: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
10264: added - not needed transcodes were removed from
10265: ^file::load[...;http://...]
10266:
10267: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
10268: added
10269:
10270: * src/classes/date.C: - date.week was fixed
10271:
10272: * operators.txt: - added info about date.weekyear
10273:
10274: * tests/: 159.html, results/159.processed: - tests for date.week
10275: and date.weekyear added
10276:
10277: 2007-03-15 misha
10278:
10279: * src/classes/table.C: - enclose column numbers for nameless tables
10280: as well
10281:
10282: 2007-03-14 misha
10283:
10284: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
10285:
10286: * src/classes/table.C: - table.save optimization: now required much
10287: less memory
10288:
10289: 2007-03-13 misha
10290:
10291: * tests/results/: 158.processed, 158.processes: - tests for
10292: table.save/table.load
10293:
10294: * tests/: 158.html, results/158.processes: - tests for
10295: table.save/table.load
10296:
10297: * buildall-with-xml: libxml2: --without-ftp --without-docbook
10298:
10299: * buildall-with-xml: - pattern needed now for building
10300:
10301: * tests/results/097.processed: - added test results for xdoc::load
10302: & xdoc::load[http://...]
10303:
10304: * tests/097.html: - added test for xdoc::load
10305:
10306: 2007-03-12 misha
10307:
10308: * tests/: 107.html, results/107.processed: - added test for xpath
10309: '//man'
10310:
10311: 2007-03-01 misha
10312:
10313: * tests/: 097.html, results/097.processed: - added test for
10314: creating xdoc from file
10315:
10316: * tests/: results/157.processed, 157.html: - added test for
10317: file:move
10318:
10319: 2007-02-28 misha
10320:
10321: * src/classes/xdoc.C: - another attempt
10322:
10323: * src/classes/xdoc.C: - roll back last changes for a while
10324:
10325: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
10326:
10327: * src/classes/file.C: - under lock we create non-exist dir anyway
10328:
10329: * tests/results/099.processed: - ever send content-disposition to
10330: client with file
10331:
10332: * tests/157.html: + test for file:copy
10333:
10334: 2007-02-26 misha
10335:
10336: * src/classes/file.C: - some similar strings moved to #define
10337: instead of to be copy/pasted many times
10338:
10339: * src/types/pa_vfile.h: - class name string ("file") moved to
10340: #define
10341:
10342: 2007-02-20 misha
10343:
10344: * configure.in: - added some strings for sqlite detection
10345:
10346: 2007-02-19 misha
10347:
10348: * operators.txt: - some comments changes
10349:
10350: * buildall-with-xml, buildall-without-xml: - some modifications
10351:
10352: 2007-02-17 misha
10353:
10354: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
10355:
10356: * src/main/pa_request.C: - damn, i forgot to commit it while I
10357: change console behaviour
10358:
10359: 2007-02-12 misha
10360:
10361: * src/targets/cgi/parser3.C: - don't print headers if
10362: $console:line[data] was used during cgi execution.
10363:
10364: * src/types/pa_vconsole.h: - console class have bool flag now which
10365: marked as 'true' if class was used.
10366:
10367: * tests/: 152.html, results/152.processed: - more types was added
10368: to test 152
10369:
10370: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
10371: adding 'bool' (^if($image){} caused exception)
10372:
10373: 2007-02-09 misha
10374:
10375: * tests/: 152.html, results/152.processed: - test alightly updated
10376:
10377: * tests/: 152.html, results/152.processed: - test rewrited
10378:
10379: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
10380: bugfix. I broke xdoc & xnode in expression
10381:
10382: 2007-02-08 misha
10383:
10384: * tests/: 152.html, results/152.processed: - add test for checking
10385: 'def' for void, string, bool, int & double
10386:
10387: 2007-02-07 misha
10388:
10389: * operators.txt: - ^file:base64[filespec] was added
10390:
10391: * tests/results/153.processed: - result test for
10392: ^file:base64[filespec] was updated
10393:
10394: * tests/153.html: - test for ^file:base64[filespec] was added
10395:
10396: * src/types/pa_vconsole.h: - little optimization
10397:
10398: * src/classes/file.C: - ^file:base64[filespec]
10399:
10400: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
10401:
10402: * src/include/pa_common.h: - declarations for
10403: ^file:base64[filespec]
10404:
10405: * src/types/pa_vcookie.C: - little optimization
10406:
10407: 2007-02-06 misha
10408:
10409: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
10410: were temporary commented
10411:
10412: * src/types/pa_vbool.h: - bugfix
10413:
10414: * tests/156.html: - added test for bool cookie
10415:
10416: * src/types/pa_vcookie.h: - not needed string "cookie" removed
10417:
10418: * tests/: 155.html, results/155.processed: - added test for check
10419: $.encloser[] option for table save/load
10420:
10421: * tests/: 153.html, 154.html, todo.txt: - two more tests added
10422:
10423: 2007-02-05 misha
10424:
10425: * tests/results/152.processed: - newline at the end was missed
10426:
10427: * tests/results/141.processed: - math:md5 must be lowercased
10428:
10429: * src/targets/cgi/parser3.C: - 2007 in help ;)
10430:
10431: 2007-02-03 misha
10432:
10433: * tests/results/: 150.processed, 151.processed, 152.processed: -
10434: test for bool added and some content length fixes
10435:
10436: * tests/152.html: - test for bool added
10437:
10438: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
10439:
10440: * operators.txt: - info bool class was added
10441:
1.116 moko 10442: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 10443: classes/classes.vcproj, classes/double.C, classes/int.C,
10444: classes/string.C, classes/void.C, classes/xnode.C,
10445: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
10446: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
10447: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
10448: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10449: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
10450: types/types.vcproj: - bool class was added
10451:
10452: * src/main/pa_request.C: - fix
10453:
10454: 2007-01-18 misha
10455:
10456: * src/: main/pa_string.C, classes/string.C: - return table during
10457: ^string.match[][] even if no matched found.
10458:
10459: 2006-12-20 misha
10460:
10461: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
10462: http://www.parser.ru/forum/?id=55598 ]
10463:
10464: 2006-12-19 misha
10465:
10466: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
10467: details: http://www.parser.ru/forum/?id=52359
10468:
10469: * src/main/pa_request.C: - always set content-disposition for
10470: $response:body[hash here]. more details:
10471: http://www.parser.ru/forum/?id=52130
10472:
10473: 2006-12-07 misha
10474:
10475: * operators.txt: - added info about bool params in cookie set
10476:
10477: * src/types/pa_vcookie.C: - bool param in cookies available now
10478: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
10479: ]
10480:
10481: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
10482: was added
10483:
10484: 2006-12-02 misha
10485:
10486: * src/classes/file.C: - file_block_read used instead of native read
10487:
10488: * src/main/pa_common.C: - added file_block_read with read error
10489: detection - file_block_read used instead of native read
10490:
10491: * src/include/pa_common.h: - added file_block_read declaration
10492:
10493: 2006-12-01 misha
10494:
10495: * operators.txt: - info about $var.CLASS_NAME was added
10496:
10497: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10498: $var.CLASS_NAME added
10499:
10500: * operators.txt: - added info about ^file:copy[]
10501:
10502: * src/classes/file.C: - ^file:copy[from;fo] was added
10503:
10504: 2006-11-20 misha
10505:
10506: * src/classes/date.C: - bug fix :)
10507:
10508: 2006-11-17 misha
10509:
10510: * src/include/pa_common.h: - array in crc32 calculation was changed
10511: to static
10512:
10513: * src/main/pa_common.C: - little optimization in getMonthDays -
10514: small changes in crc32 calculation
10515:
10516: * src/classes/date.C: - not needed code was removed
10517:
10518: 2006-11-16 misha
10519:
10520: * src/types/pa_vmail.C: - fix missed brakes
10521:
10522: * src/types/pa_vmail.C: - mail:send now set content-type:
10523: multipart/related instead of multipart/mixed if file have
10524: $.content-id[]
10525:
10526: 2006-11-15 misha
10527:
10528: * src/types/pa_vdouble.h: abs -> fabs
10529:
10530: 2006-11-14 misha
10531:
10532: * operators.txt: - added info about ^file.md5[] and
10533: ^file:md5[file-name]
10534:
10535: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
10536: added
10537:
10538: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
10539: FILE_BUFFER_SIZE
10540:
10541: * src/classes/math.C: - hex_string was moved to pa_common.h
10542:
10543: * src/include/pa_common.h: - hex_string was moved from math.C -
10544: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
10545:
10546: * src/types/pa_vdouble.h: - incorrect frac detection with negative
10547: values was fixed
10548:
10549: 2006-11-13 misha
10550:
10551: * operators.txt: - added info about ^math:crc32[string],
10552: ^file:crc32[file-name] & ^file.crc32[]
10553:
10554: * src/classes/math.C: - added ^math:crc32[string]
10555:
10556: * src/classes/file.C: - some comments were changed - added
10557: ^file:crc32[file-name] and ^file.crc32[]
10558:
10559: * src/: include/pa_common.h, main/pa_common.C: - some functions for
10560: crc32 calculation added
10561:
10562: 2006-11-03 misha
10563:
10564: * src/include/pa_array.h: - not needed variable removed
10565:
10566: * tests/: 150.html, 151.html, results/150.processed,
10567: results/151.processed: - 2 tests were added
10568:
10569: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
10570: with $.reverse(1) were fixed
10571:
10572: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
10573: query converted to $.charset during ^file::load[http://...]
10574:
10575: 2006-11-02 misha
10576:
10577: * src/include/pa_table.h: ups. forget '=' char
10578:
10579: * src/include/pa_table.h: - one more fix in
10580: .locate[...][$.reverse(1)]
10581:
10582: 2006-11-01 misha
10583:
10584: * src/classes/math.C: - bug fix, details:
10585: http://www.parser.ru/forum/?id=53360
10586:
10587: * src/include/pa_table.h: - bug fix during ^table.locate( condition
10588: false for all records )[$.reverse(1)]
10589:
10590: * src/main/pa_http.C: - second param for this mid method is length
10591: but not end_index so this method has error and can't detect
10592: charsets in next content-types: Content-type: text/html;
10593: charset="windows-1251" Content-type: text/html;
10594: charset="windows-1251"; Content-type: text/html;
10595: charset=windows-1251;
10596:
10597: only Content-type: text/html; charset=windows-1251 was fine
10598:
10599: 2006-10-31 misha
10600:
10601: * src/classes/file.C: - empty args in file::exec removed now
10602:
10603: 2006-09-03 paf
10604:
10605: * src/classes/file.C: proper tainting of
10606: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
10607:
10608: 2006-06-09 paf
10609:
10610: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
10611:
10612: * src/classes/table.C: formatting
10613:
10614: * src/classes/table.C: incorporated patch from misha: Sent:
10615: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
10616: ignoring string options for ^table.save[]
10617:
10618: * src/classes/hash.C: incorporated patch from misha Sent:
10619: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
10620: $hash._default disappear while
10621:
10622: * operators.txt: ^mail:send[ $.file1[ $.value[file]
10623: $.format[!uue|!base64] << new base64 option. default uue ] ]
10624:
10625: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
10626: PM Subject: patch for base64 in ^mail:send[] %-)
10627:
10628: 2006-04-09 paf
10629:
10630: * src/main/compile.tab.C: ` change compiled
10631:
10632: * gnu.vcproj, operators.txt, parser3.sln,
10633: src/classes/classes.vcproj, src/classes/file.C,
10634: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
10635: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10636: src/classes/xnode.C, src/include/pa_array.h,
10637: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10638: src/include/pa_memory.h, src/include/pa_request.h,
10639: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10640: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10641: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10642: src/lib/pcre/pcre_dftables.vcproj,
10643: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10644: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10645: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10646: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10647: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10648: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10649: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10650: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10651: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10652: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10653: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10654: src/types/pa_value.h, src/types/pa_vcookie.C,
10655: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
10656: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10657: src/types/pa_vstatus.C, src/types/types.vcproj,
10658: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
10659: ^menu, ^hash/hashfile.foreach
10660:
10661: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10662: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
10663: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10664: src/classes/xnode.C, src/include/pa_array.h,
10665: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10666: src/include/pa_memory.h, src/include/pa_request.h,
10667: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10668: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10669: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10670: src/lib/pcre/pcre_dftables.vcproj,
10671: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10672: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10673: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10674: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10675: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10676: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10677: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10678: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10679: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10680: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10681: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10682: src/types/pa_value.h, src/types/pa_vcookie.C,
10683: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10684: src/types/pa_vstatus.C, src/types/types.vcproj,
10685: tests/descript.ion: ! switched to VS2005 (projects and
10686: object<info explicitly typed>.for_each(, info)) +
10687: $response:field[] setting void means removing + grammar $name`
10688: name stops now, for mysql `$field` + started ^break[]
10689: ^continue[], in ^for. TODO: to other iterators (while, menu,
10690: foreach) + all log messages += [uri=, method=, cl=]
10691:
10692: * buildall-with-xml: merged . ftp paths update
10693:
10694: * buildall-with-xml: . ftp paths update
10695:
10696: 2006-03-04 paf
10697:
10698: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
10699: checks++ [thanks to Igor Zinkovsky for detailed report]
10700:
10701: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
10702: Igor Zinkovsky for detailed report]
10703:
10704: 2006-03-01 paf
10705:
10706: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10707: \n to ' ' in
10708:
10709: 2006-02-18 paf
10710:
10711: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10712: \n to ' ' in
10713:
10714: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
10715:
10716: 2006-02-03 paf
10717:
10718: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
10719: base64
10720:
10721: * src/main/pa_common.C: ! bugfix: decoding from base64
10722:
10723: 2006-01-20 paf
10724:
10725: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10726: economy fix
10727:
10728: * src/classes/: table.C: merged from HEAD ! bugfix
10729: ^table.save[$.encloser-s now handled properly
10730:
10731: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
10732: handled properly
10733:
10734: 2006-01-19 paf
10735:
10736: * buildall-with-xml, buildall-without-xml: merged from HEAD !
10737: libgc:USE_MUNMAP activates merging of free memory blocks which
10738: helps a lot in our case: after transform we want
10739: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
10740:
10741: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10742: economy fix
10743:
10744: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
10745: activates merging of free memory blocks which helps a lot in our
10746: case: after transform we want CORD(main.result)->cstr[big
10747: malloc]->transcode[big malloc]
10748:
10749: 2006-01-17 paf
10750:
10751: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
10752: before reading them. got rid of reallocs = became quicker and
10753: less fragmentated
10754:
10755: 2005-12-29 paf
10756:
1.116 moko 10757: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
10758: configure, configure.in, src/include/pa_version.h,
10759: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 10760: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
10761: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
10762: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
10763: src/lib/ltdl/missing: . merged from 3.2.1
10764:
1.116 moko 10765: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
10766: packaged when 'make dist', so do configure companion files in
10767: src/lib/ltdl
10768:
10769: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
10770: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
10771: missing: . now config_auto.h is created with configure [were
10772: constant]
1.95 moko 10773:
10774: * INSTALL: . references to documentation and some clarification
10775:
10776: * buildall-with-xml, buildall-without-xml: . farawell doc
10777: indication
10778:
1.116 moko 10779: * Makefile.am: . dist+=buildall*
1.95 moko 10780:
10781: 2005-12-28 paf
10782:
10783: * configure: . 3.2.1
10784:
10785: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
10786: simplify build process, see INSTALL
10787:
10788: 2005-12-26 paf
10789:
10790: * configure: ver
10791:
10792: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
10793: version
10794:
10795: 2005-12-21 paf
10796:
10797: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
10798: compiled with bison 1.875b, it reports unexpected token names
10799:
10800: 2005-12-19 paf
10801:
10802: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
10803: holds a link to xmlNode to prevent premature gc(xmlNode)
10804:
10805: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
10806: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
10807: src/main/main.vcproj, src/main/pa_globals.C,
10808: src/targets/cgi/parser3.vcproj,
10809: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
10810: configure, configure.in, src/include/pa_version.h: . killing
10811: gdome [what a relief]
10812:
10813: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
10814: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
10815: run_parser.sh, results/001.processed, results/002.processed,
10816: results/003.processed, results/004.processed,
10817: results/005.processed, results/006.processed,
10818: results/008.processed, results/009.processed,
10819: results/010.processed, results/011.processed,
10820: results/012.processed, results/013.processed,
10821: results/014.processed, results/015.processed,
10822: results/016.processed, results/017.processed,
10823: results/018.processed, results/020.processed,
10824: results/021.processed, results/022.processed,
10825: results/023.processed, results/024.processed,
10826: results/025.processed, results/026.processed,
10827: results/027.processed, results/028.processed,
10828: results/029.processed, results/030.processed,
10829: results/031.processed, results/032.processed,
10830: results/033.processed, results/034.processed,
10831: results/035.processed, results/036.processed,
10832: results/037.processed, results/038.processed,
10833: results/039.processed, results/040.processed,
10834: results/041.processed, results/042.processed,
10835: results/043.processed, results/044.processed,
10836: results/045.processed, results/046.processed,
10837: results/047.processed, results/048.processed,
10838: results/049.processed, results/050.processed,
10839: results/051.processed, results/052.processed,
10840: results/053.processed, results/054.processed,
10841: results/055.processed, results/056.processed,
10842: results/057.processed, results/058.processed,
10843: results/059.processed, results/060.processed,
10844: results/061.processed, results/062.processed,
10845: results/063.processed, results/064.processed,
10846: results/065.processed, results/066.processed,
10847: results/067.processed, results/068.processed,
10848: results/069.processed, results/070.processed,
10849: results/071.processed, results/072.processed,
10850: results/073.processed, results/074.processed,
10851: results/075.processed, results/076.processed,
10852: results/077.processed, results/078.processed,
10853: results/079.processed, results/080.processed,
10854: results/081.processed, results/082.processed,
10855: results/083.processed, results/084.processed,
10856: results/085.processed, results/086.processed,
10857: results/087.processed, results/088.processed,
10858: results/089.processed, results/090.processed,
10859: results/091.processed, results/092.processed,
10860: results/093.processed, results/094.processed,
10861: results/095.processed, results/096.processed,
10862: results/097.processed, results/099.processed,
10863: results/100.processed, results/101.processed,
10864: results/102.processed, results/104.processed,
10865: results/105.processed, results/106.processed,
10866: results/107.processed, results/108.processed,
10867: results/109.processed, results/110.processed,
10868: results/111.processed, results/112.processed,
10869: results/113.processed, results/114.processed,
10870: results/115.processed, results/117.processed,
10871: results/119.processed, results/120.processed,
10872: results/121.processed, results/122.processed,
10873: results/123.processed, results/124.processed,
10874: results/125.processed, results/126.processed,
10875: results/127.processed, results/128.processed,
10876: results/129.processed, results/130.processed,
10877: results/131.processed, results/132.processed,
10878: results/133.processed, results/134.processed,
10879: results/135.processed, results/136.processed,
10880: results/138.processed, results/139.processed,
10881: results/140.processed, results/141.processed,
10882: results/142.processed, results/143.processed,
10883: results/144.processed, results/145.processed,
10884: results/146.processed, results/147.processed,
10885: results/148.processed, results/149.processed, results/auto.p: .
10886: now works if we turn off default auto.p
10887:
1.116 moko 10888: * configure: . makes
1.95 moko 10889:
10890: * src/types/pa_vxnode.C: . less warnings
10891:
10892: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
10893: tests/145.html, tests/149.html, tests/descript.ion,
10894: tests/outputs/d.cmd, tests/results/142.processed,
10895: tests/results/143.processed, tests/results/144.processed,
10896: tests/results/145.processed, tests/results/146.processed,
10897: tests/results/147.processed, tests/results/148.processed,
10898: tests/results/149.processed: . removed .nodeValue from all node
10899: types other than 5 (grabbed piece from gdome)
10900:
10901: * tests/: 137.html, results/137.processed: . not handled this case
10902: yet. code does not hang from inserting parent into child,
10903: considering thing minor issue -- nodes are removed from source
10904: anyway, don't know why shold that be an error after all
10905:
10906: * src/targets/cgi/parser3.C: . style
10907:
10908: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
10909: xdoc too [were barking "not element"]
10910:
10911: 2005-12-16 paf
10912:
10913: * tests/: 146.html, 147.html, 148.html: . more tests
10914:
10915: * src/classes/xnode.C: . also bark on possible errors
10916:
10917: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
10918: props
10919:
10920: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
10921: main/compile.y: merged from HEAD ! fixed overoptimized
10922: ^call(false) case. (confused it with ^call[] case)
10923:
10924: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
10925: ^call(false) case. (confused it with ^call[] case)
10926:
10927: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
10928:
10929: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
10930: results/001.processed, results/002.processed,
10931: results/003.processed, results/004.processed,
10932: results/005.processed, results/006.processed,
10933: results/008.processed, results/009.processed,
10934: results/010.processed, results/011.processed,
10935: results/012.processed, results/013.processed,
10936: results/014.processed, results/015.processed,
10937: results/016.processed, results/017.processed,
10938: results/018.processed, results/019.processed,
10939: results/020.processed, results/021.processed,
10940: results/022.processed, results/023.processed,
10941: results/024.processed, results/025.processed,
10942: results/026.processed, results/027.processed,
10943: results/028.processed, results/029.processed,
10944: results/030.processed, results/031.processed,
10945: results/032.processed, results/033.processed,
10946: results/034.processed, results/035.processed,
10947: results/036.processed, results/037.processed,
10948: results/038.processed, results/039.processed,
10949: results/040.processed, results/041.processed,
10950: results/042.processed, results/043.processed,
10951: results/044.processed, results/045.processed,
10952: results/046.processed, results/047.processed,
10953: results/048.processed, results/049.processed,
10954: results/050.processed, results/051.processed,
10955: results/052.processed, results/053.processed,
10956: results/054.processed, results/055.processed,
10957: results/056.processed, results/057.processed,
10958: results/058.processed, results/059.processed,
10959: results/060.processed, results/061.processed,
10960: results/062.processed, results/063.processed,
10961: results/064.processed, results/065.processed,
10962: results/066.processed, results/067.processed,
10963: results/068.processed, results/069.processed,
10964: results/070.processed, results/071.processed,
10965: results/072.processed, results/073.processed,
10966: results/074.processed, results/075.processed,
10967: results/076.processed, results/077.processed,
10968: results/078.processed, results/079.processed,
10969: results/080.processed, results/081.processed,
10970: results/082.processed, results/083.processed,
10971: results/084.processed, results/085.processed,
10972: results/086.processed, results/087.processed,
10973: results/088.processed, results/089.processed,
10974: results/090.processed, results/091.processed,
10975: results/092.processed, results/093.processed,
10976: results/094.processed, results/095.processed,
10977: results/096.processed, results/097.processed,
10978: results/099.processed, results/101.processed,
10979: results/102.processed, results/104.processed,
10980: results/105.processed, results/106.processed,
10981: results/107.processed, results/108.processed,
10982: results/109.processed, results/110.processed,
10983: results/111.processed, results/112.processed,
10984: results/113.processed, results/114.processed,
10985: results/115.processed, results/116.processed,
10986: results/117.processed, results/118.processed,
10987: results/119.processed, results/120.processed,
10988: results/121.processed, results/122.processed,
10989: results/123.processed, results/124.processed,
10990: results/125.processed, results/126.processed,
10991: results/127.processed, results/128.processed,
10992: results/129.processed, results/130.processed,
10993: results/131.processed, results/132.processed,
10994: results/133.processed, results/134.processed,
10995: results/135.processed, results/136.processed,
10996: results/137.processed, results/138.processed,
10997: results/139.processed, results/140.processed,
10998: results/141.processed: . refreshed old tests, made them work
10999: without auto.p (in utf8) . things noted: . gif got encoded
11000: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
11001: some strange year)
11002:
11003: * INSTALL: . revived linux libgc fix
11004:
11005: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
11006: glib/gdome in INSTALL and patches]
11007:
11008: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11009: include/pa_charset.h, include/pa_config_includes.h,
11010: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
11011: include/pa_xml_exception.h, lib/cord/Makefile.am,
11012: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
11013: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
11014: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
11015: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
11016: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
11017: types/pa_vxnode.h: . started killing gdome
11018:
11019: 2005-12-13 paf
11020:
11021: * src/main/: pa_request.C: merged from HEAD ! when code in
11022: @unhandled_exception thrown another exception, print correct
11023: origin (earlier code in catch of exception inside of
11024: @unhandled_exception grabbed parent_frame(original_exception)
11025: origin and printed it, instead of true origin)
11026:
11027: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
11028: another exception, print correct origin (earlier code in catch of
11029: exception inside of @unhandled_exception grabbed
11030: parent_frame(original_exception) origin and printed it, instead
11031: of true origin)
11032:
11033: 2005-12-09 paf
11034:
11035: * INSTALL: . updated INSTALL doc to work around linux stack base
11036: detection problem, due to change in gc6.4 code
11037:
11038: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
11039: ignored in ^string.matched :(
11040:
11041: * src/main/pa_string.C: ! regex tainting were ignored in
11042: ^string.matched :(
11043:
11044: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
11045: src/include/pa_config_fixed.h, src/include/pa_version.h,
11046: src/main/compile.y, src/main/compile_tools.h,
11047: src/main/pa_charset.C, src/main/pa_common.C,
11048: src/main/pa_globals.C, src/main/pa_string.C,
11049: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
11050: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
11051:
11052: 2005-12-08 paf
11053:
11054: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
11055: 500 chars now handled OK [were wrapped on 500th char according to
11056: rfc, but sendmail failed to unwrap it properly]
11057:
11058: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
11059: handled OK [were wrapped on 500th char according to rfc, but
11060: sendmail failed to unwrap it properly]
11061:
11062: * src/targets/isapi/parser3isapi.C: . less warnings
11063:
11064: * src/targets/isapi/parser3isapi.C: . undone some strange change
11065: since 3.1.5
11066:
11067: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
11068: link fixes
11069:
11070: * src/: classes/date.C, include/pa_config_fixed.h,
11071: main/compile.tab.C, main/compile.y, main/compile_tools.h,
11072: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
11073: main/pa_string.C, targets/cgi/getopt.c: . less warnings
11074:
11075: * src/include/pa_config_fixed.h: . removed outdated string origins
11076: [in current storage scheme there's no place for them. someday we
11077: can add third CORD to store origins and special version of parser
11078: which stores origins there [separate binary]]
11079:
11080: 2005-12-07 paf
11081:
11082: * src/targets/isapi/parser3isapi.C: . now links in release mode
11083:
11084: * src/include/pa_version.h: makefiles
11085:
11086: * src/include/pa_version.h: . not beta
11087:
11088: * configure, configure.in, src/include/pa_version.h: not beta
11089:
11090: 2005-12-06 paf
11091:
11092: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
11093: [some details here http://i2/tasks/edit/?id=4869912143891354460]
11094: decided to undo the change ^call[$void] passes void. now it will
11095: pass empty string again.
11096:
11097: * src/main/: compile.tab.C, compile.y: . version readded
11098:
11099: * src/classes/op.C: . in this version there is no ^switch[$nothing]
11100: = ^switch[void] problem
11101:
11102: 2005-12-01 paf
11103:
11104: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
11105: caused ^case[string] to be coerced to double since searching
11106: value were not string (it was vvoid)
11107:
11108: * src/classes/op.C: . bugfix ^switch[$void_value] caused
11109: ^case[string] to be coerced to double since searching value were
11110: not string (it was vvoid)
11111:
11112: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
11113: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
11114:
11115: 2005-11-30 paf
11116:
11117: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
11118: win32 must putenv("TZ="), on unix works only putenv("TZ")
11119:
11120: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
11121: putenv("TZ="), on unix works only putenv("TZ")
11122:
11123: * INSTALL: . xml libs versions updated
11124:
11125: * src/main/pa_globals.C: //20051130 trying to remove this, author
11126: claims that fixed a lot there // 20040920 for now both
11127: workarounds needed. wait for new libxml/xsl versions
11128:
11129: 2005-11-28 paf
11130:
11131: * src/classes/table.C: merged from HEAD: ! nameless table has
11132: columns==0
11133:
11134: * src/classes/table.C: ! nameless table has columns==0
11135:
11136: * src/main/pa_http.C: merged from HEAD: ! status line check made
11137: earlier [was totally wrong]
11138:
11139: * src/main/pa_http.C: ! status line check made earlier [was totally
11140: wrong]
11141:
11142: 2005-11-25 paf
11143:
11144: * src/include/pa_array.h: -this reduces speed(table::load) strange.
11145: undoing for now...
11146:
11147: * src/include/pa_version.h: -this reduces speed(table::load),
11148: strange. undoing
11149:
11150: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
11151:
11152: * src/classes/op.C: + ^while(){}[SEPARATOR]
11153:
11154: * src/include/pa_array.h: + optimistics added: all arrays (table
11155: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
11156: this speeds things up and saves memory a LOT! (not noticed
11157: negative effect on syntetic tests, future will tell...)
11158:
11159: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
11160: changed gc_malloc implementation, which obscured profiling
11161:
11162: * src/classes/table.C: merged from HEAD: + optimized
11163: table::load/sql, now row ArrayString-s allocated with
11164: columns.count() elements and don't always grow from
11165: count=3[realloc,realloc]
11166:
11167: * src/classes/table.C: + optimized table::load/sql, now row
11168: ArrayString-s allocated with columns.count() elements and don't
11169: always grow from count=3[realloc,realloc]
11170:
11171: * src/classes/table.C: merged from HEAD: . ^table.save unused
11172: buffer after save
11173:
11174: * src/classes/table.C: . ^table.save unused buffer after save
11175:
11176: 2005-11-24 paf
11177:
11178: * configure.in: . merged glib2-config patch
11179:
11180: * configure.in: + trying to find glib2-config
11181:
11182: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11183: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
11184: file/dir_readable to simple file/dir_exist, this would help in
11185: situations "class not found because .p file has bad rights" << in
11186: that case error would be explicit "access denied to 'this' file"
11187:
1.116 moko 11188: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 11189:
11190: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11191: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
11192: to simple file/dir_exist, this would help in situations "class
11193: not found because .p file has bad rights" << in that case error
11194: would be explicit "access denied to 'this' file"
11195:
11196: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
11197: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11198: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
11199: ^file::exec/cgi[script;$.charset[changed]
11200: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11201: encoded in $.charset charset
11202:
11203: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
11204: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11205: encoded in $.charset charset
11206:
11207: * src/: include/Makefile.am, include/pa_common.h,
11208: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11209: main/pa_common.C, main/pa_http.C: . extracted http:// into
11210: separate file [preparation for
11211: ^file::cgi[script;$.form[$.field1[]
11212:
11213: 2005-11-22 paf
11214:
11215: * src/: include/pa_version.h, main/compile.tab.C: makefiles
11216:
11217: * acinclude.m4, configure.in: . merged underquting fixes
11218:
1.116 moko 11219: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 11220:
11221: * src/classes/op.C: . overmerged a little
11222:
11223: * src/main/compile.tab.C: Makefile
11224:
11225: * src/main/: pa_common.C: . less gcc warnings
11226:
11227: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
11228: now reports original exception if we have no old cache
11229:
11230: * src/classes/op.C: + $exception.handled[cache] now reports
11231: original exception if we have no old cache
11232:
11233: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
11234: from HEAD: + ^taint/untaint[regex] << escapes these:
11235: \^$.[]|()?*+{}
11236:
11237: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
11238: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
11239:
11240: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11241: getenv-ed variable, which does not work both on win32&unix.
11242: copied old TZ value now
11243:
11244: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
11245: stored pointer to getenv-ed variable, which does not work both on
11246: win32&unix. copied old TZ value now
11247:
11248: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11249: getenv-ed variable, which does not work both on win32&unix.
11250: copied old TZ value now
11251:
11252: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
11253: access to internal hash
11254:
11255: * src/types/pa_vresponse.C: + $response:headers access to internal
11256: hash
11257:
11258: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
11259: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11260: isapi] this reduces number of "GC Warning: Repeated allocation of
11261: very large block" messages to only important onces
11262:
11263: * src/targets/isapi/parser3isapi.C: +
11264: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11265: isapi] this reduces number of "GC Warning: Repeated allocation of
11266: very large block" messages to only important onces
11267:
11268: * src/classes/string.C: merged from HEAD: + removed limitation on
11269: ^string/int/double:sql{}[$.default[({param style})] ]
11270:
11271: * src/classes/string.C: + removed limitation on
11272: ^string/int/double:sql{}[$.default[({param style})] ]
11273:
11274: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
11275: with ?params or $.form option" limitation
11276:
11277: * src/main/pa_common.C: + removed "use either uri with ?params or
11278: $.form option" limitation
11279:
11280: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11281: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
11282: ^file::base64[encoded] decode
11283:
11284: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11285: main/pa_common.C: + ^file.base64[] encode +
11286: ^file::base64[encoded] decode
11287:
11288: * src/classes/: file.C, string.C: + ^string.base64[] encode +
11289: ^string:base64[encoded] decode
11290:
11291: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
11292: ^string:base64[in] encode + ^string.base64[] decode
11293:
11294: 2005-11-21 paf
11295:
11296: * src/classes/file.C: + merged from HEAD:
11297: ^file::create[text;file.xml;^untaint[xml]{data}]
11298:
11299: * src/classes/file.C: +
11300: ^file::create[text;file.xml;^untaint[xml]{data}]
11301:
11302: * src/main/pa_request.C: ! merged: $response:body[file] now
11303: differes from :download, it does not return content-disposition
11304: at all now [previusely it returned valueless content-disposition]
11305:
11306: * src/main/pa_request.C: ! $response:body[file] now differes from
11307: :download, it does not return content-disposition at all now
11308: [previusely it returned valueless content-disposition]
11309:
11310: * src/main/: compile.tab.C, compile.y: ! overoptimized void
11311: literals, reverted to just vvod, recreating empty array with each
11312: void_value token. that's absolutely needed, since that array
11313: grows
11314:
11315: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11316: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11317: types/pa_vmethod_frame.h: + merged: expression literals:
11318: true/false. ^format[$.indent(true)]
11319:
11320: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11321: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11322: types/pa_vmethod_frame.h: + expression literals: true/false.
11323: ^format[$.indent(true)]
11324:
11325: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11326: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11327: i386-pc-win32)"
11328:
11329: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11330: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11331: i386-pc-win32)"
11332:
11333: 2005-11-18 paf
11334:
11335: * src/classes/: double.C, int.C: ! ^int/double:sql{select
11336: null}[$.default(123)] will now return default value
11337:
11338: * src/classes/op.C: + merged ^cache[] << returns current cache
11339: expiration time
11340:
11341: * src/classes/op.C: + ^cache[] << returns current cache expiration
11342: time
11343:
11344: * src/classes/table.C: ! merged ^table::create[not'nameless';
11345: failed << Exception.problem_source pointed to local var!
11346:
11347: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
11348: Exception.problem_source pointed to local var!
11349:
11350: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
11351: now loads VFile.ptr!=0, so such files can be saved now
11352:
11353: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
11354: loads VFile.ptr!=0, so such files can be saved now
11355:
11356: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
11357: only . and .. now removed from list [were removed all .*]
11358:
11359: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
11360: .. now removed from list [were removed all .*]
11361:
11362: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
11363: open error now checked, were not :( [stole that piece from apache
11364: 1.3 sources]
11365:
11366: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
11367: checked, were not :( [stole that piece from apache 1.3 sources]
11368:
11369: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
11370: untainting of @main result if returned by $result or
11371: $response:body
11372:
11373: * src/main/pa_request.C: ! ensured proper untainting of @main
11374: result if returned by $result or $response:body
11375:
11376: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
11377: issue: now tries to guess content-length and allocates one big
11378: piece if possible [regretfully gc_realloc works as malloc+free,
11379: leaving lots of holes behind]
11380:
11381: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
11382: fixed file load memory issue: now tries to guess content-length
11383: and allocates one big piece if possible [regretfully gc_realloc
11384: works as malloc+free, leaving lots of holes behind]
11385:
11386: 2005-11-16 paf
11387:
11388: * src/: include/pa_common.h, classes/file.C, classes/table.C,
11389: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
11390: table::save with enclosers now doubles them: "->"" !
11391: table::save/load do not remove elements from options hash
11392:
11393: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
11394: [were overoptimized ^if(double_literal), compiler confused
11395: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11396:
11397: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
11398: [were overoptimized ^if(double_literal), compiler confused
11399: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11400:
11401: * src/: classes/file.C, classes/table.C, include/pa_common.h,
11402: main/pa_common.C: ! table::save with enclosers now doubles them:
11403: "->"" ! table::save/load do not remove elements from options hash
11404:
11405: 2005-11-03 paf
11406:
1.116 moko 11407: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
11408: compilation, not all makefiles liked that
1.95 moko 11409:
11410: 2005-08-30 paf
11411:
11412: * src/classes/op.C: merge . speedup check of [DEFAULT]
11413:
11414: * src/classes/op.C: . speedup check of [DEFAULT]
11415:
11416: 2005-08-26 paf
11417:
11418: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
11419:
11420: * src/: classes/date.C, types/pa_vdate.h: + date.week
11421:
11422: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
11423: complains about bad!=nameless
11424:
11425: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
11426: about bad!=nameless
11427:
11428: * src/classes/: hash.C, string.C, table.C, void.C: merged !
11429: optional options were allowed to be empty. were checked
11430: if(is_string), changed to !defined||is_string to allow void
11431:
11432: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
11433: classes/string.C, classes/table.C, classes/void.C: ! optional
11434: options were allowed to be empty. were checked if(is_string),
11435: changed to !defined||is_string to allow void
11436:
11437: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
11438: as_junction where they needed as_int/double, so failed with
11439: recent "(const) now no junction" optimization
11440:
11441: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
11442: merged ! many classes/* used as_junction where they needed
11443: as_int/double, so failed with recent "(const) now no junction"
11444: optimization
11445:
11446: * src/: classes/double.C, classes/int.C, classes/math.C,
11447: classes/op.C, classes/string.C, classes/table.C,
11448: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
11449: used as_junction where they needed as_int/double, so failed with
11450: recent "(const) now no junction" optimization
11451:
11452: 2005-08-24 paf
11453:
11454: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
11455: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
11456: stripped it
11457:
11458: 2005-08-09 paf
11459:
11460: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11461: not cleared
11462:
11463: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11464: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11465: classes/hashfile.C, classes/image.C, classes/int.C,
11466: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11467: classes/response.C, classes/string.C, classes/table.C,
11468: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11469: include/pa_array.h, include/pa_cache_managers.h,
11470: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11471: include/pa_config_fixed.h, include/pa_config_includes.h,
11472: include/pa_dictionary.h, include/pa_dir.h,
11473: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11474: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11475: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11476: include/pa_request_charsets.h, include/pa_request_info.h,
11477: include/pa_sapi.h, include/pa_socks.h,
11478: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11479: include/pa_stack.h, include/pa_string.h,
11480: include/pa_stylesheet_connection.h,
11481: include/pa_stylesheet_manager.h, include/pa_table.h,
11482: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11483: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11484: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11485: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11486: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11487: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11488: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11489: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11490: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11491: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11492: main/pa_sql_driver_manager.C, main/pa_string.C,
11493: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11494: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11495: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11496: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11497: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11498: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
11499: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
11500: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11501: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11502: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
11503: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
11504: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
11505: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11506: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
11507: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
11508: types/pa_vmemory.h, types/pa_vmethod_frame.C,
11509: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11510: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
11511: types/pa_vresponse.C, types/pa_vresponse.h,
11512: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11513: types/pa_vstateless_object.h, types/pa_vstatus.C,
11514: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11515: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11516: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11517: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11518: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
11519:
11520: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11521: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
11522: speedup consequent checks in vmethod_frame
11523:
11524: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11525: not cleared
11526:
11527: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
11528: params: 50 max (were 10)
11529:
11530: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
11531: params: 50 max (were 10)
11532:
11533: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11534: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
11535: pa_wcontext.h: + ^call[$void] param inside now is void (were:
11536: empty string) ! simplified (double) speedup consequent checks in
11537: vmethod_frame
11538:
11539: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
11540: optimized constants in expressions vstring->vdouble + optimized
11541: ^call(vdouble), no junction creation, no calls later
11542:
11543: 2005-08-08 paf
11544:
11545: * src/main/: compile.tab.C, compile.y, compile_tools.C,
11546: compile_tools.h: merged + optimized constants in expressions
11547: vstring->vdouble + optimized ^call(vdouble), no junction
11548: creation, no calls later
11549:
11550: * src/types/pa_vdouble.h: merged . double values without fractional
11551: part now default printed as %.0f instead of %g
11552:
11553: * src/types/pa_vdouble.h: . double values without fractional part
11554: now default printed as %.0f instead of %g
11555:
11556: * src/classes/hashfile.C: . merged ! second hashfile::open would
11557: cause an exception
11558:
11559: * src/classes/hashfile.C: ! second hashfile::open would cause an
11560: exception
11561:
11562: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
11563: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11564: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11565: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11566: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
11567: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11568: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11569: types/pa_vresponse.h, types/pa_vstateless_class.C,
11570: types/pa_vstateless_object.h, types/pa_vvoid.h,
11571: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11572: merged VJunction(new Junction) optimization from 3.1.4
11573:
11574: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
11575: types/pa_vstateless_class.C: + optimized new VJunction(new
11576: Junction(params)) to new VJunction(params), thousands of mallocs
11577: removed
11578:
11579: 2005-08-05 paf
11580:
11581: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
11582: types/pa_vdouble.h, types/pa_vmethod_frame.C,
11583: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
11584: creation, no calls later
11585:
11586: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11587: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11588: classes/hashfile.C, classes/image.C, classes/int.C,
11589: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11590: classes/response.C, classes/string.C, classes/table.C,
11591: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11592: include/pa_array.h, include/pa_cache_managers.h,
11593: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11594: include/pa_config_fixed.h, include/pa_config_includes.h,
11595: include/pa_dictionary.h, include/pa_dir.h,
11596: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11597: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11598: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11599: include/pa_request_charsets.h, include/pa_request_info.h,
11600: include/pa_sapi.h, include/pa_socks.h,
11601: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11602: include/pa_stack.h, include/pa_string.h,
11603: include/pa_stylesheet_connection.h,
11604: include/pa_stylesheet_manager.h, include/pa_table.h,
11605: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11606: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11607: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11608: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11609: lib/smtp/smtp.h, main/compile.C, main/compile.y,
11610: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11611: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11612: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11613: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11614: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
11615: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
11616: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11617: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11618: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11619: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11620: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11621: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11622: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11623: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11624: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11625: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11626: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11627: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
11628: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11629: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11630: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
11631: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11632: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11633: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11634: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11635: types/pa_vstateless_object.h, types/pa_vstatus.C,
11636: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11637: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11638: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11639: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11640: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
11641:
11642: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
11643: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
11644: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11645: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
11646: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11647: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
11648: optimized constants in expressions vstring->vdouble
11649:
11650: 2005-07-29 paf
11651:
11652: * src/types/pa_vclass.C: . shaped up error messages a bit
11653:
11654: * src/types/pa_vclass.C: + property getter can now be overridden
11655:
11656: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
11657: bug fix: static parent fields were not replaced in case
11658: $derived:field[put] + property setter can now be overridden
11659:
11660: 2005-07-28 paf
11661:
11662: * configure, configure.in, src/classes/classes.h,
11663: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
11664: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
11665: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
11666: src/classes/xnode.h, src/include/pa_hash.h,
11667: src/include/pa_version.h, src/main/execute.C,
1.116 moko 11668: src/types/Makefile.am, src/types/pa_method.h,
11669: src/types/pa_value.h, src/types/pa_vclass.C,
11670: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
11671: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
11672: src/types/pa_vcookie.h, src/types/pa_vhash.h,
11673: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
11674: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
11675: src/types/pa_vobject.C, src/types/pa_vobject.h,
11676: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
11677: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
11678: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
11679: src/types/pa_vstateless_class.h,
1.95 moko 11680: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
11681: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
11682: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
11683: dynamic_fields_join
11684:
11685: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
11686: classes/xnode.C, include/pa_hash.h, main/execute.C,
11687: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11688: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11689: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11690: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11691: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11692: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11693: types/pa_vresponse.h, types/pa_vstateless_object.h,
11694: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
11695: types/pa_wwrapper.h: ! restored put_element('replace' param), and
11696: restored its checks in vobject.put_element->static fields |
11697: dynamic properties
11698:
11699: 2005-07-27 paf
11700:
11701: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
11702: is some old code containing @set_name $name
11703:
11704: * src/types/pa_vobject.h: . fixed warning
11705:
11706: * configure, configure.in, src/include/pa_version.h,
1.116 moko 11707: src/types/Makefile.am: 3.2.0beta started
1.95 moko 11708:
11709: * src/: classes/xnode.C, include/pa_hash.h,
11710: types/pa_vstateless_class.C: ! new asserts were all false.
11711: regretfully reverted them all to checks
11712:
11713: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11714: classes/op.C, main/execute.C, types/pa_method.h,
11715: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11716: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11717: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11718: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11719: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11720: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11721: types/pa_vstateless_object.h, types/pa_vvoid.h,
11722: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11723: joined_dynamic_fields: removed unused param from put_method
11724: (returned to 3 params)
11725:
11726: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
11727: joined_dynamic_fields: dynamic get/set works with overriding
11728: props [alpha2]
11729:
11730: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
11731: works [alfa]
11732:
11733: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11734: classes/op.C, include/pa_hash.h, main/execute.C,
11735: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11736: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11737: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11738: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11739: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11740: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11741: types/pa_vresponse.h, types/pa_vstateless_class.C,
11742: types/pa_vstateless_object.h, types/pa_vvoid.h,
11743: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11744: joined_dynamic_fields: just compiled
11745:
11746: * src/: classes/date.C, classes/file.C, classes/hash.C,
11747: classes/hashfile.C, classes/image.C, classes/table.C,
11748: classes/xdoc.C, classes/xnode.h, main/execute.C,
11749: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
11750: types/pa_vstateless_class.h: joined_dynamic_fields: started
11751:
11752: * src/types/pa_vobject.C: . object setters [only started, does not
11753: work yet]
11754:
11755: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
11756: object setters [only started, does not work yet]
11757:
11758: 2005-07-26 paf
11759:
11760: * src/: include/pa_request.h, main/execute.C: . properties: set
11761: works [alpha2]. for classes. todo: for objects
11762:
11763: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
11764: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11765: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11766: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11767: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11768: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11769: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11770: types/pa_vstateless_object.h, types/pa_vvoid.h,
11771: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11772: properties: set works [alpha1]
11773:
11774: 2005-07-25 paf
11775:
11776: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
11777: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
11778: properties: started, get works [alpha1, other approach]
11779:
11780: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
11781: properties: started, get works [alpha2]
11782:
11783: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
11784: pa_vstateless_class.h: . properties: started, get works [alpha]
11785:
11786: 2005-07-15 paf
11787:
11788: * src/: classes/classes.h, classes/op.C, main/execute.C,
11789: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
11790: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11791: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11792: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11793: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
11794: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
11795: types/pa_vresponse.C, types/pa_vresponse.h,
11796: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11797: types/pa_vstateless_object.h, types/pa_vvoid.h,
11798: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
11799: types/pa_wwrapper.h, types/types.vcproj: + started property
11800: [getters work but think of changing them too to precaching]
11801:
11802: 2005-07-08 paf
11803:
11804: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
11805: gpf
11806:
11807: 2005-06-28 paf
11808:
11809: * src/: classes/file.C, main/untaint.C: ! string invariant violated
11810: in passing empty strings to file::exec/cgi environment
11811:
11812: 2005-06-06 paf
11813:
11814: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
11815: ^table:sql ^hash:sql now DO process $.bind option
11816:
11817: 2005-05-24 paf
11818:
11819: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
11820: $.limit] now work again [support was broken in 3.1.4]
11821:
11822: * src/: main/pa_string.C, classes/op.C: . steps toward removing
11823: ALL_INTERIOR_POINTERS
11824:
11825: 2005-05-12 paf
11826:
11827: * configure: 3.1.5beta
11828:
11829: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
11830:
11831: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
11832: $.limit] now work again [support was broken in 3.1.4]
11833:
11834: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
11835: line-width [was refusing to fill if line-width >1, thanks to
11836: Seras <seras@pinxit.lt> for repro case
11837:
11838: 2005-04-25 paf
11839:
11840: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
11841: correctly
11842:
11843: 2005-04-19 paf
11844:
11845: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
11846: in VString violating invariant!!
11847:
11848: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
11849: getenv("TZ")==null
11850:
11851: 2005-04-08 paf
11852:
11853: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
11854: bugfix: when there is no char in charset one byte produces 6
11855: (ÿ <<max). increased buffer size!
11856:
11857: 2005-03-23 paf
11858:
11859: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
11860: ^date.sql-string now takes TZ into account
11861:
11862: 2005-03-16 paf
11863:
11864: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
11865: gcc 3.4
11866:
11867: * src/types/pa_vhash.C: . warning about eof eol
11868:
11869: 2005-02-17 paf
11870:
11871: * operators.txt, src/classes/op.C: + operator ^sleep(double
11872: seconds)
11873:
11874: 2005-02-02 paf
11875:
11876: * src/classes/xnode.C: beauty: removed needless includes
11877:
11878: 2005-01-31 paf
11879:
11880: * src/types/pa_vmail.C: change: $.partX now always 1... change:
11881: $.partNoNumber now alias to $.part1
11882:
11883: * src/types/pa_vmail.C: change: incoming letter part contains
11884: "content-disposition" header with any value? now considering that
11885: part to be "file#" [for text/plain text/html were $.text#
11886: $.html#]
11887:
11888: * INSTALL: updatet to latest working versions available
11889:
11890: 2005-01-20 paf
11891:
11892: * configure.in, src/include/pa_version.h: version
11893:
11894: 2005-01-19 paf
11895:
1.116 moko 11896: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
11897: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
11898: couple warnings in parser3.C
1.95 moko 11899:
11900: 2004-12-23 paf
11901:
11902: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
11903:
11904: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
11905: dir to directory of script (when shbang used), not to directory
11906: of its interpreter
11907:
11908: * src/include/pa_version.h: compiled on win32...
11909:
11910: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
11911: we need more hspace
11912:
11913: * configure, configure.in, src/include/pa_version.h: configured
11914: host to pa_version. will be displayed everywhere
11915:
11916: * src/main/pa_request.C: new: @unhandled_exception can prevent
11917: exception from being logged by setting $exception.handled(1)
11918:
11919: * operators.txt, src/classes/file.C: change:
11920: ^file::sql{query}[[options]] options: $.name[file name]
11921: $.content-type[application/what]
11922:
11923: * src/: include/pa_common.h, main/pa_common.C,
11924: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
11925: new file
11926:
11927: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
11928: bugfix: table->hash now regards _default
11929:
11930: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
11931: created by accessing $name_of_method it acquired bad self=closest
11932: methodframe; instead of proper self (current class)
11933:
11934: * src/types/pa_vhashfile.C: bugfix: reading empty string from
11935: hashfile produced bad cord
11936:
11937: 2004-12-10 paf
11938:
11939: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
11940: subsequent failures though defined in .h
11941:
11942: * src/main/pa_common.C: comment on volatile
11943:
11944: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
11945: alarm function were not used since the beginning due to stupid
11946: error [setsigjmp were not checked in configure.in]
11947:
11948: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
11949: unix too
11950:
11951: * src/main/pa_common.C: http: exception status of send/recv errors
11952: change to most probable http.timeout
11953:
11954: * src/main/pa_common.C: win32: http connection $.timeout option now
11955: works [setsockopt on send/receive]
11956:
11957: 2004-12-08 paf
11958:
11959: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
11960: cstr-ed knowing mail charset, and untainting uri lang now knows
11961: proper charset
11962:
11963: 2004-11-24 paf
11964:
11965: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
11966:
11967: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
11968: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
11969:
11970: 2004-11-12 paf
11971:
11972: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
11973: [since 3.0.4]
11974:
11975: 2004-11-09 paf
11976:
11977: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
11978: writes basics to c:\parser3.log
11979:
11980: 2004-10-21 paf
11981:
11982: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
11983: tainted strings [were returning clean onces]
11984:
11985: 2004-10-15 paf
11986:
11987: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
11988: cycles(i=1; i=2), which was wrong, now does ONE
11989:
11990: 2004-10-12 paf
11991:
11992: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
11993:
11994: 2004-10-07 paf
11995:
11996: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
11997: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
11998: release asserts
11999:
12000: * src/: main/pa_string.C, include/pa_string.h: debugger help:
12001: String.dump() to stdout in detailed form [were String.v() in
12002: short form]
12003:
12004: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
12005: \t\r\n as @#| and truncates long char sequences less
12006:
12007: 2004-10-06 paf
12008:
12009: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
12010: win32 beauty: socket errors properly decoded
12011:
12012: 2004-10-05 paf
12013:
12014: * src/: include/pa_request.h, main/pa_request.C: bugfix:
12015: request::configure_user/admin done always, even if no
12016: file-to-process useful in @unhandled_exception [say, if they
12017: would want to mail by SMTP something]
12018:
12019: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
12020: now performed prior to file loading [and @auto executing] thus
12021: making $cookie:value available in @auto and in
12022: @unhandled_exception when IIS is configured to run interpreter
12023: even if no file exist
12024:
12025: 2004-09-20 paf
12026:
12027: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
12028: somewhere where it should have called xmlMalloc and it calls
12029: xmlFree when it should have not called it. inserted two
12030: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
12031: xmlFree just ignored. put away a testcase, maybe someday libxml
12032: author would fix all that. until that day: we have SLOW garbage
12033: collecting when many xml objects are alive hint: do
12034: ^memory:compact[] before xdoc::create
12035:
12036: 2004-09-17 paf
12037:
12038: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
12039: error from 3.0.8 version]
12040:
12041: 2004-09-14 paf
12042:
12043: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
12044: part bugfix: hashfile.foreach iterated only part if hashfile were
12045: modified inside
12046:
12047: 2004-09-13 paf
12048:
12049: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
12050: [were as octal]
12051:
12052: * src/types/pa_vhashfile.C: beauty: not reproduced
12053: $hashfile.key[$novalue] bug [reported by motorin], inserted
12054: safety-check
12055:
12056: * src/types/pa_vhashfile.C: change: empty keys now error in parser
12057: [not something obscure from sdbm lib]
12058:
12059: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
12060: = strerror now returnes something and we can properly report that
12061: to client
12062:
12063: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
12064: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
12065:
12066: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12067: [tainted as-is] this helps //[space][newline] to remain as-is and
12068: not be unnecessary optimized away [ruining javascript]
12069:
12070: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12071: [tainted as-is]
12072:
12073: * src/classes/mail.C: bugfix: typo error
12074:
12075: 2004-09-09 paf
12076:
12077: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
12078: separators bugfix: loads header with endings \r\n\r\n and \n\n
12079: (bloody yandex.server)
12080:
12081: 2004-09-06 paf
12082:
12083: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
12084: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
12085: encoded
12086:
12087: 2004-09-01 paf
12088:
12089: * src/types/pa_vmail.C: change: multipart/mixed changed to
12090: multipart/related outlook express have no problems showing
12091: unrelated attachments. todo: someday figure out a way of
12092: multipart/mixed multipart/related text/html
12093: image/xxx application/octet-stream << true attachments
12094:
12095: * src/types/pa_vmail.C: new:
12096: ^mail:send[$.file[$.content-disposition can be overriden new:
12097: empty mail header fields removed from letter
12098:
12099: * src/: classes/mail.C, include/pa_config_fixed.h,
12100: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
12101: ^mail:send[ $.file[ $.any[header]
12102:
12103: 2004-08-30 paf
12104:
12105: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
12106: warnings
12107:
12108: * src/main/pa_common.C: beauty: do not bother with charset
12109: detection when ^file::load[binary
12110:
12111: 2004-08-27 paf
12112:
12113: * src/main/pa_common.C: hack: for yandex.server http server
12114:
12115: 2004-08-18 paf
12116:
12117: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
12118: possibly-chunked response
12119:
12120: 2004-08-17 paf
12121:
12122: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12123: $f.content-type now = that of http response
12124:
12125: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12126: $f.content-type now = that of http response
12127:
12128: 2004-07-30 paf
12129:
12130: * src/: include/pa_request.h, main/pa_request.C,
12131: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
12132: win32: system&parser exceptions in release mode reported properly
12133: parser exception in exception handler WERE mistakenly reported as
12134: system exception, without details [in apache & isapi] +some
12135: beauty in exception text
12136:
12137: * src/: include/pa_exception.h, main/pa_request.C,
12138: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
12139: release mode reported properly parser exception in exception
12140: handler WERE mistakenly reported as system exception, without
12141: details
12142:
12143: * src/main/execute.C: beauty: simplified system exception handling
12144:
12145: 2004-07-29 paf
12146:
12147: * src/classes/table.C: bugfix:
12148: ^table.save[export.csv;$.separator[^;]] now works fine [separator
12149: were ignored, and \t used unconditionally]
12150:
12151: * src/types/Makefile.am: added vhash.c
12152:
12153: 2004-07-28 paf
12154:
12155: * src/: classes/date.C, classes/image.C, classes/math.C,
12156: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
12157: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
12158: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
12159: failed on russian letters
12160:
12161: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
12162: bugfix: isspace((unsigned char)c) everywhere. failed on russian
12163: letters
12164:
12165: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
12166: as 'currentDirectory' parameter to CreateProcess
12167:
12168: 2004-07-27 paf
12169:
12170: * src/targets/cgi/parser3.vcproj: beauty: win32:
12171: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
12172: from release somewhere [to help searching for unhandled system
12173: exceptions]
12174:
12175: * src/types/pa_vdate.h: check: for invalid datetime after temporary
12176: TZ shift
12177:
12178: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
12179: but also in ctor
12180:
12181: 2004-07-26 paf
12182:
12183: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
12184: src/main/pa_request.C, src/types/pa_vfile.h,
12185: src/types/pa_vhash.C, src/types/pa_vhash.h,
12186: src/types/types.vcproj: new: $response:body/download[
12187: $.file[name on disk] $.name[of file for user]
12188: $.mdate[date of last-modified. default from directory] ]
12189:
12190: * src/classes/file.C: moving file:send somewhere else..
12191:
12192: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
12193: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
12194: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
12195: $response:download[ $.filename[filename] $.option[] ,, ]
12196:
12197: * src/classes/file.C: beauty: invalid mode thoroughly reported
12198:
12199: 2004-07-21 paf
12200:
12201: * src/types/pa_vmail.C: bugfix: too long header values now splitted
12202: to several lines
12203:
12204: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
12205:
12206: note: ms outlook[!express] shows only first 255 characters of
12207: subject
12208:
12209: 2004-07-15 paf
12210:
12211: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
12212: off]
12213:
12214: 2004-07-14 paf
12215:
12216: * src/classes/table.C: bugfix: $.bind values now got untainted
12217: according to lang [were: as-is]
12218:
12219: 2004-07-07 paf
12220:
12221: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
12222: checked that
12223:
12224: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
12225: now untainted according to their languages. were: as-is.
12226: EVERYWHERE
12227:
12228: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
12229: environment string now untainted according to their languages.
12230: were: as-is. EVERYWHERE
12231:
12232: * src/main/pa_exec.C: bufix: on unix environment string now
12233: untainted according to their languages. were: as-is. on win32:
12234: ok
12235:
12236: * parser3.vssscc: ...would not go unnoticed
12237:
12238: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
12239: fails. in case on input appears nonutf, those bytes will be
12240: printed in %HH form. that can be easily decoded/recovered.
12241:
12242: this form is quite noticable, and hopefully would not go noticed
12243:
12244: 2004-07-06 paf
12245:
12246: * src/main/pa_exec.C: bufix: on unix environment string now
12247: untainted according to their languages. were: as-is. on win32:
12248: ok
12249:
12250: 2004-07-01 paf
12251:
12252: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
12253: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
12254: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12255: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
12256: main/main.vcproj, targets/cgi/parser3.vcproj,
12257: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
12258: option: global optimization ON
12259:
12260: * src/main/untaint.C: workaround kinda bug in libxml: life requires
12261: to do xdoc::create{invalid chars} standard disables chars less
12262: then \x20, except tab, cr, lf.
12263:
12264: changed tainting so that those become '!'
12265:
12266: 2004-06-25 paf
12267:
12268: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12269: int on odd address [prev bugfix failed due to superwize
12270: optimizer, which turned memcpy into same 'ld' asm command]
12271:
12272: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12273: int on odd address
12274:
12275: 2004-06-22 paf
12276:
12277: * src/sql/pa_sql_driver.h: note: about possible optimization
12278:
12279: * operators.txt, src/classes/hash.C, src/classes/memory.C,
12280: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12281: src/include/pa_config_includes.h: new: ^void:sql{call
12282: paf(:a)}[ $.bind[ $.a[2]
12283: ] ] output variables work. todo: check in out
12284: variables
12285:
12286: 2004-06-18 paf
12287:
12288: * src/: classes/file.C, classes/hash.C, classes/string.C,
12289: classes/table.C, classes/void.C, include/pa_globals.h,
12290: include/pa_sql_connection.h, main/compile.tab.C,
12291: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
12292: $.bind[ $.a[2] ]
12293: ] input variables work. todo:output
12294:
12295: * src/targets/cgi/parser3.C: bugfix: iis specific
12296: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
12297: /_bug.html?404;http://hpsv/test/
12298: --------------------------------------------------------------------------------
12299: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
12300: --------------------------------------------------------------------------------
12301: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
12302:
12303: 2004-06-16 paf
12304:
12305: * src/targets/cgi/parser3.C: new: iis specific
12306: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
12307: $request:query
12308: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
12309: $form:fields IIS-STATUS="404"
12310: IIS-DOCUMENT="http://server/_bug.html" f="v"
12311:
12312: todo: isapi too
12313:
12314: 2004-05-26 paf
12315:
12316: * src/include/pa_version.h: 3.1.3
12317:
12318: * operators.txt: beauty: removed outdated level 'table'
12319:
12320: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
12321:
12322: * src/main/pa_string.C: beauty: removed 3 warnings
12323:
12324: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
12325: classes/op.C: beauty: removed outdated level 'table'
12326:
12327: 2004-05-25 paf
12328:
12329: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
12330: implementation. mistery: how anything worked
12331:
12332: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
12333: changed, it is now safe to use url if pointers to it are stored
12334: to gc mem
12335:
12336: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
12337: unknown errors reported and not cause SIGSEGV now
12338:
12339: 2004-05-24 paf
12340:
12341: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12342: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
12343: less memory: CORD_chars_block originally intended to ... it was
12344: good that CORD_chars_block were not used: it consumes more memory
12345: [and, might be slow too] undoing that. [and removed that func so
12346: that it would not confuse parser developer in future]
12347:
12348: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
12349: less memory: CORD_chars_block originally intended to
12350: speedup/reduce mem usage were forgotten, and were used stupid
12351: CORD_chars
12352:
12353: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
12354:
12355: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
12356: BIGENDIAN processors space-conserving mech failed, causing
12357: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
12358: (1|2|3));
12359:
12360: 2004-05-14 paf
12361:
12362: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
12363: bugfix: void now has vfile value, and $response:body[] works OK
12364:
12365: 2004-05-12 paf
12366:
12367: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
12368: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
12369: sources to use is_defined() {return as_bool();} along VBool
12370:
12371: 2004-05-11 paf
12372:
12373: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
12374: referencing to local objects
12375:
12376: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
12377: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
12378: left intact
12379:
12380: 2004-04-15 paf
12381:
12382: * src/classes/date.C: merged: beauty: unused var removed
12383:
12384: * src/classes/date.C: beauty: unused var removed
12385:
12386: * src/include/: pa_exec.h: bugfix: interface without pointer
12387: provoked bug
12388:
12389: 2004-04-09 paf
12390:
12391: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
12392:
12393: * src/types/pa_vform.C: bugfix: form:imap were incorrect
12394:
12395: 2004-04-08 paf
12396:
12397: * src/classes/date.C: new: ^date::create[y-m-d
12398: h-M-s>>.milliseconds<<] now allowed, ignored so far
12399:
12400: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
12401:
12402: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
12403: to consult default catalog [usually, that file belongs to other
12404: user/group]
12405:
12406: 2004-04-06 paf
12407:
12408: * src/main/pa_common.C: beauty: gcc warning removed
12409:
12410: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
12411: accept that trick, trying other
12412:
12413: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
12414: explicit result problem
12415:
12416: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
12417: explicit result problem
12418:
12419: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
12420: explicit result problem
12421:
12422: * operators.txt, src/classes/string.C: new: ^string.append[string]
12423:
12424: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
12425: main/execute.C: attempt_check_call_in_explicit_result_mode:
12426: failed
12427:
12428: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12429: http://i.p.a.ddress gethostbyaddr added [on some platforms
12430: gethostbyname failed with such 'domains'] now checked properly,
12431: were: needless reverse/forward dns lookup
12432:
12433: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12434: http://i.p.a.ddress gethostbyaddr added [on some platforms
12435: gethostbyname failed with such 'domains'] now checked properly,
12436: were: needless reverse/forward dns lookup
12437:
12438: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
12439: @method[][result] means "no string output here" moved to lexical
12440: level [on grammar level it were too difficult]
12441:
12442: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
12443: src/main/compile.y, src/main/compile_tools.h,
12444: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
12445: @method[][result] means "no string output here", implemented part
12446: of that idea: compiler throws away string literal generation
12447: code. and barks nonwhitespace chars
12448:
12449: * operators.txt: truth: removed comment about $ORIGIN
12450:
12451: 2004-04-05 paf
12452:
12453: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
12454: src/include/pa_version.h, src/main/pa_common.C,
12455: src/targets/isapi/parser3isapi.C: merged with 3.1.3
12456:
12457: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
12458: Konstantin Tomashevitch [mailto:konst@design.ru]
12459:
12460: * src/doc/html2chm.cmd: beauty: no need in bg here
12461:
12462: * src/doc/sources2html.cmd: beauty: same window, in bg it
12463: interfered with FAR console
12464:
12465: * configure, configure.in: 3.1.3
12466:
12467: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
12468:
12469: * src/main/pa_common.C: removed warning
12470:
12471: * src/include/pa_version.h: 3.1.3
12472:
12473: 2004-04-02 paf
12474:
12475: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
12476:
12477: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
12478: allows to specify where to put parser log file
12479:
12480: 2004-04-01 paf
12481:
12482: * src/classes/table.C: bugfix: bugfix: table::load last line
12483: without tab and enter were ignored
12484:
12485: * src/: include/pa_cache_managers.h, include/pa_globals.h,
12486: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
12487: main/pa_socks.C, targets/cgi/parser3.C,
12488: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
12489: bugfix: sql connections now are disconnected
12490:
12491: 2004-03-30 paf
12492:
12493: * src/classes/table.C: bugfix: table::load last line without tab
12494: and enter were ignored
12495:
12496: * src/classes/table.C: bufix: if last table lines were commented,
12497: gpfed
12498:
12499: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
12500: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
12501: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
12502: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
12503: doc/methoded.dox, doc/object.dox, doc/string.dox,
12504: doc/targets.dox, doc/value.dox, include/pa_version.h,
12505: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
12506: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
12507: bugfixes from 3.1.2, changed version to 3.1.3beta
12508:
12509: 2004-03-29 paf
12510:
12511: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
12512: causes gpf
12513:
12514: * src/doc/: ClassExample1.dox, ClassExample2.dox,
12515: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
12516: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
12517: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
12518: value.dox: translated to english
12519:
12520: 2004-03-25 paf
12521:
12522: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
12523: parser3project dependency removed
12524:
12525: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
12526: bugfix: refused to compile without xml
12527:
12528: * src/types/pa_vform.C: beauty: removed warning
12529:
12530: * src/classes/classes.vcproj: merged bugfix: now all compiles in
12531: any folder [removed last ;) folder dependency]
12532:
12533: * src/classes/classes.vcproj: bugfix: now all compiles in any
12534: folder [removed last ;) folder dependency]
12535:
12536: * src/include/pa_version.h: release
12537:
12538: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
12539:
12540: * src/classes/table.C: beauty: comment& more meaningful error
12541: message
12542:
12543: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
12544: $.hash[$.column_value1(true) ... ] [were producing some strang
12545: thing]
12546:
12547: 2004-03-23 paf
12548:
12549: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
12550: and http status line parsing checked number of columns in table
12551: [user reported an assert]
12552:
12553: * operators.txt: example: on hashfile
12554:
12555: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
12556: bugfix: junction reattach now actually reattaches a junction to
12557: new wcontext [were only assigning it to junction, which caused
12558: junction tracking to loose junction, and it's context were not
12559: killed, and it tried to process in invalid context, gpf]
12560:
12561: * src/targets/cgi/parser3.C: debug helper added
12562:
12563: 2004-03-19 paf
12564:
12565: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
12566: "type(type)" in braces
12567:
12568: 2004-03-10 paf
12569:
12570: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
12571: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12572: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
12573: solution to search-in-namespaces problem:
12574: $xdoc.search-namespaces.x[http://pif.design.ru/]
12575: $nodes[^xdoc.select[//x:second]]
12576:
12577: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
12578: expression][[NAMESPACES HASH]] allows to search for info in
12579: namespaces
12580:
12581: $nodes[^xdoc.select[//x:second][
12582: $.x[http://pif.design.ru/] ]]
12583:
12584: 2004-03-09 paf
12585:
12586: * operators.txt, src/main/pa_common.C: new:
12587: ^file::load[...][options] $.form[
12588: !$.field1[string]
12589: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
12590: ] !$.body[string]
12591:
12592: GET ?here notGET(POST, HEAD, others) in content-type:
12593: application/x-www-form-urlencoded
12594:
12595: todo: upload files ability
12596:
12597: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
12598: properly, done
12599:
12600: 2004-03-05 paf
12601:
12602: * operators.txt, src/main/pa_common.C: new: file::load[;http://
12603: GET/POST $.form[$.fields started, not tested yet
12604: todo:$.field[table] for multiple values
12605:
12606: * operators.txt: new: http:// options $.user $.password basic
12607: authorization
12608:
12609: * src/main/pa_common.C: beauty: link to rtf added
12610:
12611: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
12612: new: http:// options $.user $.password basic authorization
12613:
12614: * src/main/pa_common.C: beauty: removed needless vars
12615:
12616: * operators.txt: new: pgsql option [like that recently added to
12617: oracle driver] ClientCharset=parser-charset <<
12618: charset in which parser thinks client works
12619:
12620: * operators.txt: new: odbc option [like that recently added to
12621: oracle driver] ClientCharset=parser-charset <<
12622: charset in which parser thinks client works
12623:
12624: * src/sql/pa_sql_driver.h: beauty: important warning added
12625:
12626: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
12627: char!
12628:
12629: * etc/parser3.charsets/windows-1251.cfg: typo
12630:
12631: 2004-03-04 paf
12632:
12633: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
12634: cached, sql transcoding now goes faster
12635:
12636: * operators.txt: new: mysql option [like that recently added to
12637: oracle driver] ClientCharset=parser-charset <<
12638: charset in which parser thinks client works
12639:
12640: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
12641: typo error
12642:
12643: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
12644: chars commented
12645:
12646: 2004-03-03 paf
12647:
12648: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
12649: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
12650:
12651: 2004-03-02 paf
12652:
12653: * operators.txt: new[update typo]: !^void.left(n)
12654: nothing !^void.right(n) nothing !^void.mid(p[;n])
12655: nothing
12656:
12657: * operators.txt, src/classes/void.C: new: !^void.left(n)
12658: nothing !^void.right(n) nothing !^void.pos(p[;n])
12659: nothing
12660:
12661: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
12662: ^file::sql[[name_to_become_$.name]]{} query result must be one
12663: row with columns: first: data second: file name third:
12664: content-type
12665:
12666: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
12667: ^connect gets properly escaped string, which can be passed to
12668: request now this for mysql only. it's up to parser sql driver to
12669: fix zeros properly
12670:
12671: * INSTALL: note: added on building apache with this option:
12672: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
12673:
12674: 2004-03-01 paf
12675:
12676: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
12677: extension memory:compact befor processingrequest
12678:
12679: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
12680: call sole column of result
12681:
12682: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
12683: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
12684: pixel color
12685:
12686: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
12687: beauty: image -- less checks [were ugly impl]
12688:
12689: * src/classes/string.C: bugfix: ^string.left/right/mid with
12690: negative values now considered bad
12691:
12692: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
12693:
12694: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
12695: options now have unified defaults [after transform
12696: indent/omit-xml-declaration/standalone 'default' erroreously
12697: meant 'true']
12698:
12699: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
12700: added [on some platforms gethostbyname failed with such
12701: 'domains']
12702:
12703: * src/include/pa_config_auto.h.in: no select check, no define
12704:
12705: * src/classes/string.C: feature: ^string.trim both parameters may
12706: be empty-strings, meaning kind=both chars=whitespaces
12707:
12708: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
12709: exist
12710:
12711: * src/classes/string.C: check: trim 'chars' must not be empty,
12712: exception if it is
12713:
12714: * src/classes/string.C: changed: ^string.trim [] << both,
12715: whitespaces [start|both|end] << kind, whitespaces
12716: [start|both|end;chars] full
12717:
12718: 2004-02-27 paf
12719:
12720: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
12721: method: ^string.trim[start|both|end[;chars]] default
12722: 'chars' -- whitespace chars finished
12723:
12724: * operators.txt, src/classes/string.C, src/include/pa_string.h,
12725: src/main/pa_string.C: new method:
12726: ^string.trim[start|both|end[;chars]] default 'chars' --
12727: whitespace chars started, only start works
12728:
12729: * src/main/compile.C: bugfix: line numbers after
12730: ^process{}[$.line(-10]] can be negative, allowed to print they as
12731: signed
12732:
12733: * src/main/untaint.C: speed: there's no \n chars in output
12734: [normally], so no need to optimize them they could be retrived
12735: from databases, though. but 1. should be replaced 2. if not
12736: optimized, no harm done
12737:
12738: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
12739: ^file::exec/cgi could return invalid status & zombie child can
12740: remain for short period until process exists [very bad in
12741: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
12742:
12743: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
12744: malicious SMTP server to attack as by returning too long status
12745: responses http://i2/tasks/edit/?id=4629448401140924947
12746:
12747: 2004-02-26 paf
12748:
12749: * operators.txt: feature: ^process...{CODE}[now has options] which
12750: are $.main[to what to rename @main] $.file[file,
12751: from which (user says) goes that CODE] $.lineno(line
12752: number in that file, where CODE starts. may be negative)
12753:
12754: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12755: src/main/compile.C, src/main/compile_tools.h,
12756: src/main/pa_request.C: feature: ^process...{CODE}[now has
12757: options] which are $.main[to what to rename @main]
12758: $.file[file, from which (user says) goes that CODE]
12759: $.lineno(line number in that file, where CODE starts. may be
12760: negative)
12761:
12762: 2004-02-25 paf
12763:
1.116 moko 12764: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
12765: old @charsetsdir@ recently erased from configure.in]
1.95 moko 12766:
12767: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
12768: produces hash of column=>1
12769:
12770: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
12771: with incomplete errno constants set
12772:
12773: 2004-02-24 paf
12774:
12775: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
12776: "man select"
12777:
12778: * src/main/pa_os.C: beauty: <0 better then ==-1
12779:
12780: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
12781:
12782: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
12783:
1.116 moko 12784: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 12785:
12786: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
12787: unix: steps to work on unix [extracted 'to']
12788:
12789: * src/classes/mail.C: smtp on unix: steps to work on unix
12790:
12791: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
12792:
1.116 moko 12793: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
12794: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
12795: unix [testing on solaris]
1.95 moko 12796:
12797: 2004-02-20 paf
12798:
12799: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
12800: pointing that out
12801:
12802: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
12803: fixed again [same solution, mistanenly removed one line]
12804:
12805: 2004-02-19 paf
12806:
12807: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
12808: date::create from bad datetime in spring daylightsaving hole now
12809: OK for all platforms [on some platforms it failed]
12810:
12811: * src/classes/: date.C, image.C: beauty: date::create[bad date time
12812: in daylightsaving hole] now throws error
12813:
12814: * src/classes/date.C: comment: mistake fixed
12815:
12816: 2004-02-18 paf
12817:
12818: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
12819: now renderes in $request:charset, but in header puts
12820: $response:charset todo: make that default only so that coder
12821: could override that
12822:
12823: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
12824: turns off omit-xml-declaration
12825:
12826: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
12827: /.xsl for sample
12828:
12829: 2004-02-17 paf
12830:
12831: * src/classes/xdoc.C: beauty: needless helper class removed
12832:
12833: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
12834: copied extra time
12835:
12836: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
12837: part of libxml
12838:
12839: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
12840: libxml to do the work] <xsl:output method="html"
12841: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
12842: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
12843: />
12844:
12845: * src/classes/xdoc.C: beauty: no <meta ... charset generated
12846:
12847: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
12848: caused assertion
12849:
12850: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
12851: could hang. now such add does nothing, sub clears $hash
12852:
12853: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
12854: not made quoted-printable
12855:
12856: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
12857: string invariant
12858:
12859: 2004-02-16 paf
12860:
12861: * src/main/pa_globals.C: bugfix: xml errors copy from library now
12862: cleared [were not cleared properly]
12863:
12864: 2004-02-13 paf
12865:
1.116 moko 12866: * src/include/pa_version.h: prerelease
1.95 moko 12867:
12868: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
12869: used, introducing dependencies timestamp check
12870:
12871: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12872: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
12873: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
12874: .xsl.stamp now not used, introducing dependencies timestamp check
12875:
1.150 moko 12876: * configure.in: auto.p: @conf made relative
1.95 moko 12877:
12878: 2004-02-12 paf
12879:
12880: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
12881: ruined empty <input type=file> submits. parser thought there were
12882: nameless empty file and $form:field got value of type 'file'
12883:
12884: * INSTALL: --without-threads
12885:
12886: * src/include/pa_sapi.h: 2004
12887:
12888: 2004-02-11 paf
12889:
12890: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12891: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12892: classes/hashfile.C, classes/image.C, classes/int.C,
12893: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12894: classes/response.C, classes/string.C, classes/table.C,
12895: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12896: include/pa_array.h, include/pa_cache_managers.h,
12897: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12898: include/pa_config_fixed.h, include/pa_config_includes.h,
12899: include/pa_dictionary.h, include/pa_dir.h,
12900: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12901: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12902: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12903: include/pa_request_charsets.h, include/pa_request_info.h,
12904: include/pa_socks.h, include/pa_sql_connection.h,
12905: include/pa_sql_driver_manager.h, include/pa_stack.h,
12906: include/pa_string.h, include/pa_stylesheet_connection.h,
12907: include/pa_stylesheet_manager.h, include/pa_table.h,
12908: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12909: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12910: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12911: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12912: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
12913: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
12914: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12915: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
12916: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
12917: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
12918: main/pa_sql_driver_manager.C, main/pa_string.C,
12919: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
12920: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
12921: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
12922: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12923: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
12924: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
12925: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12926: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
12927: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
12928: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
12929: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12930: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
12931: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
12932: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
12933: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12934: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12935: types/pa_vresponse.h, types/pa_vstateless_class.C,
12936: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
12937: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
12938: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
12939: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12940: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12941: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
12942:
12943: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
12944: debug version of gc.dll
12945:
12946: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12947: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12948: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
12949: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
12950: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
12951: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
12952: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
12953: processes
12954:
12955: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
12956: main/pa_globals.C, targets/cgi/parser3.vcproj,
12957: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
12958: changes to reflect libxml xsl new folders
12959:
12960: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12961: lib/smtp/smtp.vcproj, main/main.vcproj,
12962: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
12963: to reflect libxml xsl new folders
12964:
12965: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12966: lib/smtp/smtp.vcproj, main/main.vcproj,
12967: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
12968: types/types.vcproj: started changes to reflect libxml xsl new
12969: folders
12970:
12971: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
12972: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
12973: src/main/compile.tab.C, src/main/main.vcproj,
12974: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
12975: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
12976: started changes to reflect libxml xsl new folders
12977:
12978: 2004-02-10 paf
12979:
12980: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
12981: compile. recommened latest libxml up to date
12982:
12983: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
12984: pattern compilation errors", on which spent 4 hours worktime. use
12985: versions higher than that. recommended now latest up to date
12986:
12987: 2004-02-06 paf
12988:
12989: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
12990: beauty: unified destructing style
12991:
12992: * src/main/untaint.C: beauty: removed old def/ifdef
12993:
12994: * src/main/untaint.C: beauty: coredump @unknown untaint language
12995: now
12996:
12997: 2004-02-03 paf
12998:
12999: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
13000: targets/isapi/parser3isapi.C, types/pa_value.C,
13001: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
13002: then %ld/%lu
13003:
13004: * src/main/pa_common.C: typo: %l -> %u
13005:
13006: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
13007: in attributes or documents-results of transform now not xx;
13008:
13009: * src/classes/xnode.C: memleaks found: not fixed yet. todo
13010:
13011: * src/main/pa_charset.C: bugfix: forgot to undo some
13012:
13013: * src/main/pa_charset.C: beauty: uncomment
13014: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
13015: libraries
13016:
13017: 2004-02-02 paf
13018:
13019: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
13020: $cookie:example[ $.value[value] $.path[/there/] ]
13021:
13022: $cookie:example[ $.value[] $.expires[session]
13023: $.path[/there/] $.domain[test.com] ]
13024:
13025: * src/types/pa_vform.C: bugfix: empty values with
13026: enctype=multipart/form-data now produce entries in $form:tables
13027: <form method=post enctype=multipart/form-data> <input type=hidden
13028: name=a> <input type=hidden name=b>
13029:
13030: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
13031: <hr> <pre>$request:body
13032:
13033: 2004-01-30 paf
13034:
13035: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
13036: or documents-results of transform now not xx;
13037:
13038: * src/classes/date.C: bugfix: ^date::create[invalid fields now
13039: produce exception.
13040:
13041: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
13042: bugfix: ^date::create[invalid fields now produce exception.
13043:
13044: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
13045: year] now produces exception. todo: check other fields
13046:
13047: 2004-01-29 paf
13048:
13049: * src/include/pa_memory.h: typo error
13050:
13051: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
13052: more byte then specified, then zeroed it << useless and
13053: potentially harmful(could gpf)
13054:
13055: 2004-01-22 paf
13056:
13057: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
13058:
13059: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
13060: optimization
13061:
13062: * src/main/untaint.C: bugfix: whitespace now optimized properly
13063: [were bug: ^taint[1 & 2]="1 &2"
13064:
13065: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
13066: errors
13067:
13068: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
13069: overflow
13070:
13071: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
13072: error-reporting code * in parser-error reporting code [when no
13073: @unhandled_exception defined]
13074:
13075: fixed in one place: my *snprintf override
13076:
13077: 2004-01-13 paf
13078:
13079: * operators.txt: typo erro
13080:
13081: 2003-12-25 paf
13082:
13083: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
13084: garbled [pieces after zero bytes were removed]
13085:
13086: 2003-12-22 paf
13087:
1.116 moko 13088: * src/include/Makefile.am: bugfix: removed from dist:
13089: src/include/pa_config_auto.h which were configured for
1.95 moko 13090: make-dist-platform and badly updated proper config file in target
13091: [when .tar used for updating existing source tree]
13092:
13093: * ChangeLog, operators.txt, src/classes/op.C,
13094: src/include/pa_sql_connection.h,
13095: src/include/pa_sql_driver_manager.h,
13096: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
13097: feature: sql introducing ability to transcode charsets
13098:
13099: 2003-12-19 paf
13100:
13101: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
13102: error message
13103:
13104: * src/main/pa_charset.C: bugfix: memory for charsethandler
13105: structure for libxml now allocated properly
13106:
13107: 2003-12-17 paf
13108:
13109: * src/types/pa_vfile.C: beauty: removed outdated cast
13110:
13111: * src/main/pa_common.C: bugfix: empty http response caused gpf
13112:
13113: * src/include/pa_string.h: bugfix: removed too strong a assert
13114:
13115: * src/main/pa_globals.C: bugfix: removed false warning [warning:
13116: unreported xmlGenericErrors]
13117:
13118: 2003-12-15 paf
13119:
13120: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
13121: works}
13122:
13123: 2003-12-11 paf
13124:
13125: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
13126: id
13127: !$status:tid thread id
13128:
13129: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
13130: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
13131: bugfix(solaris): removed dependency on object initialization
13132: order [one more place]
13133:
13134: * src/: classes/file.C, classes/mail.C, classes/op.C,
13135: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
13136: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
13137: understand that
13138:
13139: * src/: classes/file.C, classes/mail.C, classes/op.C,
13140: classes/xdoc.C, include/pa_cache_managers.h,
13141: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13142: include/pa_stylesheet_manager.h, main/pa_request.C,
13143: main/pa_stylesheet_manager.C, types/pa_vimage.C,
13144: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
13145: ctor call [relying on implicit String::Body(cstr) call]
13146:
13147: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
13148: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
13149: object initialization order [two places]
13150:
13151: 2003-12-10 paf
13152:
13153: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
13154: << time now ok
13155:
13156: * operators.txt, src/main/pa_sql_driver_manager.C,
13157: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
13158: operational
13159:
13160: * ChangeLog, operators.txt, src/classes/xdoc.C,
13161: src/include/pa_charset.h, src/include/pa_sql_connection.h,
13162: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
13163: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
13164: back operational
13165:
13166: 2003-12-02 paf
13167:
13168: * src/types/pa_vmail.C: bugfix:
13169: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
13170: as-is forced]
13171:
13172: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
13173: exceptions out of libxml callbacks: reimplemented error handling
13174: of http://localhost, parser://method and safemode check callbacks
13175:
13176: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
13177: [merged from HEAD]
13178:
13179: * src/classes/image.C: nothing: comment removed
13180:
13181: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
13182: addresses to int
13183:
13184: 2003-12-01 paf
13185:
13186: * src/main/pa_xml_io.C: bugfix: typo
13187:
13188: * src/main/pa_globals.C: bugfix: win32: compile prob
13189:
13190: * src/classes/xdoc.C: bugfix: typo
13191:
13192: * src/main/pa_xml_io.C: todo: safe mode check not to throw
13193: exception
13194:
13195: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
13196:
13197: 2003-11-28 paf
13198:
13199: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
13200: all xml documents read
13201:
13202: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
13203:
13204: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13205: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
13206: replaced original open mech of xdoc::create & co to use libxml
13207: open, so that this would work for root document todo: safe mode
13208: checks to libxml: ideally to some 1 point
13209:
13210: * src/main/pa_xml_io.C: comment
13211:
13212: * operators.txt, src/main/pa_xml_io.C: leading / in
13213: http://parser[abscent params]
13214:
13215: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
13216: works. todo: maybe replace original open mech of xdoc::create &
13217: co to use libxml open, so that this would work for root document
13218:
13219: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
13220: "parser://method/params/here"> <test> &test^; </test> }]
13221:
13222: ^taint[^xdoc.string[]]
13223:
13224: @method[param] <!ENTITY test
13225: "test-entity-value+$form:user+$param!">
13226:
13227: 2003-11-27 paf
13228:
13229: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
13230:
13231: * src/classes/date.C: bugfix: typo error
13232:
13233: 2003-11-26 paf
13234:
13235: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
13236: src/main/Makefile.am, src/main/main.vcproj,
13237: src/main/pa_globals.C, src/main/pa_request.C,
13238: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
13239: xml errors to hash<thread_id,error> reorganization: xml io moved
13240: to pa_xml_io.C/h
13241:
13242: * src/types/pa_value.h: warnings: --
13243:
13244: 2003-11-25 paf
13245:
13246: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
13247: whatever)
13248:
13249: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
13250: a, (c?x:y, z)
13251:
13252: * src/main/untaint.C: bugfix: consequences of not reading this
13253: comment: CORD_pos_chars_left /* Number of characters in cache.
13254: <= 0 ==> none */
13255:
13256: * src/include/pa_array.h: removed needless checks
13257:
13258: 2003-11-24 paf
13259:
13260: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
13261: removed limit: now $form:xxx can be accessed anytime, even in
13262: @auto/conf [and request/response:charset still can be changed
13263: anytime]
13264:
13265: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
13266: now not transcodes response body
13267:
13268: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
13269: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
13270: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
13271: $xdoc.firstChild.firstChild.nodeValue[different]
13272: ^taint[^xdoc.string[]]
13273:
13274: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
13275: workaround: static Hash::allocates -> static Hash_allocates
13276:
13277: 2003-11-21 paf
13278:
1.116 moko 13279: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
13280: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
13281: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 13282:
13283: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
13284:
13285: * src/classes/mail.C: bugfix: typo
13286:
13287: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 13288: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
13289: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
13290: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
13291: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 13292: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
13293:
13294: * src/main/pa_exec.C: bug in safe mode
13295:
13296: * src/include/Makefile.am: pa_xml_exception.h
13297:
13298: * src/targets/isapi/parser3isapi.C: more warnings --
13299:
13300: 2003-11-20 paf
13301:
13302: * src/: classes/math.C, classes/op.C, classes/string.C,
13303: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
13304: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
13305: --
13306:
13307: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
13308: more warnings --
13309:
13310: * src/classes/xdoc.C: more warnings --
13311:
13312: * src/classes/: date.C, image.C, xdoc.C: more warnings --
13313:
13314: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
13315: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
13316:
13317: * src/: classes/date.C, classes/file.C, classes/hash.C,
13318: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
13319: classes/table.C, include/pa_cache_managers.h,
13320: include/pa_stylesheet_connection.h, main/pa_request.C,
13321: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
13322: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
13323: --
13324:
13325: * src/main/: execute.C, pa_request.C: old forgotten todo: when
13326: can't report problem (undefined @unhandled_exception) problem
13327: source string were not reported
13328:
13329: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13330: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13331: classes/hashfile.C, classes/image.C, classes/int.C,
13332: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13333: classes/response.C, classes/string.C, classes/table.C,
13334: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13335: include/pa_array.h, include/pa_cache_managers.h,
13336: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13337: include/pa_config_fixed.h, include/pa_dictionary.h,
13338: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
13339: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
13340: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
13341: include/pa_request.h, include/pa_request_charsets.h,
13342: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
13343: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13344: include/pa_stack.h, include/pa_string.h,
13345: include/pa_stylesheet_connection.h,
13346: include/pa_stylesheet_manager.h, include/pa_table.h,
13347: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13348: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
13349: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
13350: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13351: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
13352: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
13353: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
13354: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
13355: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
13356: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
13357: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
13358: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13359: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
13360: targets/isapi/parser3isapi.C, types/pa_junction.h,
13361: types/pa_method.h, types/pa_value.C, types/pa_value.h,
13362: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
13363: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
13364: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13365: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13366: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13367: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
13368: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13369: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13370: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13371: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13372: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13373: types/pa_vresponse.h, types/pa_vstateless_class.C,
13374: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13375: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13376: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13377: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13378: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13379: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
13380: const IDENT
13381:
13382: * src/: include/pa_array.h, include/pa_pool.h,
13383: include/pa_request.h, include/pa_string.h, include/pa_table.h,
13384: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
13385: types/pa_wcontext.h: more warnings --
13386:
13387: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
13388: classes/file.C, classes/hash.C, classes/hashfile.C,
13389: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13390: classes/memory.C, classes/op.C, classes/string.C,
13391: classes/table.C, classes/xdoc.C, classes/xnode.C,
13392: include/pa_config_includes.h, include/pa_operation.h,
13393: include/pa_sql_connection.h, include/pa_table.h,
13394: include/pa_types.h, lib/ltdl/config_fixed.h,
13395: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
13396: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
13397: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
13398: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
13399: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
13400: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
13401: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
13402: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
13403: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
13404: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
13405: types/pa_vmail.C, types/pa_vobject.C,
13406: types/pa_vstateless_class.h, types/pa_vtable.C,
13407: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13408: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
13409: on all projects (except libltdl=off & libsdbm=level3) found
13410: several unitialized vars
13411:
13412: 2003-11-19 paf
13413:
13414: * src/classes/op.C: more ansi C++ comp
13415:
13416: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13417: src/main/pa_request.C: ^cache[...]{body}{catch block with
13418: $exception.handled[cache] meaning "get expired cache, if any.
13419: else error"}
13420:
13421: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
13422: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
13423: ^cache[...]{body}{catch code with $exception.cache field}
13424:
13425: 2003-11-12 paf
13426:
13427: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
13428: [copy/paste bug]
13429:
13430: 2003-11-11 paf
13431:
13432: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
13433: failed]
13434:
13435: 2003-11-10 paf
13436:
13437: * src/types/pa_vconsole.h: flush
13438:
13439: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
13440: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
13441: read/write [for nntp]
13442:
13443: * operators.txt: mysql: transaction support: ?autocommit=0
13444:
13445: * operators.txt: comment: updated
13446:
13447: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
13448: serialize version and exipire now removes entries
13449:
13450: * operators.txt: ^hashfile.delete[] removes files altogether [and
13451: dir, if could]
13452:
13453: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
13454: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
13455: removes files altogether [and dir, if could]
13456:
13457: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
13458: nonexistent pair. .c coded that that was error. fixed
13459:
13460: * src/types/pa_vhashfile.C: sdbm: exception type change to
13461: file.access [regretfull can't split it to different exceptions
13462: without modifying sdbm source wich would prefer not to]
13463:
13464: 2003-11-07 paf
13465:
13466: * src/: classes/date.C, classes/file.C, classes/hash.C,
13467: classes/hashfile.C, classes/image.C, classes/table.C,
13468: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
13469: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
13470: main/execute.C, main/main.vcproj, main/pa_pool.C,
13471: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
13472: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
13473: types/pa_vstateless_class.h: resurrected: pool idea. now only for
13474: destructing objects at request processing end
13475:
13476: 2003-11-06 paf
13477:
13478: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
13479: updates
13480:
13481: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
13482: to include sdbm
13483:
1.116 moko 13484: * src/include/: pa_config_includes.h, pa_version.h: our
13485: replacements of max& co only for cpp
1.95 moko 13486:
13487: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
13488: upper dir, .am updated
13489:
13490: * tests/todo.txt: hashfile: done
13491:
13492: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
13493: expiration [time in value. todo: move time to key]
13494:
13495: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
13496:
13497: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
13498: to do that in foreach, no errors, but surely wrong]
13499:
13500: * operators.txt, src/types/pa_vhashfile.C,
13501: src/types/pa_vhashfile.h: hashfile: clear and proper locking
13502:
13503: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
13504: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
13505: foreach
13506:
13507: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
13508: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
13509:
13510: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
13511: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
13512:
13513: * src/: include/pa_memory.h, targets/cgi/parser3.C,
13514: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13515: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
13516: get/put [raw]
13517:
13518: * src/: classes/op.C, main/pa_os.C: just linked
13519:
13520: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
13521: XmlException changes
13522:
13523: * src/: include/pa_charset.h, include/pa_globals.h,
13524: include/pa_stylesheet_connection.h, main/pa_exception.C:
13525: XmlException changes
13526:
13527: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
13528:
13529: * src/: include/pa_common.h, include/pa_exception.h,
13530: main/main.vcproj, main/pa_common.C, include/pa_os.h,
13531: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
13532: main/pa_xml_exception.C: locking move to pa_os [along with
13533: pa_sleep] apr-impl locking done
13534:
13535: * configure, configure.in, operators.txt, parser3.sln,
13536: src/classes/classes.vcproj, src/classes/hashfile.C,
13537: src/classes/xdoc.C, src/include/pa_config_fixed.h,
13538: src/include/pa_exception.h, src/include/pa_globals.h,
13539: src/include/pa_memory.h, src/include/pa_version.h,
13540: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
13541: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
13542: src/main/compile.tab.C, src/main/main.vcproj,
13543: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
13544: src/types/Makefile.am, src/types/pa_vhash.C,
13545: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
13546: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
13547: again with sdbm from apache
13548:
13549: 2003-11-05 paf
13550:
13551: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13552: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
13553: \parser3project dir anymore
13554:
13555: * src/main/pa_charset.C: bugfix: had broken binary search [copied
13556: thoughtlessly from xalan]
13557:
13558: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
13559: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
13560: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
13561:
13562: * src/main/helpers/CaseFolding.txt:
13563: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
13564:
13565: 2003-11-04 paf
13566:
13567: * operators.txt: comment: ^mail:send[$.options[
13568:
13569: * src/classes/table.C: compiled on unix
13570:
1.116 moko 13571: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 13572:
13573: * src/classes/mail.C: compiled on unix
13574:
13575: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
13576: src/types/pa_vmail.h: !^mail:send[
13577: $.options[unix: string to append to sendmail command
13578: line]
13579:
13580: * operators.txt, src/classes/table.C, src/main/pa_string.C,
13581: tests/todo.txt: ^table.save[... $.separator[^#09]
13582: $.encloser["] <nothing> by default
13583:
13584: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
13585: !$.separator[^#09] !$.encloser["] <nothing> by
13586: default
13587:
13588: 2003-11-03 paf
13589:
13590: * operators.txt, src/classes/table.C, src/main/pa_common.C:
13591: ^table::load[; options: !$.column-separator[^#09]
13592: !$.column-encloser["]
13593:
13594: * operators.txt, src/include/pa_config_fixed.h,
13595: src/types/pa_vrequest.C: $request:document-root
13596:
13597: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
13598: [already included into uri=xxx]
13599:
13600: * operators.txt, src/classes/image.C, tests/todo.txt:
13601: ^image.gif[filename] for $response:download
13602:
13603: * src/classes/date.C: minor precaution
13604:
13605: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
13606: !^date.unix-timestamp[]
13607:
13608: 2003-10-30 paf
13609:
13610: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
13611: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
13612:
13613: * src/classes/: date.C, image.C: improvement diagnostics:
13614: $now[^date::create[$undefined]] now is error
13615:
13616: * src/main/pa_common.C: read errors would now be reported 'actually
13617: read -1 bytes'
13618:
13619: 2003-10-24 paf
13620:
13621: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
13622: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
13623: src/main/Makefile.am, src/targets/cgi/Makefile.am,
13624: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
13625:
13626: 2003-10-22 paf
13627:
13628: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
13629:
13630: 2003-10-21 paf
13631:
13632: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
13633: fixed: string.match[g] without <'> option produced columns with
13634: NULL's, which gpf'ed at table.save time
13635:
13636: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
13637: recoursion' message with intensive throw-catches fixed: incorrect
13638: name and line (one name upper then needed) in error message about
13639: problems inside try block
13640:
13641: 2003-10-10 paf
13642:
13643: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
13644: check offset argument for validity did that in String::Body::pos
13645: myself http://i2/tasks/edit/?id=4577425257580789777
13646:
13647: 2003-10-07 paf
13648:
13649: * src/main/: compile.tab.C, compile.y: ^if ( better error:
13650: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
13651:
13652: 2003-10-03 paf
13653:
13654: * parser3.sln, src/include/pa_dictionary.h,
13655: src/main/pa_dictionary.C, src/main/pa_string.C,
13656: src/targets/cgi/parser3.vcproj: dictionary optimized by
13657: precalculating cstr&length
13658:
13659: 2003-10-02 paf
13660:
13661: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13662: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13663: main/pa_stylesheet_manager.C: bugfix: ^throw context were
13664: saved/restored incompletely http://www.parser.ru/forum/?id=21484
13665:
13666: 2003-09-30 paf
13667:
13668: * src/main/pa_string.C: string::replace bug fix [were ignoring
13669: occurrances after lang-mismatched
13670:
13671: 2003-09-29 paf
13672:
13673: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
13674: helper
13675:
13676: * src/main/pa_string.C: string::serialize bug fix with
13677: zero-terminator
13678:
13679: * src/classes/table.C: ^nameless_table.save column row now has no
13680: \t at the end
13681:
13682: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
13683: @postprocess now takes $response:body/download
13684:
13685: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
13686: error message
13687:
13688: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
13689:
13690: * src/classes/table.C: bugfix: flip: must produce nameless
13691: http://i2/tasks/edit/?id=4573405524674081244
13692:
13693: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
13694: main/helpers/simple_folding.pl: utf-8 upper/lower
13695:
13696: * src/main/pa_common.C: bugfix: utf signature were not ignored due
13697: to typo error http://i2/tasks/edit/?id=4573354650786434584
13698:
13699: 2003-09-26 paf
13700:
13701: * src/main/untaint.C: removed needless field
13702:
13703: * src/main/untaint.C: removed needless const
13704:
13705: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
13706: String.for_each bug fixed [omited one-char cases]
13707:
13708: * src/include/pa_stack.h: bugfix: before collecting garbage,
13709: runtime-executor stack were cleared... BADLY
13710:
13711: * src/main/pa_string.C: ^stirng.replace code used old
13712: param-convention on langs.append, fixed that search fo the like,
13713: found none
13714:
13715: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
13716: string::serialize/deserialize implemented Language enum assigned
13717: meaningful letters [more convinient for debugging. read warning
13718: before adding/changing anything]
13719:
13720: 2003-09-25 paf
13721:
13722: * src/: include/pa_string.h, include/pa_version.h,
13723: main/pa_string.C, main/untaint.C: templates and anonymous unions
13724: differences on unix
13725:
13726: * parser3.sln, src/classes/file.C, src/classes/image.C,
13727: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
13728: src/classes/xdoc.C, src/classes/xnode.C,
13729: src/include/pa_cache_managers.h, src/include/pa_charset.h,
13730: src/include/pa_charsets.h, src/include/pa_common.h,
13731: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
13732: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
13733: src/include/pa_table.h, src/lib/cord/cordbscs.c,
13734: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
13735: src/lib/cord/include/cord.h, src/main/compile.tab.C,
13736: src/main/compile_tools.h, src/main/pa_charset.C,
13737: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
13738: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
13739: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
13740: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
13741: src/types/pa_vmail.C, src/types/pa_vmath.C,
13742: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
13743: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
13744:
13745: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
13746: functions aligned to that of eeparser3 look
13747:
13748: * src/lib/cord/cordprnt.c: removed warnings
13749:
13750: 2003-09-24 paf
13751:
13752: * src/: classes/file.C, classes/image.C, classes/mail.C,
13753: classes/op.C, classes/xdoc.C, classes/xnode.C,
13754: include/pa_cache_managers.h, include/pa_charset.h,
13755: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
13756: include/pa_sql_driver_manager.h, include/pa_string.h,
13757: include/pa_stylesheet_manager.h, include/pa_table.h,
13758: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
13759: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
13760: main/pa_sql_driver_manager.C, main/pa_string.C,
13761: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
13762: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
13763: types/pa_vstateless_class.h, types/pa_vstatus.C,
13764: types/pa_vxnode.C: v() functions of String::Body,
13765: String::Languages and String itself StringBody->String::Body
13766:
13767: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13768: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
13769: never optimized anything. todo: somehow speed up harder cases:
13770: concatenationA+concatenationB when last block of A and first of B
13771: contain same letters
13772:
13773: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13774: lib/cord/include/cord.h: langs: speed up by joining adjucent
13775: blocks of same char [CORD_append_block]
13776:
13777: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13778: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
13779: save space by extending blocks when appending block with c ==
13780: lastblock.c
13781:
13782: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
13783: working yet :( but more working &understood :)
13784:
13785: * src/: classes/table.C, include/pa_string.h,
13786: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
13787:
13788: 2003-09-23 paf
13789:
13790: * src/main/untaint.C: $a[ok!] $a works!
13791:
13792: * src/main/untaint.C: something even more works :)
13793:
13794: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13795: something more works :)
13796:
13797: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13798: lib/cord/cordxtra.c: something already works :)
13799:
13800: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
13801: serialize&deserialize
13802:
13803: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
13804: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
13805: main/untaint.C: main idea implemented, details left
13806:
13807: 2003-09-22 paf
13808:
13809: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
13810:
13811: * src/classes/xnode.C: copy/paste comment bugfix
13812:
13813: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
13814: allocator returns 0, just die.
13815: http://i2/tasks/edit/?id=4570798492410259445
13816:
13817: * src/classes/xdoc.C: copy/paste comment bugfix
13818:
13819: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
13820: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
13821: xnode: getAttributeNS setAttributeNS removeAttributeNS
13822: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
13823:
13824: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
13825: chars due to bitwise operation signed-char error]
13826:
13827: 2003-09-19 paf
13828:
13829: * src/types/pa_wcontext.C: output message: more practical
13830: suggestion
13831:
13832: * src/main/pa_common.C, operators.txt: merged
13833: $f[^file::load[binary;http://...]] $f.tables
13834:
13835: 2003-09-02 paf
13836:
13837: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
13838: flush stdout without referencing 'stdout' symbol. to hell with
13839: non-ansi libraries without 'stdout' symbol
13840:
13841: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
13842: unix (users reported problems with some old libc)
13843:
13844: * src/types/pa_vdate.h: forgot initializer
13845:
13846: 2003-09-01 paf
13847:
13848: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
13849: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
13850: zone]
13851:
13852: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
13853:
13854: 2003-08-19 paf
13855:
13856: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
13857: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
13858: simplified a little
13859:
13860: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
13861: [lost fix from 3.0.8]
13862:
13863: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
13864: visible here }
13865:
13866: bug fix
13867:
13868: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
13869:
13870: * src/main/compile.tab.C: initialized couple of variables about
13871: which user reported runtime problems when parser were compiled
13872: with VC7, warning level4. study shows that later in bison
13873: they've fixed that. would migrate to latest bison someday
13874:
13875: * src/types/pa_vmail.C: turned off recoding in gmime (were still
13876: recoding headers)
13877:
13878: * src/types/pa_vmail.C: works as before, same charset problems:
13879: gmime recodes to UTF-8 only headers, not body. so not recoding
13880: anything for now
13881:
13882: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
13883: problems with body
13884:
13885: * src/types/pa_vmail.C: mail_receive just compiled
13886:
13887: 2003-08-18 paf
13888:
13889: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13890: main/main.vcproj, types/types.vcproj: win32: continued process
13891: detaching from \parser3project directory
13892:
13893: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
13894: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
13895: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
13896: src/lib/pcre/pcre_dftables.dsp,
13897: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
13898: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
13899: src/types/types.dsp: moved to MSVC 7
13900:
13901: * gnu.vcproj.vspscc, parser3.vssscc,
13902: src/classes/classes.vcproj.vspscc,
13903: src/lib/cord/cord.vcproj.vspscc,
13904: src/lib/ltdl/libltdl.vcproj.vspscc,
13905: src/lib/md5/md5.vcproj.vspscc,
13906: src/lib/pcre/pcre_dftables.vcproj.vspscc,
13907: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
13908: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
13909: src/targets/isapi/parser3isapi.vcproj.vspscc,
13910: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
13911: moved to MSVC 7
13912:
13913: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
13914: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
13915: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
13916: src/lib/pcre/pcre_dftables.vcproj,
13917: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
13918: src/targets/cgi/parser3.vcproj,
13919: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13920: new VS project files
13921:
13922: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
13923: .NET to detect Jalindi Igloo capabilities.
13924:
13925: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 13926: src/classes/classes.awk, src/doc/footer.htm,
13927: src/include/pa_config_fixed.h, src/include/pa_version.h,
13928: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 13929: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
13930: src/types/pa_vmail.C: merged 3.1.0 latest changes
13931:
13932: 2003-08-15 paf
13933:
13934: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13935: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
13936:
13937: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13938: non-ascii <yyy> now encoded correctly
13939:
13940: 2003-07-29 paf
13941:
1.116 moko 13942: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
13943: dist
1.95 moko 13944:
13945: * src/types/pa_vmail.C: just started --with-mail-receive
13946:
13947: 2003-07-28 paf
13948:
1.116 moko 13949: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
13950: dependence in src/classes, src/lib/gc now in dist
1.95 moko 13951:
13952: * src/main/pa_string.C: ^cache bug fix [were not working at all]
13953:
13954: 2003-07-25 paf
13955:
13956: * src/doc/footer.htm: year
13957:
13958: 2003-07-24 paf
13959:
13960: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
13961: fix
13962:
13963: * src/include/pa_version.h: release
13964:
1.116 moko 13965: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 13966:
13967: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
13968: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
13969: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
13970: getting rid of win32xml pseudo project
13971:
13972: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
13973:
1.116 moko 13974: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
13975: configure.in, operators.txt, parser3.dsw,
1.95 moko 13976: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 13977: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 13978: src/classes/classes.C, src/classes/classes.awk,
13979: src/classes/classes.dsp, src/classes/classes.h,
13980: src/classes/date.C, src/classes/double.C, src/classes/file.C,
13981: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
13982: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
13983: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
13984: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13985: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
13986: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
13987: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 13988: src/include/pa_array.h, src/include/pa_cache_managers.h,
13989: src/include/pa_charset.h, src/include/pa_charsets.h,
13990: src/include/pa_common.h, src/include/pa_config_auto.h.in,
13991: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
13992: src/include/pa_dictionary.h, src/include/pa_dir.h,
13993: src/include/pa_exception.h, src/include/pa_exec.h,
13994: src/include/pa_globals.h, src/include/pa_hash.h,
13995: src/include/pa_memory.h, src/include/pa_opcode.h,
13996: src/include/pa_operation.h, src/include/pa_pool.h,
13997: src/include/pa_pragma_pack_begin.h,
1.95 moko 13998: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
13999: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
14000: src/include/pa_sapi.h, src/include/pa_socks.h,
14001: src/include/pa_sql_connection.h,
14002: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
14003: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
14004: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14005: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 14006: src/include/pa_uue.h, src/lib/Makefile.am,
14007: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
14008: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
14009: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
14010: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 14011: src/lib/cord/include/ec.h,
14012: src/lib/cord/include/private/Makefile.am,
14013: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 14014: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
14015: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 14016: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 14017: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
14018: src/main/compile_tools.C, src/main/compile_tools.h,
14019: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
14020: src/main/pa_cache_managers.C, src/main/pa_charset.C,
14021: src/main/pa_charsets.C, src/main/pa_common.C,
14022: src/main/pa_dictionary.C, src/main/pa_dir.C,
14023: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 14024: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
14025: src/main/pa_request.C, src/main/pa_socks.C,
14026: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14027: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 14028: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
14029: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
14030: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
14031: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
14032: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
14033: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
14034: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 14035: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
14036: src/targets/isapi/parser3isapi.dsp,
14037: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 14038: src/types/pa_junction.h, src/types/pa_method.h,
14039: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 14040: src/types/pa_vclass.C, src/types/pa_vclass.h,
14041: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14042: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14043: src/types/pa_vdouble.h, src/types/pa_venv.h,
14044: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14045: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14046: src/types/pa_vimage.C, src/types/pa_vimage.h,
14047: src/types/pa_vint.h, src/types/pa_vjunction.h,
14048: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
14049: src/types/pa_vmath.h, src/types/pa_vmemory.h,
14050: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14051: src/types/pa_vobject.C, src/types/pa_vobject.h,
14052: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14053: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14054: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14055: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14056: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14057: src/types/pa_vstring.h, src/types/pa_vtable.C,
14058: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14059: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14060: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14061: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14062: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
14063: HEAD
14064:
14065: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
14066: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
14067: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
14068: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
14069: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
14070: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
14071: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
14072: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
14073: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
14074: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
14075: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
14076: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
14077: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
14078: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
14079: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
14080: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
14081: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
14082: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
14083: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
14084: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
14085: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14086: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
14087: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
14088: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
14089: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
14090: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
14091: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
14092: outputs/create-dir, results/001.processed, results/002.processed,
14093: results/003.processed, results/004.processed,
14094: results/005.processed, results/006.processed,
14095: results/007.processed, results/008.processed,
14096: results/009.processed, results/010.processed,
14097: results/011.processed, results/012.processed,
14098: results/013.processed, results/014.processed,
14099: results/015.processed, results/016.processed,
14100: results/017.processed, results/018.processed,
14101: results/019.processed, results/020.processed,
14102: results/021.processed, results/022.processed,
14103: results/023.processed, results/024.processed,
14104: results/025.processed, results/026.processed,
14105: results/027.processed, results/028.processed,
14106: results/029.processed, results/030.processed,
14107: results/031.processed, results/032.processed,
14108: results/033.processed, results/034.processed,
14109: results/035.processed, results/036.processed,
14110: results/037.processed, results/038.processed,
14111: results/039.processed, results/040.processed,
14112: results/041.processed, results/042.processed,
14113: results/043.processed, results/044.processed,
14114: results/045.processed, results/046.processed,
14115: results/047.processed, results/048.processed,
14116: results/049.processed, results/050.processed,
14117: results/051.processed, results/052.processed,
14118: results/053.processed, results/054.processed,
14119: results/055.processed, results/056.processed,
14120: results/057.processed, results/058.processed,
14121: results/059.processed, results/060.processed,
14122: results/061.processed, results/062.processed,
14123: results/063.processed, results/064.processed,
14124: results/065.processed, results/066.processed,
14125: results/067.processed, results/068.processed,
14126: results/069.processed, results/070.processed,
14127: results/071.processed, results/072.processed,
14128: results/073.processed, results/074.processed,
14129: results/075.processed, results/076.processed,
14130: results/077.processed, results/078.processed,
14131: results/079.processed, results/080.processed,
14132: results/081.processed, results/082.processed,
14133: results/083.processed, results/084.processed,
14134: results/085.processed, results/086.processed,
14135: results/087.processed, results/088.processed,
14136: results/089.processed, results/090.processed,
14137: results/091.processed, results/092.processed,
14138: results/093.processed, results/094.processed,
14139: results/095.processed, results/096.processed,
14140: results/097.processed, results/098.processed,
14141: results/099.processed, results/100.processed,
14142: results/101.processed, results/102.processed,
14143: results/103.processed, results/104.processed,
14144: results/105.processed, results/106.processed,
14145: results/107.processed, results/108.processed,
14146: results/109.processed, results/110.processed,
14147: results/111.processed, results/112.processed,
14148: results/113.processed, results/114.processed,
14149: results/115.processed, results/116.processed,
14150: results/117.processed, results/118.processed,
14151: results/119.processed, results/120.processed,
14152: results/121.processed, results/122.processed,
14153: results/123.processed, results/124.processed,
14154: results/125.processed, results/126.processed,
14155: results/127.processed, results/128.processed,
14156: results/129.processed, results/130.processed,
14157: results/131.processed, results/132.processed,
14158: results/133.processed, results/134.processed,
14159: results/135.processed, results/136.processed,
14160: results/137.processed, results/138.processed,
14161: results/139.processed, results/140.processed,
14162: results/141.processed: merged(copied) to HEAD from template_gc
14163:
14164: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
14165: towards \parser3project not having to be in root
14166:
14167: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
14168: module compiled [were minor unnecessary changes in lib/md5
14169: interface]
14170:
14171: * src/include/pa_version.h: release
14172:
14173: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
14174:
14175: * src/classes/math.C: merged uuid bugfix
14176:
14177: * tests/: 141.html, results/141.processed: fixed bug with
14178: too-small-a-buffer
14179:
14180: * src/classes/math.C: uuid bugfix
14181:
14182: * tests/: 141.html, Makefile, results/005.processed,
14183: results/030.processed, results/075.processed,
14184: results/078.processed: to reflect date format change (were -
14185: become ' ')
14186:
14187: * src/classes/math.C: uuid bugfix
14188:
14189: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
14190: debug/release changes
14191:
14192: * src/lib/md5/pa_md5c.c: PA_ -> pa_
14193:
14194: 2003-07-23 paf
14195:
14196: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14197: renamed a little [to move to comman naming conv]
14198:
1.116 moko 14199: * src/targets/Makefile.am: apache13 splitted to simplify apache
14200: build
1.95 moko 14201:
14202: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
14203: main/pa_request.C, main/pa_sql_driver_manager.C,
14204: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
14205: stack top_index() fixed
14206:
14207: * src/main/pa_globals.C: minor style changes
14208:
14209: * src/: classes/op.C, include/pa_sql_connection.h: connection
14210: closing/caching fixed [connections were not closed/put to cache]
14211:
14212: 2003-07-22 paf
14213:
14214: * INSTALL: gc part updated stightly
14215:
14216: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
14217: new sapi interface
14218:
14219: * src/classes/file.C: comment on OS
14220:
14221: * src/main/pa_string.C: removed reduntant invariant check [there is
14222: one deeper in cord lib]
14223:
14224: * src/main/pa_exec.C: on win32 bugfix in handling shbang
14225:
14226: * src/main/pa_memory.C: out of memory is no longer coredump
14227:
14228: * INSTALL: disable-threads adviced
14229:
14230: 2003-07-21 paf
14231:
1.116 moko 14232: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 14233:
14234: * src/classes/file.C: file::exec/cgi environment variables now must
14235: be UPPERCASE and A-Z 0-9 _-
14236:
14237: * src/classes/file.C: env passing fixed
14238:
14239: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
14240:
14241: * src/main/pa_common.C: http:// CRLF now
14242:
14243: 2003-07-02 paf
14244:
14245: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
14246: fields to reflect their real meaning
14247:
14248: 2003-06-27 paf
14249:
14250: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
14251: include/pa_hash.h, main/pa_charset.C: merged from HEAD
14252: file::exec/cgi .charset
14253:
14254: 2003-06-26 paf
14255:
14256: * ChangeLog, src/classes/file.C, src/classes/hash.C,
14257: src/classes/image.C, src/classes/op.C, src/classes/string.C,
14258: src/classes/table.C: fixed several uninitialized local
14259: structures. notably ^hash.foreach now inserts delimiters
14260: properly [were inserting it before first body]
14261:
14262: 2003-06-24 paf
14263:
14264: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
14265:
14266: 2003-06-20 paf
14267:
14268: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
14269: src/main/pa_globals.C: introducing
14270: $f[^file::load[binary;http://...]] $f.tables
14271:
14272: 2003-06-06 paf
14273:
14274: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
14275: table. [were method lookup: inconsistent]
14276:
14277: 2003-06-02 paf
14278:
14279: * src/include/pa_memory.h: empty string clone fixed to return
14280: writable memory
14281:
14282: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
14283: were not appended] which violated string invariant
14284:
14285: 2003-05-30 paf
14286:
14287: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
14288: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
14289:
14290: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
14291: GMT ; RFC 822, updated by RFC 1123
14292:
14293: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
14294: targets/isapi/parser3isapi.C: initialized request_info properly
14295:
14296: * src/classes/xnode.C: found minor bug, commended for future
14297:
14298: 2003-05-28 paf
14299:
14300: * src/classes/form.C: request_info.content_length can't be <0,
14301: size_t for some time
14302:
14303: 2003-05-26 paf
14304:
14305: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
14306: forgotten <0 changed to !=STRING_NOT_FOUND
14307:
14308: * src/classes/math.C: merged ffffu from HEAD
14309:
14310: 2003-05-11 paf
14311:
14312: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
14313:
14314: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
14315: premature doc free. transformed document had xmlDoc reference
14316: stored to non-gc-memory (libgdome) added holding-reference
14317:
14318: 2003-04-29 paf
14319:
14320: * src/main/pa_globals.C: started digging on double free. on win32
14321: found that that's perfectly normal.
14322:
14323: 2003-04-25 paf
14324:
14325: * src/classes/table.C: table.join bug fix [bad limit check]
14326:
14327: * src/classes/math.C: merged from HEAD: simpiler hash_string
14328:
14329: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
14330: print anything. changed to quicker and simplier code
14331:
14332: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
14333: strict a check]
14334:
14335: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
14336:
14337: 2003-04-24 paf
14338:
14339: * src/include/pa_table.h: too strict assert loosened
14340:
14341: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
14342: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
14343: report
14344:
14345: 2003-04-21 paf
14346:
1.116 moko 14347: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 14348:
14349: * src/main/pa_globals.C: pcre memory management changed to use GC
14350: memory
14351:
14352: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
14353: xmlMallocAtomic [author agreed to my suggestion], used that
14354:
14355: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
14356:
14357: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
14358: types/pa_vmail.C: attributed_meaning_to_string added
14359: L_UNSPECIFIED piece which was sortof OK, but violated string
14360: invariant [assertion barked on that] changed to L_PASS_APPEND,
14361: made that param obligatory
14362:
14363: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
14364: fixed [assert helped]
14365:
14366: * src/include/pa_string.h: assert added [looking for bug]
14367:
14368: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
14369: names on Win32 considered disk-global
14370:
14371: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
14372: considered disk-global
14373:
14374: 2003-04-18 paf
14375:
14376: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
14377: filenames
14378:
14379: * src/main/untaint.C: enabled '~' letter in filenames
14380:
14381: 2003-04-16 paf
14382:
14383: * src/classes/file.C: small bug introduced in autoptr times fixed
14384:
14385: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
14386: HEAD
14387:
1.116 moko 14388: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 14389:
14390: 2003-04-15 paf
14391:
14392: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14393: src/lib/md5/pa_md5c.c, tests/141.html,
14394: tests/results/141.processed: merged from head ^math:uuid[]
14395: ^math:uid64[] ^math:md5[string]
14396:
14397: test added: 141.html
14398:
14399: * operators.txt, src/classes/math.C: ^math:uid64[]
14400:
14401: * src/classes/math.C: ^math:uuid[]
14402:
14403: * operators.txt, src/classes/math.C: ^math:uuid[]
14404:
14405: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14406: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
14407:
14408: * operators.txt, src/classes/file.C, src/include/pa_common.h,
14409: src/include/pa_config_fixed.h, src/main/pa_common.C:
14410: ^file::load[mode;name; $.offset $.limit
14411:
14412: 2003-04-14 paf
14413:
14414: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14415: started ^math:md5
14416:
14417: * src/classes/table.C, src/include/pa_array.h,
14418: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
14419: tests/results/140.processed: table $.reverse option works in
14420: create&co table $.distinct[tables] bug fix merged
14421:
14422: * src/: classes/table.C, include/pa_table.h: table
14423: $.distinct[tables] bug fixed
14424:
14425: * src/classes/table.C: more warnings
14426:
14427: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
14428: removed checks in table::set_current, moved them back to
14429: table::locate implemented table::create/join ñ $.reverse
14430:
14431: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
14432: removed checks in table::set_current, moved them back to
14433: table::locate
14434:
14435: 2003-04-11 paf
14436:
14437: * operators.txt, src/classes/date.C, src/classes/table.C,
14438: src/include/pa_array.h, src/include/pa_common.h,
14439: src/include/pa_config_includes.h, src/include/pa_string.h,
14440: src/include/pa_table.h, src/main/pa_request.C,
14441: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14442: src/main/pa_table.C: merged from HEAD from
14443: before_append_array_limit_sense_change to
14444: after_append_array_limit_sense_change
14445:
14446: * src/classes/table.C: typo
14447:
14448: * operators.txt, src/classes/date.C, src/classes/table.C,
14449: src/include/pa_array.h, src/include/pa_common.h,
14450: src/include/pa_config_includes.h, src/include/pa_globals.h,
14451: src/include/pa_table.h, src/main/pa_array.C,
14452: src/main/pa_globals.C, src/main/pa_request.C,
14453: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14454: src/main/pa_table.C: append_array_limit_sense_change locate
14455: accepts options same as create new option: $.reverse(1) [do not
14456: work in table::create]
14457:
14458: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
14459: (stat xxx,
14460:
14461: * src/classes/: table.C: typo
14462:
14463: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
14464: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
14465: results/130.processed, results/131.processed,
14466: results/132.processed, results/133.processed,
14467: results/134.processed, results/135.processed,
14468: results/136.processed, results/137.processed,
14469: results/138.processed, results/139.processed: added few mustfail
14470: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
14471: date/time 132.html mustfail: access to junction outside of
14472: context 133.html mustfail: access to junction outside of context,
14473: case version 134.html mustfail: hash: adding a key inside of
14474: foreach 135.html mustfail: modifying system class 136.html
14475: mustfail: $.name outside of $hash[here] 137.html mustfail:
14476: appendChild without import 138.html mustfail: invalid encoding
14477: inside of xml 139.html mustfail: bad XPath
14478:
14479: * operators.txt, src/classes/table.C, tests/084.html,
14480: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
14481: tests/129.html, tests/results/125.processed,
14482: tests/results/126.processed, tests/results/127.processed,
14483: tests/results/128.processed, tests/results/129.processed: merged
14484: from HEAD ^table.hash[key][$.distinct[tables]]
14485:
14486: maked appropriate tests [changed one old nonconforming]
14487:
14488: * operators.txt, src/classes/table.C:
14489: ^table.hash[key][$.distinct[tables]]
14490:
14491: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14492: merged fix for found very old xml (dom) bug: were passing
14493: domString objects and later ERROREOUSLY freed them
14494:
14495: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
14496: src/main/pa_charset.C: re-added libgdome patch. regretfully
14497: libgdome bug can not be worked around
14498:
14499: 2003-04-10 paf
14500:
14501: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14502: found very old xml (dom) bug: were passing domString objects and
14503: later ERROREOUSLY freed them
14504:
14505: * src/doc/string.dox, src/include/pa_memory.h,
14506: src/include/pa_string.h, src/lib/cord/cordbscs.c,
14507: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
14508: tests/123.html, tests/124.html, tests/results/001.processed,
14509: tests/results/002.processed, tests/results/003.processed,
14510: tests/results/004.processed, tests/results/005.processed,
14511: tests/results/006.processed, tests/results/008.processed,
14512: tests/results/009.processed, tests/results/010.processed,
14513: tests/results/011.processed, tests/results/012.processed,
14514: tests/results/013.processed, tests/results/014.processed,
14515: tests/results/015.processed, tests/results/016.processed,
14516: tests/results/017.processed, tests/results/018.processed,
14517: tests/results/020.processed, tests/results/021.processed,
14518: tests/results/022.processed, tests/results/023.processed,
14519: tests/results/024.processed, tests/results/025.processed,
14520: tests/results/026.processed, tests/results/027.processed,
14521: tests/results/028.processed, tests/results/029.processed,
14522: tests/results/030.processed, tests/results/031.processed,
14523: tests/results/032.processed, tests/results/033.processed,
14524: tests/results/034.processed, tests/results/035.processed,
14525: tests/results/036.processed, tests/results/037.processed,
14526: tests/results/038.processed, tests/results/039.processed,
14527: tests/results/040.processed, tests/results/041.processed,
14528: tests/results/042.processed, tests/results/043.processed,
14529: tests/results/044.processed, tests/results/045.processed,
14530: tests/results/046.processed, tests/results/047.processed,
14531: tests/results/048.processed, tests/results/049.processed,
14532: tests/results/050.processed, tests/results/051.processed,
14533: tests/results/052.processed, tests/results/053.processed,
14534: tests/results/054.processed, tests/results/055.processed,
14535: tests/results/056.processed, tests/results/057.processed,
14536: tests/results/058.processed, tests/results/059.processed,
14537: tests/results/060.processed, tests/results/061.processed,
14538: tests/results/062.processed, tests/results/063.processed,
14539: tests/results/064.processed, tests/results/065.processed,
14540: tests/results/066.processed, tests/results/067.processed,
14541: tests/results/068.processed, tests/results/069.processed,
14542: tests/results/070.processed, tests/results/071.processed,
14543: tests/results/072.processed, tests/results/073.processed,
14544: tests/results/074.processed, tests/results/075.processed,
14545: tests/results/076.processed, tests/results/077.processed,
14546: tests/results/078.processed, tests/results/079.processed,
14547: tests/results/080.processed, tests/results/081.processed,
14548: tests/results/082.processed, tests/results/083.processed,
14549: tests/results/084.processed, tests/results/085.processed,
14550: tests/results/086.processed, tests/results/087.processed,
14551: tests/results/088.processed, tests/results/089.processed,
14552: tests/results/090.processed, tests/results/091.processed,
14553: tests/results/092.processed, tests/results/093.processed,
14554: tests/results/094.processed, tests/results/095.processed,
14555: tests/results/096.processed, tests/results/097.processed,
14556: tests/results/101.processed, tests/results/102.processed,
14557: tests/results/104.processed, tests/results/105.processed,
14558: tests/results/106.processed, tests/results/107.processed,
14559: tests/results/108.processed, tests/results/109.processed,
14560: tests/results/110.processed, tests/results/111.processed,
14561: tests/results/112.processed, tests/results/113.processed,
14562: tests/results/114.processed, tests/results/115.processed,
14563: tests/results/116.processed, tests/results/117.processed,
14564: tests/results/118.processed, tests/results/119.processed,
14565: tests/results/120.processed, tests/results/121.processed,
14566: tests/results/122.processed, tests/results/123.processed,
14567: tests/results/124.processed: new convention: char* never 0.
14568: assert in cord on that
14569:
14570: * src/main/pa_charset.C: couple more asserts
14571:
14572: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
14573: speedup
14574:
14575: * src/main/pa_charset.C: couple assertions on fantastic situations
14576: added [may be those is the case now?]
14577:
14578: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14579: that's memory from gc_malloc, not from g_malloc :(, but would
14580: hope]
14581:
14582: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14583: that's memory from gc_malloc, not from g_malloc :(, but would
14584: hope]
14585:
14586: * src/main/pa_charset.C: checked custom malloc for returning 0
14587:
14588: 2003-04-09 paf
14589:
14590: * src/classes/date.C: merged ^date.roll changes
14591:
14592: * src/classes/date.C: ^date.roll bug fix
14593:
14594: * src/classes/date.C: ^date.roll now throws less errors: month
14595: shifts handles end of month situation by reducing day number
14596: hour-hole shift reduces hour to recover
14597:
14598: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
14599: Sort by function time
14600:
14601: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
14602: http:// $.charset[] param done
14603:
14604: * tests/: 122.html, results/122.processed: 122 date test <= and ==
14605: added [after volatile fix. passes on win&intel-solaris]
14606:
14607: 2003-04-08 paf
14608:
14609: * src/: classes/file.C, classes/op.C, classes/table.C,
14610: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
14611: include/pa_common.h, include/pa_request_charsets.h,
14612: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14613: main/pa_exec.C, main/pa_request.C, main/untaint.C,
14614: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
14615: types/pa_vresponse.C: started http:// $.charset[] param and
14616: http response charset detection just compiled. todo:test
14617:
14618: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
14619:
14620: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
14621: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
14622: types/pa_vmail.C: changed transcode param converntion along with
14623: string creating convention -- all strings are zero-terminated,
14624: this allowed to fix one remaining String("123", 2) case
14625:
14626: * src/: classes/date.C, classes/file.C, classes/hash.C,
14627: classes/op.C, classes/string.C, classes/table.C,
14628: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
14629: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
14630: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14631: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
14632: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
14633: violated String::invariant. started fixing [not compiled now]
14634:
14635: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
14636: main/compile.tab.C, main/compile.y, main/pa_string.C,
14637: main/untaint.C, targets/cgi/parser3.C: number of string style
14638: improvements & optimizations
14639:
14640: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
14641: :(]
14642:
14643: * src/main/untaint.C: removed redundant & in CORD_pos param passing
14644: [for it's a pointer really]
14645:
14646: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
14647: 'n' param. worked that around
14648:
14649: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
14650: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
14651: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
14652: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
14653: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
14654:
14655: Thanks for the bug report and patch.
14656:
14657: I hadn't looked at this code in a while. Reading it now, it
14658: seems to me that the tests should also be ">= MAX_DEPTH" to
14659: comply with the invariant, though that may not matter a lot. I
14660: changed that, too.
14661:
14662: Hans
14663:
14664: 2003-04-07 paf
14665:
14666: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
14667: merged from head:safe mode error message now includes numbers
14668:
14669: * src/main/execute.C: n-th attempt to make a=a work with double.
14670: problem: as_double returns it's result in fp-register compiler
14671: optimizes access to that register after b->as_double, and just
14672: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14673: from memory. _SAME_ double values do not match here. when
14674: forced to REload fp-register, values do match.
14675:
14676: tried to make them volatile.
14677:
14678: * src/main/execute.C: n-th attempt to make a=a work with double.
14679: problem: as_double returns it's result in fp-register compiler
14680: optimizes access to that register after b->as_double, and just
14681: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14682: from memory. _SAME_ double values do not match here. when
14683: forced to REload fp-register, values do match.
14684:
14685: tried to make them volatile.
14686:
14687: * src/types/pa_vobject.h: small style change
14688:
14689: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
14690:
14691: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
14692: mode error message now includes numbers
14693:
14694: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
14695: now causes death
14696:
14697: 2003-04-04 paf
14698:
14699: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
14700: incorportated pa_exec patch by From: "Victor Fedoseev"
14701: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
14702: Sent: Thursday, January 23, 2003 9:14 AM
14703:
14704: huge speedup on ^file::cgi with big result
14705:
14706: * src/classes/table.C: sort table with 0 rows bug fixed
14707:
14708: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
14709: fix http://i2/tasks/edit/?id=4493701604654042676
14710:
14711: @main[] $with_default[ $.a[1] $._default[default from
14712: with_default] ] ^show[$with_default]
14713:
14714: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14715: =$to_add_to.xxx=<br>
14716:
14717: ^show[$to_add_to]
14718:
14719: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14720: ^show[$cloned]
14721:
14722: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14723:
14724: } <hr>
14725:
14726: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
14727: http://i2/tasks/edit/?id=4493701604654042676
14728:
14729: @main[] $with_default[ $.a[1] $._default[default from
14730: with_default] ] ^show[$with_default]
14731:
14732: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14733: =$to_add_to.xxx=<br>
14734:
14735: ^show[$to_add_to]
14736:
14737: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14738: ^show[$cloned]
14739:
14740: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14741:
14742: } <hr>
14743:
14744: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
14745: http://i2/tasks/edit/?id=4507350336410850921
14746:
14747: * src/classes/xdoc.C: memory allocation func bugfix
14748: http://i2/tasks/edit/?id=4499303470368629745
14749:
14750: * src/classes/math.C: allowed random 1...
14751:
14752: * src/classes/math.C: allowed random 0..
14753:
14754: * src/main/pa_globals.C: exif mem leak
14755: http://i2/tasks/edit/?id=4480590323629807263
14756:
14757: * src/: classes/classes.dsp, main/main.dsp,
14758: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
14759: fix http://i2/tasks/edit/?id=4493946731322521294
14760: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
14761:
14762: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14763: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
14764: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
14765: links to xml libs made relative, no need to unpack parser3project
14766: to /parser3project.
14767:
14768: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
14769: column more precise - tab handling bug fixed
14770:
14771: * src/main/: compile.tab.C, compile.y: more understandable error
14772: message in case @CLASS with more then one line inside
14773:
14774: * src/targets/cgi/parser3.C: more understandable error message in
14775: case of errors in @unhandled_exception
14776:
14777: 2003-04-03 paf
14778:
14779: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
14780: src/main/compile.tab.C, src/main/compile.y,
14781: src/main/compile_tools.C, src/main/compile_tools.h,
14782: src/main/execute.C, src/main/pa_request.C: debug info format
14783: simplified, now it's: OP_VALUE Operation::Origin << here value*
14784:
14785: higher limits: file number (max: 255) line number (max:
14786: 64535) column number (max: 255)
14787:
14788: * src/classes/math.C: top limit
14789:
14790: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
14791: precise parse error position in case of
14792:
14793: ^bug ]
14794:
14795: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
14796: changed to realities, and passed [bug fixed]
14797:
14798: * src/: classes/op.C, include/pa_request.h, main/compile.C,
14799: main/compile.tab.C, main/compile.y, main/compile_tools.C,
14800: main/compile_tools.h, main/pa_request.C: introducing
14801: ^process...[main-method-alias]
14802:
14803: * src/: classes/date.C, classes/image.C, classes/op.C,
14804: classes/string.C, classes/table.C, classes/xdoc.C,
14805: types/pa_vmethod_frame.h: MethodParams& now [methods without
14806: params receive zero reference, but they are expected not to look
14807: there]
14808:
14809: * operators.txt, src/classes/date.C, src/classes/double.C,
14810: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
14811: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14812: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14813: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14814: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14815: src/main/execute.C, src/types/pa_method.h: MethodParams& now
14816: [methods without params receive zero reference, but they are
14817: expected not to look there]
14818:
14819: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14820: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
14821: ^process...[filename] useful for better error reporting
14822: [file/line/col]
14823:
14824: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
14825: types/pa_vstring.h: slightly improved error messages text: 1. is
14826: '%s', it 2. method undefined in case of ^void[]
14827:
14828: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14829: include/pa_types.h, main/execute.C, main/pa_request.C: exception
14830: handling done. now we have error columns todo: test it
14831:
14832: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
14833: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
14834:
14835: this makes life easier: were: bad stack order -- were in
14836: exception catch unwind order, which didn't match execution order
14837:
14838: @main[] ^try{ ^first[] }{ ^throw[c;3] }
14839:
14840: @first[] ^throw[a;1]
14841:
14842: showed throw a first throw b try
14843:
14844: which is no good
14845:
14846: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14847: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
14848: trace reset after handled exception [old bug fixed]
14849:
14850: * src/main/: compile.tab.C, compile.y: parse position old bug
14851: fixed. position reporting made precise [both, in parse erros and
14852: runtime errors]
14853:
14854: 2003-04-02 paf
14855:
14856: * src/: include/pa_operation.h, include/pa_request.h,
14857: main/compile.C, main/compile.tab.C, main/compile.y,
14858: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14859: main/pa_exception.C, main/pa_request.C: debug info: started
14860: using. todo:complete
14861:
14862: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
14863: main/compile.C, main/compile.tab.C, main/compile.y,
14864: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14865: main/pa_request.C: prepared debug info todo:use it
14866:
14867: * src/include/pa_operation.h: strange mistake fixed: forgot to
14868: return Operation class->union after switching from autoptrs.
14869:
14870: * tests/: Makefile, results/108.processed, results/117.processed:
14871: meta considered OK [it's up to coder now to remove it not needed]
14872:
14873: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
14874: Dictionary constructor when moved to gc]
14875:
14876: * src/main/pa_common.C: uncommented http:// file loading
14877:
14878: * src/include/pa_array.h, src/main/execute.C,
14879: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
14880: fix [gdGrowingBuf]
14881:
14882: * configure.in, src/lib/Makefile.am: removed patches
14883:
14884: * configure, src/include/pa_config_auto.h.in,
14885: src/main/pa_charset.C: --enable-assertions autoconf-ed
14886:
14887: * src/main/pa_common.C: uncommented http:// file loading
14888:
14889: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
14890: xdoc::create/load
14891:
14892: * src/: classes/form.C, classes/hash.C, classes/image.C,
14893: classes/string.C, classes/table.C, classes/void.C,
14894: include/pa_common.h, main/pa_common.C, main/pa_request.C,
14895: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
14896: String::String(str,helper_length) are checked. found/fixed one
14897: place: $request:body now zero-terminated,
14898:
14899: * src/: classes/op.C, classes/table.C, include/pa_request.h,
14900: main/compile_tools.C, main/execute.C, types/pa_value.h,
14901: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
14902: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
14903: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14904: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
14905: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
14906: types/pa_vxnode.h: more locally scoped vars in execute (more
14907: easily optimizable)
14908:
14909: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
14910: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
14911:
14912: * src/: include/pa_array.h, include/pa_stack.h,
14913: include/pa_string.h, main/compile_tools.C, main/main.dsp,
14914: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
14915: become assertion iterator in methodframe filler
14916:
14917: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
14918: targets/cgi/parser3.C: array::get/put inlined
14919:
14920: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
14921: gc_substitute_memory_management_functions +installed CORD_oom
14922: function
14923:
14924: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
14925: src/include/pa_config_includes.h, src/include/pa_string.h,
14926: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
14927: src/targets/cgi/parser3.C: converted debug hacks to ANSI
14928: assertions started configure.in --enable-assertions
14929:
14930: 2003-04-01 paf
14931:
14932: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
14933: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
14934: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
14935: gdome uses glib memory, and stores last pointer to xmlDoc there,
14936: gc misses that and collects valid memory fixed by remembering
14937: xmlDoc from dom object in xdoc. todo: do something with
14938: premature free of xdoc with xnodes/node values referring into it
14939:
14940: * src/classes/: mail.C: typo fix
14941:
14942: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
14943: changes
14944:
14945: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
14946: main/pa_memory.C: moved memory debugging to global level: to
14947: pa_gc_malloc
14948:
14949: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
14950: debugging showed no errors. todo: debug parser memory
14951:
14952: * src/targets/cgi/: parser3.C, parser3.dsp: more build
14953: configurations
14954:
14955: * src/: classes/classes.dsp, include/pa_config_fixed.h,
14956: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
14957: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
14958: types/types.dsp: prepared xml-static configuration
14959:
14960: 2003-03-31 paf
14961:
14962: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
14963: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
14964: xml lib memory debugging, simple checks failed: it seems that
14965: library does realloc(bad ptr), and recording those ptrs in heap
14966: [for debugging] was bad: heap situation changes = everything
14967: works fine
14968:
14969: * src/: main/pa_charset.C, include/pa_charset.h: worked around
14970: xmlRegisterCharEncodingHandler limitation [currently imposed
14971: limit of 10 user-defined charsets]
14972:
14973: 2003-03-28 paf
14974:
14975: * src/main/execute.C: execution stack copied to local register
14976: variable, removed lots [~2e7) of memory accesses
14977:
14978: 2003-03-27 paf
14979:
14980: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
14981: works in debug, but fails in release todo: fix that
14982:
14983: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
14984: targets/cgi/parser3.C: forgot to merge XML memory funcs
14985: replacement from gc branch
14986:
14987: * src/main/pa_exec.C: introducing append_help_length [radical
14988: improvement here]
14989:
14990: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
14991: 'not recommened' in gc.h, on win32 noticed no difference]
14992:
14993: * src/include/pa_array.h: returned checked array get [were disabled
14994: for debugging] result:not slower [don't understand that, it were
14995: INLINED] todo: find out a way of inlining it!
14996:
14997: * src/: include/pa_string.h, lib/gc/include/gc.h,
14998: lib/gc/include/gc_fake.h, main/compile.tab.C,
14999: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
15000: convention changed: all resulting strings are zero-terminated
15001:
15002: * src/: classes/date.C, classes/file.C, classes/hash.C,
15003: classes/string.C, classes/table.C, classes/void.C,
15004: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
15005: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
15006: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
15007: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15008: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
15009: types/pa_vfile.C, types/pa_vmail.C: introducing
15010: append_help_length [radical improvement here]
15011:
15012: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
15013: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
15014: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
15015: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
15016: even slower
15017:
15018: * src/: classes/string.C, classes/table.C, include/pa_array.h,
15019: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
15020: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
15021: clients of &get(): most to use non-ref version, some[in tight
15022: places] to get_unchecked_ref
15023:
15024: * src/doc/memory.dox: forgot to add
15025:
15026: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
15027: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
15028: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
15029: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
15030: main/compile.y, main/compile_tools.C, main/compile_tools.h,
15031: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
15032: targets/cgi/parser3.dsp, types/pa_vmail.C,
15033: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
15034: T>>&<< removed after Stack::pop wiping removed [moved to separate
15035: func] other Array & removed
15036:
15037: 2003-03-26 paf
15038:
15039: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
15040: classes/table.C, include/pa_array.h, include/pa_charset.h,
15041: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
15042: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15043: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
15044: main/main.dsp, main/pa_charset.C, main/pa_common.C,
15045: main/pa_exec.C, main/pa_sql_driver_manager.C,
15046: main/pa_stylesheet_manager.C, main/pa_table.C,
15047: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15048: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
15049: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
15050: pre-evaluated .count() in some places
15051:
15052: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15053: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
15054: types/types.dsp: .dsp profiling updated
15055:
15056: * src/: classes/classes.dsp, lib/cord/cord.dsp,
15057: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
15058: targets/cgi/parser3.dsp, types/types.dsp: started profiling
15059:
15060: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
15061: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
15062: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
15063: use lib/gc,lib/cord
15064:
1.116 moko 15065: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
15066: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 15067: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
15068: src/include/pa_config_includes.h, src/include/pa_request.h,
15069: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15070: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 15071: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 15072: src/lib/cord/include/Makefile.am,
1.116 moko 15073: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
15074: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
15075: src/targets/cgi/Makefile.am, src/types/Makefile.am,
15076: src/types/pa_vclass.h, src/types/pa_vcookie.h,
15077: src/types/pa_vform.h, src/types/pa_vhash.h,
15078: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
15079: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
15080: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
15081: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
15082: funcs ported pa_exec
1.95 moko 15083:
15084: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
15085:
15086: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
15087: bundled gc includes
15088:
15089: * src/: classes/op.C, include/pa_array.h,
15090: include/pa_sql_connection.h, include/pa_string.h,
15091: include/pa_version.h, main/compile.tab.C, main/compile.y,
15092: main/execute.C, main/pa_common.C, main/pa_exception.C,
15093: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
15094: targets/cgi/parser3.dsp: a number of bugfixes [while testing
15095: first real site (aval)]
15096:
15097: 2003-03-25 paf
15098:
15099: * operators.txt, src/main/pa_sql_driver_manager.C,
15100: src/types/pa_vstatus.C: $status.memory used free since_compact
15101: process
15102:
15103: * src/: include/pa_sql_connection.h, main/pa_globals.C,
15104: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
15105:
15106: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
15107:
15108: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
15109: src/types/pa_value.h, src/types/pa_vfile.h,
15110: src/types/pa_vobject.C, src/types/pa_vobject.h,
15111: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
15112: tests/results/121.processed: untaint.C L_URI
15113:
15114: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
15115: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
15116: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
15117: src/types/pa_vmemory.h: ^memory:compact[]
15118:
15119: * tests/results/109.processed: it was a bug in parser. updated 109
15120: test result
15121:
15122: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
15123:
15124: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
15125: tests/results/107.processed: fixed dom language [values are now
15126: considered tainted. it was a bug in parser. updated 107 test
15127: result
15128:
15129: * src/classes/xdoc.C: fixed transform params
15130:
15131: * src/: include/pa_stylesheet_manager.h,
15132: main/pa_stylesheet_manager.C: fixed stylesheet caching
15133:
15134: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
15135: overloads for structure handling
15136:
15137: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
15138: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
15139: StringBody(0) ambiguilty, introducting static
15140: StringBody::Format(int)
15141:
15142: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
15143: linked
15144:
15145: * src/types/pa_vxdoc.C: vxdoc compiled
15146:
15147: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
15148: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
15149: finalizers isntalled
15150:
15151: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
15152: doc/exception.dox, doc/index.dox, include/pa_charset.h,
15153: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15154: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
15155: compiled todo: xnode.C / finalizers
15156:
15157: * src/doc/string.dox: updated: new string internals
15158:
15159: 2003-03-24 paf
15160:
15161: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15162: include/pa_charset.h, include/pa_config_fixed.h,
15163: include/pa_request.h, include/pa_stylesheet_connection.h,
15164: include/pa_stylesheet_manager.h, main/pa_charset.C,
15165: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
15166: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
15167: types/pa_vxnode.h: started XML
15168:
15169: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
15170:
15171: * src/: classes/file.C, classes/image.C, classes/mail.C,
15172: include/pa_string.h, main/pa_common.C,
15173: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
15174:
15175: * src/: classes/file.C, classes/image.C, classes/mail.C,
15176: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
15177: main/pa_request.C, main/pa_sql_driver_manager.C,
15178: types/pa_vimage.h: size_t pos everywhere checks changed to check
15179: for eq STRING_NOT_FOUND
15180:
15181: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
15182: optimize bit implemented
15183:
15184: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15185: String::ArrayFragment::append_positions fixed
15186:
15187: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
15188: String::this_starts fixed
15189:
15190: * src/main/pa_string.C, tests/Makefile: string::pos fixed
15191:
15192: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
15193: hashcode implemented fully, including per-char callback [it can
15194: be - substr CORD node]
15195:
15196: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
15197: rewritten to rewalloc with 100byte buf ahead
15198:
15199: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
15200: src/include/pa_string.h, src/main/compile.tab.C,
15201: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
15202: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
15203: CORD_ec [bad] would rewrite as realloc now
15204:
15205: * src/: classes/date.C, classes/file.C, classes/form.C,
15206: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
15207: include/pa_cache_managers.h, include/pa_charsets.h,
15208: include/pa_common.h, include/pa_request.h,
15209: include/pa_sql_driver_manager.h, include/pa_table.h,
15210: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
15211: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
15212: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
15213: types/pa_vmail.C, types/pa_vmethod_frame.C,
15214: types/pa_vstateless_class.h: 2*2 worked :)
15215:
15216: * parser3.dsw, src/classes/date.C, src/classes/file.C,
15217: src/include/pa_exec.h, src/include/pa_string.h,
15218: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
15219: passed OK
15220:
15221: * src/: classes/hash.C, classes/string.C, classes/table.C,
15222: types/pa_value.C: all linked todo: debug
15223:
15224: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
15225: types/pa_vstateless_class.C: all compiled. todo:link
15226:
15227: * src/types/pa_wcontext.C: pa_wcontext.C compiled
15228:
15229: * src/types/pa_vtable.C: pa_vtable.C compiled
15230:
15231: * src/types/pa_vstring.C: pa_vstring.C compiled
15232:
15233: * src/types/pa_vstatus.C: pa_vstatus.C compiled
15234:
15235: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
15236: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
15237: pa_vstateless_class.C, pa_vstateless_class.h:
15238: pa_vstateless_class.C compiled
15239:
15240: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
15241: types/pa_vmath.C: pa_vmail.C compiled
15242:
15243: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
15244:
15245: * src/types/pa_vform.C: pa_vform.C compiled
15246:
15247: * src/types/pa_vfile.C: pa_vfile.C compiled
15248:
15249: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
15250: pa_vstateless_class.C: pa_vcookie.C compiled
15251:
15252: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
15253: types/pa_vhash.h: pa_value.C compiled
15254:
15255: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
15256: classes.lib main.lib compiled
15257:
15258: * src/classes/void.C: void.C compiled
15259:
15260: * src/: classes/string.C, classes/table.C, include/pa_string.h,
15261: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
15262: compiled
15263:
15264: * src/: classes/string.C, include/pa_request.h,
15265: include/pa_string.h, main/pa_string.C: string.C compiled
15266:
15267: * src/: classes/op.C, classes/string.C, classes/table.C,
15268: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
15269: main/pa_request.C, main/pa_string.C: op.C compiled
15270:
15271: * src/classes/: math.C, op.C: math.C compiled
15272:
15273: * src/: classes/mail.C, classes/string.C, classes/table.C,
15274: types/pa_vmail.h: mail.C compiled
15275:
15276: * src/classes/: int.C, table.C: int.C compiled
15277:
15278: * src/: classes/hash.C, classes/image.C, classes/string.C,
15279: classes/table.C, include/pa_memory.h, include/pa_string.h,
15280: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
15281: compiled
15282:
15283: * src/: classes/hash.C, classes/string.C, classes/table.C,
15284: classes/void.C, classes/xdoc.C, include/pa_request.h,
15285: include/pa_sql_connection.h: hash.C compiled
15286:
15287: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
15288: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
15289: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15290: classes/math.C, classes/op.C, classes/response.C,
15291: classes/string.C, classes/table.C, classes/void.C,
15292: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
15293: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15294: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
15295: file.C table.C compiled
15296:
15297: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
15298: main/untaint.C: main.lib compiled
15299:
15300: 2003-03-21 paf
15301:
15302: * src/: classes/op.C, include/pa_cache_managers.h,
15303: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15304: include/pa_stylesheet_manager.h, main/pa_exception.C,
15305: main/pa_globals.C, main/pa_sql_driver_manager.C,
15306: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
15307: compiled
15308:
15309: * src/: classes/hash.C, classes/image.C, classes/op.C,
15310: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
15311: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15312: main/compile.C, main/pa_common.C, main/pa_request.C,
15313: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
15314: pa_request.C compiled
15315:
15316: * src/: classes/hash.C, classes/mail.C, classes/op.C,
15317: include/pa_request.h, main/execute.C, main/pa_request.C,
15318: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
15319: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
15320: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15321: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
15322: compiled
15323:
15324: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
15325: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
15326: on unix
15327:
15328: * src/: include/pa_charset.h, include/pa_charsets.h,
15329: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
15330: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
15331: pa_charsets.C compiled
15332:
15333: * src/: classes/image.C, classes/mail.C, classes/op.C,
15334: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
15335: main/compile.y, main/execute.C, main/pa_common.C,
15336: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
15337: types/pa_vcode_frame.h, types/pa_vimage.h,
15338: types/pa_vmethod_frame.h: execute.C compiled
15339:
15340: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15341: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15342: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15343: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
15344: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15345: include/pa_cache_managers.h, include/pa_charsets.h,
15346: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
15347: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
15348: include/pa_sql_driver_manager.h, include/pa_string.h,
15349: include/pa_stylesheet_connection.h,
15350: include/pa_stylesheet_manager.h, include/pa_table.h,
15351: main/compile.C, main/compile.tab.C, main/compile.y,
15352: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15353: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15354: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
15355: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
15356: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15357: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
15358: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
15359: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15360: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15361: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15362: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15363: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15364: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15365: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15366: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15367: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15368: types/pa_vresponse.h, types/pa_vstateless_class.C,
15369: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15370: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15371: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15372: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15373: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15374: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
15375: [C++ CORD wrapper]
15376:
15377: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
15378:
15379: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
15380: $file::exec/cgi[script; $.charset[this is script's charset]
15381:
15382: command line, env values, input got transcoded before call
15383: stdout, stderr got transcoded after call
15384:
15385: * src/classes/file.C: ^file::exec/cgi now does not pass post data
15386: by default. use: ^file::exec[...;$.stdin[$request.body]
15387:
15388: * src/main/pa_common.C: } typo bug fix
15389:
15390: * src/main/pa_common.C: } typo bug fix
15391:
15392: 2003-03-20 paf
15393:
15394: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
15395: main/untaint.C: cord bug fix, but still errors todo: clear out
15396:
15397: * src/include/pa_string.h: more tests
15398:
15399: * src/main/pa_string.C: string.pos fixed
15400:
1.116 moko 15401: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
15402: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
15403: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
15404: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
15405: replaces
1.95 moko 15406:
15407: * src/: classes/image.C, include/pa_dictionary.h,
15408: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15409: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
15410: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
15411: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
15412:
15413: * src/include/pa_string.h: warning
15414:
15415: * src/include/pa_string.h: this_starts fixed
15416:
15417: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
15418: new String ctor & append params convention
15419:
15420: * src/: classes/file.C, classes/hash.C, classes/image.C,
15421: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
15422: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
15423: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
15424: main/pa_exception.C, main/pa_exec.C,
15425: main/pa_sql_driver_manager.C, main/pa_string.C,
15426: main/pa_stylesheet_manager.C, main/untaint.C,
15427: targets/isapi/parser3isapi.C, types/pa_vimage.C,
15428: types/pa_vmail.C: more tests OK
15429:
15430: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
15431: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
15432: gc/exit runned OK
15433:
15434: * src/types/pa_vmail.C: another naming problem: should not name
15435: vars like that: unpredictable close caused problems with later
15436: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
15437: descriptors missing on startup: stdin; Bad file number
15438:
15439: todo: find out why so many filters(stream) here. probably wrong?
15440:
15441: * src/: include/pa_dictionary.h, include/pa_string.h,
15442: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
15443: main/untaint.C: test compiled
15444:
15445: * src/: classes/image.C, classes/mail.C, classes/math.C,
15446: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
15447: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
15448: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
15449: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
15450: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15451: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
15452: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
15453: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
15454: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
15455:
15456: * parser3.dsw, src/classes/file.C, src/classes/image.C,
15457: src/classes/op.C, src/classes/string.C, src/classes/table.C,
15458: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
15459: src/include/pa_memory.h, src/include/pa_request.h,
15460: src/include/pa_request_charsets.h,
15461: src/include/pa_sql_connection.h, src/include/pa_string.h,
15462: src/main/compile.tab.C, src/main/execute.C,
15463: src/main/pa_charset.C, src/main/pa_common.C,
15464: src/main/pa_exception.C, src/main/pa_exec.C,
15465: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15466: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
15467: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
15468: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
15469: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15470: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
15471: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15472: src/types/pa_vobject.C, src/types/pa_vresponse.C,
15473: src/types/pa_vstatus.C, src/types/pa_vstring.C,
15474: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15475: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
15476: pa_common.C [done, without http for now]
15477:
15478: 2003-03-19 paf
15479:
15480: * src/: classes/date.C, classes/form.C, classes/hash.C,
15481: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
15482: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
15483: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
15484: include/pa_string.h, include/pa_table.h, main/compile.C,
15485: main/compile_tools.C, main/execute.C, main/pa_charset.C,
15486: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
15487: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
15488: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15489: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
15490: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
15491: types/pa_vstateless_class.h, types/pa_vtable.C,
15492: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
15493: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15494: types/pa_wwrapper.h: started test
15495:
1.116 moko 15496: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
15497: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 15498:
15499: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
15500: include/pa_string.h, main/pa_string.C: string compiled todo: test
15501: it
15502:
15503: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
15504: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
15505: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
15506: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
15507: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
15508: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
15509: types/pa_vmethod_frame.h, types/types.dsp: string
15510: reimplementation with cord+array<fragment>: 70%
15511:
15512: 2003-03-18 paf
15513:
15514: * src/: classes/date.C, classes/file.C, classes/form.C,
15515: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
15516: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
15517: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
15518: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
15519: can ignore lang in cmp and pos really, but would
15520: split properly!
15521:
15522: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
15523: cord part made parser/src/lib: it's not compiled into libgc by
15524: default
15525:
15526: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
15527: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15528: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15529: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15530: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15531: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15532: src/classes/xnode.C, src/classes/xnode.h,
15533: src/include/Makefile.am, src/include/pa_cache_managers.h,
15534: src/include/pa_charset.h, src/include/pa_charsets.h,
15535: src/include/pa_common.h, src/include/pa_dictionary.h,
15536: src/include/pa_exception.h, src/include/pa_exec.h,
15537: src/include/pa_globals.h, src/include/pa_hash.h,
15538: src/include/pa_memory.h, src/include/pa_pool.h,
15539: src/include/pa_request.h, src/include/pa_request_charsets.h,
15540: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
15541: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15542: src/include/pa_stylesheet_connection.h,
15543: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
15544: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
15545: src/main/compile.C, src/main/compile.tab.C,
15546: src/main/compile_tools.C, src/main/compile_tools.h,
15547: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
15548: src/main/pa_charsets.C, src/main/pa_common.C,
15549: src/main/pa_dictionary.C, src/main/pa_exception.C,
15550: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
15551: src/main/pa_pool.C, src/main/pa_request.C,
15552: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15553: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
15554: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
15555: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
15556: src/types/pa_junction.h, src/types/pa_method.h,
15557: src/types/pa_value.C, src/types/pa_value.h,
15558: src/types/pa_vclass.C, src/types/pa_vclass.h,
15559: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15560: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15561: src/types/pa_vdouble.h, src/types/pa_venv.h,
15562: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
15563: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
15564: src/types/pa_vimage.C, src/types/pa_vimage.h,
15565: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
15566: src/types/pa_vmath.C, src/types/pa_vmath.h,
15567: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15568: src/types/pa_vobject.C, src/types/pa_vobject.h,
15569: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15570: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15571: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15572: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
15573: src/types/pa_vstatus.h, src/types/pa_vstring.C,
15574: src/types/pa_vstring.h, src/types/pa_vtable.C,
15575: src/types/pa_vtable.h, src/types/pa_vvoid.h,
15576: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15577: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
15578: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
15579: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
15580: gc: PA_Object done lots of replacements also
15581:
15582: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
15583: gc logging
15584:
15585: 2003-03-17 paf
15586:
15587: * src/: classes/date.C, classes/file.C, classes/form.C,
15588: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
15589: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
15590: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15591: include/pa_string.h, include/pa_types.h, main/compile.C,
15592: main/compile.tab.C, main/execute.C, main/pa_charset.C,
15593: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
15594: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15595: main/pa_sql_driver_manager.C, main/pa_string.C,
15596: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
15597: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
15598: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
15599: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
15600: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
15601: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15602: types/pa_vxnode.h: libgc attempt
15603:
15604: 2003-03-13 paf
15605:
15606: * src/: include/pa_sql_driver_manager.h,
15607: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
15608: called
15609:
15610: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
15611: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
15612: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
15613: types/pa_value.h, types/pa_vobject.h,
15614: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
15615: set_base, set_derived simplified [counter leaks fixed]
15616:
15617: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
15618: src/types/types.dsp: incorporated status class patch From:
15619: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
15620: 2003 8:14 AM
15621:
15622: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
15623: Win32 specific: QuotaPeakNonPagedPoolUsage
15624: QuotaPeakPagedPoolUsage PeakPagefileUsage]
15625:
15626: 2003-03-12 paf
15627:
1.116 moko 15628: * configure, configure.in, src/lib/ltdl/configure,
15629: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 15630: lib/ltdl/Makefile now created by /configure.in only [were by
15631: lib/ltdl/configure.in OVERWRITE]
15632:
1.116 moko 15633: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
15634: linkage fixed for g++ 3.2.2
1.95 moko 15635:
15636: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
15637: on using privately declared class [fixed]
15638:
15639: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
15640: 3.2 rightliy complained on using privately declared class [fixed]
15641:
15642: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
15643: sigpipe before request constructor now causes death
15644:
15645: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
15646: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
15647: not cause exception in exception handler
15648:
1.116 moko 15649: * configure, configure.in, src/targets/cgi/Makefile.am: configure
15650: now default links libstdc++ statically. that can be overriden by
15651: --with-dynamic-stdcpp
1.95 moko 15652:
15653: 2003-03-11 paf
15654:
15655: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
15656: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
15657: necessity of libstdc++
15658:
15659: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15660:
15661: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15662:
15663: 2003-03-08 paf
15664:
15665: * tests/Makefile: make install & co
15666:
15667: * src/: include/pa_request.h, classes/op.C: removing
15668: vclass,object.h -> pa_request.h dependency
15669:
15670: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
15671: main/pa_request.C: removing vform,response,cookie.h ->
15672: pa_request.h dependency
15673:
15674: * src/include/pa_request.h: removing vmail.h -> pa_request.h
15675: dependency [testing...]
15676:
15677: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
15678: return 0; fixed
15679:
15680: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
15681: types/pa_vmail.h: vmail.C received just compiled [not tested]
15682:
15683: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
15684:
15685: * src/main/pa_request.C: forgotten: ifdef XML
15686:
15687: * src/main/pa_request.C: forgotten: ifdef XML
15688:
15689: * src/targets/cgi/parser3.C: todo: move to latest xml version on
15690: win32 and run memleak tests again
15691:
15692: * src/targets/cgi/parser3.C: charsets: see some strange things with
15693: old xml lib-- it's internal memory handling has faults
15694:
15695: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
15696: problems when transcode from charset A to A.
15697:
15698: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
15699: todo: still problems when transcode from charset A to A.
15700:
15701: * src/: classes/hash.C, classes/mail.C, classes/string.C,
15702: classes/table.C, include/pa_array.h,
15703: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
15704: started full-scale-site-test [~ http://parser.ru sources]
15705:
15706: some fixes
15707:
15708: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
15709: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
15710: 117.html, 118.html, 119.html, 120.html, results/109.processed,
15711: results/110.processed, results/111.processed,
15712: results/112.processed, results/113.processed,
15713: results/114.processed, results/115.processed,
15714: results/116.processed, results/117.processed,
15715: results/118.processed, results/119.processed,
15716: results/120.processed: xml: tests 109 dom create/show 110 xpath
15717: selectSingle 111 xdoc.create from tainted & 112
15718: xdoc.create/output with russian attr value 113 xpath
15719: selectString/Number 114 dom attributes.count 115 xpath selectBool
15720: 116 output media-type change 117 transform by dom stylesheet 118
15721: empty transform result 119 dom setAttribute 120 nbsp letter
15722: output
15723:
15724: =END OF PREPARED XML TESTS=
15725:
15726: 2003-03-07 paf
15727:
15728: * src/classes/xdoc.C, src/include/pa_charset.h,
15729: src/include/pa_stylesheet_connection.h, tests/108.html,
15730: tests/108.xsl, tests/results/108.processed: xml: test 108
15731: transform with params [bugs fixed]
15732:
15733: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
15734: from copy/paste bug
15735:
15736: * src/classes/xdoc.C, src/include/pa_charset.h,
15737: src/include/pa_request.h, src/main/execute.C,
15738: src/main/pa_charset.C, src/main/pa_exception.C,
15739: src/main/pa_globals.C, src/main/pa_request.C,
15740: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15741: src/types/pa_vxnode.C, tests/107.html,
15742: tests/results/107.processed: xml: test: 107 bug fixes
15743:
15744: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15745: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15746: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
15747:
15748: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
15749: string
15750:
15751: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
15752: mem alloc functions used for different cases [libxml, libxsl]
15753:
15754: * src/classes/classes.C: fixed: prevent system classes from
15755: modification to lock ALL the classes, not only directly used
15756:
15757: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
15758: linked
15759:
15760: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
15761:
15762: 2003-03-06 paf
15763:
15764: * src/classes/xdoc.C: xdoc.C 50%
15765:
15766: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
15767: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15768: main/pa_globals.C, main/pa_request.C,
15769: main/pa_stylesheet_manager.C: xnode.C compiled
15770:
15771: * src/: include/pa_stylesheet_connection.h,
15772: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
15773: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
15774:
15775: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
15776: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
15777: xml: stylesheet&manager STARTED
15778:
15779: * src/: include/pa_globals.h, main/pa_charset.C,
15780: main/pa_exception.C, main/pa_globals.C: xml: exceptions
15781:
15782: * src/: include/pa_charset.h, include/pa_config_fixed.h,
15783: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
15784: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
15785: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
15786: charsets
15787:
15788: * tests/023.html: in some cases it rounded up badly. postponing
15789: solution of that problem, making more simple test
15790:
15791: * tests/: 058_paf2000.png, results/058.processed: .png added with
15792: -kb now
15793:
15794: * src/: include/pa_charset.h, include/pa_charsets.h,
15795: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
15796: moved to charsets.C
15797:
15798: 2003-03-05 paf
15799:
15800: * src/classes/string.C, src/include/pa_string.h,
15801: src/main/pa_string.C, tests/105.html,
15802: tests/results/105.processed: String::match bug fixed
15803:
15804: * src/classes/op.C, src/main/main.dsp, tests/104.html,
15805: tests/results/104.processed: ^bpt operator added [does int3 in
15806: debug build on win32]
15807:
15808: * tests/: 057.html, results/057.processed: test bug fixed
15809:
1.116 moko 15810: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 15811:
15812: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
15813: missing
15814:
1.116 moko 15815: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
15816: forgotten files added to Makes
1.95 moko 15817:
15818: * ltmain.sh: ltmain.sh added
15819:
15820: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15821: change undone ;(
15822:
15823: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15824: made static
15825:
15826: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 15827: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
15828: todo:make linker happy
1.95 moko 15829:
15830: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
15831: env param made optional
15832:
15833: 2003-03-04 paf
15834:
15835: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
15836: types/pa_vimage.h: number of gcc compiler bugs fixed
15837:
15838: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
15839: results/103.processed: tests: 103 image.copy transparence test
15840:
15841: * src/main/execute.C, tests/101.html, tests/102.html,
15842: tests/results/101.processed, tests/results/102.processed: tests:
15843: 101 method/variable name conflict test 102 form fields change
15844: should not not change anything [bug fix]
15845:
15846: * tests/: 057.html, 099.html, 100.html, results/057.processed,
15847: results/099.processed, results/100.processed: tests: 57 date
15848: create 2002: added 99,100 response:body/download
15849:
15850: * src/classes/image.C, tests/098.html, tests/098font.gif,
15851: tests/results/098.processed: test: 98 image font text [bug fixed]
15852:
15853: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
15854: tests/results/097.processed: test: 97 file::load http:// [bugs
15855: fixed]
15856:
15857: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
15858: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
15859: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
15860: image EXIF [bug fixed]
15861:
15862: * src/classes/table.C, src/main/execute.C, tests/061.dat,
15863: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
15864: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
15865: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
15866: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
15867: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
15868: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
15869: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
15870: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
15871: tests/094.html, tests/095.html, tests/results/061.processed,
15872: tests/results/062.processed, tests/results/063.processed,
15873: tests/results/064.processed, tests/results/065.processed,
15874: tests/results/066.processed, tests/results/067.processed,
15875: tests/results/068.processed, tests/results/069.processed,
15876: tests/results/070.processed, tests/results/071.processed,
15877: tests/results/072.processed, tests/results/073.processed,
15878: tests/results/074.processed, tests/results/075.processed,
15879: tests/results/076.processed, tests/results/077.processed,
15880: tests/results/078.processed, tests/results/080.processed,
15881: tests/results/081.processed, tests/results/082.processed,
15882: tests/results/083.processed, tests/results/084.processed,
15883: tests/results/085.processed, tests/results/086.processed,
15884: tests/results/087.processed, tests/results/088.processed,
15885: tests/results/089.processed, tests/results/090.processed,
15886: tests/results/091.processed, tests/results/092.processed,
15887: tests/results/093.processed, tests/results/094.processed,
15888: tests/results/095.processed, tests/079.html,
15889: tests/results/079.processed: tests: 61 file::stat size 62
15890: string->int autoconvert 63 double .int,dec,div,mul 64 date
15891: compare 65 file: basename,justname,justext 66 math:crypt 67
15892: string.match simple on long 68 string.match normalized simple on
15893: long 69 string.int 70 file::stat content-type 71 table.join 72
15894: hash parameter conditional pass 73 date daylightsaving,yearday 74
15895: date arithmetics 75 response date values/attributes 76 string.pos
15896: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
15897: with local 80 scientific numeric literal in string autoconvert 81
15898: xor: logical and numerical 82 for delims 83 menu delims 84
15899: table.hash distinct 85 long string replace 86 throw+catch
15900: current language preserve 87 bit shifts 88 junction tests +
15901: $caller test 89 hash.foreach selfmodification 90 int/void to int
15902: 91 $caller test 92 junction is + def junction tests 93 $caller
15903: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
15904:
15905: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
15906: fixed] 60 string eq string [bug fixed]
15907:
15908: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
15909: 058.html, 058_paf2000.png, 059.html, 060.html,
15910: results/053.processed, results/054.processed,
15911: results/055.processed, results/056.processed,
15912: results/057.processed, results/058.processed,
15913: results/059.processed, results/060.processed: test: 53
15914: string.replace 54 junctions 55 table.hash 56 call indirect 57
15915: date.create[string] 58 image.measure[png]
15916:
15917: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
15918: outputs/051.processed, results/052.processed: test: 52
15919: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
15920: task: fix that
15921:
15922: 2003-03-03 paf
15923:
15924: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
15925: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
15926: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
15927: outputs/049.processed, outputs/050.processed,
15928: outputs/051.processed, results/001.processed,
15929: results/002.processed, results/003.processed,
15930: results/005.processed, results/006.processed,
15931: results/008.processed, results/009.processed,
15932: results/011.processed, results/012.processed,
15933: results/013.processed, results/014.processed,
15934: results/015.processed, results/016.processed,
15935: results/017.processed, results/020.processed,
15936: results/021.processed, results/022.processed,
15937: results/024.processed, results/025.processed,
15938: results/026.processed, results/027.processed,
15939: results/028.processed, results/029.processed,
15940: results/030.processed, results/031.processed,
15941: results/049.processed, results/050.processed,
15942: results/051.processed, results/043.processed,
15943: results/044.processed, results/045.processed,
15944: results/046.processed, results/047.processed,
15945: results/048.processed: tests: 43,44,45 date rolls 46
15946: autoevaluating junction 47 table.select 48 name with subvar 49
15947: hash-creating switch 50 process 51 started parent/child, works as
15948: it were but it were NOT GOOD, created separate task to fix that
15949:
15950: * tests/: 042.html, results/042.processed: test: 42
15951: exception.handled
15952:
15953: * tests/: 041.html, results/041.processed: test: 41 table.locate by
15954: expression
15955:
15956: * tests/: 040.html, results/040.processed: test: 39 method result
15957: of type table 40 method param junction auto evaluate
15958:
15959: * tests/: 039.html, results/039.processed: test: 37 method result
15960: of type table
15961:
15962: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
15963: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
15964: tests/038.html, tests/results/033.processed,
15965: tests/results/034.processed, tests/results/035.processed,
15966: tests/results/036.processed, tests/results/037.processed,
15967: tests/results/038.processed: tests: 33 string.replace 34
15968: string.upper 35 table created 36 local/global vars with juntions
15969: 37 table clone 38 math PI & number formatting
15970:
15971: math class registring typo fixed
15972:
15973: * src/classes/op.C, src/include/pa_request.h,
15974: src/include/pa_string.h, src/main/execute.C,
15975: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
15976: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
15977: tests/032.html, tests/results/032.processed: uchar changed to
15978: String_UL in all places [was not everywhere] untaint test: 032
15979:
15980: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
15981: tests/results/004.processed, tests/parser-cygwin.sh,
15982: tests/parser-unix.sh: removed -H command line key, now testing
15983: using .sh file with SERVER_SOFTWARE=xxx
15984:
15985: 2003-02-26 paf
15986:
15987: * src/main/execute.C, src/types/pa_vstateless_class.h,
15988: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
15989: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
15990: tests/results/024.processed, tests/results/025.processed,
15991: tests/results/026.processed, tests/results/027.processed,
15992: tests/results/028.processed, tests/results/029.processed,
15993: tests/results/030.processed, tests/results/031.processed: fixed
15994: bug with name_cstr mutable CharPtr more tests
15995:
15996: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
15997: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
15998: << abort. die now just exits
15999:
16000: * src/classes/classes.awk, src/classes/classes.h,
16001: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16002: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16003: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16004: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16005: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16006: src/classes/xnode.C, src/include/pa_memory.h,
16007: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
16008: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
16009: src/types/pa_vform.C, tests/015.html, tests/016.html,
16010: tests/017.html, tests/018.html, tests/019.html,
16011: tests/019paf2001.gif, tests/020.html, tests/021.html,
16012: tests/022.html, tests/023.html, tests/022_dir/a.html,
16013: tests/022_dir/b.txt, tests/022_dir/c.htm,
16014: tests/results/015.processed, tests/results/016.processed,
16015: tests/results/017.processed, tests/results/018.processed,
16016: tests/results/019.processed, tests/results/020.processed,
16017: tests/results/021.processed, tests/results/022.processed,
16018: tests/results/023.processed: methoded_array now contains all Mxxx
16019: classes SAPI::get_env now returns info on pool more tests
16020:
16021: * src/include/pa_array.h, src/include/pa_hash.h,
16022: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
16023: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
16024: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
16025: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
16026: tests/014.html, tests/Makefile, tests/outputs/create-dir,
16027: tests/results/001.processed, tests/results/002.processed,
16028: tests/results/003.processed, tests/results/004.processed,
16029: tests/results/005.processed, tests/results/006.processed,
16030: tests/results/007.processed, tests/results/008.processed,
16031: tests/results/009.processed, tests/results/010.processed,
16032: tests/results/011.processed, tests/results/012.processed,
16033: tests/results/013.processed, tests/results/014.processed: hash
16034: cloning fixed
16035:
16036: 2003-02-25 paf
16037:
16038: * src/main/pa_common.C: typo fixed
16039:
16040: 2003-02-24 paf
16041:
16042: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
16043: [one remained]
16044:
16045: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
16046: [should have been get_string(&pool)] todo: check other such calls
16047:
16048: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
16049: test10, bad lookups
16050:
16051: xxx* xxx=smartptr.get(); << is bad style, after ";" original
16052: object got destructed, and xxx points to sky
16053:
16054: * ChangeLog, src/classes/string.C: match bug fixed
16055:
16056: * src/types/pa_vmail.C: body [text/html] transcoded to
16057: $.charset[specified] now
16058:
16059: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16060: which failed to handle sigsetjmp+throw: crashed inside of
16061: pre-throw code. rewritten simplier [though duplicating
16062: closesocket code]
16063:
16064: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16065: which failed to handle sigsetjmp+throw: crashed inside of
16066: pre-throw code. rewritten simplier [though duplicating
16067: closesocket code]
16068:
16069: 2003-02-21 paf
16070:
16071: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
16072: $cookie:name[$.expires[date << can be now]]
16073:
16074: written makefile with regression tests [raw]
16075:
16076: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
16077: tests' only [it's not forcing CGI mode now] now use -H to output
16078: CGI header when parser used in command line [useful for tests
16079: also]
16080:
16081: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
16082: switches on CGI mode, and is used in regression tests
16083:
16084: * src/: include/pa_request.h, main/pa_request.C,
16085: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
16086: fixed
16087:
16088: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
16089: handling pa_*
16090:
16091: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
16092: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
16093: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
16094: memory handling files
16095:
16096: * src/main/pa_array.C: pool::format_integer terminator fixed
16097:
16098: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
16099: compiles OK test to show benefits of free
16100:
16101: * src/: classes/file.C, classes/image.C, classes/mail.C,
16102: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
16103: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16104: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
16105: use pool [as the one in ^process]
16106:
16107: * src/classes/op.C: fixed process. sould now check for all cstr's
16108: -- some must use pool [as the one in ^process]
16109:
16110: 2003-02-20 paf
16111:
16112: * src/: classes/date.C, classes/double.C, classes/file.C,
16113: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16114: classes/math.C, classes/op.C, classes/response.C,
16115: classes/string.C, classes/table.C, classes/void.C,
16116: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
16117: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
16118: string cmp fixed
16119:
16120: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
16121: values passed OK now
16122:
16123: 2003-02-19 paf
16124:
16125: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
16126: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
16127: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
16128: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
16129: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
16130: all remaning leaks resulted from pooled::malloc calls [excluding
16131: in gd -- planning complete rewrite extremely ugly code]
16132:
16133: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
16134: files
16135:
16136: 2003-02-17 paf
16137:
16138: * src/: classes/date.C, classes/double.C, classes/file.C,
16139: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16140: classes/response.C, classes/string.C, classes/table.C,
16141: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
16142: include/pa_stylesheet_connection.h,
16143: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
16144: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16145: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
16146: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
16147: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
16148: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
16149: of unitialized simple-typed field
16150:
16151: * src/: classes/classes.C, classes/classes.h, main/execute.C,
16152: main/pa_charset.C, main/pa_request.C: another bug of unitialized
16153: simple-typed field fixed. todo: find&kill all like that one
16154:
16155: * src/: main/execute.C, targets/cgi/pa_pool.C,
16156: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
16157: debug output fixed
16158:
16159: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
16160: main/pa_request.C: stack-stored items need extra .ref to prevent
16161: object_ptr from delete[them]
16162:
16163: * src/: classes/date.C, classes/op.C, classes/table.C,
16164: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
16165: include/pa_charset.h, main/Makefile.am, main/main.dsp,
16166: main/pa_charset.C, main/pa_common.C,
16167: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16168: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16169: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
16170: calls
16171:
16172: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
16173: couple mem leaks rusulted from old pooled::malloc usage.
16174: todo:find more like those
16175:
16176: * src/main/: compile.C, compile_tools.C: 2*2!
16177:
16178: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
16179: stackItem fixed [there were no string on stack before]
16180:
16181: * src/: main/execute.C, main/pa_request.C,
16182: types/pa_vmethod_frame.C: first letters out OK
16183:
16184: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
16185: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
16186: main/pa_string.C, main/untaint.C, types/pa_value.h,
16187: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
16188: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
16189: type not initialized with zeros :( while class fields of class
16190: types initialized with default constructors. learn C++
16191:
16192: * src/: classes/classes.awk, classes/double.C, classes/file.C,
16193: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
16194: classes/math.C, classes/xdoc.C, classes/xnode.C,
16195: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
16196: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
16197:
16198: 2003-02-14 paf
16199:
16200: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
16201: 13 link errors
16202:
16203: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
16204: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
16205: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16206: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
16207: errors :)
16208:
16209: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
16210: classes/hash.C, classes/mail.C, classes/op.C,
16211: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
16212: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
16213: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
16214: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
16215:
16216: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
16217: classes/table.C, include/pa_common.h, include/pa_globals.h,
16218: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
16219: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
16220: types/pa_vint.h, types/types.dsp: op compiled
16221:
16222: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
16223: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
16224: main/untaint.C, types/pa_vtable.h: string, response compiled
16225:
16226: 2003-02-07 paf
16227:
16228: * src/: classes/table.C, types/pa_vtable.h: table compiled
16229:
16230: 2003-02-06 paf
16231:
16232: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
16233: mail compiled
16234:
16235: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
16236: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
16237: types/pa_vfile.h, types/pa_vimage.h: image compiled
16238:
16239: * src/classes/: file.C, form.C: form compiled
16240:
16241: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
16242: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
16243: types/pa_vfile.C, types/pa_vfile.h: file compiled
16244:
16245: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
16246: types/pa_vmath.h: math compiled [win32]
16247:
16248: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
16249: types/pa_vstring.h: hash compiled
16250:
16251: 2003-02-04 paf
16252:
16253: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
16254: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16255: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
16256: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
16257: types/pa_vhash.h: hash 50% compiled
16258:
16259: * src/: classes/date.C, classes/file.C, classes/hash.C,
16260: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
16261: classes/string.C, classes/table.C, classes/xdoc.C,
16262: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
16263: main/pa_string.C: date compiled
16264:
16265: * src/classes/: classes.dsp, double.C: double compiled
16266:
16267: * src/: classes/date.C, classes/double.C, classes/file.C,
16268: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
16269: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16270: classes/string.C, classes/table.C, classes/void.C,
16271: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
16272: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
16273: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
16274: compiled
16275:
16276: * src/: classes/date.C, classes/double.C, classes/file.C,
16277: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16278: classes/math.C, classes/op.C, classes/response.C,
16279: classes/string.C, classes/table.C, classes/void.C,
16280: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16281: types/pa_vvoid.h: void compiled :)
16282:
16283: * src/: include/pa_globals.h, main/pa_cache_managers.C,
16284: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16285: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16286: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
16287: main/pa_string.C, main/pa_uue.C, main/untaint.C,
16288: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
16289: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
16290: types/pa_vresponse.C, types/pa_vstateless_class.C,
16291: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
16292: types/pa_wcontext.C, types/types.dsp: removed stupid
16293: value_includes.h
16294:
16295: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
16296: trying to remove stupid value_includes.h
16297:
16298: * src/main/pa_exec.C: pa_exec compiled on win32
16299:
16300: * src/main/pa_exec.C: libmain.a compiled on six [unix]
16301:
16302: * src/: include/pa_globals.h, include/pa_request.h,
16303: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
16304: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
16305: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
16306: types/pa_vrequest.C, types/pa_vstateless_class.C,
16307: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
16308:
16309: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
16310: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
16311: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
16312:
16313: * src/: include/pa_array.h, include/pa_config_includes.h,
16314: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
16315: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
16316: compiled
16317:
16318: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
16319: name conflicts)
16320:
16321: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
16322: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
16323: yelds "virtual memory exhausted" while trying to compile
16324: execute.C [eating up to 127MB]
16325:
16326: 2003-02-03 paf
16327:
16328: * src/: include/pa_config_includes.h, include/pa_hash.h,
16329: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
16330: main/pa_common.C, types/pa_value.C, types/pa_value.h,
16331: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
16332: types/pa_vint.h, types/pa_vjunction.h,
16333: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
16334: started gcc compiling pa_common compiled
16335:
16336: * src/: include/pa_exception.h, include/pa_pool.h,
16337: main/pa_exception.C: exception gcc change #1
16338:
1.116 moko 16339: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
16340: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 16341:
16342: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
16343:
16344: * src/types/pa_vtable.C: vtable compiled
16345:
16346: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
16347:
16348: * src/: include/pa_cache_managers.h, main/pa_request.C,
16349: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
16350:
16351: * src/types/pa_vstateless_class.C: vstateless_class compiled
16352:
16353: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
16354:
16355: * src/types/pa_vrequest.C: vrequest compiled
16356:
16357: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
16358: pa_vobject.C, pa_vobject.h: vobject compiled
16359:
16360: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
16361: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16362: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
16363: compiled
16364:
16365: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
16366:
16367: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
16368: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
16369: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
16370: compiled
16371:
16372: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16373: main.lib - 0 error(s), 0 warning(s)
16374:
16375: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16376: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
16377:
16378: 2003-01-31 paf
16379:
16380: * src/: include/pa_array.h, include/pa_operation.h,
16381: include/pa_request.h, main/execute.C, main/main.dsp,
16382: types/pa_vjunction.h: started last file from main library:
16383: execute
16384:
16385: * src/: include/pa_request.h, include/pa_sapi.h,
16386: main/compile.tab.C, main/compile.y, main/compile_tools.h,
16387: main/pa_request.C, targets/cgi/parser3.C,
16388: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
16389: types/pa_vhash.h: pa_request compiled
16390:
16391: * src/: classes/op.C, classes/string.C, include/pa_common.h,
16392: include/pa_globals.h, include/pa_request.h,
16393: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
16394: main/execute.C, main/main.dsp, main/pa_common.C,
16395: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16396: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
16397: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
16398: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
16399: types/types.dsp: most pa_request compiled
16400:
16401: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16402: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16403: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16404: classes/op.C, classes/response.C, classes/string.C,
16405: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16406: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16407: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16408: include/pa_config_fixed.h, include/pa_config_includes.h,
16409: include/pa_dictionary.h, include/pa_dir.h,
16410: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16411: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
16412: include/pa_pool.h, include/pa_request.h,
16413: include/pa_request_charsets.h, include/pa_request_info.h,
16414: include/pa_sapi.h, include/pa_socks.h,
16415: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16416: include/pa_stack.h, include/pa_string.h,
16417: include/pa_stylesheet_connection.h,
16418: include/pa_stylesheet_manager.h, include/pa_table.h,
16419: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16420: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16421: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
16422: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
16423: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16424: main/compile.C, main/compile.tab.C, main/compile.y,
16425: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16426: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
16427: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16428: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16429: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16430: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16431: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16432: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
16433: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
16434: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16435: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
16436: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
16437: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
16438: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
16439: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16440: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16441: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16442: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16443: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16444: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16445: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16446: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16447: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16448: types/pa_vresponse.h, types/pa_vstateless_class.C,
16449: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16450: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16451: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16452: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16453: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16454: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
16455:
16456: * ChangeLog, src/classes/classes.h, src/classes/op.C,
16457: src/include/pa_cache_managers.h, src/include/pa_charset.h,
16458: src/include/pa_charsets.h, src/include/pa_common.h,
16459: src/include/pa_dictionary.h, src/include/pa_exception.h,
16460: src/include/pa_exec.h, src/include/pa_pool.h,
16461: src/include/pa_request.h, src/include/pa_sapi.h,
16462: src/include/pa_sql_connection.h,
16463: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16464: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
16465: src/main/compile.tab.C, src/main/compile_tools.C,
16466: src/main/compile_tools.h, src/main/main.dsp,
16467: src/main/pa_charset.C, src/main/pa_charsets.C,
16468: src/main/pa_common.C, src/main/pa_dictionary.C,
16469: src/main/pa_exception.C, src/main/pa_exec.C,
16470: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16471: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
16472: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
16473: src/types/pa_vclass.h, src/types/pa_vcookie.C,
16474: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16475: src/types/pa_vdouble.h, src/types/pa_venv.h,
16476: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
16477: src/types/pa_vhash.h, src/types/pa_vimage.C,
16478: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
16479: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
16480: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16481: src/types/pa_vobject.C, src/types/pa_vobject.h,
16482: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16483: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16484: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16485: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
16486: src/types/pa_vstring.h, src/types/pa_vtable.h,
16487: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
16488: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
16489: died, long live StringPtr
16490:
16491: 2003-01-30 paf
16492:
16493: * src/: include/pa_charset.h, include/pa_request.h,
16494: include/pa_sql_driver_manager.h, main/compile.tab.C,
16495: main/compile.y, main/compile_tools.h, main/pa_request.C,
16496: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
16497:
16498: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
16499: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
16500: types/pa_vhash.h, types/pa_vmethod_frame.h,
16501: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16502: types/types.dsp: vstateless_class compiled
16503:
16504: * src/main/compile.C: compile compiled
16505:
16506: * src/: include/pa_array.h, include/pa_operation.h,
16507: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
16508: main/pa_table.C: compile_tools compiled
16509:
16510: * src/: include/pa_operation.h, main/compile.y,
16511: main/compile_tools.C, main/compile_tools.h: started
16512: compile_tools. vagues ideas of how to free compiled code
16513:
16514: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
16515: main/main.dsp, types/pa_value.C, types/pa_value.h,
16516: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
16517: compiled
16518:
16519: 2003-01-29 paf
16520:
16521: * src/: include/pa_globals.h, include/pa_request.h,
16522: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16523: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
16524: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
16525: compiled
16526:
16527: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
16528: now
16529:
16530: * src/: include/pa_array.h, include/pa_exception.h,
16531: include/pa_pool.h, main/pa_exception.C: gd compiled
16532:
16533: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
16534: compiled
16535:
16536: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16537: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
16538: types/pa_vfile.h: vfile compiled
16539:
16540: * src/: include/pa_common.h, include/pa_globals.h,
16541: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
16542: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
16543: types/pa_vform.C, types/pa_vform.h: vcookie compiled
16544:
16545: * src/: include/pa_exception.h, main/pa_cache_managers.C,
16546: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
16547: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
16548: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16549: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
16550:
16551: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
16552: main/main.dsp, main/untaint.C: more compiled
16553:
16554: * src/: include/pa_charsets.h, include/pa_request.h,
16555: include/pa_request_info.h, include/pa_string.h,
16556: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
16557: types/pa_vresponse.h: vrequest compiled
16558:
16559: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
16560: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
16561: pa_vresponse.h, pa_wcontext.h: vrequest compiled
16562:
16563: * src/: classes/classes.h, include/pa_charset.h,
16564: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
16565: include/pa_request.h, include/pa_string.h, main/main.dsp,
16566: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
16567: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
16568: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
16569: types/pa_vrequest.C, types/pa_vrequest.h,
16570: types/pa_vstateless_class.h, types/pa_vstring.h,
16571: types/pa_vvoid.h: vrequest,vdouble,vint compiled
16572:
16573: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
16574: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
16575: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
16576: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
16577: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16578: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
16579: types/pa_vobject.h, types/pa_vstateless_class.h,
16580: types/pa_vstateless_object.h, types/pa_vstatus.h,
16581: types/pa_vstring.h, types/types.dsp: vmath compiled
16582:
16583: 2003-01-28 paf
16584:
16585: * src/: classes/classes.h, classes/date.C, classes/file.C,
16586: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
16587: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
16588: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
16589: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
16590: compile_tools
16591:
16592: * src/: include/pa_charset.h, include/pa_exception.h,
16593: include/pa_request.h, include/pa_string.h, main/untaint.C:
16594: untaint compiled
16595:
16596: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
16597: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
16598: more compiled. struck with string::store_to needing to know
16599: source/client charsets
16600:
16601: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
16602: types/pa_vfile.h: uue compiled
16603:
16604: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
16605: table compiled
16606:
16607: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
16608: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
16609:
16610: * src/: include/pa_charset.h, main/pa_charset.C,
16611: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
16612: introduced]
16613:
16614: * src/: classes/date.C, include/pa_charset.h,
16615: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
16616: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
16617: pa_charsets compiled
16618:
16619: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
16620: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
16621:
16622: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
16623: common compiled
16624:
16625: * src/: include/pa_charsets.h, main/pa_charsets.C,
16626: main/pa_sql_driver_manager.C: pa_charsets compiled
16627:
16628: * src/: include/pa_array.h, include/pa_charset.h,
16629: include/pa_charsets.h, include/pa_pool.h,
16630: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16631: include/pa_stack.h, include/pa_string.h,
16632: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
16633: sql_driver_manager compiled
16634:
16635: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
16636: letter i with two dots added to koi, all ukranian letters added
16637: to win1251.
16638:
16639: typographic simbol 0xb9 deleted from win1251 [strange one & were
16640: abscent from koi]
16641:
16642: 2003-01-27 paf
16643:
16644: * src/: include/pa_exception.h, include/pa_sql_connection.h,
16645: include/pa_sql_driver_manager.h, include/pa_string.h,
16646: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
16647: sql/pa_sql_driver.h: paused on sql_manager
16648:
16649: * src/: include/pa_cache_managers.h, include/pa_pool.h,
16650: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16651: include/pa_stack.h, main/pa_sql_driver_manager.C,
16652: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
16653:
16654: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
16655: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16656: include/pa_table.h, main/pa_sql_driver_manager.C,
16657: main/pa_table.C: table compiled
16658:
16659: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
16660: cache_managers compiled
16661:
16662: * src/: include/pa_array.h, include/pa_charset.h,
16663: include/pa_pool.h, main/pa_charset.C: charset compiled
16664:
16665: * src/: include/pa_pool.h, main/pa_common.C: common compiled
16666:
16667: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
16668: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16669: main/pa_string.C, types/pa_value.C, types/pa_value.h,
16670: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
16671: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
16672:
16673: 2003-01-24 paf
16674:
16675: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
16676: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
16677: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16678: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
16679: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
16680: types/pa_vint.h, types/pa_vjunction.h,
16681: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16682: types/pa_vstatus.h, types/pa_vstring.h: more patched
16683:
16684: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
16685: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
16686: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
16687: main/pa_string.C, main/pa_table.C: string compiled
16688:
16689: * src/: include/pa_array.h, include/pa_common.h,
16690: include/pa_dictionary.h, include/pa_exception.h,
16691: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
16692: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
16693: main/pa_string.C: dictionary compiled
16694:
16695: 2003-01-23 paf
16696:
16697: * src/: include/pa_array.h, include/pa_common.h,
16698: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
16699: include/pa_request.h, include/pa_string.h, main/pa_common.C,
16700: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
16701: types/pa_value.h: resurrected pool in new sense: now it's
16702: factory, producing&accounting memory chunks for read[autofree]
16703: buffers
16704:
16705: * src/: include/pa_array.h, include/pa_exception.h,
16706: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
16707: main/pa_exception.C, main/pa_table.C: table compiled
16708:
16709: * src/: classes/image.C, classes/op.C, include/pa_array.h,
16710: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
16711: include/pa_pool.h, include/pa_pragma_pack_begin.h,
16712: include/pa_pragma_pack_end.h, include/pa_sapi.h,
16713: include/pa_string.h, include/pa_table.h, include/pa_types.h,
16714: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
16715: main/pa_table.C: aint that easy
16716:
16717: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
16718: main/main.dsp: continued with Hash
16719:
16720: * src/main/pa_common.C: connect_string allocated on heap[wes on
16721: stack] now. and exception can be reported OK now [can be reported
16722: outside of pro c with that stack]
16723:
16724: 2003-01-22 paf
16725:
16726: * src/: include/pa_array.h, include/pa_charset.h,
16727: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
16728: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
16729: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
16730: base: contains references_count. auto_ptr template calls
16731: add_ref/release
16732:
16733: 2003-01-21 paf
16734:
16735: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16736: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16737: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16738: classes/op.C, classes/response.C, classes/string.C,
16739: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16740: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16741: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16742: include/pa_config_fixed.h, include/pa_config_includes.h,
16743: include/pa_dictionary.h, include/pa_dir.h,
16744: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16745: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16746: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16747: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16748: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16749: include/pa_stack.h, include/pa_string.h,
16750: include/pa_stylesheet_connection.h,
16751: include/pa_stylesheet_manager.h, include/pa_table.h,
16752: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16753: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16754: lib/pcre/pcre_parser_ctype.c, main/compile.C,
16755: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16756: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16757: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16758: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16759: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16760: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16761: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16762: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16763: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16764: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16765: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16766: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16767: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
16768: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
16769: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16770: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16771: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16772: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16773: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16774: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16775: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16776: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16777: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16778: types/pa_vstateless_object.h, types/pa_vstatus.C,
16779: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16780: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16781: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16782: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16783: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
16784: 2002->2003
16785:
16786: 2003-01-16 paf
16787:
16788: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
16789: src/main/pa_globals.C: http:// introducing $.any-status(1)
16790:
16791: * operators.txt, src/include/pa_config_fixed.h,
16792: src/main/pa_common.C: http request now return status. and not
16793: fail on status!=200
16794:
16795: 2003-01-15 paf
16796:
16797: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
16798:
16799: 2003-01-14 paf
16800:
16801: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
16802: mkinstalldirs: removed some ancient files [they in / really]
16803:
16804: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
16805: regretfully needed patch in two places. in config_fixed.h made
16806: stubs for lib to compile in MSVC
16807:
16808: 2003-01-13 paf
16809:
16810: * config.guess, config.sub, ltmain.sh: removed last piece of
16811: configure.in(libtool) hacks
16812:
1.116 moko 16813: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 16814: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
16815: ltdl.h: moved to latest libtool (1.4.3)
16816:
16817: 2003-01-10 paf
16818:
16819: * src/lib/ltdl/: configure, configure.in: PROG_NM
16820:
16821: * src/main/pa_globals.C: moved to latest xml lib versions, changed
16822: patches. libxml2 >= 2.5.1
16823: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
16824: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
16825: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16826:
16827: * INSTALL: moved to latest versions of xml libs libxml2 >=
16828: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
16829: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
16830: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16831:
16832: 2003-01-09 paf
16833:
16834: * INSTALL: xml,xslt,gdome lib urls updated
16835:
16836: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 16837: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 16838: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 16839: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
16840: 1.7.2
1.95 moko 16841:
16842: * depcomp: moving to automake 1.7.2
16843:
16844: 2002-12-27 paf
16845:
16846: * src/include/pa_version.h: 0007
16847:
16848: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
16849: outdated parts, made links to language docs
16850:
16851: * src/include/pa_config_auto.h.in: comment
16852:
16853: 2002-12-26 paf
16854:
16855: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
16856: not contain trailing / fixed.
16857:
16858: * INSTALL: changing SAFE_MODE politics
16859:
16860: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
16861:
16862: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
16863:
16864: 2002-12-25 paf
16865:
16866: * src/main/pa_globals.C: optimized-xml
16867:
16868: * src/main/pa_globals.C: optimized-as-is
16869:
16870: 2002-12-24 paf
16871:
16872: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
16873: fixed [were really called with zero size when .html?a=&b=]
16874:
16875: * src/classes/mail.C: $MAIL in @conf now invalid when configured
16876: with --with-sendmail
16877:
16878: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
16879: fixed]
16880:
16881: 2002-12-23 paf
16882:
16883: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
16884: ignoring parameters & were storing only string with default
16885: expires
16886:
16887: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
16888: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
16889: December 23, 2002 4:22 AM Subject: bug â
16890: Charset::transcode_buf2xchar
16891:
16892: 2002-12-20 paf
16893:
16894: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
16895: non-cgi [script] runs
16896:
16897: 2002-12-19 paf
16898:
16899: * INSTALL: --without-iconv recommended [it crashes on some systems
16900: [tested on elik]] moreover, it's not needed there [parser
16901: registers charsets itself]
16902:
16903: * INSTALL: --without-iconv recommended [it crashes on some systems
16904: [tested on elik]]
16905:
16906: * operators.txt, src/include/pa_globals.h,
16907: src/include/pa_request.h, src/main/pa_globals.C,
16908: src/main/pa_request.C: $response:download
16909:
16910: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
16911: compiler [win32]].
16912:
16913: 2002-12-18 paf
16914:
16915: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
16916:
16917: 2002-12-17 paf
16918:
16919: * src/targets/cgi/parser3.C: merged die&iis changes
16920:
16921: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
16922: to exit(1) 2. more flexible iilegal call check
16923:
16924: 2002-12-16 paf
16925:
16926: * ltmain.sh: some automakes silly insist on having this handy
16927:
16928: * src/main/untaint.C: filespec russian small 'r' changed to latin
16929: 'p' bug fix
16930:
16931: 2002-12-15 paf
16932:
16933: * src/main/untaint.C: filespec russian small 'r' changed to latin
16934: 'p'
16935:
16936: * configure.in, src/include/pa_config_auto.h.in,
16937: src/main/compile.C, src/main/pa_common.C: merged small changes
16938: from branch 6 to HEAD
16939:
16940: * src/main/compile.C: removed warning
16941:
16942: * src/main/pa_common.C: ftruncate having checked
16943:
16944: * configure.in, src/include/pa_version.h: new version
16945:
16946: 2002-12-14 paf
16947:
16948: * src/classes/table.C: removed unnecessary code
16949:
16950: * src/sql/pa_sql_driver.h: exception type fixed
16951:
16952: 2002-12-09 paf
16953:
16954: * src/types/pa_vvoid.h: $void.store[now] error
16955:
16956: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16957:
16958: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
16959: tries to write core dump
16960:
16961: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16962:
16963: * src/: classes/hash.C, classes/string.C, classes/table.C,
16964: classes/void.C, main/pa_sql_driver_manager.C,
16965: sql/pa_sql_driver.h: changed exception handling mech in sql
16966: handlers #2
16967:
16968: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
16969: exception handling mech in sql handlers
16970:
16971: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
16972: handlers
16973:
16974: * src/: classes/hash.C, classes/string.C, classes/table.C,
16975: classes/void.C, main/pa_sql_driver_manager.C,
16976: sql/pa_sql_driver.h: changed exception handling mech in sql
16977: handlers
16978:
1.116 moko 16979: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
16980: to write makefile which used libtool to install things, which is
16981: not needed
1.95 moko 16982:
16983: 2002-12-06 paf
16984:
16985: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
16986: $hash.fields -- pseudo field to make 'hash' more like 'table'
16987:
16988: 2002-12-05 paf
16989:
16990: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
16991: cc/bcc OK now
16992:
16993: * src/main/untaint.C: mail header closed properly
16994:
16995: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
16996: header ',' allowed. still bugs in smtp [only one receiptient
16997: works, cc, bcc ignored now, and MAILED ;)]
16998:
16999: [strncpy killed, memnchr used]
17000:
17001: * src/main/pa_table.C: table-copy now current=0
17002:
17003: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
17004: lowlevel proc
17005:
17006: * src/targets/cgi/parser3.C: more checks on
17007: http://domain/parser.cgi start [maybe some getenv returns "",
17008: checked that now
17009:
17010: * src/targets/cgi/parser3.C: more checks on
17011: http://domain/parser.cgi start [maybe some getenv returns "",
17012: checked that now
17013:
17014: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
17015: out-of-mem errors reached log]
17016:
17017: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
17018: mail:send MIME-Version default
17019:
17020: * src/main/main.dsp: pa_version included into main.dsp
17021:
17022: 2002-12-04 paf
17023:
17024: * src/types/pa_vform.C: $form:field string value cut by premature 0
17025:
17026: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
17027: lib/libltdl -> lib/ltdl Win32 changes. s
17028:
17029: * src/classes/classes.awk: more strict *.C$
17030:
17031: * gnu.dsp: restored
17032:
1.116 moko 17033: * configure.in, gnu.dsp, src/lib/Makefile.am,
17034: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
17035: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
17036: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
17037: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
17038: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
17039: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
17040: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
17041: now created with /configure, not ltdl/configure, so it does have
17042: no problems with automake. ltdl/configure
17043: AC_OUTPUT(Makefile<<removed)
1.95 moko 17044:
17045: 2002-12-02 paf
17046:
17047: * operators.txt: removed outdated status:db
17048:
17049: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
17050: src/main/pa_common.C, src/main/pa_request.C,
17051: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
17052: tainted parts becomes http-header
17053:
17054: 2002-11-29 paf
17055:
17056: * src/classes/date.C, src/classes/image.C, operators.txt: exif
17057: dates now objects of type date
17058:
17059: * src/classes/image.C: file.seek removed [it were used in image.C
17060: only, and for parser user this means that jpeg image has bad
17061: size in fragment's header] now used image.format
17062:
17063: * src/: include/pa_common.h, main/pa_common.C,
17064: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
17065: now handled exactly like $response:header values. e.g. can be
17066: hash [can have subattributes] & contain date values.
17067:
17068: * src/main/pa_common.C: http:// param values lang forced URI
17069:
17070: * src/main/pa_common.C: http:// tainted partes now %xx
17071:
17072: 2002-11-28 paf
17073:
17074: * operators.txt: http.timeout
17075:
17076: * src/classes/image.C: ^image.length now counts interchar space.
17077: plus space after last char
17078:
17079: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
17080:
17081: * src/classes/image.C: ^image.font width measurer now scans full
17082: height [were -1]
17083:
17084: * configure.in: stopped double libltdl/Makefile generation
17085:
17086: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
17087: chars [one top horizontal line of 1pixel height were missing]
17088:
17089: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
17090: 'false' to go into (Hash *) parameter
17091:
17092: 2002-11-27 paf
17093:
17094: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
17095: types/pa_vmail.C: response:body[file] if file nows it's name now
17096: returns content-disposition: >>attachment<<
17097:
17098: * src/classes/image.C: ^image.font << bad font file-size now
17099: properly reported
17100:
17101: 2002-11-26 paf
17102:
17103: * src/main/pa_request.C: fixed lang in reponse header
17104:
17105: * src/main/pa_common.C: utf8 prefix ignored @read text
17106:
17107: * operators.txt, src/main/pa_common.C: http:// response status!=200
17108: made exception: http.status with source=bad status#
17109:
17110: 2002-11-25 paf
17111:
17112: * configure.in, src/classes/image.C,
17113: src/include/pa_config_auto.h.in,
17114: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 17115: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
17116: const void related probs fixed
1.95 moko 17117:
17118: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
17119:
17120: $file[^file::load[http://there]] $file.SERVER
17121:
17122: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
17123: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
17124: http options [invalid onces now reported] made default
17125: user-agent: paf
17126:
17127: * operators.txt, src/classes/file.C, src/classes/table.C,
17128: src/classes/xdoc.C, src/include/pa_common.h,
17129: src/include/pa_globals.h, src/main/pa_common.C,
17130: src/main/pa_globals.C, src/main/pa_request.C,
17131: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
17132: now understand http:// prefix and additional params, sample:
17133: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
17134: $.USER-AGENT[parser3] ]]
17135:
17136: 2002-11-22 paf
17137:
17138: * src/classes/image.C, src/include/pa_globals.h,
17139: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
17140: src/types/pa_vimage.h, operators.txt: $image.exif support
17141: $image.exif.DateTime & co
17142:
17143: 2002-11-21 paf
17144:
17145: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
17146: _PASS_APPENDED)
17147:
17148: * src/classes/image.C: jpeg size measure fixed: were badly skipping
17149: EXIF information [were big block and it's size were considered
17150: negative :(]
17151:
17152: * operators.txt, src/classes/image.C, src/include/pa_common.h,
17153: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
17154: internals rewritten. no there's reader.seek, and all's ready for
17155: EXIF extraction [now we fail to measure files with EXIF info]
17156:
17157: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
17158: O_TRUNC truncates even exclusevely write-locked file [thanks to
17159: Igor Milyakov <virtan@rotabanner.com> for discovering]
17160:
17161: 2002-11-20 paf
17162:
17163: * src/targets/cgi/parser3.C: logging @signal += query_string
17164:
17165: * configure.in, src/include/pa_config_auto.h.in,
17166: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
17167: comment
17168:
17169: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
17170:
17171: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17172: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
17173: currently processed document SIGPIPE >> interrupts request
17174: processing [exception = DB rollback]
17175:
17176: * src/main/pa_exec.C: comment
17177:
17178: * src/main/pa_exec.C: pa_exec: data written only if size>0
17179:
17180: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
17181: << disable HTTP-POST repassing
17182:
17183: * src/: include/pa_config_fixed.h, main/pa_common.C,
17184: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
17185: pipe read errors now checked
17186:
17187: 2002-11-19 paf
17188:
17189: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
17190: CGI: Illegal call
17191:
17192: 2002-11-01 paf
17193:
17194: * src/main/execute.C: comment
17195:
17196: 2002-10-31 paf
17197:
17198: * src/main/execute.C: found out why, checked that for now. todo:
17199: find out a way for that user could do that
17200:
17201: * src/types/pa_vstateless_object.h: object put replaces static
17202: parent if any
17203:
17204: * src/types/pa_vobject.C: object put replaces static parent if any
17205:
17206: * src/: classes/form.C, classes/mail.C, classes/op.C,
17207: classes/xnode.h, main/compile.tab.C, main/execute.C,
17208: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17209: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17210: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17211: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17212: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17213: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17214: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17215: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17216: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17217: types/pa_vstateless_object.h, types/pa_vstatus.C,
17218: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17219: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17220: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17221: types/pa_wwrapper.h: static fix merged
17222:
17223: * src/: main/compile.tab.C, types/pa_vobject.C: killed
17224: $virtual_fields in dynamic, but one can reach derived
17225: static[class] variable from base
17226:
17227: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
17228: types/pa_vobject.C, types/pa_vobject.h,
17229: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
17230: statics, left $virtual_fields in dynamic
17231:
17232: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
17233: one can't remember derivates in base class: there's so many of
17234: them. also there can be no virtual method calls in static
17235: classes
17236:
17237: * src/: classes/form.C, classes/mail.C, classes/op.C,
17238: classes/xnode.h, main/execute.C, main/pa_request.C,
17239: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17240: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17241: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17242: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17243: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17244: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17245: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17246: types/pa_vresponse.C, types/pa_vresponse.h,
17247: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17248: types/pa_vstateless_object.h, types/pa_vstatus.C,
17249: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17250: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17251: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17252: types/pa_wwrapper.h: static call $self fixed
17253:
17254: * src/main/execute.C: comment
17255:
17256: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
17257: ^process[$caller.self]{...} now compiles to last derived object
17258: part of that 'self'
17259:
17260: 2002-10-29 paf
17261:
17262: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
17263: re-passing [iis to blame]
17264:
17265: * src/classes/string.C: changed string.save to pass current sql
17266: connection to cstr thus one can ^connect[some server]{
17267: $s[insert into table x (x) values (^taint[sql]{value})]
17268: ^s.save[some.sql] } and he'd get in some.sql file code with
17269: properly escaped. [tried in mssql->mysql export->import of
17270: binary data]
17271:
17272: 2002-10-25 paf
17273:
17274: * src/types/pa_vresponse.C: case insensitive response user fields
17275: get/put
17276:
17277: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17278: types/pa_vresponse.C: saving for maybe-future
17279:
17280: 2002-10-23 paf
17281:
17282: * operators.txt, src/classes/table.C: ^table.hash{code}...
17283: ^table.hash(expr)...
17284:
17285: * src/types/pa_vmail.C: email whitespace trimBoth-ed
17286:
17287: 2002-10-22 paf
17288:
17289: * src/types/: pa_vform.C, pa_vform.h: removed needless
17290: VForm::Append...(...Value)
17291:
17292: * src/main/execute.C: $.name outside of $name[...] checked
17293:
17294: * src/main/: compile.tab.C, compile.y: lexer changed to fix
17295: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
17296:
17297: 2002-10-21 paf
17298:
17299: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
17300: $form:qtail $form:imap.x/y
17301:
17302: * operators.txt, src/types/pa_vform.C: $form:nameless =
17303: "?value&...", "...&value&...", "...&value"
17304:
17305: * operators.txt, src/types/pa_vform.C: $form:image-map
17306:
17307: * operators.txt, src/classes/file.C: /some/page.html:
17308: ^file:fullpath[a.gif] => /some/a.gif
17309:
17310: 2002-10-17 paf
17311:
17312: * src/main/: compile.tab.C, compile.y: operators precedence changed
17313: a little: logical not and bitwise negation precedence made
17314: highest, << and >> bitshits precedence made equal [were << higher
17315: than >>]
17316:
17317: * src/classes/op.C: exception handling fixed [were bad with
17318: contexts]
17319:
17320: 2002-10-16 paf
17321:
17322: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17323: main/pa_request.C: Request::self considered equal to
17324: VMethodFrame::self, and removed, Request::get_self() mapped to
17325: VMethodFrame.self()
17326:
17327: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
17328: $hash in open field now gives old good error meesage
17329:
17330: 2002-10-15 paf
17331:
17332: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
17333: use ^if($junction is junction){was and now true}
17334:
17335: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
17336: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
17337: types/pa_vxnode.C: xml->parser strings now have origin, which
17338: points to place where value left xml library and came to parser:
17339: place of dom field extraction/call
17340:
17341: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
17342: main/compile.tab.C, main/compile.y, main/execute.C,
17343: types/pa_vmethod_frame.h: removed last pieces of old code
17344: allowing $junction.xxx at compile time
17345:
17346: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
17347: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
17348: objects also considered [were only classes]
17349:
17350: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
17351: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
17352: with CLASS self. [ (request&method_frame).self temporarily
17353: changed ]
17354:
17355: * src/classes/: hash.C, op.C: method_frame now always changed, with
17356: no exception to native calls. for&foreach changed to use
17357: method_frame.caller for their var's name context
17358:
17359: * src/: main/execute.C, targets/cgi/parser3.C,
17360: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
17361: compiling to system classes disabled
17362:
17363: * operators.txt, src/classes/op.C:
17364: ^process[$caller.CLASS]{code-string} added
17365:
17366: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
17367: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
17368: src/types/Makefile.am, src/types/pa_vjunction.C,
17369: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
17370: src/types/types.dsp: removed $junction.get $junction.set[]
17371: introducing $caller
17372:
17373: * src/types/pa_value.h: removed outdated comments. doxygen would
17374: find them lower by inheritance tree
17375:
17376: * src/types/pa_vjunction.C: ident
17377:
17378: 2002-10-14 paf
17379:
17380: * src/classes/op.C: process compiles to code's class class
17381:
17382: * src/: classes/form.C, classes/mail.C, classes/op.C,
17383: include/pa_request.h, main/compile.C, main/compile.tab.C,
17384: main/compile.y, main/execute.C, main/pa_request.C,
17385: types/pa_vstateless_class.h: operators now main-class-methods
17386:
17387: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
17388: better stack trace [has "call" & co there]
17389:
17390: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17391: operators @auto now executed in MAIN context
17392:
17393: * src/main/execute.C: operator execution context now = MAIN, not
17394: closest stack frame
17395:
17396: @touchit[] $i[after]
17397:
17398: ----t.html $i[before] << local ^touchit[] $i << now 'before',
17399: were 'after'
17400:
17401: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
17402: 'after'
17403:
17404: * src/main/execute.C: comment
17405:
17406: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
17407: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
17408: action]
17409:
17410: * src/types/pa_vxnode.C: misreplace fixed
17411:
17412: * configure, configure.in, src/include/pa_config_auto.h.in,
17413: src/types/pa_vstatus.C, operators.txt:
17414: $status:rusage.tv_secs/usecs introduced
17415:
17416: 2002-10-09 paf
17417:
17418: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
17419: on empty string [or uses (default)]
17420:
17421: 2002-10-08 paf
17422:
17423: * src/main/untaint.C: mail header quoted printable changed after
17424: RFC reread
17425:
17426: * operators.txt: plan on ^if(method
17427:
17428: * src/types/pa_vxnode.C: misreplace
17429:
17430: 2002-09-24 paf
17431:
1.116 moko 17432: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 17433:
17434: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
17435: mailreceive would compile on freebsd now
17436:
17437: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
17438: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 17439: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
17440: mailreceive would compile on freebsd now
1.95 moko 17441:
17442: * src/: classes/file.C, main/untaint.C: 1. file spec language
17443: changed: now there are only few chars are untainted: * ? ' " < >
17444: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
17445: one should use ^untaint[uri]{...} now]
17446:
17447: 2. $list[^file:list[dir]] now returns simply tainted names in
17448: $list.name, not tainted as filespec
17449:
17450: @russianindex[] #dir with files with russian-lang names
17451: $where[dir]
17452:
17453: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
17454: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
17455:
17456: 2002-09-23 paf
17457:
17458: * src/types/pa_vdouble.h: double->int round added
17459:
17460: * src/classes/date.C: date bug fix, now
17461: round(floatDays*secondsPerDay)
17462:
17463: * src/classes/date.C: date bug fix, now
17464: round(floatDays*secondsPerDay)
17465:
17466: 2002-09-20 paf
17467:
17468: * src/main/execute.C: code junction calls disabled [before: code
17469: was compiled in such a way, that there were no code-junctions in
17470: OP_CALL]
17471:
17472: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
17473:
17474: @badjunctioncallinside[code] ^code[]
17475:
17476: * src/main/: compile.tab.C, compile.y: changed grammer on junction
17477: expanding to include ^junction.method
17478:
17479: * src/main/pa_common.C: -d "DIR/" now true
17480:
17481: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
17482: as internal xdoc encoding, and after decoding attributes set by
17483: dom functions now encoded OK, not as digital entities
17484:
17485: * src/classes/xdoc.C: empty transform result, being taken as file
17486: now returns empty file, not raises stupid error about "stat-ed
17487: file"
17488:
17489: * src/types/pa_vhash.h: hash.foreach modification of existing keys
17490: allowed
17491:
17492: * src/types/types.dsp: introducing $junction.get/put(1) one can
17493: write iterators now:
17494:
17495: ^user-foreach[key;value]{$key=$value<br>}
17496:
17497: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17498: $code.value($i*2) $code }
17499:
17500: * src/main/compile_tools.h: mistype
17501:
1.116 moko 17502: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
17503: thus taking linking options configure changes into account [were:
17504: ignoring]
1.95 moko 17505:
17506: * src/types/: pa_vjunction.C, Makefile.am: introducing
17507: $junction.get/put(1) one can write iterators now:
17508:
17509: ^user-foreach[key;value]{$key=$value<br>}
17510:
17511: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17512: $code.value($i*2) $code }
17513:
17514: * src/: include/pa_opcode.h, include/pa_request.h,
17515: main/compile.tab.C, main/compile.y, main/execute.C,
17516: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
17517: introducing $junction.get/put(1) one can write iterators now:
17518:
17519: ^user-foreach[key;value]{$key=$value<br>}
17520:
17521: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17522: $code.value($i*2) $code }
17523:
17524: 2002-09-19 paf
17525:
1.116 moko 17526: * Makefile.am: new: make commit
1.95 moko 17527:
17528: * aclocal.m4: forced to be older
17529:
17530: 2002-09-18 paf
17531:
17532: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
17533: src/main/compile.y, src/main/execute.C: << >> int shifts
17534:
17535: * src/: include/pa_common.h, include/pa_request.h,
17536: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
17537: - now this - fatal error
17538:
17539: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
17540: that one can pass binary data there
17541:
17542: * src/: classes/date.C, classes/double.C, classes/file.C,
17543: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17544: classes/op.C, classes/response.C, classes/string.C,
17545: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17546: include/pa_request.h: pa_request contexts made privated, plus
17547: get_{self/method_frame} to read. Request_context_saver used in
17548: ^try to save flang too. [were not saved]
17549:
17550: * src/types/pa_vresponse.C: header value chains joined before
17551: output, this should help $.subject[$var $var] from being
17552: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
17553:
17554: 2002-09-17 paf
17555:
17556: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
17557: removed changes, operators executed with calling self. lots of
17558: code with ^include code relies on defined/defining self variables
17559:
17560: $a[1] ^include[print_a.p] print_a.p: $a
17561:
17562: ^include[set_a.p] a=$a set_a.p: $a[1]
17563:
17564: * src/: classes/op.C, main/execute.C, main/pa_request.C,
17565: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
17566: types/pa_vstateless_class.h: operators now executed with MAIN
17567: self. it's for ^include sake, too strong a change
17568:
17569: * src/classes/op.C: made place for ^process to compile it's code to
17570: in case of no self
17571:
17572: * src/main/execute.C: found ancient param to Junction, removed.
17573: allowed passing self to native_code_operators [for ^process to
17574: work, she needs self]
17575:
17576: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
17577: types/pa_vstateless_class.h: found ancient param to Junction,
17578: removed. allowed passing self to native_code_operators [for
17579: ^process to work, she needs self]
17580:
17581: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
17582: types/pa_value.h, types/pa_vmethod_frame.h,
17583: types/pa_vstateless_class.h: allowed Request.self to be 0,
17584: checked that in VMethodFrame get/put and $self.
17585:
17586: * src/classes/: table.C, xdoc.C: table::sql options table::create
17587: copy options options checked, wrong option now fatal error
17588:
17589: * src/main/pa_string.C: string.replace fixed [were missing words on
17590: pieces boundaries]
17591:
1.150 moko 17592: * configure, configure.in: .so now detected [can be .sl on hpux,
17593: .dll on cygwin, .so in other cases)
1.95 moko 17594:
17595: * configure, configure.in: .so now detected [can be .sl on hpux,
17596: .dll on cygwin, .so in other cases)
17597:
17598: * operators.txt, src/classes/hash.C, src/classes/table.C,
17599: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
17600: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
17601: record taken [were last]
17602:
17603: * src/: classes/hash.C, classes/table.C,
17604: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
17605: now errors
17606:
17607: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
17608:
17609: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
17610: ,2,3]
17611:
17612: 2002-09-16 paf
17613:
17614: * src/classes/file.C: file::cgi line ends can be both unix & dos.
17615: and they can be unix [\n\n] on win when 'use CGI' used, it causes
17616: stdout to be binary. now detected closest header break.
17617:
17618: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
17619: closed right
17620:
17621: 2002-09-13 paf
17622:
17623: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
17624: src/main/compile_tools.h: (expression #comment)
17625:
17626: (multiline expression #comment line2 #comment )
17627:
17628: (expression #comment with (brackets) comment) << OK
17629:
17630: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
17631: bitwise !|| numerical xor now [preparing for expression
17632: #comments]
17633:
17634: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
17635: error
17636:
17637: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
17638: cheched in pa_socks.C
17639:
1.116 moko 17640: * configure, configure.in, src/include/pa_config_auto.h.in:
17641: HAVE_WINSOCK_H created in configure.in
1.95 moko 17642:
17643: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
17644: cookie date now clean [were mistakenly tainted & that worked bad
17645: with opera -- 'happily' that worked OK with msie]
17646:
17647: 2002-09-12 paf
17648:
17649: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
17650: VClass get_element now first looks to fields, next to methods &
17651: co todo: the rest reason: more speed
17652:
17653: * src/main/untaint.C: quoted printable encoding stops before
17654: \s*<...>$
17655:
17656: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
17657: stops before <...>$
17658:
17659: 2002-09-11 paf
17660:
17661: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
17662: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
17663: forgot to check users of those funcs. not all were using that
17664: return value convention
17665:
17666: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
17667: windows-1254 added
17668:
17669: 2002-09-10 paf
17670:
17671: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
17672: VCodeFrame parent param were specified badly
17673:
17674: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
17675: WWrapper which used in constructing objects(second param to sql
17676: method) ^...sql{}[$.default{code}] now has parent, wich helps
17677: code in hash to survivi
17678:
17679: * src/: include/pa_request.h, main/execute.C: removed redundant
17680: param to execute [stack said 'thanks']
17681:
17682: * src/: classes/op.C, main/execute.C, types/pa_value.C,
17683: types/pa_value.h, types/pa_vcode_frame.h,
17684: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17685: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
17686: responsibility to wcontext
17687:
17688: * src/classes/file.C: decided not to log exec's with stderr, that
17689: could be warnings, and it's up to scritper to log/show them
17690:
17691: * src/: classes/double.C, main/execute.C: double:sql badly called
17692: write_assign_lang, not write_no_lang, thus doing unnecessary
17693: double/string converstion, which were loosing time&precesion
17694:
17695: * src/: main/pa_charset.C, types/pa_vmail.C:
17696: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
17697: case of unfinished in buffer processing, causing accidental
17698: transcode stop [in case that source enc != utf-8 & there is
17699: incomplete utf-8 sequence at the end of 16000block iside of
17700: libxml lib] tfm readed & code updated
17701:
17702: 2002-09-04 paf
17703:
17704: * configure: makes with sjlj
17705:
17706: * INSTALL, src/include/pa_config_fixed.h,
17707: src/include/pa_sql_connection.h,
17708: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
17709: checked. on win32 it made default
17710:
17711: * src/include/pa_config_auto.h.in: sjlj define
17712:
17713: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
17714: can not work with longjump/throw pair, and one must switch that
17715: on there. todo: detect that automatically]
17716:
17717: * src/types/pa_vxnode.C: removed too strong checks of
17718: xnode.elements. now, for instance, if element does not have any
17719: attributes, $xnode.attributes is void, not error
17720:
17721: 2002-09-02 paf
17722:
17723: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
17724: removed double_result, didn't help
17725:
17726: * src/main/execute.C: double_result made to move that var away from
17727: hungry g++ optimizer (-O2), before: it were optimized and
17728: comparison operators worked badly
17729:
17730: * src/types/pa_vdate.h: removed debug
17731:
1.116 moko 17732: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 17733:
17734: * src/main/execute.C: fixed numeric < & co so that thay now use
17735: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
17736: unknown reason.
17737:
17738: 2002-08-29 paf
17739:
17740: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
17741: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
17742: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
17743: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
17744: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
17745: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
17746: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
17747: [called less frequent, allowed to remove ugly
17748: Junction.change_context-s from many places, switch,
17749: mail:send..html{}, ..] request.root renamed to method_frame [more
17750: easyreading] ancient {...PUSH/POPs...} changed to stack vars
17751: [speed up]
17752:
17753: 2002-08-28 paf
17754:
17755: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
17756: tainted
17757:
17758: * src/types/pa_vcookie.C: fixed cookie delete when
17759: $cookie:name[$.value[]]
17760:
17761: * operators.txt, src/classes/string.C:
17762: ^string.split[delim[;options]]
17763:
17764: 2002-08-27 paf
17765:
1.116 moko 17766: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 17767:
17768: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
17769: delimiter
17770:
17771: * INSTALL: recommended latest gmime 1.0.5
17772:
17773: 2002-08-26 paf
17774:
17775: * configure, configure.in: apache13/hook added to make dist.
17776:
17777: 2002-08-23 paf
17778:
17779: * src/: include/pa_common.h, main/pa_common.C,
17780: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
17781: beside binary [cgi, isapi] not accessible [due to bad rights or
17782: whatever] it's error now
17783:
17784: 2002-08-21 paf
17785:
1.116 moko 17786: * Makefile.am: can use: make happy equals to make update install
1.95 moko 17787:
17788: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17789: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
17790: class". compiled as if here they named base class
17791:
17792: * src/main/pa_string.C: fixed bad language bug, [were wrong string
17793: cloning constructor]
17794:
17795: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
17796:
1.150 moko 17797: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 17798: $mail.received.file.value.content-type fixed
17799:
17800: 2002-08-20 paf
17801:
17802: * src/classes/file.C: fixed language of file:file result
17803:
17804: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
17805: from 3.0.0005
17806:
17807: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
17808:
17809: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
17810: 3.0.0005
17811:
17812: * src/classes/void.C, operators.txt: ^void.length[] = 0
17813:
17814: 2002-08-19 paf
17815:
17816: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
17817: work now
17818:
17819: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
17820: error in xnode, which were not catched in xdoc]
17821:
17822: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
17823: prepared: // validate each document after load/create (?)
17824: //xmlDoValidityCheckingDefaultValue = 1;
17825:
17826: 2002-08-15 paf
17827:
17828: * src/classes/classes.h: write to static var caused useless
17829: Exception, introduced Methoded::put_element wich consumes those
17830:
17831: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
17832: src/types/pa_vcookie.C, src/types/pa_vdate.h,
17833: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
17834: $response:field[date] $response:field[$.xxx[date]]
17835:
17836: * src/: classes/hash.C, classes/string.C, classes/table.C,
17837: classes/void.C, include/pa_sql_connection.h: fixed source of
17838: ^hash::sql{bad}
17839:
17840: * operators.txt: $request:body unprecessed POST request body
17841:
17842: * src/types/pa_vrequest.C: $request:body unprecessed POST request
17843:
17844: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
17845: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
17846:
17847: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
17848: src/include/pa_request.h, src/main/pa_pool.C,
17849: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
17850: $request:body r.post_data now const
17851:
17852: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
17853: classes/xnode.C, main/execute.C, types/pa_value.h,
17854: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
17855: types/pa_vtable.h: instead of type() checking everywhere used
17856: Value.as now user descendants can be used in params.
17857:
17858: VObject::as_*, is_defined now taken from bases. xtable(table)
17859: ^if($xtable) now OK
17860:
17861: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
17862: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
17863: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
17864:
17865: 2002-08-14 paf
17866:
17867: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
17868: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17869: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17870: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17871: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17872: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17873: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17874: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17875: types/pa_vresponse.C, types/pa_vresponse.h,
17876: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17877: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17878: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17879: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17880: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
17881: & VClass
17882:
17883: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
17884:
17885: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
17886: removed fixopt stupidity. on stupid linux use cd /document/root
17887: ../cgi/parser3 script
17888:
17889: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
17890: params, splitting them by space, excluding argv[0], argv[argc-1]
17891:
17892: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
17893: fixopt.h: fixopt now preprocesses command line params, splitting
17894: them by space, excluding argv[0], argv[argc-1]
17895:
17896: * src/targets/cgi/parser3.C: -f config file
17897:
17898: * src/targets/cgi/parser3.C: fixed .log file dir
17899:
17900: 2002-08-13 paf
17901:
17902: * src/types/pa_vobject.C: allow override parent variables, useful
17903: for form descendants [in vobject too, were in vclass]
17904:
17905: * src/types/pa_vclass.C: allow override parent variables, useful
17906: for form descendants
17907:
17908: * src/types/pa_vclass.C: checked: form[vclass]fields can be
17909: overwritten in derived(table)
17910:
17911: * src/: classes/form.C, classes/mail.C, classes/op.C,
17912: classes/xnode.h, include/pa_request.h, main/execute.C,
17913: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17914: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17915: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17916: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17917: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17918: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17919: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17920: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17921: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17922: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17923: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17924: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17925: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
17926: Value::get_element(..., bool looking_down) [needed to exclude
17927: endless recoursion]
17928:
17929: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
17930: fix bug with put endless recoursion todo: check 'as'
17931:
17932: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
17933: reorganized modules todo: fix bug with put endless recoursion
17934: todo: check 'as'
17935:
17936: * src/types/pa_vobject.h: checked: table fields can be overwritten
17937: in derived(table)
17938:
17939: * src/types/pa_vobject.h: derived classes can have fields of their
17940: own now
17941:
17942: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
17943: fixed error message on using non-created table
17944:
17945: * src/: classes/form.C, classes/hash.C, classes/mail.C,
17946: classes/op.C, classes/xnode.h, include/pa_request.h,
17947: main/compile.C, main/compile.tab.C, main/execute.C,
17948: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17949: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17950: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17951: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17952: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
17953: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17954: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17955: types/pa_vresponse.C, types/pa_vresponse.h,
17956: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17957: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17958: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17959: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17960: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
17961: looking down/up tree todo: fix error message on non-constructed
17962: parents
17963:
17964: 2002-08-12 paf
17965:
17966: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
17967: derived OK
17968:
17969: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
17970: thorough testing
17971:
17972: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
17973: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17974: types/pa_vobject.h, types/pa_vstateless_class.h,
17975: types/pa_vstateless_object.h, types/pa_wcontext.h,
17976: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
17977: ^base:create[] dynamic call rewritten todo: thorough testing
17978:
17979: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
17980: now instantates base class, remembers it and saves child in
17981: parent VObject.get_class now returns last child = downward
17982: virtual calls OK
17983:
17984: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
17985: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
17986: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
17987: types/pa_vobject.h, types/pa_vresponse.h,
17988: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17989: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
17990: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
17991: VAliased [redundant], moved $CLASS to VObject only [parser class
17992: instance]
17993:
17994: * src/main/pa_request.C: $response:body[file] content-type check
17995: fixed [were bad when content-type is hash]
17996:
17997: 2002-08-09 paf
17998:
17999: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18000: types/pa_vobject.h, types/pa_vxdoc.h: started as()
18001:
18002: 2002-08-08 paf
18003:
18004: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
18005: src/main/pa_globals.C: year column in month calendar [week year]
18006:
18007: * src/main/execute.C: error reporting on object writes to MAIN
18008: improved [were ruind with fixing $obj[^if(1){$obj}] ]
18009:
18010: * operators.txt, src/types/pa_vdate.h: $date.yearday
18011: $date.daylightsaving
18012:
18013: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
18014: use tainted data now. only she must specify the language.
18015:
18016: ^mail:send[ $.from[paf@mail.design.ru]
18017: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
18018: $.text[^taint[uri][ìîñêâà]=] ]
18019:
18020: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
18021: now prints more precise origin
18022:
18023: * src/include/pa_string.h: String::first_char now not fails on
18024: empty strings ^if(-f '') now ok and in 3 other places.
18025:
18026: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
18027: String::first_char now not fails on empty strings ^if(-f '') now
18028: ok and in 3 other places.
18029:
18030: 2002-08-07 paf
18031:
18032: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
18033: fixed
18034:
18035: * src/main/pa_string.C: ^string.mid(0;bad) fixed
18036:
18037: * src/: main/execute.C, types/pa_vcode_frame.h,
18038: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18039: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
18040: mistakenly not completely transparent to object writes.
18041: $hash[^if(1){$hash}] now works
18042:
18043: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
18044: now erasing cache file [there were bad check on that]
18045:
18046: * src/: classes/classes.dsp, classes/table.C,
18047: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
18048: all Debug dirs in .dsp now named 'Debug'
18049:
1.116 moko 18050: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 18051:
18052: * operators.txt, src/classes/mail.C: exception_type email.send
18053:
18054: * operators.txt, src/types/pa_vmail.C: exception_type email.format
18055:
18056: * src/types/pa_vmail.C: mail:send empty email checked
18057:
18058: 2002-08-06 paf
18059:
18060: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18061: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18062: ^table::create[$source;$.options] ^table::join[$source;$.options]
18063:
18064: * operators.txt, src/classes/hash.C, src/classes/string.C,
18065: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
18066: # $.default() }
18067:
18068: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
18069:
18070: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
18071: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
18072: $file.content-type [instead of .mime-type] now works for
18073: file::stat also
18074:
18075: * src/main/pa_request.C: case insensitive mime_type_of
18076:
18077: 2002-08-05 paf
18078:
18079: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
18080:
18081: * src/types/pa_vmail.C: file buffer relocated to parser heap
18082:
18083: * operators.txt: comment on date:calendar week column
18084:
18085: * src/main/pa_common.C: write checked
18086:
18087: * src/main/: pa_common.C: write checked
18088:
18089: * src/classes/date.C: +1 buf size for stupid snprintfs
18090:
18091: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
18092: month calendar week column [ISO 8601 Week Numbers]
18093:
18094: 2002-08-02 paf
18095:
18096: * src/: include/pa_config_fixed.h, main/pa_string.C,
18097: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
18098: DEBUG*
18099:
18100: * configure, configure.in, src/include/pa_version.h: release
18101: 3_0_0005
18102:
18103: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
18104: multipart post fixed
18105:
18106: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
18107: response transcoded source->client only when text/* or simple
18108: onoverridden $response:body
18109:
18110: 2002-08-01 paf
18111:
18112: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18113: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18114: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
18115: classes/op.C, classes/response.C, classes/string.C,
18116: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18117: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
18118: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18119: include/pa_config_fixed.h, include/pa_dictionary.h,
18120: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
18121: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
18122: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
18123: include/pa_socks.h, include/pa_sql_connection.h,
18124: include/pa_sql_driver_manager.h, include/pa_stack.h,
18125: include/pa_string.h, include/pa_stylesheet_connection.h,
18126: include/pa_stylesheet_manager.h, include/pa_table.h,
18127: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18128: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
18129: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
18130: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18131: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
18132: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
18133: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
18134: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
18135: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
18136: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18137: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
18138: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
18139: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
18140: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18141: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18142: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
18143: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
18144: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18145: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
18146: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
18147: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
18148: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18149: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
18150: types/pa_vmethod_frame.h, types/pa_vobject.h,
18151: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18152: types/pa_vresponse.h, types/pa_vstateless_class.C,
18153: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18154: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18155: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18156: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18157: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 18158: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 18159:
18160: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
18161: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
18162: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18163: classes/math.C, classes/op.C, classes/response.C,
18164: classes/string.C, classes/table.C, classes/void.C,
18165: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18166: include/pa_array.h, include/pa_cache_managers.h,
18167: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18168: include/pa_config_fixed.h, include/pa_config_includes.h,
18169: include/pa_dictionary.h, include/pa_dir.h,
18170: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18171: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18172: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18173: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18174: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18175: include/pa_stack.h, include/pa_string.h,
18176: include/pa_stylesheet_connection.h,
18177: include/pa_stylesheet_manager.h, include/pa_table.h,
18178: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18179: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
18180: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18181: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
18182: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18183: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
18184: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
18185: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18186: main/pa_sql_driver_manager.C, main/pa_string.C,
18187: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
18188: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18189: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18190: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
18191: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18192: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18193: targets/isapi/pool_storage.h, types/pa_valiased.C,
18194: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
18195: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18196: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
18197: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
18198: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18199: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
18200: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
18201: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18202: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18203: types/pa_vresponse.C, types/pa_vresponse.h,
18204: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18205: types/pa_vstateless_object.h, types/pa_vstatus.C,
18206: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
18207: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18208: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18209: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
18210: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
18211: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
18212: types/Makefile.am: ident.C* removed
18213:
18214: * operators.txt, src/classes/file.C, src/main/pa_request.C:
18215: file:find[/can/do/this/now.txt]
18216:
18217: * src/targets/cgi/parser3.C: usage to stdout now
18218:
18219: 2002-07-31 paf
18220:
18221: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
18222:
18223: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
18224: default "postmaster"
18225:
18226: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
18227: -f postmaster now default sendmail key word "postmaster"
18228: replaced to $.from
18229:
18230: 2002-07-30 paf
18231:
1.116 moko 18232: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
18233: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 18234:
18235: * src/main/pa_charset.C: comment
18236:
18237: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
18238: table, &#decimal;
18239:
18240: * src/main/pa_request.C: comment
18241:
18242: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
18243: paragraf]
18244:
18245: 2002-07-11 paf
18246:
18247: * src/main/pa_exec.C: build command line badly added params twice
18248: [and first time without ' ']. double wrong. fixed.
18249:
18250: * src/main/pa_exec.C: invalid .exe caused error message with params
18251: wich parser did not provide = reported badly. fixed that.
18252:
18253: * src/classes/mail.C: $MAIL[ # xxx ]
18254:
18255: now ok
18256:
18257: * operators.txt: plan: sql detailed exception
18258:
18259: 2002-07-01 paf
18260:
18261: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
18262: [MForm.configure_admin were called when request.main_class ==0
18263:
18264: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
18265:
18266: * src/classes/form.C: content_length type fix
18267:
18268: 2002-06-30 paf
18269:
18270: * src/classes/mail.C: merged from 4
18271:
18272: * src/classes/mail.C: restored $MAIL
18273:
18274: 2002-06-28 paf
18275:
18276: * configure, configure.in: removed paths.h
18277:
1.116 moko 18278: * configure, src/include/pa_version.h,
1.95 moko 18279: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
18280: merged, makes updated
18281:
18282: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
18283: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18284: src/include/pa_pool.h, src/include/pa_version.h,
18285: src/main/pa_charset.C, src/main/pa_pool.C,
18286: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
18287: src/types/pa_vmail.C: merged latest updates to head
18288:
18289: 2002-06-27 paf
18290:
18291: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
18292: not error now
18293:
18294: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
18295: src/include/pa_config_fixed.h, src/include/pa_pool.h,
18296: src/main/pa_charset.C, src/main/pa_pool.C:
18297: ^xdoc::create[[uri]]... base uri for document being created,
18298: imports and other relative file names would be relative to this
18299: uri default uri=path_translated
18300:
18301: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
18302:
18303: 2002-06-26 paf
18304:
18305: * configure, configure.in, src/include/pa_version.h:
18306: release_3_0_0004
18307:
18308: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
18309: 0 now
18310:
18311: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
18312:
18313: 2002-06-25 paf
18314:
18315: * src/main/pa_string.C: emtpy string, or string of whitespaces
18316: considered bad number now
18317:
18318: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
18319: now
18320:
18321: * operators.txt, src/classes/string.C: ^string.normalize [old
18322: name: optimize
18323:
18324: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
18325: library configured
18326:
18327: * src/main/pa_request.C: configure_admin forced if no @conf
18328:
1.150 moko 18329: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
18330: ^math:crypt updated to generate random salt when needed and to
18331: call system crypt() if not $apr1$ prefix
1.95 moko 18332:
18333: 2002-06-24 paf
18334:
18335: * INSTALL: --with-static/shared-mailreceive described
18336:
18337: * src/include/pa_config_fixed.h: ssize_t fixed
18338:
1.116 moko 18339: * configure, configure.in, src/include/pa_config_auto.h.in,
18340: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 18341: src/types/pa_vmail.C: $mail:received makes update
18342:
18343: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
18344: WITH_MAILRECEIVE
18345:
18346: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
18347:
18348: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
18349: option, for $mail:receive
18350:
18351: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
18352: introducting $message:received ^mail:send rewritten with backward
18353: comp
18354:
18355: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18356: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18357: types/types.dsp: win32xml win32mailreceive pseudomodules paths
18358: now
18359:
18360: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
18361: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18362: src/include/pa_request.h, src/include/pa_string.h,
18363: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
18364: src/main/pa_globals.C, src/main/pa_request.C,
18365: src/main/pa_string.C, src/main/pa_uue.C,
18366: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
18367: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
18368: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
18369: uue to separate file introducting $message:received ^mail:send
18370: rewritten with backward comp
18371:
18372: 2002-06-21 paf
18373:
1.116 moko 18374: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
18375: co changes
1.95 moko 18376:
1.116 moko 18377: * configure, configure.in, src/lib/md5/Makefile.am,
18378: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
18379: restructure .in and .am files appropriate changes
1.95 moko 18380:
18381: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
18382: pcre to libs/ added libs/md5 which is linked to non-apache
18383: targets ^math:crypt[password;$apr1$salt]
18384:
18385: * INSTALL, configure.in, operators.txt, parser3.dsw,
18386: src/Makefile.am, src/classes/Makefile.am,
18387: src/classes/classes.dsp, src/classes/math.C,
18388: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 18389: src/lib/pcre/Makefile.am, src/lib/pcre/README,
18390: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
18391: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
18392: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
18393: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
18394: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
18395: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
18396: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 18397: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
18398: src/lib/pcre/pcre_parser_ctype.dsp,
18399: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
18400: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
18401: src/main/compile.tab.C, src/main/main.dsp,
18402: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
18403: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
18404: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
18405: to libs/ added libs/md5 which is linked to non-apache targets
18406: ^math:crypt[password;$apr1$salt]
18407:
18408: 2002-06-20 paf
18409:
1.150 moko 18410: * INSTALL, configure, configure.in, operators.txt,
18411: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
18412: src/include/pa_globals.h, src/include/pa_request.h,
18413: src/main/execute.C, src/main/pa_request.C,
18414: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18415: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
18416: file:justname&co & @auto/conf[filespec
1.95 moko 18417:
18418: * operators.txt, src/classes/file.C:
18419: !^file:dirname[/a/some.tar.gz]=/a
18420: !^file:dirname[/a/b/]=/a
18421: !^file:basename[/a/some.tar.gz]=some.tar.gz
18422: !^file:justname[/a/some.tar.gz]=some.tar
18423: !^file:justext[/a/some.tar.gz]=gz
18424:
18425: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18426: main/pa_request.C, types/pa_vmethod_frame.h: introducing
18427: @conf/auto[filespec]
18428:
1.116 moko 18429: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 18430:
1.150 moko 18431: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 18432: src/include/pa_globals.h, src/targets/cgi/parser3.C,
18433: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
18434:
18435: 2002-06-18 paf
18436:
18437: * configure, configure.in, src/include/pa_version.h: version to
18438: configure.in
18439:
18440: * INSTALL: reflected .conf.dist dir change
18441:
1.150 moko 18442: * Makefile.am, configure, configure.in,
1.116 moko 18443: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 18444: .in & *.am updated
18445:
18446: * src/classes/file.C: strncasecmp
18447:
18448: * src/classes/file.C: strcasecmp
18449:
1.150 moko 18450: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 18451:
18452: * src/classes/file.C: ^file::exec[script;$.bad error case
18453: insensitive check now
18454:
18455: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
18456:
18457: * configure, configure.in, src/include/pa_pool.h,
18458: src/include/pa_types.h: pack configure.in detection simplified.
18459: figured out that gcc on sparc not that stupid as thought
18460: previously: on sparc: when it sees packed class it modifies it's
18461: field-access-code to byte operations [stb, ldub] instead of 4byte
18462: operations [st, lduh] so packed must be all parts of packed
18463: class, i.e. it's parents&fields(classes). for now it's only
18464: String that packed and what was wrong is that it's parent -
18465: Pooled, were not packed. fixed that.
18466:
18467: 2002-06-14 paf
18468:
18469: * operators.txt: more precise xml-to-text options
18470:
18471: * operators.txt, src/types/pa_vxnode.C: xnode
18472: attribute_node.name/value xnode pi.node.data
18473:
18474: 2002-06-12 paf
18475:
1.116 moko 18476: * configure, configure.in, src/targets/cgi/Makefile.am,
18477: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 18478:
18479: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
18480: src/include/pa_globals.h, src/include/pa_request.h,
18481: src/main/compile.tab.C, src/main/pa_globals.C,
18482: src/main/pa_request.C, src/targets/cgi/parser3.C,
18483: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
18484:
18485: * src/classes/mail.C: sendmail -ti [default now]
18486:
18487: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
18488: to be strings. for convinient #ing
18489:
18490: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
18491: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
18492:
18493: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
18494: main/pa_globals.C, main/pa_request.C: @conf
18495:
18496: 2002-06-11 paf
18497:
18498: * src/classes/file.C: check simplified
18499:
18500: * src/: classes/file.C, targets/cgi/parser3.dsp,
18501: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
18502: valid prefix
18503:
18504: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
18505: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
18506: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
18507:
18508: 2002-06-10 paf
18509:
18510: * operators.txt, src/classes/op.C, src/include/pa_common.h,
18511: src/main/pa_common.C: lock failures reported now
18512:
18513: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
18514: string->double @ compile time were not-enough-checking...
18515:
18516: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
18517: autoconvert now ignored
18518:
18519: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
18520: check
18521:
18522: * src/classes/mail.C: mail netscape attachment name fixed. todo:
18523: $response:body content-type:name
18524:
18525: * configure, configure.in: hpux check, nsl link, no socket
18526:
18527: * operators.txt: old merge conflict removed
18528:
18529: * configure, configure.in: pack even address access on sparc&co
18530: arch checked in configure
18531:
18532: * configure, src/include/pa_version.h: makes
18533:
18534: * configure, configure.in, src/include/pa_version.h: makes
18535:
18536: * src/main/untaint.C: (bug#2) mail subject got always prepended
18537: with charset even when all letters were 7bit one
18538:
18539: * src/main/pa_common.C: merged fixed -d (bug)
18540:
18541: * src/main/pa_common.C: fixed -d (bug)
18542:
18543: 2002-06-03 paf
18544:
18545: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
18546: src/classes/classes.dsp, src/main/compile.tab.C,
18547: src/main/main.dsp, src/main/pa_globals.C,
18548: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
18549: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
18550: .dsp-s along with reorganized cvs modules dirs structure
18551:
18552: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18553: main/pa_globals.C, targets/cgi/parser3.dsp,
18554: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
18555: modules
18556:
18557: 2002-05-28 paf
18558:
18559: * src/targets/cgi/parser3.C: info.uri now ""
18560:
18561: 2002-05-17 paf
18562:
18563: * src/classes/: table.C: ^table.save << checked empty
18564: pre/match/post columns
18565:
18566: 2002-05-16 paf
18567:
18568: * src/classes/image.C: image::measure can png now
18569:
18570: 2002-05-15 paf
18571:
18572: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
18573: added
18574:
18575: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
18576:
18577: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
18578: %H[:%M[:%S]]]]]] [-%m now
18579:
18580: 2002-05-14 paf
18581:
18582: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
18583:
18584: 2002-05-07 paf
18585:
18586: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
18587: src/include/pa_globals.h, src/include/pa_request.h,
18588: src/include/pa_table.h, src/main/compile.tab.C,
18589: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
18590: src/main/pa_request.C, src/main/pa_table.C,
18591: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
18592: src/targets/isapi/parser3isapi.dsp,
18593: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
18594: name2number field now &. main_method_name now on Request pool
18595: rather on global_pool [Junction+VJunction created on same pool as
18596: name = were created on global pool, causing mem leaks]
18597:
18598: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
18599: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
18600: main/compile.y, main/main.dsp, main/pa_globals.C,
18601: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
18602: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18603: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
18604: field now &. main_method_name now on Request pool rather on
18605: global_pool [Junction+VJunction created on same pool as name =
18606: were created on global pool, causing mem leaks]
18607:
18608: 2002-05-06 paf
18609:
18610: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18611: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18612: 100*40 bytes per request memory leak [nonpool malloc in globals]
18613:
18614: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18615: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18616: 100*40 bytes per request memory leak [nonpool malloc in globals]
18617:
18618: 2002-04-30 paf
18619:
18620: * configure, src/include/pa_version.h: version now not b
18621:
18622: * src/targets/cgi/parser3.C: request.uri now never 0
18623:
18624: 2002-04-29 paf
18625:
18626: * configure.in: removed b
18627:
18628: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
18629: Exception::comment/type checked in (), no there's no empty
18630: type/comment by default
18631:
18632: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
18633: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
18634: src/doc/value.dox, src/include/pa_exception.h,
18635: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
18636: 0001
18637:
18638: 2002-04-26 paf
18639:
18640: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
18641: size reduced
18642:
18643: 2002-04-25 paf
18644:
18645: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
18646: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
18647: now that took into account
18648:
18649: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
18650: 01:03:04]
18651:
18652: * ChangeLog, operators.txt, src/classes/date.C:
18653: ^date::create[2002-12-33 01:03:04]
18654:
18655: * ChangeLog: updated changelog
18656:
18657: * src/classes/table.C: removed restriction on column count to
18658: ^table.hash to work, now must be >0 [were >1]
18659:
18660: 2002-04-24 paf
18661:
18662: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18663: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
18664: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
18665: targets
18666:
18667: 2002-04-23 paf
18668:
18669: * operators.txt, src/classes/string.C:
18670: int/double/string:sql{}[$.default{code}] fixed [were barking:
18671: "junction used outside of context"]
18672:
18673: 2002-04-22 paf
18674:
18675: * types.txt, src/classes/string.C, src/include/pa_string.h,
18676: src/main/pa_string.C, src/types/pa_vstring.C,
18677: src/types/pa_vstring.h: ^string.optimize[]
18678:
18679: * src/: include/pa_globals.h, include/pa_table.h,
18680: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
18681: table template
18682:
18683: * src/classes/: string.C: optimize removed from string
18684: .left/right/pos
18685:
18686: * src/main/execute.C: rolled back to
18687: before_killing_userjunction_contexts
18688:
18689: * src/main/execute.C: user junctions context killed
18690:
18691: * src/main/execute.C: junctions to local contexts got
18692: cleanized&checked later
18693:
18694: 2002-04-19 paf
18695:
18696: * src/: classes/string.C, include/pa_request.h,
18697: include/pa_string.h, main/pa_request.C, main/pa_string.C,
18698: types/pa_vstring.C, types/pa_vstring.h: string now optimized
18699: prior to .left .right .mid .pos .match when that is profitable,
18700: and always before .replace when $ORIGINS(1) optimization disabled
18701: economy from not wasting mem on lots of strings which occur by
18702: lots of String:mid calls to get parts of source string between
18703: found_occurances
18704:
18705: * src/classes/file.C: ovector now local economy: 16 bytes per
18706: ^file:list
18707:
18708: * src/: include/pa_globals.h, include/pa_table.h,
18709: main/pa_globals.C, main/pa_string.C: String::match table columns
18710: globalized, not created @ each ^match anymore economy:
18711: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
18712:
18713: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
18714: removed from each String::match replace iteration, and made
18715: stacked sizeof(VTable)=12bytes economy on each replace code
18716:
18717: * src/doc/footer.htm: 2001,
18718:
18719: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
18720: string.match[]['] option enables generation of $match.prematch
18721: .match .postmatch columns
18722:
18723: * src/main/pa_string.C: String::match options analized without
18724: cstr-ing them now
18725:
18726: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
18727: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
18728: config updated to doxygen 1.2.15, created helper which fixes
18729: minor bugs in chm project files & htm tree. changed extension to
18730: .htm
18731:
18732: 2002-04-18 paf
18733:
18734: * src/doc/doxygen.cfg: .chi generation disabled
18735:
18736: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
18737: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
18738: fields&methods
18739:
18740: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
18741: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
18742: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
18743: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
18744: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
18745: types/pa_vresponse.h, types/pa_vstateless_class.h,
18746: types/pa_vstateless_object.h, types/pa_vstatus.h,
18747: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
18748: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
18749: VStateless_class to VObject
18750:
18751: * src/: main/pa_request.C, types/pa_valiased.h,
18752: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18753: types/pa_vstring.h: VStateless_string_object speicalized light
18754: version of VStateless_object
18755:
18756: * src/classes/op.C: ^throw comment param made optional
18757:
18758: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
18759: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
18760: and implemented down in VClass, fclass_alias removed,
18761:
18762: * src/types/pa_value.C: forced to cut that from .h because of
18763: VStateless_class usage [undefined in .h]
18764:
18765: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18766: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18767: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
18768: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
18769: on each CALL]
18770:
18771: * src/: classes/classes.h, classes/date.C, classes/double.C,
18772: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
18773: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
18774: classes/response.C, classes/string.C, classes/table.C,
18775: classes/void.C, classes/xnode.C, include/pa_globals.h,
18776: include/pa_request.h, main/execute.C, main/pa_globals.C,
18777: main/pa_request.C, types/Makefile.am, types/pa_value.h,
18778: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
18779: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18780: types/pa_vstateless_class.h, types/pa_wcontext.C,
18781: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
18782: removed Value::fname
18783:
18784: 2002-04-17 paf
18785:
18786: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
18787: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
18788: doc/pooled.dox, doc/string.dox, doc/targets.dox,
18789: include/pa_pool.h, include/pa_types.h: dox updated to current
18790: state, PTHROW freshen to throw & co
18791:
18792: * src/types/pa_vhash.h: vstring wrong parent fixed
18793:
18794: * src/classes/op.C: taint local result var bug fixed
18795:
18796: 2002-04-16 paf
18797:
18798: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
18799: Attic asm.txt as most interesting
18800:
18801: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
18802: check, preventing content-length: 0 from appearing
18803:
18804: * src/main/execute.C: $result in @main now taken into account as in
18805: usual functions
18806:
18807: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
18808: & @unhandled_exception now taken into account as in usual
18809: functions
18810:
18811: * src/doc/postbuild.txt: instructions on post .html build
18812:
18813: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
18814:
18815: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
18816: tainted
18817:
18818: * src/main/pa_request.C: uri in error log
18819:
18820: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
18821: cheched date:create(days) param for validity [later were assumed
18822: valid and crashed on invalid onces]
18823:
18824: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18825: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
18826: and used that for removing VString wrapper
18827:
18828: * src/classes/op.C: exception2vhash file now tainted
18829:
18830: * src/classes/op.C: _process pseudo origin copied from local var to
18831: heap
18832:
18833: * src/classes/op.C: extra check on empty file in origin in _execute
18834:
18835: 2002-04-15 paf
18836:
18837: * src/: main/execute.C, types/pa_value.h: fixed name update
18838:
18839: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
18840: functions
18841:
18842: * src/: classes/file.C, classes/hash.C, classes/op.C,
18843: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
18844: started dual write_xxx_lang functions, if checked & works
18845:
18846: * src/: classes/date.C, classes/file.C, classes/mail.C,
18847: classes/string.C, classes/xnode.C, include/pa_request.h,
18848: types/pa_value.h, types/pa_wcontext.h: removed absolutely
18849: unnecessary VString shells
18850:
18851: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
18852: prev changes]
18853:
18854: * src/: classes/image.C, classes/op.C, classes/string.C,
18855: classes/table.C, include/pa_request.h, main/execute.C,
18856: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
18857: StringOrValue wcontext result, now ready for dual writes
18858:
18859: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
18860: checked that
18861:
18862: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18863: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
18864: changed to OP_WRITE_VALUE in var get cases
18865:
18866: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
18867: include/pa_request.h, main/compile.tab.C, main/compile.y,
18868: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18869: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
18870: switch in hash constructor fixed [were problems with using of
18871: stacked wwrapper after it's death]
18872:
18873: 2002-04-12 paf
18874:
18875: * operators.txt, src/classes/table.C: table.select(expression) 0
18876:
18877: 2002-04-11 paf
18878:
18879: * src/: classes/string.C, include/pa_request.h, main/execute.C:
18880: Request::process_internal codeFrame & wwrapper stacked [not
18881: wasting heap anymore]
18882:
18883: 2002-04-10 paf
18884:
18885: * src/: classes/double.C, classes/file.C, classes/hash.C,
18886: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
18887: classes/string.C, classes/table.C, classes/void.C,
18888: classes/xdoc.C, include/pa_request.h, main/execute.C,
18889: main/pa_string.C: killed Request::process() wrapping
18890: VString(String) in case we need only String
18891:
18892: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18893: killed 8 bytes from String.head
18894:
18895: 2002-04-09 paf
18896:
18897: * src/: main/compile.tab.C, targets/cgi/parser3.C,
18898: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
18899: local*/char b[...]; a=b; situations
18900:
18901: * operators.txt, src/classes/xdoc.C: xslt params made literal
18902:
18903: * src/classes/xdoc.C: xslt params fixed
18904:
18905: * src/: main/pa_common.C, targets/cgi/parser3.C,
18906: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
18907: not pool.malloc(MAX_NUMBER) but really neaded
18908:
18909: * operators.txt, src/classes/double.C, src/classes/int.C:
18910: int/double.int/double(default)
18911:
18912: 2002-04-04 paf
18913:
18914: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
18915: [when reconstructing pieces were split by
18916: max_integral(piece.size), thus some strings to replace happen to
18917: be split into two = not replaced)
18918:
18919: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
18920: standalone version = current dir
18921:
18922: * src/targets/cgi/parser3.C: document root in standalone version =
18923: current dir
18924:
18925: 2002-04-03 paf
18926:
18927: * configure, configure.in: more checks on nonexistent charset
18928:
1.116 moko 18929: * INSTALL, configure, configure.in: root config configure options
1.95 moko 18930:
18931: 2002-04-02 paf
18932:
18933: * src/main/compile.C: parser.compile [exception name more like in
18934: doc]
18935:
18936: 2002-04-01 paf
18937:
18938: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
18939: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
18940: .content-type.charset, not .charset
18941:
18942: 2002-03-29 paf
18943:
18944: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
18945:
18946: * operators.txt, src/classes/date.C: ^date::create now may not
18947: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
18948: days' year. | 31.05->31.04 roll
18949:
18950: 2002-03-28 paf
18951:
18952: * operators.txt, src/classes/date.C, src/classes/op.C,
18953: src/include/pa_globals.h, src/include/pa_hash.h,
18954: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
18955: ^cache(seconds) ^cache[date] }
18956:
18957: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
18958: param
18959:
18960: 2002-03-27 paf
18961:
18962: * operators.txt, src/classes/date.C, src/classes/double.C,
18963: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
18964: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
18965: src/classes/math.C, src/classes/op.C, src/classes/string.C,
18966: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
18967: src/classes/xnode.C, src/include/pa_exception.h,
18968: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
18969: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
18970: src/main/pa_array.C, src/main/pa_charset.C,
18971: src/main/pa_charsets.C, src/main/pa_common.C,
18972: src/main/pa_dictionary.C, src/main/pa_exception.C,
18973: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
18974: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
18975: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
18976: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18977: src/types/pa_value.h, src/types/pa_vcookie.C,
18978: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
18979: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
18980: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
18981: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
18982: src/types/pa_wwrapper.h: assigned exception types
18983:
18984: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
18985: src/include/pa_request.h, src/main/execute.C,
18986: src/main/pa_request.C: decided agains resetting exception_trace,
18987: just changed name
18988:
18989: 2002-03-26 paf
18990:
18991: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
18992: fixed
18993:
18994: * src/classes/op.C: forced language of $source field of exception
18995: to 'tainted', so that sql-langed-frags could be outputed outside
18996: of connect
18997:
18998: * operators.txt: removed date.roll limit of +-1 offset
18999:
19000: * src/classes/date.C: removed date.roll limit of +-1 offset
19001:
19002: * operators.txt, src/classes/date.C: fixed date roll on
19003: daylightsaving days mktime took into account tm_isdst flag, which
19004: remained from BEFORE roll, but should have been reset
19005:
19006: 2002-03-25 paf
19007:
19008: * operators.txt, src/targets/cgi/parser3.C:
19009: http_site_config_filespec
19010:
19011: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
19012: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
19013: with any/both --disable-foreign-group-files --disable-execs
19014:
19015: * INSTALL: "--with=sendmail=COMMAND" comment
19016:
19017: * INSTALL, configure, configure.in, src/classes/mail.C,
19018: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 19019: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
19020: disables execs also. introducing --sendmail
1.95 moko 19021:
19022: * operators.txt: pgsql options comment
19023:
19024: * INSTALL: comment on --disable-link-stdcpp
19025:
1.116 moko 19026: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19027: libstdc++ link skipping configure option
1.95 moko 19028:
19029: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
19030: with error were put to cache with 'marked_to_rollback' flag, all
19031: consequent even OK requests rolled back
19032:
19033: 2002-03-22 paf
19034:
19035: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
19036: false return
19037:
19038: * operators.txt: few comments on sets
19039:
19040: 2002-03-18 paf
19041:
19042: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
19043: src/include/pa_globals.h, src/include/pa_request.h,
19044: src/include/pa_stack.h, src/main/pa_globals.C,
19045: src/main/pa_request.C: introducing ^try
19046:
19047: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
19048: types/pa_vdouble.h: removed some tested @tests
19049:
19050: 2002-03-15 paf
19051:
19052: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
19053:
19054: 2002-03-13 paf
19055:
19056: * src/main/pa_exception.C: checked not-pooled malloc
19057:
19058: 2002-03-11 paf
19059:
19060: * INSTALL, configure, configure.in,
19061: src/include/pa_config_auto.h.in: --disable-foreign-group-files
19062:
19063: * src/main/pa_common.C: --disable-foreign-group-files
19064:
19065: * INSTALL: --disable-execs
19066:
19067: * src/main/pa_exec.C: --disable-execs
19068:
19069: * configure, configure.in, src/include/pa_config_auto.h.in:
19070: --disable-execs
19071:
19072: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
19073:
19074: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
19075: file::exec/cgi linebreaks "0D0A" changed to 0A onces
19076:
19077: 2002-03-05 paf
19078:
19079: * operators.txt, src/classes/date.C: date week calendar columns
19080: named
19081:
19082: * operators.txt, src/classes/date.C: date week calendar columns
19083: named
19084:
19085: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
19086: requires headers to be terminated with \r\n manually [refuses to
19087: separate header/body itself]
19088:
19089: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19090: targets/isapi/parser3isapi.C: isapi site config beside .dll
19091:
19092: 2002-03-04 paf
19093:
19094: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
19095: in PASS language
19096:
19097: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
19098: deserialize checks on broken file
19099:
19100: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
19101: parser3isapi.dsp: isapi updated
19102:
19103: 2002-03-01 paf
19104:
19105: * src/main/pa_exec.C: execle -> execve, now argc OK
19106:
19107: 2002-02-28 paf
19108:
19109: * src/main/untaint.C: removed some debug comments
19110:
19111: * src/main/pa_charsets.C: when placing charset to cache using
19112: global name now [were request]
19113:
19114: * configure, configure.in: apache module updated
19115:
19116: * src/main/pa_string.C: origin by first piece preferred before last
19117: piece
19118:
19119: 2002-02-27 paf
19120:
19121: * src/main/pa_charset.C: size_t
19122:
19123: * INSTALL: shared/static-xml with-pathlink
19124:
19125: * operators.txt: SMTP comment
19126:
19127: 2002-02-26 paf
19128:
19129: * src/main/pa_exec.C: more precise names for vars, cosmetic
19130:
19131: * src/classes/xnode.C: in some situation, xpath query returned
19132: result with type NODESET, but empty nodeset member field, checked
19133: that
19134:
19135: 2002-02-22 paf
19136:
19137: * INSTALL: without-zlib comment
19138:
19139: * etc/parser3.charsets/windows-1251.cfg: °
19140:
19141: * configure, configure.in: glib###.a detection fixed
19142:
19143: * INSTALL: hashfile removed from INSTALL
19144:
1.116 moko 19145: * Makefile.am: make update
1.95 moko 19146:
19147: * src/main/pa_string.C: string iterators fixed again, so were
19148: String::join_chain
19149:
19150: * src/main/pa_string.C: string iterators fixed again, so were
19151: String::join_chain
19152:
19153: * src/: include/pa_string.h, main/pa_string.C: string iterators
19154: fixed again, so were String::join_chain
19155:
19156: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
19157:
19158: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
19159: "session"
19160:
1.116 moko 19161: * configure, configure.in, src/include/pa_config_auto.h.in:
19162: --with-shared-xml --with-static-xml
1.95 moko 19163:
19164: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19165: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19166: types/types.dsp: *.dsp: removed refereces to win32db & ancient
19167: xalan&xml
19168:
19169: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
19170:
19171: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
19172: src/types/types.dsp: removed hashfile support from sources for
19173: now
19174:
1.116 moko 19175: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 19176: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 19177: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
19178: src/include/pa_db_manager.h, src/include/pa_db_table.h,
19179: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 19180: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 19181: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
19182: src/types/Makefile.am, src/types/pa_vhashfile.C,
19183: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 19184:
19185: 2002-02-21 paf
19186:
19187: * src/main/untaint.C: removed debug code, activated commented-for
19188: debug parts
19189:
1.116 moko 19190: * Makefile.am: make cvsupdate
1.95 moko 19191:
19192: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19193: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
19194: append_row, not at link zero now string to string appending works
19195:
19196: 2002-02-20 paf
19197:
19198: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
19199: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
19200: DEBUG_STRING_APPENDS_VS_EXPANDS
19201:
19202: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19203: economy: 22%
19204:
19205: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19206: space uptimized: string::link_row removed
19207:
19208: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
19209: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
19210: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19211: types/pa_vstring.h: speed uptimized: string::is_empty
19212:
19213: * operators.txt, src/include/pa_common.h,
19214: src/include/pa_config_fixed.h, src/include/pa_string.h,
19215: src/include/pa_types.h, src/main/compile.tab.C,
19216: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
19217: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
19218: string append optimiziation idea and estimates
19219:
19220: 2002-02-19 paf
19221:
19222: * src/classes/math.C: not used directly [but erroreously reported
19223: that 'is', thus registering twice&other probs]
19224:
19225: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
19226: to node [element]
19227:
19228: * src/main/compile.C: without string_origins parse error
19229: file+line+col possible
19230:
19231: * src/main/: compile.C: without string_origins not worked
19232:
19233: 2002-02-18 paf
19234:
19235: * src/types/pa_vdouble.h: since we have in_expression removed that
19236: trick i've installed into double::as_string
19237:
19238: * src/main/pa_globals.C: extern "C" was removed too fast
19239:
19240: * src/: include/pa_opcode.h, include/pa_request.h,
19241: main/compile.tab.C, main/compile.y, main/execute.C,
19242: types/pa_wcontext.h: in_expression aimed to solve old problem
19243: with string/nonstring values, now in expressions double/int
19244: values are passed as-is, without stupid tostring/fromstring
19245: conversions
19246:
19247: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
19248: __cplusplus } #endif
19249:
19250: * src/main/compile.tab.C: bison env set so one could compile
19251: without cygwin installed
19252:
19253: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19254: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
19255: gnome xml libs parser .dsp-s changed accordingly
19256:
19257: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
19258:
19259: * operators.txt, src/classes/date.C: date::create [were date::set,
19260: with backward comp
19261:
19262: * src/classes/math.C: math:random range check fixed
19263:
19264: * src/main/: compile.tab.C, compile.y: integer division stops name
19265:
19266: * INSTALL: local install comment
19267:
1.116 moko 19268: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 19269:
1.116 moko 19270: * acinclude.m4, aclocal.m4, configure, configure.in,
19271: src/include/pa_config_auto.h.in,
19272: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
19273: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 19274:
19275: * operators.txt: \ comment
19276:
19277: 2002-02-13 paf
19278:
19279: * src/include/pa_config_includes.h: sys/time time both included
19280: now. vaguely remember confilicts on this on some system [not on
19281: six|ablv] so when would see them again would think up proper
19282: check
19283:
1.116 moko 19284: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19285: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 19286:
19287: * src/main/pa_common.C: truncation never occured when writing files
19288: on unix [since i've changed cache mech] fix
19289:
19290: * src/main/pa_common.C: strnchr: sanity check added
19291:
19292: * etc/parser3.charsets/windows-1257.cfg: id added
19293:
19294: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
19295: baltic charset file generated, in generation script ispunct check
19296: added
19297:
19298: 2002-02-08 paf
19299:
1.116 moko 19300: * src/: include/Makefile.am, sql/Makefile.am,
19301: targets/isapi/Makefile.am: forgotten makes
1.95 moko 19302:
19303: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
19304: forgotten
19305:
19306: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
19307:
19308: * INSTALL, README: install&others updated
19309:
19310: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
19311:
1.116 moko 19312: * Makefile.am, configure, configure.in,
19313: etc/parser3.charsets/Makefile.am, src/Makefile.am,
19314: src/classes/Makefile.am, src/main/Makefile.am,
19315: src/main/pa_status_provider.C, src/targets/Makefile.am,
19316: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
19317: works
1.95 moko 19318:
19319: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19320: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19321: classes/hashfile.C, classes/int.C, classes/mail.C,
19322: classes/math.C, classes/op.C, classes/response.C,
19323: classes/string.C, classes/table.C, classes/void.C,
19324: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19325: include/pa_array.h, include/pa_cache_managers.h,
19326: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19327: include/pa_config_fixed.h, include/pa_config_includes.h,
19328: include/pa_db_connection.h, include/pa_db_manager.h,
19329: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19330: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19331: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19332: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19333: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19334: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19335: include/pa_stack.h, include/pa_string.h,
19336: include/pa_stylesheet_connection.h,
19337: include/pa_stylesheet_manager.h, include/pa_table.h,
19338: include/pa_threads.h, include/pa_types.h, main/compile.C,
19339: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19340: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
19341: main/pa_db_connection.C, main/pa_db_manager.C,
19342: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19343: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
19344: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19345: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19346: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
19347: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19348: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
19349: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19350: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
19351: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19352: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19353: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19354: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
19355: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
19356: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19357: types/pa_vmethod_frame.h, types/pa_vobject.h,
19358: types/pa_vrequest.h, types/pa_vresponse.h,
19359: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19360: types/pa_vstateless_object.h, types/pa_vstatus.C,
19361: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
19362: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
19363: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
19364: classes/image.C, main/pa_common.C, main/pa_exec.C,
19365: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19366: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
19367: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
19368: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
19369: types/pa_vxnode.C, main/pa_charset.C: name spelling
19370:
19371: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19372: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19373: classes/hashfile.C, classes/image.C, classes/int.C,
19374: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19375: classes/string.C, classes/table.C, classes/void.C,
19376: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19377: include/pa_array.h, include/pa_cache_managers.h,
19378: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19379: include/pa_config_fixed.h, include/pa_config_includes.h,
19380: include/pa_db_connection.h, include/pa_db_manager.h,
19381: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19382: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19383: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19384: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19385: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19386: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19387: include/pa_stack.h, include/pa_string.h,
19388: include/pa_stylesheet_connection.h,
19389: include/pa_stylesheet_manager.h, include/pa_table.h,
19390: include/pa_threads.h, include/pa_types.h, main/compile.C,
19391: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19392: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
19393: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
19394: main/pa_db_connection.C, main/pa_db_manager.C,
19395: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19396: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19397: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19398: main/pa_socks.C, main/pa_sql_driver_manager.C,
19399: main/pa_status_provider.C, main/pa_string.C,
19400: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19401: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19402: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19403: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19404: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19405: targets/isapi/pool_storage.h, types/pa_valiased.C,
19406: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19407: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19408: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19409: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19410: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19411: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19412: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19413: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19414: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
19415: types/pa_vresponse.h, types/pa_vstateless_class.C,
19416: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19417: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
19418: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19419: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
19420: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
19421: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
19422:
19423: 2002-02-07 paf
19424:
19425: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
19426:
1.116 moko 19427: * configure, configure.in, src/include/pa_config_auto.h.in,
19428: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
19429: added yet another locking function: fcntl
1.95 moko 19430:
19431: * config.sub: on cygwin configure passes it with strange i1586
19432: const, hacked it to mean i586
19433:
19434: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
19435: disabled $if reference due to conflicts with local variables
19436:
19437: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
19438: xdoc::set obsolete now, now xdoc::create, with both sences
19439:
19440: * operators.txt, src/classes/table.C, src/include/pa_array.h,
19441: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
19442: table::create now // 'set' name obsolete now table clone.
19443:
19444: * operators.txt, src/classes/string.C,
19445: src/include/pa_config_fixed.h, src/main/compile.tab.C:
19446: ^int/double/string.format now can be called with normal []
19447: brackets, not stupid {} as it were implemented for some strange
19448: reason. retaining backward compatibility due to some
19449: already-implemented servers
19450:
19451: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
19452: main/compile.y, main/compile_tools.C, main/compile_tools.h:
19453: operators now detected by check at name_without_curly_rdive_read
19454: rule whether diving code constists only of
19455: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
19456: with OP_GET_ELEMENT_OR_OPERATOR to form
19457: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
19458:
19459: 2002-02-06 paf
19460:
19461: * configure, configure.in: prefix expanded, grr
19462:
19463: * operators.txt, src/classes/mail.C: mail:send config changed
19464:
19465: 2002-02-05 paf
19466:
19467: * operators.txt: regex options commented
19468:
19469: * src/main/: pa_exec.C: argv0 now correct
19470:
19471: * src/types/pa_vstatus.C: status:rusage 3
19472:
19473: * src/types/pa_vstatus.C: status:rusage 2
19474:
19475: * operators.txt: status:rusage described int operators
19476:
19477: * src/types/pa_vstatus.C: status:rusage 1
19478:
19479: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
19480: src/types/types.dsp: status:rusage
19481:
19482: * configure.in, operators.txt, src/classes/file.C,
19483: src/classes/op.C, src/include/pa_common.h,
19484: src/include/pa_config_includes.h, src/main/compile.tab.C,
19485: src/main/pa_common.C: rewritten ^cache to use
19486: non-blocking-exclusive-caches
19487:
19488: * src/main/pa_common.C: text file read mode on win32 adjusted
19489: [speed impact. was off for debugging purpose, but forgotten
19490: afterwards]
19491:
19492: 2002-02-01 paf
19493:
19494: * src/classes/op.C: file_write does EX lock after create, while
19495: file_read does SH after open, so there's a moment after create
19496: but before EX lock when read can sneak into, and read
19497: just-created-for-writing-and-not-yet-locked file, added a check
19498: for that in ^cache...read
19499:
19500: 2002-01-31 paf
19501:
19502: * src/main/: compile.y, compile.tab.C: disabled operator call after
19503: ^xxx:
19504:
19505: * src/main/: compile.tab.C, execute.C: made operators lookup first
19506: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
19507:
19508: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
19509: main/compile.tab.C, main/compile.y, main/compile_tools.C,
19510: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
19511: operators check 6.1 rewritten. now check is done at compile time
19512:
19513: * src/main/execute.C: operators check 5 floated up old error of
19514: staying in 'entered class/object' state after $a($a..) it
19515: prevented operators from being called thereafter
19516:
19517: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19518: main/execute.C: operators check 4 floated up old error of staying
19519: in 'entered object' state after ^a.a(a) it prevented operators
19520: from being called thereafter
19521:
19522: * src/main/execute.C: operators check 3 floated up old error of
19523: staying in 'entered class' state after $a:a(a) it prevented
19524: operators from being called thereafter
19525:
19526: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
19527: floated up old error of staying in 'entered class' state after
19528: $a:a[a] it prevented operators from being called thereafter
19529:
19530: * src/main/execute.C: operators check, thay mistakenly seen in
19531: $class:operator $object.operators contexts
19532:
19533: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
19534: win32
19535:
1.116 moko 19536: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
19537: src/classes/Makefile.am, src/main/Makefile.am,
19538: src/targets/cgi/Makefile.am,
1.95 moko 19539: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 19540: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 19541:
1.116 moko 19542: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
19543: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
19544: configure, configure.in, form.txt, ident.awk, install-sh,
19545: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
19546: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 19547: etc/parser3.charsets/Makefile.am,
19548: etc/parser3.charsets/koi8-r.cfg,
19549: etc/parser3.charsets/windows-1250.cfg,
19550: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 19551: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
19552: src/main/Makefile.am, src/targets/cgi/Makefile.am,
19553: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
19554: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 19555: straightened installation scripts procedure made
19556: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
19557: change
19558:
19559: 2002-01-30 paf
19560:
19561: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
19562: removed] those comments were a mistake, and prevented libltdl
19563: from function properly
19564:
19565: 2002-01-29 paf
19566:
1.116 moko 19567: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
19568: creation [modified acinclude.m4 which were creating int into just
19569: assignment LIBTOOL=../libtool] added default system
19570: config&charsetts prepared 'make install', now it installs
19571: targets/cgi/parser3 into bin directory etc/parser3.conf &
19572: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 19573: $sysconfdir/parser3.charsets respectively
19574:
19575: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
19576: main/pa_globals.C: few forgotten ifdef XML added
19577:
19578: 2002-01-28 paf
19579:
1.116 moko 19580: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 19581: removed
19582:
19583: * src/main/pa_exception.C: dom|generic error output fix
19584:
19585: * src/classes/xnode.C: xdoc.importNode 3 [check err]
19586:
19587: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
19588:
19589: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
19590: [fixed as_node helper func to accept docs]
19591:
19592: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
19593: xdoc.importNode 0
19594:
19595: * src/classes/xdoc.C: xdoc::set now untaints OK
19596:
19597: 2002-01-25 paf
19598:
19599: * src/main/: compile.tab.C, compile.y: #comment before @ after
19600: @SPECIAL now works OK
19601:
19602: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
19603:
19604: * src/main/pa_exec.C: max arg count now 10, and proper message on
19605: violation that added
19606:
19607: * src/classes/hash.C: unified hash::sql, now
19608: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
19609:
19610: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
19611: ^file:lock[filename]{code}
19612:
19613: * src/: classes/file.C, classes/op.C, classes/string.C,
19614: classes/table.C, classes/xdoc.C, include/pa_common.h,
19615: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
19616: to some pa_common funcs
19617:
19618: * src/: include/pa_charset.h, main/pa_globals.C:
19619: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
19620:
19621: * src/: include/pa_charset.h, main/pa_charset.C,
19622: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
19623: not stupid illegal define
19624:
19625: 2002-01-24 paf
19626:
19627: * src/include/pa_version.h: changed version number
19628:
19629: * src/: classes/hashfile.C, include/pa_db_table.h,
19630: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19631: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19632: main/pa_db_connection.C, main/pa_db_table.C,
19633: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
19634: hashfile without logfiles
19635:
19636: * src/: classes/hashfile.C, include/pa_db_table.h,
19637: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
19638: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
19639: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
19640: DB_INIT_TXN init bits, thus got rid of huge log files, which
19641: cluttered disk without huge need]
19642:
19643: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
19644: handy macro, which is strangly abscent in dome lib
19645:
19646: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
19647:
19648: * src/classes/xdoc.C: checked empty response
19649:
19650: * src/classes/xnode.C: xdoc.select fixed context node [were always
19651: /, not self node]
19652:
19653: * src/classes/xnode.C: xnode.select returns array always now, in
19654: case 'nothing found' returns empty array
19655:
19656: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
19657: be more tender with ctrl/c/v
19658:
19659: 2002-01-23 paf
19660:
19661: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
19662: substituted. // 2. when dom tree with entites goes under
19663: transform text nodes // got [erroreosly] cut on first
19664: entity occurance
19665:
19666: * src/types/pa_vdouble.h: double prec. todo: get rid of
19667: twice-converting
19668:
19669: * src/types/pa_vdouble.h: %.20E now float format when %g produced
19670: 'e' in output this is for regretful twice-converting here:
19671: $a(double value) when they write double falue they convert it to
19672: string first, thus %g were losing precesion.
19673:
19674: todo: think up some way to remove double->string string->double
19675: twice-converting
19676:
19677: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
19678: %.20E now default float format this is for regretful
19679: twice-converting here: $a(double value) when they write double
19680: falue they convert it to string first, thus %g were losing
19681: precesion.
19682:
19683: todo: think up some way to remove double->string string->double
19684: twice-converting
19685:
19686: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19687: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
19688: reasons in comment inside
19689:
19690: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
19691: statically linked]
19692:
19693: * src/: include/pa_exception.h, main/compile.tab.C,
19694: main/pa_exception.C: removed exception va_list constructor. 1.
19695: not needed anymore 2. there were a conflict[causing errors]
19696: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
19697: never detected an ambiguilty here, compiling ctor(, "hello") into
19698: ctor(, va_list) which, of course, caused gpf
19699:
19700: * src/main/pa_globals.C: removed debug xslt messages
19701:
19702: 2002-01-22 paf
19703:
19704: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19705: main/pa_globals.C: xsl stylesheet load: parsed entities, this
19706: helps compiling stylesheet properly. example: this refused to
19707: work, <b>«<xsl:value-of select="@title"
19708: />»</b> stranly worked only this way:
19709: <b>«<xsl:value-of select="@title" />»</b>
19710:
19711: docs says "set it to 1", never going into details, so I decided
19712: to try NOT to do that
19713:
19714: * src/classes/table.C: join behaived badly in case named tables
19715: structure mismatched: 0 strings sneaked into dest failing
19716: afterwards. replaced them with empty strings
19717:
19718: 2002-01-21 paf
19719:
19720: * src/main/pa_charset.C: checked empty transcoders in
19721: transcode_cstr|buf
19722:
19723: * src/classes/xdoc.C: xdoc::load error source = filespec
19724:
19725: * src/classes/xdoc.C: transform error source now
19726: stylesheet_filespec
19727:
1.116 moko 19728: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 19729: include/pa_stylesheet_connection.h, main/pa_charset.C,
19730: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 19731: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
19732: gnome
1.95 moko 19733:
19734: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19735: include/pa_globals.h, include/pa_stylesheet_connection.h,
19736: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
19737: xslt generic error 1
19738:
19739: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
19740: xml generic message 1
19741:
19742: * src/classes/table.C: ^table::load empty lines or #comments before
19743: headline
19744:
19745: * src/: include/pa_array.h, include/pa_globals.h,
19746: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
19747: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
19748: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
19749: errors 0
19750:
19751: 2002-01-16 paf
19752:
19753: * src/: classes/hash.C, classes/op.C, classes/string.C,
19754: classes/table.C, classes/void.C, classes/xdoc.C,
19755: include/pa_db_connection.h, include/pa_request.h,
19756: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19757: include/pa_stylesheet_connection.h,
19758: include/pa_stylesheet_manager.h, main/pa_request.C,
19759: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19760: targets/cgi/pool_storage.h: auto closers to sql_connection,
19761: stylesheet_connection auto destroyers to remaining gnome objects
19762:
19763: * src/classes/xdoc.C: few comments
19764:
19765: 2002-01-15 paf
19766:
19767: * src/classes/xdoc.C: xdoc file save string
19768:
19769: ready. todo: error handling
19770:
19771: * src/classes/xdoc.C: xdoc save rewritten using
19772: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
19773: result
19774:
19775: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
19776: started output options parsing
19777:
19778: 2002-01-14 paf
19779:
19780: * src/classes/xdoc.C: method
19781:
19782: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19783: include/pa_pool.h, include/pa_stylesheet_connection.h,
19784: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
19785: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
19786: xslt transform0. TODO: use output options handle errors
19787:
19788: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
19789:
19790: 2002-01-11 paf
19791:
19792: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19793: main/compile_tools.C, main/compile_tools.h, main/execute.C:
19794: partial logical && || evaluation
19795:
19796: * src/classes/xnode.C: xpath selectNodes
19797:
19798: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
19799: string/number/bool
19800:
19801: * src/classes/xnode.C: xpath selectNode 2
19802:
19803: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
19804: xpath selectNode 1
19805:
19806: 2002-01-10 paf
19807:
19808: * src/classes/xnode.C: xpath selectNode -100 [just written]
19809:
19810: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19811: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
19812: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
19813: refcounter]
19814:
19815: 2001-12-29 paf
19816:
19817: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
19818: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
19819: glib works 0
19820:
19821: 2001-12-28 paf
19822:
19823: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
19824: main/pa_exception.C: started glib transcoders
19825:
19826: * src/main/pa_globals.C: renamed gdome to libgdome.dll
19827:
19828: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
19829: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
19830: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
19831: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
19832: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
19833: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
19834: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
19835: libs just compiled in. no refcounting no xpath no xslt yet
19836:
19837: 2001-12-27 paf
19838:
19839: * src/: include/pa_charset.h, include/pa_common.h,
19840: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
19841: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
19842: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
19843: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
19844: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
19845: from xalan&xerces, started the process. globals [initialization
19846: pool [charset update charset [transcodings vxnode vxdoc [DOM
19847: calls
19848:
19849: * src/classes/Makefile.am: going away from xalan&xerces, not needed
19850: anymore
19851:
19852: 2001-12-26 paf
19853:
19854: * src/: include/pa_charset.h, include/pa_charsets.h,
19855: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
19856: key globalized [bug]
19857:
19858: 2001-12-25 paf
19859:
19860: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
19861: main/pa_string.C: table set & append changed splitting languages,
19862: separators now can be clean AND as-is same to mail command line
19863: $MAIN:MAIL.progX arguments
19864:
19865: 2001-12-24 paf
19866:
19867: * src/classes/mail.C: one parted text messages - no multipart
19868: mime-type anymore. for convinient if $.attach-ments
19869:
19870: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
19871: main/pa_string.C: read from cache size check updated
19872:
19873: * src/main/: pa_string.C: String::join_chain another ugly bug :(
19874:
19875: 2001-12-21 paf
19876:
19877: * src/classes/date.C: date:sql-string now returns localtime
19878:
19879: * src/main/pa_request.C: $result in @main actually not working, to
19880: hell with it for now
19881:
19882: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
19883: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
19884: @postprocess @exception
19885:
19886: * src/main/execute.C: junction evaluation canceled - endless
19887: recursion detected
19888:
19889: 2001-12-19 paf
19890:
19891: * src/main/pa_charset.C: charset->charset transcoding via unicode
19892: intermediate
19893:
19894: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
19895:
19896: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
19897:
19898: * src/classes/op.C: ^cache keypath now relative
19899:
19900: * src/classes/mail.C: changed weighting prior to sort
19901:
19902: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
19903: were missing
19904:
19905: 2001-12-17 paf
19906:
19907: * src/main/pa_charset.C: ifndef XML were bad type
19908:
19909: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
19910: outdated unset services_pool
19911:
19912: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
19913: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
19914: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
19915:
19916: * src/main/untaint.C: allowed space in filespec
19917:
19918: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
19919:
19920: * src/classes/image.C: no govno
19921:
19922: * src/classes/image.C: govno
19923:
19924: 2001-12-16 paf
19925:
19926: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
19927:
19928: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
19929: charset_connection&manager replaced by charset&charsets
19930:
19931: * src/main/pa_charset.C: name_cstr 0
19932:
19933: * src/main/untaint.C: uri lang now knows about client/source
19934: charsets
19935:
19936: * src/: classes/file.C, classes/math.C, classes/op.C,
19937: classes/string.C, classes/table.C, classes/xdoc.C,
19938: include/pa_array.h, include/pa_cache_managers.h,
19939: include/pa_charset_connection.h, include/pa_charset_manager.h,
19940: include/pa_common.h, include/pa_db_connection.h,
19941: include/pa_db_manager.h, include/pa_db_table.h,
19942: include/pa_dictionary.h, include/pa_exception.h,
19943: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
19944: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
19945: include/pa_sapi.h, include/pa_socks.h,
19946: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19947: include/pa_string.h, include/pa_stylesheet_connection.h,
19948: include/pa_stylesheet_manager.h, include/pa_table.h,
19949: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
19950: main/pa_charset.C, main/pa_charset_connection.C,
19951: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
19952: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
19953: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
19954: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
19955: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
19956: types/types.dsp: introducing Charset
19957:
19958: 2001-12-14 paf
19959:
19960: * src/: include/pa_request.h, include/pa_transcoder.h,
19961: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
19962: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
19963: uri lang
19964:
19965: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
19966:
19967: * src/targets/cgi/Makefile.am: -I../../pcre to .am
19968:
19969: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
19970: defalts_name global
19971:
19972: * src/: include/pa_charset_connection.h, include/pa_pool.h,
19973: include/pa_request.h, main/main.dsp,
19974: main/pa_charset_connection.C, main/pa_charset_manager.C,
19975: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
19976: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
19977: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
19978: changed charset model. now important: $request:charset
19979: $response:charset while $response:content-type.charset become
19980: unimportant [informational]
19981:
19982: 2001-12-13 paf
19983:
19984: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
19985:
19986: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
19987: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
19988: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
19989: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
19990: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
19991: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
19992:
19993: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
19994: auto_ptr part other way, because of stupid gcc 2.96
19995: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
19996: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
19997: FormatterListener] /usr/include/g++-3/memory:48:
19998: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
19999: _Tp1 = FormatterListener, _Tp = FormatterListener]
20000:
20001: * src/classes/xdoc.C: removed extra inc
20002:
20003: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
20004:
20005: * src/include/pa_types.h: msvc head debugging flag
20006:
20007: * src/classes/xdoc.C: freed up listener
20008:
20009: * src/classes/string.C: change msg '... code is not code'
20010:
20011: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
20012: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20013: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
20014: [past/future prob]
20015:
20016: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20017: include/pa_config_fixed.h, include/pa_db_manager.h,
20018: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20019: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
20020:
20021: * src/: include/pa_config_fixed.h, main/pa_common.C,
20022: main/pa_string.C: removed signed mismatch warnings
20023:
20024: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
20025: 'expires' from header outputs
20026:
20027: * src/main/pa_string.C: string::recustruct erroreusly used outdated
20028: row ptr
20029:
20030: * src/classes/file.C: file::cgi bug, request_method were passed to
20031: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
20032:
20033: * src/classes/xdoc.C: lang list updated
20034:
20035: 2001-12-10 paf
20036:
20037: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
20038:
20039: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
20040: erase files like that, knowing their full name introducing //
20041: theoretical problem with, for instance, "_2B" and "." fragments,
20042: // they would yield the same // because
20043: need_file_encode('_')=false // but we need to delete such files
20044: somehow, getting names from ^index
20045:
20046: * src/main/pa_string.C: ^string.replace bug fixed [bad
20047: string::join_chank break]
20048:
20049: 2001-12-07 paf
20050:
20051: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
20052: include/pa_common.h, include/pa_config_auto.h.in,
20053: include/pa_config_fixed.h, include/pa_config_includes.h,
20054: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
20055: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
20056: types/pa_vhashfile.C: merged from r14_simple_cache
20057:
20058: * src/main/pa_string.C: stupid sparc architecture failed to access
20059: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
20060: lduh [ %i2 + 1 ], %l0
20061:
20062: bus error, fixed that
20063:
20064: * src/main/pa_string.C: strange string deserialize bug on
20065: client[pmts], a bit shortened,
20066:
20067: * src/include/pa_config_auto.h.in: makes
20068:
20069: * src/: include/pa_common.h, include/pa_config_fixed.h,
20070: include/pa_config_includes.h, main/pa_common.C: exclusive lock
20071: file write shared lock file read
20072:
20073: * src/: classes/op.C, include/pa_common.h,
20074: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
20075:
20076: 2001-12-06 paf
20077:
20078: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20079: main/pa_request.C: #ifdef RESOURCES_DEBUG
20080:
20081: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
20082: info
20083:
20084: * src/classes/hashfile.C: removed transaction from ^cache
20085:
20086: 2001-12-05 paf
20087:
20088: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
20089: IIS5 there were a prob with illegal call check
20090:
20091: 2001-12-04 paf
20092:
20093: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20094: main/pa_request.C: measures to log
20095:
20096: 2001-11-23 paf
20097:
20098: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20099: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
20100: types/pa_vhashfile.C: merged from _0014, 1
20101:
20102: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20103: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
20104: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
20105: ^cache(33) would change
20106:
20107: 0660 bits in file_write & hashfile create
20108:
20109: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
20110: after pa_string optimization]
20111:
20112: 2001-11-22 paf
20113:
20114: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20115: table.offset[whence]
20116:
20117: * src/classes/op.C: process cstr(,connection)
20118:
20119: * src/classes/op.C: process now gets its body on current language,
20120: not as-is
20121:
20122: * src/main/untaint.C: ORIGINS mode removed UHTML
20123:
20124: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
20125: bit
20126:
1.116 moko 20127: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 20128:
20129: 2001-11-21 paf
20130:
20131: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
20132: <xsl:output output options made identical to xsl:output
20133: attributes exclusion: cdata-section-elements what xalan can do
20134: but that not used now: it can escape and remove CDATA sections
20135:
20136: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
20137: produced by xslt
20138:
20139: * src/targets/cgi/parser3.C: removed debug cgi||1
20140:
20141: * src/main/: pa_string.C, untaint.C: cached some string::size() es
20142:
20143: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
20144: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
20145: default language for {code}, it happen to change it's language
20146: from CLEAN, so later refused to split by CLEAN \t
20147:
20148: 2001-11-20 paf
20149:
1.116 moko 20150: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
20151: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 20152: bottom of dependeces, so that errors would popup quicklier, fixed
20153: line numbering in table::sql
20154:
20155: 2001-11-19 paf
20156:
20157: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
20158: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
20159: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20160: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
20161: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
20162: at wcontext.write
20163:
1.116 moko 20164: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 20165: _set_new_handler
20166:
1.116 moko 20167: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
20168: set_new_handler in apache&isapi
1.95 moko 20169:
20170: 2001-11-16 paf
20171:
20172: * src/targets/cgi/parser3.C: pool debug @ die
20173:
20174: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
20175: removed 8 bytes from String, 2 bytes from
20176: string::chunk::row::item
20177:
20178: * src/main/pa_string.C: removed 1+4 bytes from String
20179:
20180: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20181: types/pa_vstring.C: removed 1+4 bytes from String
20182:
20183: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
20184: 0
20185:
20186: * src/: include/pa_globals.h, include/pa_string.h,
20187: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
20188: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
20189: targets/cgi/parser3.C: introducing estimating
20190: String::cstr_bufsize, 0
20191:
20192: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
20193:
20194: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
20195:
20196: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
20197: include/pa_pool.h: die in pool::fail
20198:
20199: 2001-11-15 paf
20200:
20201: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
20202: main/pa_exception.C, targets/cgi/parser3.C: exception with
20203: dynamic buffer re-back now with counter
20204:
20205: * src/: include/pa_exception.h, main/pa_exception.C: exception with
20206: static buffer back
20207:
20208: * src/targets/cgi/parser3.C: std::
20209:
20210: * src/: classes/classes.awk, include/pa_config_auto.h.in,
20211: include/pa_config_includes.h: setnewhandler check
20212:
1.116 moko 20213: * src/include/pa_config_auto.h.in: makes
1.95 moko 20214:
20215: * src/targets/cgi/parser3.C: set_new_handler started
20216:
20217: 2001-11-14 paf
20218:
20219: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20220: was wrong
20221:
20222: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20223: was wrong
20224:
20225: * src/main/pa_request.C: z
20226:
20227: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
20228: full returns win32 -1 solaris >buffer_size
20229:
20230: checked all that
20231:
20232: * src/classes/op.C: ^untaint{body} as-is default now
20233:
20234: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20235: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
20236: with no_bad_constructors_try
20237:
20238: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20239: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
20240: this: $bred[^string::length[]] $bred[^response::clear[]]
20241: $bred[^int::int[]]
20242:
20243: now VObject creation moved into overriden
20244: VClass::create_new_value, thus 0 from create_new_value means that
20245: class has no ctors
20246:
20247: 2001-11-13 paf
20248:
20249: * src/classes/classes.C: returned accedently removed if in foreach
20250: callbacks [when hash no-0-restructure]
20251:
20252: 2001-11-12 paf
20253:
20254: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
20255: passed as-is to method, xalan makes & into & itself
20256:
20257: * src/classes/date.C: date.roll parser2 alg used
20258:
20259: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
20260: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20261: main/pa_dictionary.C, main/pa_hash.C,
20262: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
20263: now does not containt 0 values. put 0 actullay removes. no check
20264: on 0 value in foreach now required
20265:
20266: 2001-11-11 paf
20267:
20268: * src/sql/pa_sql_driver.h: removed extra constructor, doc
20269:
20270: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
20271:
20272: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
20273: driver initialize not const
20274:
20275: 2001-11-10 paf
20276:
20277: * src/main/pa_exec.C: doc
20278:
20279: 2001-11-09 paf
20280:
20281: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
20282: param properly
20283:
20284: * src/classes/string.C: string.save now does untainting before
20285: saving
20286:
20287: * src/main/pa_common.C: line endings fixing fixed last piece[was
20288: still cstr oriented]
20289:
20290: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20291: line endings fixing got rid of cstr, now must work ok with post
20292: multipart
20293:
20294: * src/types/pa_vform.C: line endings fixed at post / multipart /
20295: not file also now
20296:
20297: 2001-11-08 paf
20298:
20299: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20300: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20301: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
20302: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
20303: main/pa_stylesheet_manager.C: restructured Cache manager to be
20304: simple parent, not second parent [gcc 2.96 strangly refused to
20305: call virtual from second parent]
20306:
1.116 moko 20307: * src/: include/pa_common.h, main/Makefile.am,
20308: targets/cgi/pa_pool.C: makes
1.95 moko 20309:
20310: * src/: include/pa_request.h, main/pa_request.C,
20311: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
20312: 'status' class enabler
20313:
20314: <Location /parser-status.html> ParserStatusAllowed </Location>
20315:
20316: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20317: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20318: include/pa_stylesheet_manager.h, main/main.dsp,
20319: main/pa_cache_managers.C, main/pa_charset_manager.C,
20320: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20321: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20322: types/pa_vstatus.h: cache_managers, maybe-expiring every request
20323: todo: apache 'status' class enabler
20324:
20325: 2001-11-05 paf
20326:
20327: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
20328: debug to normal
20329:
20330: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
20331: hence i removed skipping 0 values in hash::for_each-es we need to
20332: check cleaned cache items manually. few more checks.
20333:
20334: expiring to 0 time was wrong, changed to 'now' time
20335:
20336: * src/targets/cgi/parser3.C: read can return 0, that means sort of
20337: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
20338: on apache already done :)
20339:
20340: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
20341: skipping 0 values in hash::for_each-es we need to check cleaned
20342: cache items manually
20343:
20344: * src/main/: pa_db_connection.C, pa_db_table.C:
20345: parser_multithreaded check was wrong
20346:
20347: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20348: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20349: classes/hashfile.C, classes/image.C, classes/int.C,
20350: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20351: classes/string.C, classes/table.C, classes/void.C,
20352: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20353: include/pa_array.h, include/pa_charset_connection.h,
20354: include/pa_charset_manager.h, include/pa_common.h,
20355: include/pa_config_fixed.h, include/pa_config_includes.h,
20356: include/pa_db_connection.h, include/pa_db_manager.h,
20357: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20358: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20359: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20360: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20361: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20362: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20363: include/pa_stack.h, include/pa_string.h,
20364: include/pa_stylesheet_connection.h,
20365: include/pa_stylesheet_manager.h, include/pa_table.h,
20366: include/pa_threads.h, include/pa_types.h, main/compile.C,
20367: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20368: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
20369: main/pa_charset_manager.C, main/pa_common.C,
20370: main/pa_db_connection.C, main/pa_db_manager.C,
20371: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20372: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20373: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20374: main/pa_socks.C, main/pa_sql_driver_manager.C,
20375: main/pa_status_provider.C, main/pa_string.C,
20376: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20377: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20378: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20379: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20380: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20381: targets/isapi/pool_storage.h, types/pa_valiased.C,
20382: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20383: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20384: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20385: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20386: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20387: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20388: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20389: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20390: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20391: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20392: types/pa_vstateless_object.h, types/pa_vstatus.h,
20393: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
20394: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
20395: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20396: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
20397: $status:db fixed used not initialized in db_connection & db_table
20398:
20399: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
20400: $status:charset
20401:
20402: * src/: classes/xdoc.C, include/pa_db_connection.h,
20403: include/pa_stylesheet_connection.h,
20404: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
20405: types/pa_vstatus.h: $status:stylesheet
20406:
20407: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
20408: include/pa_request.h, include/pa_sql_connection.h,
20409: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20410: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
20411: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20412: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20413: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
20414: types/pa_vxnode.C, types/types.dsp: started status parser class
20415:
20416: 2001-11-01 paf
20417:
20418: * src/include/pa_config_auto.h.in: makes
20419:
20420: * src/main/pa_hash.C: removed old extra include
20421:
20422: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
20423: checks [for hp, there are such in math.h]
20424:
20425: * src/classes/op.C: ^for endless loop check strightened
20426:
20427: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
20428: behavior in native calls. it left unchanged, so ^for ^foreach &
20429: co can use r.root to write their i & key,value there
20430:
20431: * src/classes/op.C: detected for var storage bug, fixed.
20432: todo:foreach
20433:
20434: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
20435: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
20436: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
20437: changing of hash inside of foreach
20438:
20439: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
20440: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
20441: were hash.foreach
20442:
20443: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
20444: types/pa_vstring.C, types/pa_vstring.h:
20445: ^foreach[key|value]{body}[[separator]|{separator}]
20446:
20447: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
20448: types/pa_vcookie.C: ^hash.delete[key]
20449:
20450: 2001-10-31 paf
20451:
20452: * src/main/: compile.C, pa_common.C: completely empty file now
20453: considered "read", not ignored [not perfect trick used]
20454:
20455: * src/main/pa_common.C: simplier common ifdefs
20456:
20457: * src/main/pa_common.C: typing bug in common - bad ifdeff
20458:
20459: * src/main/pa_db_connection.C: z
20460:
20461: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
20462: lockdetector flags
20463: dbenv.lk_detect=DB_LOCK_RANDOM;
20464:
20465: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
20466: from accidental show [imagine user forgot @exception]
20467:
20468: * src/classes/table.C: ^table.save[[nameless|+append;]path]
20469:
20470: * src/: classes/file.C, classes/image.C, classes/mail.C,
20471: classes/string.C, classes/xnode.C, include/pa_common.h,
20472: main/pa_common.C: ^string.save[[append;]path]
20473:
20474: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20475: main/execute.C: \ in expression: int divide 10/3=3
20476:
20477: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
20478: inside of ^cache
20479:
20480: * src/: include/pa_threads.h, main/pa_db_connection.C,
20481: main/pa_db_table.C, targets/cgi/pa_threads.C,
20482: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
20483: needed
20484:
20485: 2001-10-30 paf
20486:
20487: * src/: classes/classes.dsp, main/main.dsp,
20488: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20489: types/types.dsp: enabled debug incremental compile
20490:
20491: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20492: form post data line endings not reformatted now.
20493:
20494: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
20495: now required [had bug when file= has no value]
20496:
20497: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
20498: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
20499: cstr(asis) default param removed
20500:
20501: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
20502:
20503: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
20504:
20505: * src/include/pa_dir.h: LOAD_DIR fixed
20506:
20507: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
20508: was broken} fix_line_breaks
20509:
20510: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
20511: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
20512: packed with #pragma pack
20513:
1.116 moko 20514: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 20515:
20516: 2001-10-29 paf
20517:
20518: * src/types/pa_wcontext.h: bitfield syntax stricter
20519:
20520: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
20521: string hash.puts
20522:
20523: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
20524:
20525: * src/include/pa_sql_connection.h: there were one wrong
20526: SQL_CONNECTION_FUNC_GUARDED [failed]
20527:
20528: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
20529: param.someday either ifdef or remove it
20530:
20531: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
20532:
20533: * src/main/untaint.C: optimizing returned after debugging
20534:
20535: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
20536: main/untaint.C: memory hunging #pragma pack(1)
20537:
20538: 16 419 844 13 169 394
20539:
20540: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20541: targets/cgi/pa_pool.C: String size_t replace to uint in proper
20542: places [todo:Array]
20543:
20544: * src/: main/execute.C, targets/cgi/pa_pool.C,
20545: targets/cgi/parser3.dsp, types/pa_wcontext.h,
20546: types/pa_wwrapper.h: debugging memory WContext flags to bits
20547:
20548: total 5 652 652/158731 total 5 469 332/158731
20549:
20550: * src/: include/pa_array.h, main/pa_array.C: debugging memory
20551: Array:: without cache in get/put now
20552:
20553: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
20554: 18:25:27 2001] total 5 652 652/158731
20555:
20556: * src/: include/pa_string.h, main/pa_string.C,
20557: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
20558: now
20559:
20560: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
20561: 18:11:53 2001] total 5796092/158731
20562:
20563: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
20564: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
20565: key ref now
20566:
20567: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
20568: 17:11:17 2001] total 16867948/202658
20569:
20570: * src/: classes/file.C, classes/image.C, classes/string.C,
20571: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
20572: main/execute.C, main/pa_array.C, main/pa_common.C,
20573: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20574: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
20575: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
20576: string::as_int/double now usually uses stack, not heap [200K out
20577: of 17M :)] VString(String&) not copies reference [29M -> 17M]
20578:
20579: * src/main/pa_sql_driver_manager.C: ping to have services [old
20580: hiding bug]
20581:
20582: * src/Makefile.am: .am order
20583:
20584: * src/: include/pa_array.h, include/pa_charset_manager.h,
20585: include/pa_db_connection.h, include/pa_db_manager.h,
20586: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
20587: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20588: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
20589: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
20590: required "friend class"
20591:
20592: ../include/pa_request.h:51: friend declaration requires
20593: class-key, i.e. `friend class Temp_lang'
20594:
20595: * src/: include/pa_exception.h, include/pa_sql_connection.h,
20596: main/pa_exception.C, main/pa_sql_driver_manager.C,
20597: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
20598:
20599: the idea is to #1 jump to C++ some function to main body, where
20600: every function stack frame has exception unwind information and
20601: from there... #2 propagate_exception()
20602:
20603: 2001-10-28 paf
20604:
20605: * src/main/pa_db_connection.C: removed old consts
20606:
20607: * src/main/pa_db_connection.C: expire table [was accidently pasted
20608: with wrong type/cast]
20609:
20610: * src/main/: pa_db_connection.C, pa_db_table.C: exception
20611: translation
20612:
1.116 moko 20613: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 20614: remember to build DB2 with -fexceptions!!!
20615:
20616: * src/main/pa_db_table.C: DB_RMW defed
20617:
20618: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
20619: include/pa_db_connection.h, include/pa_db_manager.h,
20620: include/pa_db_table.h, main/pa_db_connection.C,
20621: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
20622:
20623: 2001-10-27 paf
20624:
20625: * src/: classes/hashfile.C, include/pa_db_connection.h,
20626: include/pa_db_table.h, main/pa_db_connection.C,
20627: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
20628: types/pa_vhashfile.C: DB2 ifdefs
20629:
1.116 moko 20630: * src/: classes/Makefile.am, include/pa_config_fixed.h,
20631: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 20632: makes with DB2
20633:
1.116 moko 20634: * src/: include/pa_config_auto.h.in, main/Makefile.am,
20635: types/Makefile.am: makes db
1.95 moko 20636:
20637: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
20638: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
20639: globals.C
20640:
20641: * src/: classes/hashfile.C, include/pa_db_connection.h,
20642: include/pa_db_table.h, main/pa_db_connection.C,
20643: main/pa_db_table.C: ^hashfile.clear[]
20644:
20645: * src/classes/classes.awk: no $ in var names
20646:
20647: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
20648: connection&table [forgotten calls]
20649:
20650: 2001-10-26 paf
20651:
20652: * src/main/pa_db_connection.C: db checkpoints
20653:
20654: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
20655: checkpoints
20656:
20657: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
20658: default. but entities still reparsed. todo: tothink
20659:
20660: * src/main/pa_db_connection.C: db recover mech 2
20661:
20662: * src/: classes/hashfile.C, include/pa_db_connection.h,
20663: include/pa_db_manager.h, include/pa_db_table.h,
20664: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20665: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
20666: types/pa_vhashfile.h: db connections & tables now cached at
20667: create time & multithreaded
20668:
20669: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
20670: parsed_source
20671:
20672: * src/main/pa_db_connection.C: about to remove connection from
20673: vhashfile
20674:
20675: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
20676: transaction commit/rollback responsibility left to parent [as it
20677: sould - else there were a bug with double free]
20678:
20679: * src/include/pa_db_table.h: db: child transaction commit/rollback
20680: responsibility left to parent [as it sould - else there were a
20681: bug with double free]
20682:
20683: 2001-10-25 paf
20684:
20685: * src/: classes/hashfile.C, include/pa_common.h,
20686: include/pa_db_connection.h, include/pa_db_manager.h,
20687: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
20688: types/pa_vhashfile.C, types/pa_vhashfile.h,
20689: include/pa_db_table.h, main/pa_db_table.C: started db_home
20690: [multiple, cached] todo: autorecover [tried, but not succeded,
20691: yet]
20692:
20693: * src/include/pa_dir.h: ancient gpf on dir not found fixed
20694:
20695: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
20696: transaction parent passed
20697:
20698: 2001-10-24 parser
20699:
1.116 moko 20700: * src/classes/Makefile.am: makes
1.95 moko 20701:
20702: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
20703: isapi/pool_storage.h: pool_storage fixed
20704:
20705: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
20706: types/pa_vform.h: form fix_line_breaks
20707:
1.116 moko 20708: * src/targets/cgi/pool_storage.h: makes
1.95 moko 20709:
20710: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
20711: targets/cgi/pool_storage.h: makes
20712:
20713: * src/sql/pa_sql_driver.h: version
20714:
20715: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
20716: types/pa_vform.C, types/pa_vform.h: .am
20717:
20718: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
20719: this: DB_RMW Acquire write locks instead of read locks when doing
20720: the retrieval. Setting this flag may decrease the likelihood of
20721: deadlock during a read-modify-write cycle by immediately
20722: acquiring the write lock during the read part of the cycle so
20723: that another thread of control acquiring a read lock for the same
20724: item, in its own read-modify-write cycle, will not result in
20725: deadlock
20726:
20727: * src/targets/isapi/parser3isapi.dsp: doc
20728:
20729: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
20730:
20731: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
20732:
20733: * src/: classes/hashfile.C, include/pa_db_connection.h,
20734: main/pa_db_connection.C: hashfile expired deleted from db when
20735: get & iterate
20736:
20737: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
20738: expiring 1
20739:
20740: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
20741:
20742: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
20743: db_connection not bothers with key when not returning expired
20744: data
20745:
20746: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20747: types/pa_vhashfile.C: db_cursor constructor public now
20748:
20749: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20750: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
20751: stamped, todo: put_element analize
20752:
20753: * src/: include/pa_db_connection.h, include/pa_string.h,
20754: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
20755: serialize. todo stamp
20756:
20757: 2001-10-23 parser
20758:
20759: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
20760: classes/image.C, classes/mail.C, classes/response.C,
20761: classes/string.C, classes/table.C, classes/xdoc.C,
20762: include/pa_config_fixed.h, include/pa_db_connection.h,
20763: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
20764: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
20765: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
20766: types/pa_vtable.C: ^hashfile.hash[]
20767:
20768: * src/: classes/hashfile.C, classes/xdoc.C,
20769: include/pa_config_fixed.h, main/pa_db_manager.C,
20770: main/pa_globals.C: ifdefs so it compiled without db
20771:
20772: * src/: classes/hashfile.C, include/pa_db_connection.h,
20773: include/pa_db_manager.h, main/pa_db_connection.C,
20774: main/pa_db_manager.C, types/pa_vhashfile.h:
20775: ^hashfile.transaction{code} ^hashfile:clear[filename]
20776: ^hashfile.delete[key]
20777:
20778: 2001-10-22 parser
20779:
20780: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
20781: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
20782:
20783: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
20784: classes/xnode.C, include/pa_charset_connection.h,
20785: include/pa_db_connection.h, include/pa_db_manager.h,
20786: include/pa_exception.h, include/pa_sapi.h,
20787: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20788: include/pa_stylesheet_connection.h,
20789: include/pa_stylesheet_manager.h,
20790: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20791: main/pa_db_connection.C, main/pa_db_manager.C,
20792: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
20793: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20794: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
20795: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
20796: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
20797: types/types.dsp: hashfile 0
20798:
20799: * src/types/pa_vhashfile.C: z
20800:
20801: * src/: classes/classes.dsp, classes/hashfile.C,
20802: include/pa_config_fixed.h, main/execute.C,
20803: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
20804: types/pa_vhashfile.h, types/types.dsp: hashfile -100
20805:
20806: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
20807:
20808: * src/: include/pa_exception.h, include/pa_request.h,
20809: main/execute.C, main/pa_exception.C, main/pa_request.C,
20810: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20811: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
20812:
20813: 2001-10-19 parser
20814:
20815: * src/include/pa_pool.h: header
20816:
20817: * src/main/pa_pool.C: auto compiled on gcc
20818:
20819: * src/classes/image.C: comment
20820:
1.116 moko 20821: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 20822:
20823: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20824: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20825: types/pa_vxnode.h: xnode clone got freed
20826:
20827: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20828: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
20829: can free up xalandomstring resulting from pool::transcode
20830:
20831: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
20832: include/pa_config_fixed.h, include/pa_exception.h,
20833: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
20834: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
20835: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
20836: to c++ exceptions 1xml configure fixed to exclude xalan-patch
20837: from non-xml compile
20838:
20839: * src/main/pa_request.C: pool:: context - get_context
20840:
20841: * src/: classes/classes.h, classes/date.C, classes/double.C,
20842: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
20843: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
20844: classes/string.C, classes/table.C, classes/void.C,
20845: include/pa_config_fixed.h, include/pa_exception.h,
20846: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
20847: main/compile.C, main/compile_tools.C, main/execute.C,
20848: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
20849: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
20850: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
20851: main/pa_string.C, main/pa_table.C, main/untaint.C,
20852: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20853: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
20854: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
20855: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
20856: types/pa_vstateless_class.h, types/pa_vtable.C,
20857: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
20858: exceptions 0
20859:
20860: * src/classes/classes.awk: $ removed
20861:
20862: 2001-10-18 parser
20863:
20864: * src/types/pa_vcookie.C: cookie:CLASS
20865:
20866: * src/main/main.dsp: project
20867:
20868: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
20869: set_document & ctor question "who owns document" solved
20870:
20871: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
20872:
20873: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20874: main/pa_pool.C: encoding in dom creating funcs
20875:
20876: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
20877: be transformed now
20878:
20879: * src/classes/xdoc.C: dom created by create can be transformed now
20880:
20881: * src/classes/xdoc.C: z
20882:
20883: * src/classes/xdoc.C: comment
20884:
20885: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
20886: create now uses XercesDocumentBridge, appendChild&co now works
20887:
20888: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
20889: @ recompile
20890:
20891: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
20892: $origin @exception[
20893:
20894: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
20895: tag names forced to XML lang
20896:
20897: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
20898: leechy-found bugs in code&doc fixed
20899:
20900: 2001-10-17 parser
20901:
20902: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
20903: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
20904: n functionality preserved
20905:
20906: * src/types/pa_vimage.h: removed unused vimage::save
20907:
20908: 2001-10-16 parser
20909:
20910: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
20911:
20912: * src/classes/: xnode.C: removed few dom returns & changed op.txt
20913:
20914: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
20915:
20916: * src/classes/image.C: image.copy tolerance
20917:
20918: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
20919: ineffective, but works for small paleted image
20920:
20921: * src/types/pa_vimage.C: comment
20922:
20923: * src/classes/image.C: gd size/resize bugfix
20924:
20925: * src/: classes/classes.dsp, main/main.dsp,
20926: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20927: types/types.dsp: ident >nul 2>&1
20928:
20929: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
20930: systems
20931:
20932: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
20933: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
20934:
20935: 2001-10-15 parser
20936:
20937: * src/main/execute.C: z
20938:
20939: * src/classes/: xdoc.C: !::create{qualifiedName}
20940:
20941: * src/types/pa_vxnode.C: document_type_node.
20942: !readonly attribute DOMString name
20943: !notation_node.
20944: !readonly attribute DOMString publicId
20945: !readonly attribute DOMString systemId
20946:
1.116 moko 20947: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
20948: ::write badly passed string too transparently [failed to
20949: intercept it]
1.95 moko 20950:
20951: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
20952: include/pa_request.h, main/pa_sql_driver_manager.C,
20953: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20954: types/pa_vxnode.h: DOM1 major addtion, only few
20955: attributes/methods left
20956:
20957: 2001-10-13 parser
20958:
20959: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
20960: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
20961: in main handler
20962:
20963: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
20964: cleanups & frees order
20965:
20966: * src/types/pa_vcode_frame.h: couple comments
20967:
20968: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
20969: transparent enough to handle hash if creation&passing
20970:
20971: * src/: include/pa_config_fixed.h, main/execute.C,
20972: main/pa_exception.C: noticed that vcodeframe not transparent
20973: enough, would change now
20974:
20975: 2001-10-12 parser
20976:
20977: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
20978: fixed. initialization&free on each thread!
20979:
20980: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
20981: handling changed: now type of default param analized always, not
20982: only at problem time, thus helping early problem spotting
20983:
20984: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
20985: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
20986: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
20987: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
20988: multithread bug fixed. initialization&free on each thread!
20989:
20990: 2001-10-11 parser
20991:
20992: * src/classes/xnode.C: xnode.selectSingle now
20993:
20994: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
20995: include/pa_pool.h, include/pa_stylesheet_connection.h,
20996: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
20997: convertors out of Pool into Exception
20998:
20999: * src/main/pa_string.C: const
21000:
21001: * src/: include/pa_string.h, main/pa_string.C: restructured string:
21002: linked pieces of same language together prior to String::replace
21003:
21004: * src/classes/hash.C: !^hash.add[addme]
21005: !^hash.sub[subme]
21006: !^a.union[b] = new
21007: !^a.intersection[b] = new
21008: !^a.intersects[b] = bool
21009:
21010: * src/classes/hash.C: !^hash::append[append_from]
21011:
21012: * src/: classes/hash.C, types/pa_vhash.h:
21013: !^hash::create[[copy_from]]
21014:
21015: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21016: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
21017: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
21018: fixed. got rid of empty_string, which caused errors - it hasnt
21019: exception but somebody[value.bark] tried to throw it on it's pool
21020:
1.116 moko 21021: * src/include/pa_config_auto.h.in: makes
1.95 moko 21022:
21023: 2001-10-10 parser
21024:
21025: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
21026:
21027: * src/main/: compile.tab.C, compile.y: ^a[
21028:
21029: @next_method << now unclosed ] would be reported here
21030:
21031: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
21032: compile error
21033:
21034: 2001-10-09 parser
21035:
1.116 moko 21036: * src/: classes/Makefile.am, main/Makefile.am,
21037: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 21038:
21039: * src/classes/Makefile.am: makes
21040:
21041: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
21042: win32 errors intercepted [xalan transformer patched and
21043: incorporated]
21044:
21045: * src/: classes/classes.dsp, classes/xdoc.C,
21046: include/pa_stylesheet_connection.h, main/main.dsp,
21047: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21048: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
21049: patches starting
21050:
21051: * src/classes/: string.C, table.C: ^string.save[file]
21052:
21053: * src/classes/: date.C, table.C: calendar moved to date
21054:
21055: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
21056: string/table] now
21057:
21058: * src/classes/: op.C, table.C: z
21059:
21060: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
21061: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
21062: types/pa_vxnode.h: table:menu & op for delims made allowed not to
21063: be code [be string..]
21064:
21065: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
21066: table.C: lots of
21067: params->as_int/double/as_string/as_junction/as_no_junction
21068: messages added
21069:
21070: 2001-10-08 parser
21071:
21072: * src/: classes/date.C, classes/image.C, classes/string.C,
21073: classes/table.C, classes/void.C, include/pa_request.h:
21074: params->as_int/double message added
21075:
21076: * src/classes/image.C: image:circle [and round arc] uses Bresenham
21077:
21078: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
21079: image:sector removed image:html internal "line-*" attribs
21080:
21081: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
21082: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
21083:
21084: * src/types/pa_vcookie.C: removing cookie made more netscape-like
21085: way
21086:
21087: * src/: classes/file.C, classes/form.C, main/pa_common.C,
21088: main/untaint.C: header untainting to UL_HTTP_HEADER,
21089: UL_MAIL_HEADER made nonforced [only tainted pieces]
21090:
21091: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
21092: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
21093: @ SAPI::log
21094:
21095: * src/main/untaint.C: \r to ' ' in origins mode
21096:
21097: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
21098: set]
21099:
21100: * src/: classes/xdoc.C, include/pa_config_fixed.h,
21101: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
21102: nonstandard liaison freed up
21103:
21104: 2001-10-07 parser
21105:
21106: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
21107: project
21108:
21109: 2001-10-05 parser
21110:
21111: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
21112: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
21113: from outputing to cerr. lots of "todos"
21114:
21115: * src/main/untaint.C: http_header tainting more gentle with
21116: enquoting now
21117:
21118: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
21119: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
21120: xml errorhandler. fixed string.replace a little, read @test
21121:
21122: * src/main/pa_string.C: found replace bug - first_that_starts(char
21123: *) does not have limit, and looks further eos, fixing....
21124:
21125: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
21126:
21127: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
21128:
21129: * src/main/: pa_charset_connection.C: ctype another mem clear
21130: bugfix
21131:
1.116 moko 21132: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
21133: $result[^[$p^]z] now works fine
1.95 moko 21134:
21135: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
21136: wrong. fixed it
21137:
21138: * src/main/pa_charset_connection.C: unicode zero pair at the beging
21139: of totable appered to be vital
21140:
21141: 2001-10-04 parser
21142:
21143: * src/classes/image.C: ^image.length[text]
21144:
21145: 2001-10-03 parser
21146:
21147: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
21148:
21149: * src/main/pa_request.C: restored pcre defaulting in request
21150: [mindlessly "optimized" yesterday] comment left
21151:
21152: 2001-10-02 parser
21153:
21154: * src/: main/pa_charset_manager.C,
21155: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
21156: needed
21157:
21158: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
21159: forgot non-xml pool.*charset needed
21160:
21161: * src/classes/table.C: # config comments fixed
21162:
21163: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
21164: charset_connection #comment now
21165:
21166: * src/: classes/classes.dsp, types/types.dsp: release projects
21167: options fixed to use release msvcrt lib
21168:
21169: * src/main/pa_charset_connection.C: pcre tables now const inside
21170: removed default - pcre handles that internally fixed bug on
21171: not-cleaning tables [previously was calloced, now member]
21172:
21173: * src/: include/pa_request.h, main/pa_charset_connection.C,
21174: main/pa_request.C, types/pa_vstring.h: pcre tables now const
21175: inside removed default - pcre handles that internally fixed bug
21176: on not-cleaning tables [previously was calloced, now member]
21177:
21178: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
21179: tested charset reload on file change @ apache version = OK tested
21180: freeing up prev encoding on adding new = OK
21181:
21182: 2001-10-01 parser
21183:
21184: * src/main/pa_charset_connection.C: removed entitify external hack
21185: [internal installed]
21186:
1.116 moko 21187: * src/main/Makefile.am: makes+removed dtd
1.95 moko 21188:
21189: * src/: include/pa_charset_connection.h,
21190: include/pa_charset_manager.h,
21191: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21192: main/pa_charset_connection.C, main/pa_charset_manager.C,
21193: main/pa_request.C: charset loading & caching mech 0
21194:
21195: * src/: include/pa_stylesheet_connection.h,
21196: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21197: main/pa_globals.C, main/pa_request.C: would make charset loading
21198: & caching mech now
21199:
21200: 2001-09-30 parser
21201:
21202: * src/main/pa_request.C: forgot to fill toTable
21203:
21204: * src/: include/pa_config_fixed.h, main/pa_request.C: started
21205: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
21206: failed on win32 for now..
21207:
21208: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
21209: now charsets table configuration variable is: CHARSETS
21210:
21211: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
21212: ctype with unicode 1. todo: no П entities on output somehow
21213:
21214: * src/: classes/file.C, classes/op.C, classes/string.C,
21215: include/pa_request.h, main/pa_request.C: started ctype with
21216: unicode values
21217:
21218: 2001-09-28 parser
21219:
21220: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
21221: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
21222: string passed AS-IS now
21223:
21224: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
21225: way of user-configuring... todo: implement
21226:
21227: 2001-09-27 parser
21228:
21229: * src/classes/table.C: table.sort changed to sort table itself
21230:
21231: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
21232: X^.getElementsByTagName[tagname] = array of xnode
21233: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
21234: nodes removed - regretfully not supported @ xalan. maybe someday
21235: would reimplement, if needed.
21236:
21237: win32build system: solved long waiting anti-non-started-apache
21238: problem
21239:
21240: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
21241: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21242: types/types.dsp: win32 ident make system so not to rebuild
21243: library [ident.C.new]
21244:
21245: 2001-09-26 parser
21246:
21247: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
21248: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
21249: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21250: types/pa_vxnode.C, types/types.dsp: z
21251:
21252: * src/classes/classes.C: forgot one non-xml check
21253:
1.116 moko 21254: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21255: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 21256:
21257: * src/targets/cgi/parser3.C: z
21258:
21259: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
21260: targets/isapi/parser3isapi.C: #ifdef SMTP
21261:
21262: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
21263: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21264: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
21265: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
21266: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21267: types/types.dsp: xdoc&xnode now
21268:
21269: * src/: classes/classes.C, classes/classes.awk,
21270: classes/classes.dsp, classes/classes.h, classes/date.C,
21271: classes/dnode.C, classes/dnode.h, classes/dom.C,
21272: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21273: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
21274: classes/op.C, classes/response.C, classes/string.C,
21275: classes/table.C, classes/void.C, include/pa_array.h,
21276: include/pa_common.h, include/pa_config_fixed.h,
21277: include/pa_config_includes.h, include/pa_dictionary.h,
21278: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
21279: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21280: include/pa_socks.h, include/pa_sql_connection.h,
21281: include/pa_sql_driver_manager.h, include/pa_stack.h,
21282: include/pa_string.h, include/pa_stylesheet_connection.h,
21283: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
21284: include/pa_xslt_stylesheet_manager.h, main/compile.C,
21285: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21286: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
21287: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
21288: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
21289: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
21290: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21291: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
21292: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21293: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21294: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
21295: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21296: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
21297: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
21298: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21299: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
21300: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
21301: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
21302: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
21303: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
21304: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
21305: types/pa_vmethod_frame.h, types/pa_vobject.h,
21306: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21307: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21308: types/pa_vstateless_object.h, types/pa_vstring.C,
21309: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
21310: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
21311: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
21312: main.dsp splitted to main+classes+types along to .am
21313:
21314: * src/classes/Makefile.am: removed useless var
21315:
21316: * src/: classes/classes.cmd, main/main.dsp,
21317: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
21318: main.dsp
21319:
21320: 2001-09-25 parser
21321:
21322: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
21323: 1251 though, todo ICU
21324:
1.116 moko 21325: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 21326: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 21327: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
21328: types/pa_vdom.h: xml configure makes
1.95 moko 21329:
21330: 2001-09-24 parser
21331:
1.116 moko 21332: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
21333: types/Makefile.am: makes
1.95 moko 21334:
1.116 moko 21335: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 21336:
21337: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
21338: started unix makes update
21339:
21340: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
21341: started unix makes update
21342:
21343: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
21344:
21345: * src/types/pa_value.h: z
21346:
21347: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
21348: bugs with usinge hash/table in expressions
21349:
21350: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
21351: resolved conflicts fixed [const]
21352:
21353: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
21354: classes/table.C, include/pa_request.h, include/pa_sapi.h,
21355: main/compile.C, main/compile.tab.C, main/compile.y,
21356: main/compile_tools.h, main/main.dsp, main/pa_common.C,
21357: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21358: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
21359: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
21360: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
21361: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
21362: with before_xml [merge2 actually didn't happen - i've created
21363: tags on wrong branch. so this merge is in fact re-merge]
21364:
21365: 2001-09-21 parser
21366:
21367: * src/: main/main.dsp, targets/cgi/parser3.dsp,
21368: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
21369: produced "" in make file and sadly wrong interpreted on load]
21370:
1.116 moko 21371: * src/: classes/classes.h, classes/hash.C, classes/op.C,
21372: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
21373: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21374: include/pa_sql_driver_manager.h, include/pa_string.h,
21375: main/compile.tab.C, main/main.dsp, main/pa_common.C,
21376: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
21377: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 21378:
21379: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
21380: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
21381: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
21382: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21383: main/pa_pool.C, main/pa_request.C,
21384: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
21385: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21386: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
21387: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
21388: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
21389: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
21390: types/pa_vrequest.C, types/pa_vresponse.h,
21391: types/pa_vstateless_class.C, types/pa_vstring.C,
21392: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
21393: created new projects for sql drivers [planning to remove sql
21394: drivers from main cvs project] first, will join latest changes
21395:
21396: * src/classes/: dom.C: defaulted dom writing methods encoding to
21397: pool.get_charset
21398:
21399: * src/classes/dom.C: defaulted dom writing methods encoding to
21400: pool.get_charset
21401:
21402: * src/include/pa_pool.h: defaulted dom writing methods encoding to
21403: pool.get_charset
21404:
21405: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
21406: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
21407: methods encoding to pool.get_charset
21408:
21409: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
21410: transcoder were created right "unsupported encoding" message.
21411: not @ set time, but @ use time, so until xml output functions
21412: .string, .file, .save used - no encoding name check occur
21413:
21414: reduced transcode buffer size to 60 fixed pool cleanup - no
21415: registration needed, pools are officially destructured
21416:
21417: 2001-09-20 parser
21418:
21419: * src/classes/image.C: 20K preload on jpg measure [image::measure]
21420:
21421: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
21422: $MAIN:DEFAULTS.content-type[$.charset[here]]
21423:
21424: * src/: classes/dnode.C, classes/dom.C,
21425: include/pa_config_includes.h, include/pa_globals.h,
21426: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21427: main/pa_pool.C, targets/cgi/parser3.dsp,
21428: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
21429: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
21430: Pool::transcode 0
21431:
21432: * src/classes/dom.C: dom. string save file moved output xml options
21433: to last param and made it optional
21434:
21435: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
21436: dnodes
21437: !$attributenode.specified = boolean
21438: true if the attribute received its value explicitly
21439: in the XML document,
21440: or if a value was assigned programatically with the
21441: setValue function.
21442: false if the attribute value came from the default value
21443: declared in the document's DTD.
21444: !$pinode.target = target of this processing instruction
21445: XML defines this as being the first token following the
21446: markup
21447: that begins the processing instruction.
21448: XPath:
21449: !^node.select[xpath/query/expression] = hash of 0->node0
21450: 1->node1
21451: !^node.select-single[xpath/query/expression] = first node if
21452: any
21453:
21454: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
21455: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
21456: some 'const's added
21457:
21458: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
21459: expression context now, there value = size and boolean value
21460: size!=0
21461:
21462: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
21463: can be used in expression context now, there value = size and
21464: boolean value size!=0
21465:
21466: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
21467: types/pa_vstring.h: dnode .file .string .save moved back to dom
21468: due to strange xalan bug
21469:
21470: 2001-09-18 parser
21471:
21472: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
21473: classes/image.C, classes/op.C, classes/table.C,
21474: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
21475: include/pa_sql_driver_manager.h, main/compile.C,
21476: main/compile.tab.C, main/compile.y, main/compile_tools.h,
21477: main/execute.C, main/pa_common.C, main/pa_request.C,
21478: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21479: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21480: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
21481: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
21482: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
21483: before_xml branch ^if(def $hash) now true only when
21484: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
21485:
21486: * src/: classes/op.C, main/execute.C: operators self changed to
21487: root ^for variable context changed to self
21488:
21489: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
21490: dnode 1
21491:
21492: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
21493: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
21494:
21495: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
21496: poly* fixed
21497:
21498: 2001-09-17 parser
21499:
21500: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
21501: types/pa_vdom.h: started dnode+dom
21502:
21503: dnode DOM methods: $node.name $node.value
21504: ...others...
21505:
21506: ^node.xpath[/rates/USD] = hash
21507: $hash[
21508: $.0[node0]
21509: $.1[node1]
21510: ]
21511:
21512: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
21513: applies to all linear primitives
21514:
21515: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
21516: include/pa_stylesheet_connection.h, main/main.dsp,
21517: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
21518: types/pa_vimage.h: started dnode DOM: $node.name
21519: $node.value ...others... ^node.xpath[/rates/USD] = hash
21520: dom(dnode)
21521:
21522: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
21523: main/compile.y, main/compile_tools.h, main/execute.C,
21524: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
21525: in expression compound($aa.zz.xx) names now can have minus '-' in
21526: name after '.'
21527:
21528: 2001-09-15 parser
21529:
21530: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
21531: image: $line-width ^line(...)[**** style]
21532:
21533: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
21534: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
21535: pool_storage - cleanups first, allocations second. apache wisely
21536: does just like that
21537:
21538: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
21539: rewritten using template, no bugs now
21540:
21541: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
21542: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
21543: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
21544: poorly started isapi pool_storage, would rewrite using template
21545: now
21546:
21547: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
21548: include/pa_stylesheet_connection.h, main/main.dsp,
21549: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
21550: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
21551: xalan objects freed up [introducing Pool::register_cleanup]
21552:
21553: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
21554: comments
21555:
21556: 2001-09-14 parser
21557:
21558: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
21559: z
21560:
21561: * src/: classes/dom.C, classes/file.C, classes/image.C,
21562: classes/mail.C, include/pa_common.h,
21563: include/pa_sql_driver_manager.h, include/pa_string.h,
21564: include/pa_stylesheet_connection.h,
21565: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21566: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
21567: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
21568: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
21569: compiled&cached
21570:
21571: 2001-09-13 parser
21572:
21573: * src/: classes/dom.C, classes/file.C, classes/image.C,
21574: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
21575:
21576: * src/classes/dom.C: dom:file content-type(.method)
21577:
21578: * src/: include/pa_common.h, include/pa_globals.h,
21579: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
21580: string now more informative error messages
21581:
21582: * src/: include/pa_globals.h, include/pa_request.h,
21583: main/pa_request.C, targets/cgi/parser3.C,
21584: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
21585: ParserSiteConfig .../parser3.conf
21586:
21587: cgi&isapi looks for {configure|c:\windows}/parser3.conf
21588:
21589: 2001-09-12 parser
21590:
21591: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21592: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
21593: precise error reporting: "connection string must start with
21594: protocol://" now
21595:
21596: * src/main/compile.tab.C: fixed - subname code parts actually []
21597: braced
21598:
21599: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
21600: lexer on LS_USER level did [] matching without setting nestage,
21601: introduced special LS_NAME_SQUARE_PART state
21602:
21603: 2001-09-11 parser
21604:
21605: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
21606: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
21607: languages+=xml
21608:
21609: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
21610:
21611: * src/classes/dom.C: ^dom:save/string/file[output options] output
21612: options: $.method[xml|html|text] detection fixed
21613:
21614: * src/types/pa_vdom.h: messages
21615:
21616: * src/classes/dom.C: ^dom:save/string/file[output options] output
21617: options: $.method[xml|html|text] detection fixed
21618:
21619: 2001-09-10 parser
21620:
21621: * src/classes/dom.C: ^dom:save/string/file[output options] output
21622: options: $.method[xml|html|text] $.encoding[windows-1251|...]
21623:
21624: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
21625: added]
21626:
21627: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21628: ^dom.xslt[stylesheet filename] 0
21629:
21630: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21631: ^dom.xslt[stylesheet filename] -1 doc is lying
21632:
21633: * src/classes/dom.C: ^dom.file[encoding] = file
21634:
21635: * src/classes/: dom.C: ^dom.string[encoding] 1
21636: ^dom.save[encoding;filename]
21637:
21638: * src/classes/dom.C: ^dom.string[] 0
21639:
21640: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
21641:
21642: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
21643: types/pa_vform.h: ^dom.save[b.xml] 0
21644:
21645: 2001-09-08 parser
21646:
21647: * src/types/pa_vform.C: $form:tables.name.field
21648:
21649: 2001-09-07 parser
21650:
21651: * src/classes/table.C: table:empty removed, superceded by ^if(def
21652: $table)...
21653:
21654: * src/targets/cgi/parser3.C: z
21655:
21656: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
21657: from '' to int/double is 0]
21658:
21659: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
21660: $table) is false when table is empty
21661:
21662: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
21663: !$form:tables $atable[$form:tables.a]
21664: ^atable.menu{a=$atable.element}[,]
21665:
21666: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
21667: types/pa_vform.h, types/pa_vhash.h: !$form:fields
21668:
1.116 moko 21669: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21670: types/pa_vdom.h, types/pa_vform.C: merged with successful start
21671: of dom
21672:
21673: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
21674: types/pa_vform.C, types/pa_vform.h: z
21675:
21676: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
21677: element [not last]
21678:
1.116 moko 21679: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21680: types/pa_vdom.h: introducing dom. dom:load[a.xml]
21681:
21682: 2001-09-06 parser
21683:
21684: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21685: table with one column 'element' and two rows: 1 and 2
21686:
21687: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21688: table with one column 'element' and two rows: 1 and 2
21689:
21690: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
21691: bad int/double conversions, and now $form:nonexistent.int(88)
21692: would return 88
21693:
21694: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
21695: types/pa_vhash.h: now there's special hash key '_default'
21696: [instead of ^_default method] $hash[ $.a[1] $.b[2]
21697: $._default[xx] ] $hash.c
21698:
21699: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
21700: fixed [thanks, fif], ^; were treated there non-literally
21701:
21702: * src/doc/doxygen.cfg: merged new default options from 1.2.10
21703: doxygen
21704:
21705: * src/: classes/image.C, classes/op.C, classes/string.C,
21706: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
21707: types/pa_vtable.C: few #ifndef DOXYGEN
21708:
21709: 2001-09-05 parser
21710:
21711: * src/classes/: string.C, table.C: sql options can be void [same as
21712: image:html the other day]
21713:
21714: * src/targets/cgi/Makefile.am: .am undo
21715:
21716: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21717: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
21718: macro expantion on param, simply qoutes whatever passed, undone
21719:
21720: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21721: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
21722: STRINGIZE(name) #name invented
21723:
21724: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21725: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
21726: MAIN_SQL_DRIVERS_NAME "drivers"
21727:
21728: moved to be availible to all users
21729:
21730: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
21731: SQL_DRIVER_CREATE_FUNC_NAME
21732:
21733: * src/classes/mail.C: MAIN:MAIL check fixed
21734:
21735: 2001-09-04 parser
21736:
21737: * src/classes/image.C: image.html now can accept void params
21738:
21739: * src/targets/isapi/parser3isapi.C: z
21740:
21741: * src/targets/cgi/parser3.C: full_file_spec bug
21742:
21743: * src/targets/cgi/parser3.C: getenvcheck
21744:
21745: * src/targets/cgi/parser3.C: zz
21746:
21747: * src/targets/cgi/parser3.C: zzz
21748:
21749: * src/classes/date.C: date
21750:
21751: * src/classes/date.C: date:sql-string is now without ''
21752:
1.116 moko 21753: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 21754: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
21755: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
21756:
1.116 moko 21757: * src/include/pa_config_auto.h.in: makes
1.95 moko 21758:
21759: 2001-09-03 parser
21760:
21761: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
21762:
21763: 2001-09-01 parser
21764:
21765: * src/classes/image.C: letter_spacing
21766:
21767: * src/classes/image.C: image: font params changed
21768:
21769: * src/classes/image.C: image: as_int as_string used
21770:
21771: * src/types/pa_vmethod_frame.h: $result[] now gets properly
21772: analized
21773:
21774: 2001-08-31 parser
21775:
21776: * src/targets/cgi/parser3.C: z
21777:
1.116 moko 21778: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
21779: cygwin
1.95 moko 21780:
21781: * src/classes/void.C: void:int/double += (default)
21782:
21783: * src/classes/image.C: image:font added space param image:font
21784: changed charwidth alg, added kerning const[for now]
21785:
21786: * src/classes/: string.C, table.C: string:int/double (defaults)
21787:
21788: 2001-08-29 parser
21789:
21790: * src/main/pa_exception.C: exception redundant debug info
21791:
21792: 2001-08-28 parser
21793:
21794: * src/classes/image.C: image error msgs
21795:
21796: * src/classes/image.C: image: gifsize little endian
21797:
21798: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
21799: doxygeneration
21800:
21801: * src/: classes/Makefile.am, main/Makefile.am,
21802: targets/cgi/Makefile.am, types/Makefile.am: .am-s
21803:
21804: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
21805: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
21806:
21807: * src/main/compile.C: NO_STRING_ORIGIN check2
21808:
21809: * src/classes/table.C: NO_STRING_ORIGIN check
21810:
21811: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
21812: storage class specifiers invalid in friend function declarations
21813:
21814: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
21815: main/untaint.C, targets/cgi/parser3.C,
21816: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
21817: case of limit
21818:
21819: * src/: classes/file.C, main/pa_common.C: file:move
21820: autocreate/remove dest/src dir
21821:
21822: * src/: classes/string.C, include/pa_dictionary.h,
21823: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
21824: main/untaint.C: pa_directory speeded up. moved zero 'from' check
21825: to directory constructor. string:replace
21826:
21827: 2001-08-27 parser
21828:
21829: * src/classes/image.C: fixed jpgsize alg
21830:
21831: * src/classes/image.C: fixed jpgsize alg
21832:
21833: * src/main/pa_exception.C: z
21834:
21835: * src/main/pa_common.C: removed debug info from pa_common
21836:
21837: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
21838: [auto.p from current dir loading]
21839:
1.116 moko 21840: * src/: main/pa_common.C, main/pa_exception.C,
21841: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
21842: for solaris -lsocket
1.95 moko 21843:
21844: 2001-08-24 parser
21845:
21846: * src/targets/cgi/parser3.C: not cgi extra \n 3
21847:
21848: * src/targets/cgi/parser3.C: not cgi extra \n 2
21849:
21850: * src/targets/cgi/parser3.C: not cgi extra \n
21851:
21852: * src/main/pa_sql_driver_manager.C: z
21853:
21854: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
21855: sql* removed services from disconnect - cross-request ideological
21856: probs.
21857:
21858: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
21859: cross-request ideological probs. oracle - fixed bug: cs
21860: allocated on request.pool and got freed before disconnect
21861:
21862: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
21863: mallocs fixed
21864:
21865: 2001-08-23 parser
21866:
21867: * src/classes/file.C: minor bug in file:save fixed
21868:
21869: * src/main/pa_sql_driver_manager.C: oracle: dlink
21870:
21871: 2001-08-22 parser
21872:
21873: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
21874: types/pa_vfile.h: file:load|save[text|binary;
21875:
21876: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
21877:
21878: 2001-08-21 parser
21879:
21880: * src/classes/: file.C, table.C: ^file:list
21881:
21882: 2001-08-20 parser
21883:
21884: * src/: main/compile.tab.C, main/compile.y,
21885: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
21886: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
21887: recousively caused problems: inc incremeted 123 literal!! fixed
21888:
21889: 2001-08-10 parser
21890:
21891: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
21892:
21893: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21894: added
21895:
21896: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21897: added
21898:
21899: * src/classes/table.C: table:sort restored [it was bad test :(]
21900:
21901: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
21902: ''
21903:
21904: * src/main/: pa_request.C: wanted to make const int
21905: MAX_EXECUTE_SECONDS=1;
21906:
21907: but couldnt, set_callback_and_alarm appeared to be not exported
21908: :(
21909:
21910: * src/main/pa_string.C: string.match hanged on. there were a hang
21911: check but it weren't wise enough
21912:
21913: @parse[dateString][tmp]
21914: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
21915: #end
21916:
21917: @main[] ^parse[2001-02-03]
21918:
21919: * src/classes/: table.C: table:sort now default desc
21920:
21921: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
21922: table.sort now creates new sorted table
21923:
21924: 2001-08-09 parser
21925:
21926: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
21927:
21928: * src/classes/hash.C: hash:_default now [was hash:default]
21929:
21930: * src/classes/op.C: case without switch check added
21931:
21932: * src/types/pa_vcookie.C: cookie name&value origins added, more
21933: precise $ORIGINS(1)
21934:
21935: * src/main/Makefile.am: .am
21936:
21937: * src/classes/void.C: void: int double copy/paste from int: bug
21938: fixed
21939:
21940: * src/classes/void.C: void: int double copy/paste from int: bug
21941: fixed
21942:
21943: 2001-08-07 parser
21944:
21945: * src/: classes/double.C, classes/int.C, classes/string.C,
21946: classes/table.C, include/pa_globals.h, main/pa_globals.C:
21947: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
21948: string, table
21949:
21950: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
21951: srand made working
21952:
21953: 2001-08-06 parser
21954:
21955: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
21956: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
21957: main/compile.tab.C, main/compile.y, main/pa_array.C,
21958: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
21959: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
21960:
21961: * src/main/pa_exec.C: exec win32 real filename
21962:
21963: * src/classes/file.C: exec stderr out
21964:
21965: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
21966:
21967: 2001-08-03 parser
21968:
21969: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
21970:
21971: 2001-08-02 parser
21972:
21973: * src/: classes/string.C, classes/table.C, include/pa_array.h,
21974: main/execute.C, main/pa_exec.C: introducing Array_iter
21975:
21976: * src/main/execute.C: detected quick_get recursion bug. changed to
21977: get@execute, but needs array iterator, separate from array to
21978: avoid it & use caching
21979:
21980: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
21981: bug fixed
21982:
21983: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
21984: main/execute.C, main/pa_globals.C: found another multithread bug
21985: in op.C (last, last global var killed) :)
21986:
21987: 2001-08-01 parser
21988:
21989: * src/: include/pa_dictionary.h, include/pa_globals.h,
21990: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
21991: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
21992: main/untaint.C: speeded up typo-html replacements. introducing
21993: Dictionary with first-char caching
21994:
21995: 2001-07-31 parser
21996:
21997: * src/types/Makefile.am: pa_vtable.C added to .am
21998:
21999: * src/main/compile.tab.C: added, so that could be compiled even on
22000: non-bison-enabled platforms
22001:
22002: 2001-07-28 parser
22003:
22004: * src/classes/table.C: table:hash always produces hash, when can't
22005: - empty
22006:
22007: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
22008: skipped \n
22009:
22010: 2001-07-27 parser
22011:
22012: * src/classes/: double.C, int.C, string.C: provided meaningful msg
22013: on int/double/string :sql without result and default
22014:
22015: 2001-07-26 parser
22016:
22017: * src/classes/op.C: fixed bad multithread bug with strangly global
22018: OP
22019:
22020: * src/main/compile.y: $man[$.age[zzz]] 0
22021:
22022: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
22023: creation syntax problem persists. restored $: for a while.
22024: thinking of $man[$.age[zzz]] syntax now
22025:
22026: * src/: classes/double.C, classes/int.C, classes/string.C,
22027: include/pa_opcode.h, main/compile.C, main/compile.y,
22028: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
22029: types/pa_vmethod_frame.h, types/pa_wcontext.h,
22030: types/pa_wwrapper.h: fixing :: realization #1
22031:
22032: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
22033: main/compile_tools.h, main/execute.C, main/pa_request.C,
22034: types/pa_vmethod_frame.h: introducing :: this is constructor call
22035: prefix. ordinary : remains for static accesses
22036:
22037: 2001-07-25 parser
22038:
22039: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
22040: fields 2. methods 3. columns
22041:
22042: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
22043: quote. optimized double&int tostring-s
22044:
22045: * src/main/: compile.C, compile.y, compile_tools.h: allowed
22046: whitespace before first method decl
22047:
22048: * src/classes/table.C: allowed nontable result in table:sql,
22049: results in empty table
22050:
22051: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
22052: lines before first method decl
22053:
22054: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
22055: types/pa_vtable.h: ^table.record[] now $table.fields
22056:
22057: * src/main/compile.y: $var[] is now empty string, not void
22058:
22059: * src/main/: compile.y, execute.C: $var[] is now empty string, not
22060: void
22061:
22062: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
22063: main/pa_globals.C: match replace code context moved to implicit
22064: $match context
22065:
22066: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
22067: main/compile_tools.h, main/execute.C: with killed, code storage
22068: introduced with former 'with' syntax
22069:
22070: 2001-07-24 parser
22071:
22072: * src/: main/compile.C, main/execute.C, main/pa_string.C,
22073: types/pa_value.h: first get_element, next get operator
22074:
22075: * src/main/compile.y: removed @end handling
22076:
22077: * src/main/: compile.C, compile.y: @end handling method2
22078:
22079: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
22080: file:move
22081:
22082: * src/main/pa_common.C: file_read close @ eof when imgsize bug
22083: fixed
22084:
22085: 2001-07-23 parser
22086:
22087: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
22088: driver
22089:
22090: * src/classes/hash.C: changed sql driver query interface
22091:
22092: * src/: classes/hash.C, classes/string.C, classes/table.C,
22093: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
22094: changed sql driver query interface
22095:
22096: 2001-07-20 parser
22097:
22098: * src/types/pa_vrequest.C: X!$browser:type
22099:
22100: * src/: classes/file.C, classes/string.C, include/pa_string.h,
22101: main/execute.C, main/pa_string.C, types/pa_valiased.C,
22102: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
22103: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
22104: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
22105: types/pa_vobject.h, types/pa_vrequest.C,
22106: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
22107: ^class:method dynamic calls allowed. ^BASE.method call disabled.
22108: BASE element globally removed
22109:
22110: 2001-07-18 parser
22111:
22112: * src/classes/file.C: file:exec/cgi msg
22113:
22114: * src/classes/file.C: $file:exit-code renamed to 'status'
22115:
22116: * src/: classes/file.C, main/pa_exec.C: file:exec
22117:
1.116 moko 22118: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
22119: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
22120: removed $id from *.in *.am
1.95 moko 22121:
22122: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
22123: abbrevations
22124:
22125: * src/: classes/date.C, classes/mail.C, classes/math.C,
22126: classes/string.C, classes/table.C, include/pa_globals.h,
22127: include/pa_string.h, main/execute.C, main/pa_globals.C,
22128: main/pa_request.C, main/pa_string.C, main/untaint.C,
22129: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
22130: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
22131: $ORIGINS(1) output tracing mode
22132:
22133: 2001-07-13 parser
22134:
22135: * src/: classes/double.C, classes/int.C, classes/string.C,
22136: include/pa_request.h, main/execute.C, main/pa_request.C:
22137: auto.p[@auto], /news/auto.p[no @auto], so that initializing
22138: second would not call first @auto
22139:
22140: * src/main/: execute.C, pa_request.C: order of MAIN parents was
22141: wrong, fixed
22142:
22143: 2001-07-12 parser
22144:
22145: * src/types/pa_value.h: pa_value.putelement modification of system
22146: classes prevented
22147:
22148: 2001-07-11 parser
22149:
22150: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
22151: table $piece
22152:
22153: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22154: types/pa_vstateless_class.h: $file created by file:state +=
22155: .atime .mtime .ctime +found&fixed bug with exceptions on
22156: get_junction-created objects [they were on wrong pool]
22157:
22158: 2001-07-09 parser
22159:
22160: * src/main/untaint.C: qp wrong name
22161:
22162: * src/: classes/date.C, classes/string.C, classes/table.C,
22163: main/compile.y: date format 0
22164:
22165: 2001-07-07 parser
22166:
22167: * src/: classes/date.C, classes/table.C, include/pa_common.h,
22168: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
22169: roll table calendar
22170:
22171: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
22172: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
22173: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
22174: include/pa_request.h, main/main.dsp, types/pa_value.h,
22175: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
22176: string. todo: sql, calendar
22177:
22178: 2001-07-06 parser
22179:
22180: * src/: classes/math.C, include/pa_request.h, main/execute.C,
22181: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
22182:
22183: 2001-07-03 parser
22184:
22185: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
22186: classes/random.C, main/main.dsp: class random renamed to math,
22187: operators became methods
22188:
22189: * src/classes/op.C: pow sqrt
22190:
22191: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
22192:
22193: 2001-07-02 parser
22194:
22195: * src/classes/table.C: ^table.columns column renamed from 'name' to
22196: 'column'
22197:
22198: * src/classes/hash.C: ^hash.keys[]
22199:
22200: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
22201:
22202: * src/main/: compile.y, compile_tools.h: in expressions now allowed
22203: 'strings'
22204:
22205: 2001-06-29 parser
22206:
22207: * src/main/: execute.C: /0 %0 checkes ver 2
22208:
22209: * src/main/execute.C: /0 %0 checke
22210:
22211: * src/classes/Makefile.am: nothing - void
22212:
22213: * src/classes/table.C: empty strings @ sql
22214:
22215: 2001-06-28 parser
22216:
22217: * src/: classes/double.C, classes/file.C, classes/form.C,
22218: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22219: classes/op.C, classes/random.C, classes/response.C,
22220: classes/string.C, classes/table.C, classes/void.C,
22221: main/compile.C, main/compile_tools.C, main/execute.C,
22222: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22223: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22224: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22225: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22226: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
22227: targets/isapi/parser3isapi.C, main/compile.y: */ static const
22228: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
22229: $";
22230:
22231: * src/: classes/double.C, classes/file.C, classes/form.C,
22232: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22233: classes/op.C, classes/random.C, classes/response.C,
22234: classes/string.C, classes/table.C, classes/void.C,
22235: main/compile.C, main/compile.y, main/compile_tools.C,
22236: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22237: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22238: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22239: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22240: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 22241: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 22242:
22243: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
22244: $class:name: == ${class:name}:
22245:
22246: * src/classes/string.C: exactly one
22247:
22248: 2001-06-27 parser
22249:
22250: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
22251: types/pa_vvoid.h: nothing renamed to void
22252:
22253: * src/classes/op.C: ^switch ^case
22254:
22255: * src/main/compile.y: nothing renamed to void
22256:
22257: * src/: classes/hash.C, classes/table.C, main/compile.y,
22258: main/execute.C, main/main.dsp, main/pa_request.C,
22259: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
22260: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
22261: void
22262:
22263: * src/main/compile.y: lexer: $zzzz^zzzz were name part
22264:
22265: 2001-05-28 parser
22266:
22267: * src/doc/html2chm.cmd: removed >a
22268:
22269: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
22270: project options [some bugs]
22271:
22272: * src/doc/sources2html.cmd: z
22273:
22274: * src/: classes/classes.C, main/compile.C, main/compile.y,
22275: main/execute.C: operators are not in root class again
22276:
22277: 2001-05-24 parser
22278:
22279: * src/targets/cgi/parser3.dsp: project file
22280:
22281: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
22282: ^log ^exp
22283:
22284: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
22285: conversions in @exception[params]
22286:
22287: * src/main/pa_request.C: // no _ conversions in @exception[params]
22288:
22289: 2001-05-23 parser
22290:
22291: * src/main/pa_string.C: string cmp bug
22292:
22293: * src/classes/: mail.C, op.C: rem max 1000
22294:
22295: * src/: classes/op.C, main/compile.y: allow one empty line before
22296: LS_DEF_NAME
22297:
22298: 2001-05-22 parser
22299:
22300: * src/classes/op.C: if params code-required
22301:
22302: 2001-05-21 parser
22303:
22304: * src/types/pa_vstring.C: eoleof
22305:
22306: * src/classes/Makefile.am: .AM
22307:
22308: * src/classes/nothing.C: resultless ^sql moved to nothing:
22309:
22310: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
22311:
22312: * src/: classes/double.C, classes/nothing.C, classes/string.C,
22313: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
22314: types/pa_vunknown.h, classes/hash.C, main/compile.y,
22315: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
22316: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
22317: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
22318: 'nothing'
22319:
22320: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
22321: vstring::set_string
22322:
22323: * src/classes/: double.C, int.C, string.C: int,double;sql
22324:
22325: * src/: classes/hash.C, classes/int.C, classes/string.C,
22326: classes/table.C, include/pa_string.h, main/pa_string.C,
22327: types/pa_vstring.C, types/pa_vstring.h: started int:sql
22328:
22329: * src/: classes/classes.C, classes/hash.C, classes/op.C,
22330: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
22331: hash:sql moved to main trunc. operators.txt updated
22332:
22333: * src/classes/: hash.C, op.C, table.C: hash:sql
22334:
22335: * src/classes/op.C: z
22336:
22337: * src/: main/compile.C, classes/classes.C: 1
22338:
22339: * src/: classes/classes.C, main/compile.C, main/compile.y,
22340: main/execute.C: 0
22341:
22342: * src/main/execute.C: z
22343:
22344: * src/targets/cgi/parser3.C: z
22345:
22346: * src/targets/cgi/parser3.C: argv can be just "parser3". made
22347: site_auto_path "." in that case
22348:
22349: * src/targets/cgi/: parser3.C: z
22350:
22351: * src/main/pa_request.C: .am
22352:
22353: * src/: main/pa_request.C, targets/cgi/parser3.C:
22354: pcre_tables=pcre_default_tables;
22355:
22356: 2001-05-19 parser
22357:
22358: * src/main/pa_string.C: z
22359:
22360: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
22361: introducing String::cstr_bufsize, returns just size+1 for as_is
22362: target.
22363:
22364: * src/: main/untaint.C, targets/cgi/pa_pool.C,
22365: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
22366: used, 4* mem wasted
22367:
22368: * src/classes/string.C: root context in match replace body now
22369: unchanged
22370:
22371: * src/types/pa_value.h: parameter # 1 based
22372:
22373: * src/main/pa_common.C: common: actual filename '%s'
22374:
22375: * src/classes/string.C: z
22376:
22377: * src/classes/Makefile.am: classes/.am
22378:
22379: * src/classes/: Makefile.am: classes/.am
22380:
22381: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
22382: targets/cgi/pa_pool.C: classes/.am
22383:
22384: 2001-05-18 parser
22385:
1.116 moko 22386: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
22387: pa_threads.C ins
1.95 moko 22388:
22389: * src/targets/cgi/Makefile.am: .am pa_threads.C added
22390:
22391: 2001-05-17 parser
22392:
22393: * src/: classes/string.C, include/pa_config_fixed.h,
22394: include/pa_config_includes.h, main/compile.y,
22395: main/compile_tools.h, main/execute.C, main/pa_array.C,
22396: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
22397: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
22398: types/pa_vform.C: #include "pa_config_includes.h" removed from
22399: most .C
22400:
22401: * src/doc/html2chm.cmd: z
22402:
22403: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
22404: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
22405:
22406: * src/main/pa_sql_driver_manager.C: moved expiration to
22407: get_connection_from_cache
22408:
22409: * src/main/pa_sql_driver_manager.C: cache expiration bf
22410:
22411: * src/: classes/classes.h, include/pa_sql_connection.h,
22412: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
22413: cache expiration[use SQL_Driver::disconnect]
22414:
22415: * src/main/pa_table.C: table.locate current restored on "not found"
22416:
22417: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
22418: line no
22419:
22420: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22421: ANTI_ENDLESS_EXECUTE_RECOURSION
22422:
22423: * src/: classes/op.C, include/pa_sql_connection.h,
22424: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
22425: sql/pa_sql_driver.h: fixed problem at last: 2connections own
22426: 1driver and set_services fight for driver::fservices. before fix
22427:
22428: * src/: classes/op.C, include/pa_config_fixed.h,
22429: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
22430: main/pa_sql_driver_manager.C: found problem at last: 2connections
22431: own 1driver and set_services fight for driver::fservices. before
22432: fix
22433:
22434: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22435: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22436: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
22437: pa_threads.C
22438:
22439: * src/include/pa_threads.h: removed targets/parser
22440:
22441: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
22442: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
22443: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
22444: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
22445: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
22446: headers
22447:
22448: * src/: classes/image.C, include/pa_sql_driver_manager.h,
22449: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
22450: order prevented sqlmanager to see MULTYTHREAD define
22451:
22452: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22453: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
22454: put/gets
22455:
22456: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
22457: from hash.h
22458:
22459: * src/: classes/op.C, include/pa_sql_connection.h,
22460: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
22461: from cache ->set_services(&services);
22462:
22463: 2001-05-16 parser
22464:
22465: * src/targets/cgi/parser3.C: z
22466:
22467: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
22468: debug, #ifdefed some. would debug later, on more precise sample
22469: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
22470: $name.$tail[$tail!] $name.$tail } ok3
22471:
22472: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
22473: removed array debug. before vstring rebasing
22474:
22475: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
22476: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
22477: array debugged; adjusted
22478:
22479: * src/main/: pa_sql_driver_manager.C, pa_string.C:
22480: SQL_Driver_manager line no for connect/charset errors
22481:
22482: 2001-05-15 parser
22483:
22484: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
22485: main/pa_string.C: string+array made linear grows
22486:
22487: * src/: include/pa_string.h, main/pa_string.C,
22488: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
22489: grow lineary, not exponentialy
22490:
22491: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
22492: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
22493: with fullchunk cmps
22494:
22495: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
22496: 70041= 81
22497:
22498: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
22499: targets/cgi/parser3.C: detected huge mem allocation: size/times
22500: malloc 27809390/368771, calloc 3232/83. would test now
22501:
22502: * src/: classes/random.C, main/compile.y, main/execute.C,
22503: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
22504: numbered params had wrong name - for instance: bad error message
22505: in ^for[] bad body type. fixed
22506:
22507: 2001-05-14 parser
22508:
22509: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
22510: main/untaint.C: ^string.upper|lower[]
22511:
22512: 2001-05-11 parser
22513:
22514: * src/: classes/double.C, classes/image.C, classes/op.C,
22515: classes/string.C, classes/table.C, classes/unknown.C,
22516: main/execute.C, types/pa_value.h, types/pa_vbool.h,
22517: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
22518: types/pa_vunknown.h: op: MAX_LOOPS as_int
22519:
22520: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
22521: .dsp for win32tools
22522:
22523: 2001-05-11 paf
22524:
22525: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
22526: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
22527: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
22528: targets/isapi/kill.pl: moved win32 helpers to /win32tools
22529:
22530: 2001-05-10 paf
22531:
22532: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
22533: for C++, that's all
22534:
1.116 moko 22535: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
22536: pa_config_includes.h: inline wonders
1.95 moko 22537:
22538: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
22539: doc/doxygen.cmd: hash.C added
22540:
22541: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
22542:
22543: * src/main/compile.y: @end grammar: allowed zero strings in control
22544: menthod
22545:
22546: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
22547: pa_vstateless_object.h: changed priority: field before method
22548: lookup in vclass & vobject
22549:
22550: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
22551: grammar: priorities changes [lowerd && prior] vobject: now first
22552: fields, next methods
22553:
22554: 2001-05-08 paf
22555:
22556: * src/main/pa_table.C: table columnname2item on nameless ignored
22557: bark=false. fixed
22558:
22559: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
22560: types/pa_vmethod_frame.h: hash:default works at last!
22561:
22562: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
22563: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
22564: hash:default
22565:
22566: * src/classes/table.C: z
22567:
22568: * src/classes/table.C: table:hash always hash of hash now
22569:
22570: * src/classes/table.C: table:empty return bool now
22571:
22572: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
22573: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22574: types/pa_vtable.h: table:hash
22575:
22576: * src/classes/table.C: table:record have name
22577:
22578: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
22579: returns vunknown
22580:
22581: * src/classes/: double.C, int.C, op.C, string.C:
22582: int,double,string:int[] double[] string:length[] results now have
22583: hames
22584:
22585: * src/: classes/op.C, classes/table.C, main/main.dsp,
22586: types/pa_vtable.h: removed table:find. table:locate and op:eval
22587: now return bool
22588:
22589: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
22590: in method checkparams again. fixed
22591:
22592: 2001-05-07 paf
22593:
22594: * src/doc/chm.cmd: cmd
22595:
22596: * src/: classes/image.C, classes/mail.C, classes/string.C,
22597: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
22598: types/pa_value.h: method reported errors on wrong pool
22599:
22600: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
22601: now
22602:
22603: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
22604: include/code.h, include/pa_opcode.h, main/compile.C,
22605: main/compile_tools.h, main/execute.C, types/pa_value.h,
22606: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22607: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22608: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
22609: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22610: types/pa_vmethod_frame.h, types/pa_vobject.h,
22611: types/pa_vrequest.h, types/pa_vresponse.h,
22612: types/pa_vstateless_class.h, types/pa_vstring.h,
22613: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22614: types/pa_wwrapper.h: pa_code.h
22615:
22616: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
22617:
22618: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
22619: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
22620: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22621: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
22622: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22623: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
22624: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
22625: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
22626: types/pa_vtable.h: dox, split by not clean parts also
22627:
22628: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22629: types/pa_vtable.h: table: fields, then methods. so to enable
22630: 'dir' fields & co. more
22631:
22632: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
22633: so to enable 'dir' fields & co.
22634:
22635: * src/main/compile.y: grammar: @end
22636:
22637: 2001-05-04 paf
22638:
22639: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
22640: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
22641:
22642: * src/: classes/classes.h, classes/double.C, classes/file.C,
22643: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22644: classes/op.C, classes/random.C, classes/response.C,
22645: classes/string.C, classes/table.C, classes/unknown.C,
22646: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
22647: method dox
22648:
22649: 2001-05-03 paf
22650:
22651: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
22652: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22653: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
22654: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22655: doc/string.dox, doc/targets.dox, doc/value.dox,
22656: main/pa_request.C: dox splitted .dox files and added some
22657:
22658: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
22659:
22660: 2001-05-02 paf
22661:
22662: * src/classes/: image.C, table.C: table:dir result are not tainted
22663: by file_name language now
22664:
22665: 2001-04-28 paf
22666:
22667: * src/classes/classes.inc: removed classes.inc
22668:
22669: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
22670: from .am
22671:
22672: * src/classes/classes.awk: skipped classes in .awk
22673:
22674: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
22675: classes/classes.inc, classes/double.C, classes/file.C,
22676: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
22677: classes/string.C, classes/table.C, classes/unknown.C,
22678: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
22679: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
22680: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
22681: pa_methoded back to classes/classes.h
22682:
22683: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
22684:
22685: * src/: classes/Makefile.am, classes/classes.awk,
22686: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
22687: classes/ls.exe, main/bison.exe: classes.inc autogenerator
22688:
22689: * src/: classes/classes.C, classes/classes.h, classes/double.C,
22690: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
22691: classes/response.C, classes/string.C, classes/table.C,
22692: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
22693: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
22694: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
22695: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
22696: include|main/pa_methoded
22697:
22698: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
22699: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
22700:
22701: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
22702: moved some configured data to request::classes_conf moved some
22703: string crations from globals to M... [works]
22704:
22705: * src/: classes/form.C, classes/mail.C, classes/op.C,
22706: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
22707: main/pa_request.C: moved some configured data to
22708: request::classes_conf moved some string crations from globals to
22709: M...
22710:
22711: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
22712: about to move configured data to special request hash
22713:
22714: * src/: classes/classes.C, classes/classes.h, classes/file.C,
22715: classes/form.C, classes/mail.C, include/pa_request.h,
22716: main/pa_request.C: configure started
22717:
22718: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
22719: 2. todo: methoded-configure
22720:
22721: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22722: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22723: classes/_random.h, classes/_response.h, classes/_string.h,
22724: classes/_table.h, classes/_unknown.h, classes/classes.inc,
22725: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22726: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22727: classes/random.C, classes/response.C, classes/string.C,
22728: classes/table.C, classes/unknown.C, include/pa_globals.h,
22729: include/pa_request.h, main/compile.y, main/execute.C,
22730: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22731: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22732: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
22733: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
22734: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22735: types/pa_vrequest.h, types/pa_vresponse.h,
22736: types/pa_vstateless_class.h, types/pa_vstring.h,
22737: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22738: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
22739: methoded-configure
22740:
22741: * src/: classes/file.C, classes/table.C, main/compile.y,
22742: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
22743: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
22744: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
22745:
22746: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
22747: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22748: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22749: classes/random.C, classes/response.C, classes/string.C,
22750: classes/table.C, classes/unknown.C, include/pa_request.h,
22751: main/compile.y, main/execute.C, main/pa_globals.C,
22752: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
22753: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
22754: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
22755: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
22756: beautifying just compiled. todo: debug, configure
22757:
22758: 2001-04-27 paf
22759:
22760: * src/: classes/file.C, classes/image.C, classes/table.C,
22761: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
22762: beautifying -99
22763:
22764: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
22765: classes/_response.h, classes/_unknown.h, classes/classes.C,
22766: classes/classes.h, classes/double.C, classes/file.C,
22767: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22768: classes/op.C, classes/random.C, classes/response.C,
22769: classes/string.C, include/pa_globals.h, main/main.dsp,
22770: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
22771: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22772: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
22773: types/pa_vunknown.h: beautifying -100
22774:
22775: * src/main/compile.y: serge@ found @CLASS bug. fixed
22776:
22777: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
22778: classes/_op.h, classes/_random.h, classes/_table.h,
22779: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
22780: classes/op.C, classes/random.C, classes/response.C,
22781: classes/string.C, classes/table.C, classes/unknown.C,
22782: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22783: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22784: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
22785: beautifying
22786:
22787: 2001-04-26 paf
22788:
22789: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
22790:
22791: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
22792: documentation ++
22793:
22794: * src/: classes/_exec.h, doc/doxygen.cfg,
22795: include/pa_config_fixed.h, include/pa_config_includes.h,
22796: targets/cgi/pa_pool.C: code documentation ++
22797:
22798: * src/: classes/_image.h, classes/op.C, classes/random.C,
22799: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22800: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22801: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
22802: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22803: types/pa_vmethod_frame.h, types/pa_vobject.h,
22804: types/pa_vrequest.C, types/pa_vrequest.h,
22805: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
22806: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
22807: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
22808: code documentation ++
22809:
22810: * src/: classes/image.C, classes/mail.C, classes/string.C,
22811: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
22812: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
22813: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
22814: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22815: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
22816: types/pa_vobject.h, types/pa_vstateless_class.h,
22817: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
22818:
22819: * src/main/: pa_request.C, pa_string.C: z
22820:
22821: * src/: include/pa_common.h, include/pa_types.h,
22822: main/pa_sql_driver_manager.C: module [and, guess, isapi]
22823: connection caching fixed. request-pooled-url were stored into
22824: global connectioncache
22825:
22826: 2001-04-25 paf
22827:
22828: * src/: doc/doxygen.cfg, doc/doxygen.txt,
22829: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
22830:
22831: * src/: include/code.h, include/pa_common.h, main/compile.y,
22832: main/execute.C, main/pa_common.C: -d
22833:
22834: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
22835: illegal call check a bit improved, but still under iis no mapping
22836: of dir with parser allowed!
22837:
22838: 2001-04-24 paf
22839:
22840: * src/targets/Makefile.am: apache module lib .am
22841:
22842: * src/main/pa_exec.C: windows32 buildCommand
22843:
22844: 2001-04-23 paf
22845:
22846: * src/targets/cgi/Makefile.am: win32 conditional
22847:
22848: * src/targets/cgi/Makefile.am: win32 conditional
22849:
22850: * src/targets/cgi/Makefile.am: liblink
22851:
22852: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
22853: vfile fields return type
22854:
22855: * src/types/pa_vfile.h: vfile fields return type
22856:
22857: * src/include/pa_config_auto.h.in: .h.in
22858:
22859: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
22860: types/Makefile: makefiles removed
22861:
22862: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
22863: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
22864:
22865: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
22866: [tested: i & g ]
22867:
22868: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
22869: @test noticed series in isapi, check how initialize_random_class
22870: is called! [must be called only once]
22871:
22872: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
22873: would not be 'unknown column'
22874:
22875: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
22876: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
22877:
22878: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
22879: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
22880: [now doesnt]
22881:
22882: * src/targets/cgi/parser3.C: cgi cmdline ver
22883:
22884: * src/targets/cgi/parser3.C: cgi /// @test disable
22885: /cgi-bin/parser3/auto.p
22886:
22887: * src/main/untaint.C: untaint without charset
22888:
22889: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
22890: main/pa_common.C: common: file_write /// @test mkdirs
22891: file_delete rmdirs
22892:
22893: * src/main/untaint.C: mail header only once to =?
22894:
22895: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
22896: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
22897: main/untaint.C: untaint - @test optimize whitespaces for
22898: all but 'html'
22899:
22900: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
22901: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22902: main/untaint.C: untaint - @test mail-header
22903:
22904: 2001-04-20 paf
22905:
22906: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
22907: include/pa_request.h, include/pa_string.h, main/compile.y,
22908: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22909: targets/cgi/parser3.C: $MAIN:LOCALE
22910:
22911: * src/main/untaint.C: z
22912:
22913: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
22914:
22915: 2001-04-19 paf
22916:
22917: * src/main/compile_tools.h: $a$b bugfix
22918:
22919: * src/targets/cgi/parser3.C: z
22920:
22921: * src/classes/file.C: z
22922:
22923: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
22924: done: header to $fields. waits for header '\' tricks
22925:
22926: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22927: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
22928: changed urlencode here and in untaint.C to HTTP standard's " and
22929: \" mech
22930:
22931: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
22932: http://alx/~paf/ doesnt load /auto.p
22933:
22934: 2001-04-18 paf
22935:
22936: * src/main/pa_request.C: 1
22937:
22938: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
22939: linux @alx
22940:
22941: 2001-04-17 paf
22942:
22943: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
22944: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
22945: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
22946: enabled
22947:
22948: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22949: classes/_exec.h, classes/_file.h, classes/_form.h,
22950: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22951: classes/_random.h, classes/_response.h, classes/_string.h,
22952: classes/_table.h, classes/_unknown.h, classes/file.C,
22953: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
22954: include/pa_config_fixed.h, include/pa_config_includes.h,
22955: include/pa_hash.h, include/pa_sql_driver_manager.h,
22956: include/pa_version.h, main/Makefile.am, main/compile.y,
22957: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
22958: main/pa_sql_driver_manager.C, sql/Makefile.am,
22959: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
22960: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
22961: types/pa_vform.C, types/pa_vimage.h: exec @jav
22962:
22963: * src/: include/pa_sql_driver_manager.h,
22964: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22965: types/pa_vimage.h: sql driver interface now has initialize(client
22966: .so)
22967:
22968: 2001-04-16 paf
22969:
22970: * src/Makefile.am: compile2 cygwin
22971:
22972: * src/: include/pa_config_includes.h, main/pa_exec.C,
22973: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
22974:
22975: * src/targets/cgi/Makefile.am: compile0 jav
22976:
22977: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22978: classes/_exec.h, classes/_file.h, classes/_form.h,
22979: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22980: classes/_random.h, classes/_response.h, classes/_string.h,
22981: classes/_table.h, classes/_unknown.h, classes/image.C,
22982: classes/mail.C, classes/op.C, classes/random.C,
22983: include/pa_config_fixed.h, include/pa_config_includes.h,
22984: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
22985: main/compile.y, main/pa_common.C, main/pa_exec.C,
22986: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
22987: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
22988: compile-1
22989:
22990: 2001-04-15 paf
22991:
22992: * src/classes/op.C: z
22993:
22994: * src/classes/table.C: table:empty +=process
22995:
22996: * src/types/pa_value.h: MethodParams !junction
22997:
22998: * src/: classes/_string.h, classes/double.C, classes/file.C,
22999: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23000: classes/random.C, classes/response.C, classes/string.C,
23001: classes/table.C, classes/unknown.C, main/pa_request.C:
23002: MethodParams everywhere
23003:
23004: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
23005: types/pa_vmethod_frame.h: MethodParams in op.C
23006:
23007: 2001-04-12 paf
23008:
23009: * src/: classes/image.C, types/pa_vimage.h: image:font :text
23010:
23011: * src/: classes/_unknown.h, classes/unknown.C,
23012: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23013: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
23014:
23015: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
23016:
23017: * src/classes/image.C: image:gif now does not have params
23018:
23019: * src/classes/image.C:
23020: image:line/fill/rectangle/bar/replace/polygon/polybar
23021:
23022: * src/: classes/image.C, classes/op.C, main/execute.C,
23023: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
23024: for var now written not to r.wcontext, but to r.root cleared
23025: "entered_object" state
23026:
23027: 2001-04-11 paf
23028:
23029: * src/classes/image.C: image:create image:load
23030:
23031: * src/: classes/image.C, main/main.dsp: gd with mem write + image
23032: just compiled
23033:
23034: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23035: todo: gif without file
23036:
23037: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23038: started porting to Pooled descendant
23039:
23040: * src/: classes/image.C, main/execute.C, main/main.dsp,
23041: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
23042: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
23043: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
23044:
23045: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
23046: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
23047: end. switching to python imaging lib
23048:
23049: * src/main/main.dsp: gd+smtp made separate libs
23050:
23051: * src/: include/pa_globals.h, include/pa_string.h,
23052: main/pa_common.C, main/pa_request.C, main/untaint.C,
23053: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
23054: length
23055:
23056: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
23057: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
23058: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
23059: UL_FILE_NAME of posted file name
23060:
23061: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
23062: post [broke when moved post read to core]
23063:
23064: 2001-04-10 paf
23065:
23066: * src/classes/image.C: image:html done
23067:
23068: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
23069:
23070: * src/classes/image.C: z
23071:
23072: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
23073: forgotten!
23074:
23075: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23076: main/pa_request.C, main/pa_string.C, main/untaint.C,
23077: types/pa_vimage.h: image:measure -90
23078:
23079: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23080: classes/_int.h, classes/_mail.h, classes/_op.h,
23081: classes/_random.h, classes/_response.h, classes/_string.h,
23082: classes/_table.h, classes/file.C, classes/mail.C,
23083: include/pa_common.h, include/pa_globals.h, main/execute.C,
23084: main/main.dsp, main/pa_common.C, main/pa_globals.C,
23085: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
23086: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
23087: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
23088: compiled
23089:
23090: * src/classes/mail.C: minor bug with unclear from/to
23091:
23092: * src/classes/mail.C: sendmail unix skipping defaults
23093:
23094: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
23095: sendmail unix added defaults
23096:
23097: * src/classes/mail.C: unix sendmail compiled. todo:testing
23098:
23099: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
23100:
23101: 2001-04-09 paf
23102:
23103: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
23104: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
23105: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
23106: targets/isapi/parser3isapi.dsp: all targets exec
23107:
23108: * src/: include/pa_sapi.h, include/pa_string.h,
23109: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23110: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
23111: args in apache:util.script
23112:
23113: * src/include/pa_string.h: written but not tested exec with env for
23114: unix
23115:
23116: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
23117: targets/cgi/parser3.C: exec win32 env
23118:
23119: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
23120: 0
23121:
23122: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
23123: main/execute.C, main/main.dsp, main/pa_globals.C,
23124: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
23125: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
23126:
23127: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
23128: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
23129:
23130: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
23131: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
23132:
23133: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
23134: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
23135: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23136: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23137: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
23138: exec class just compiled. moved post read to request core
23139:
23140: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
23141: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
23142: main/pa_globals.C, targets/cgi/parser3.C,
23143: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
23144: are already read by vform
23145:
23146: 2001-04-08 paf
23147:
23148: * src/: classes/file.C, classes/mail.C, classes/string.C,
23149: include/pa_request.h, include/pa_string.h, main/pa_request.C:
23150: uuencode. string<<
23151:
23152: 2001-04-07 paf
23153:
23154: * src/classes/mail.C: z
23155:
23156: * src/classes/mail.C: z
23157:
23158: * src/classes/mail.C: ^mail[$attach
23159:
23160: * src/classes/mail.C: ^attach dead end
23161:
23162: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
23163: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23164: targets/isapi/parser3isapi.C: mail:send 1
23165:
23166: * src/: classes/mail.C, main/pa_request.C: z
23167:
23168: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
23169: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
23170: compiled
23171:
23172: * src/classes/mail.C: +=
23173:
23174: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
23175: prepared
23176:
23177: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
23178: include/pa_globals.h, include/pa_string.h, main/main.dsp,
23179: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23180: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
23181:
23182: 2001-04-06 paf
23183:
23184: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
23185: main/pa_string.C: table:dir 1
23186:
23187: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
23188: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
23189:
23190: * src/: classes/_op.h, classes/_root.h, classes/op.C,
23191: classes/root.C, include/pa_globals.h, include/pa_request.h,
23192: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
23193: main/pa_request.C: renamed 'root' to 'op'
23194:
23195: * src/classes/: _op.h, op.C: renamed from 'root'
23196:
23197: * src/types/pa_valiased.C: another root inherititance skipped
23198:
23199: * src/main/: compile.C, compile.y, execute.C: operators are now not
23200: root methods of parent class. just 'ROOT' class
23201:
23202: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
23203: @office
23204:
23205: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
23206:
23207: 2001-04-05 paf
23208:
23209: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
23210: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
23211: constructor flag dropped at get_method_frame and remembered into
23212: method_frame
23213:
23214: * src/: classes/file.C, classes/root.C, classes/string.C,
23215: classes/table.C, main/pa_request.C: junction to code&expression
23216: in errors
23217:
23218: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23219: main/pa_string.C, targets/isapi/parser3isapi.dsp:
23220: $LOCALE:ctype[Russian_Russia.1251]
23221:
23222: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23223: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
23224: main/pa_table.C: hash now not thread-safe.
23225:
23226: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23227: main/untaint.C: z
23228:
23229: * src/: classes/random.C, classes/root.C, classes/table.C,
23230: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
23231: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
23232: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
23233: types/pa_wcontext.h: sql quote. string untaint UL_SQL
23234:
23235: * src/: classes/table.C, include/pa_sql_connection.h,
23236: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
23237:
23238: * src/classes/table.C: select * from hren error contains statement
23239:
23240: * src/: classes/table.C, include/pa_sql_connection.h,
23241: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
23242: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
23243:
23244: * src/: classes/root.C, include/pa_sql_connection.h,
23245: include/pa_sql_driver.h, main/main.dsp,
23246: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
23247: services for conv memory & error reporting
23248:
23249: 2001-04-04 paf
23250:
23251: * src/doc/doxygen.cfg: z
23252:
23253: * src/include/pa_sql_driver.h: mysql connect
23254:
23255: * src/include/pa_sql_driver.h: mysql info
23256:
23257: * src/: classes/root.C, include/pa_sql_driver.h,
23258: include/pa_sql_driver_manager.h, main/main.dsp,
23259: main/pa_sql_driver_manager.C: more manager&connection&driver
23260:
23261: * src/sql/Makefile.am: forgot to add mysql client
23262:
23263: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
23264: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
23265: [forgot to add libltdl, added]
23266:
23267: * src/: Makefile.am, classes/root.C, classes/string.C,
23268: classes/table.C, include/pa_globals.h, include/pa_hash.h,
23269: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
23270: include/pa_string.h, include/pa_table.h, main/main.dsp,
23271: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23272: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
23273: -1000 just compiled
23274:
23275: * src/: classes/random.C, classes/root.C, classes/table.C,
23276: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
23277: main/pa_request.C, types/pa_vclass.h: sql frame -10
23278:
23279: 2001-04-03 paf
23280:
23281: * src/types/pa_vform.C: z
23282:
23283: * src/: classes/string.C, types/pa_vform.C: string:match replace
23284: assigned lang
23285:
23286: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
23287: {}[]< empty []
23288:
23289: * src/: classes/file.C, classes/string.C, classes/table.C,
23290: include/pa_string.h, main/pa_common.C, main/pa_string.C,
23291: main/untaint.C: string:match replace 2. string.cstr(forced lang)
23292:
23293: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23294: string:match replace strange matches
23295:
23296: * src/classes/string.C: string:match replace 0
23297:
23298: * src/: classes/string.C, main/pa_string.C: string:match replace
23299: prepared 2
23300:
23301: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23302: string:match replace prepared
23303:
23304: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23305: string:match replace -11
23306:
23307: * src/: classes/string.C, include/pa_globals.h,
23308: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
23309: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
23310:
23311: * src/: classes/string.C, include/pa_globals.h,
23312: include/pa_string.h, main/main.dsp, main/pa_globals.C,
23313: main/pa_string.C: string:match [search] -1 just compiled
23314:
23315: * src/types/pa_vstring.C: z
23316:
23317: * src/: classes/double.C, classes/file.C, classes/form.C,
23318: classes/int.C, classes/response.C, classes/root.C,
23319: classes/string.C, classes/table.C, include/pa_string.h,
23320: main/pa_string.C: string:match -10 [frame]
23321:
23322: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
23323: main/pa_request.C: z
23324:
23325: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
23326: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
23327: todo/tests
23328:
23329: * src/include/pa_common.h: z
23330:
23331: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
23332: main/pa_request.C, targets/cgi/parser3.C,
23333: targets/isapi/parser3isapi.C, types/pa_vfile.C:
23334: content-disposition
23335:
23336: * src/: include/pa_common.h, include/pa_globals.h,
23337: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23338: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
23339:
23340: * src/: include/pa_common.h, include/pa_request.h,
23341: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
23342: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23343: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
23344: response:body
23345:
23346: * src/classes/table.C: table:append now uses string::split
23347:
23348: * src/classes/table.C: z
23349:
23350: * src/: classes/file.C, classes/root.C, classes/string.C,
23351: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
23352: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
23353: include/pa_string.h, main/execute.C, main/pa_string.C,
23354: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
23355: string::pos & cmp & piece bugs fixed. string::split new
23356: table:load separated from set table:set implemented with clean \n
23357: \t searches
23358:
23359: 2001-04-02 paf
23360:
23361: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23362: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
23363: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23364: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
23365: it in table:set/load
23366:
23367: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
23368: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
23369:
23370: * src/classes/random.C: random:generate 1
23371:
23372: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
23373: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23374: types/pa_value.h: random:generate
23375:
23376: 2001-03-30 paf
23377:
23378: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
23379: todo: table flip and append. string::pos
23380:
23381: * src/: classes/double.C, classes/file.C, classes/int.C,
23382: classes/response.C, classes/root.C, classes/string.C,
23383: classes/table.C, main/compile.y, main/execute.C,
23384: types/pa_value.h, types/pa_vstateless_class.C,
23385: types/pa_vstateless_class.h: static|dynamic|any method
23386: registration
23387:
23388: * src/: classes/file.C, classes/table.C, include/pa_table.h,
23389: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
23390: table:flip
23391:
23392: 2001-03-29 paf
23393:
23394: * src/classes/string.C: string:xsplit forgot that they must result
23395: in 1 row N column [not vice versa]
23396:
23397: * src/classes/string.C: z
23398:
23399: * src/classes/string.C: string: rsplit
23400:
23401: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23402: string: lsplit
23403:
23404: * src/: classes/string.C, include/pa_string.h, main/execute.C,
23405: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
23406: lsplit -1
23407:
23408: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
23409: string: pos
23410:
23411: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23412: string: pos -1
23413:
23414: * src/: classes/string.C, classes/table.C, include/pa_string.h,
23415: main/compile.y, main/pa_request.C, main/pa_string.C,
23416: main/untaint.C: string: left right mid
23417:
23418: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
23419: main/compile_tools.h, main/main.dsp, types/pa_value.h,
23420: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
23421: and [;] are different now.
23422:
23423: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23424: main/untaint.C: pool.request undone
23425:
23426: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23427: main/untaint.C: pool.request
23428:
23429: 2001-03-28 paf
23430:
23431: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23432: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23433: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
23434: $request:browser [.type .version]; unknown.get_double now = 0.
23435:
23436: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23437: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
23438: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
23439: types/pa_vform.C: file:load autodetection of mime-type by
23440: user-file-name
23441:
23442: * src/: classes/file.C, main/execute.C, main/pa_common.C,
23443: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
23444: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
23445:
23446: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
23447: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
23448: write. must be self.set
23449:
23450: * src/: classes/file.C, classes/root.C, classes/table.C,
23451: include/pa_table.h, main/pa_table.C: table:locate1, file:test
23452:
23453: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
23454: include/pa_table.h, main/pa_array.C, main/pa_table.C,
23455: types/pa_vtable.h: table:locate just compiled
23456:
23457: 2001-03-27 paf
23458:
23459: * src/main/: execute.C, pa_common.C: fixed r/w context of
23460: code-params2, fixed ntfs hardlink slow dir update
23461:
23462: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
23463: types/pa_wcontext.h: fixed r/w context of code-params
23464:
23465: * src/: classes/table.C, main/execute.C: about to change junction
23466: rcontext!!
23467:
23468: * src/: classes/double.C, classes/int.C, classes/root.C,
23469: classes/string.C, classes/table.C, main/compile_tools.C,
23470: main/execute.C, main/pa_request.C, main/untaint.C,
23471: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
23472: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23473: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
23474: types/pa_vunknown.h: sort 0
23475:
23476: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
23477: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
23478: renamed to are_static_calls_disabled
23479:
23480: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
23481: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
23482: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23483: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
23484:
23485: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
23486:
23487: * src/: classes/table.C, include/pa_common.h, main/compile.y:
23488: started table:sort fixed minor bug in #...^{
23489:
23490: * src/: classes/table.C, include/pa_common.h, main/compile.y,
23491: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
23492: decided to have as it were. stepped back. grammar: added 'in'
23493: 'is' 'lt'&co follow-space check
23494:
23495: 2001-03-26 paf
23496:
23497: * src/: classes/file.C, classes/root.C, classes/table.C,
23498: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
23499: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23500: main/pa_table.C: moved ::save to pa_table. disabled @auto
23501: invocation in ^process
23502:
23503: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
23504:
23505: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
23506: main/pa_array.C: table:record
23507:
23508: * src/: main/untaint.C, targets/cgi/parser3.C,
23509: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23510: targets/isapi/pool_storage.h, types/pa_valiased.h,
23511: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
23512: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
23513: types/pa_vtable.h: z
23514:
23515: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
23516: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
23517: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23518: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
23519: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
23520: method realisations on 'self' validity - they now can simply
23521: assume that 'self' is V{Proper} .
23522:
23523: 2001-03-25 paf
23524:
23525: * src/main/untaint.C: z
23526:
23527: * src/main/: pa_request.C, untaint.C: moved default typo-table to
23528: lowlevel - it initialization could be skipped if failed in @auto.
23529: so that exception report would use some table
23530:
23531: * src/main/pa_request.C: table empty lines ignored. system-default
23532: content type assigned in output:result [can fail in main:auto and
23533: skipped normal defaults extraction]
23534:
23535: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
23536: bug
23537:
23538: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
23539: processing to table [except preliminary \r\n \r \n replacements
23540: to "\n"]
23541:
23542: * src/: classes/table.C, main/untaint.C: html-typo - decided to
23543: move all the processing to table
23544:
23545: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
23546: main/pa_table.C, main/untaint.C: returned table originating.
23547: useful for reporting typo table problems origin. think would be
23548: useful somewhere else
23549:
23550: * src/main/untaint.C: typo \r \r\n \n properly handled
23551:
23552: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
23553: include/pa_table.h, main/compile.y, main/compile_tools.C,
23554: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
23555: main/pa_string.C, main/pa_table.C, main/untaint.C,
23556: types/pa_vcookie.h: typo & typo-default
23557:
23558: 2001-03-24 paf
23559:
23560: * src/main/pa_common.C: z
23561:
23562: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
23563: targets/cgi/parser3.C: html-typo 2
23564:
23565: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
23566: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
23567: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
23568: main/execute.C, main/pa_array.C, main/pa_globals.C,
23569: main/pa_request.C, main/pa_string.C, main/untaint.C,
23570: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23571: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
23572: noticed double default content-type prob. run cgi.cmd tomorrow
23573: first html-typo sample. detected << problem: they become ltlt too
23574: fast
23575:
23576: * src/main/compile.y: z
23577:
23578: * src/main/: compile.y, compile_tools.h: #comment
23579:
23580: * src/: classes/file.C, classes/root.C, classes/table.C,
23581: include/pa_common.h, include/pa_request.h, main/compile.y,
23582: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23583: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
23584: stringified
23585:
23586: * src/types/pa_valiased.C: decided to String-ify file_read
23587:
23588: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
23589: isapi/parser3isapi.dsp: cgi: sapi::log
23590:
23591: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
23592: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
23593: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
23594: error log experiments failed - cgi under iis got no access to
23595: log. registereventsource simply failed with 5(illegal call) code,
23596: while worked OK as standalone executable. isapi: used
23597: HSE_APPEND_LOG_PARAMETER feature
23598:
23599: * src/: include/pa_common.h, include/pa_globals.h,
23600: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23601: targets/isapi/parser3isapi.C: fixed default content-type
23602: allocation storage
23603:
23604: * src/: include/pa_globals.h, include/pa_request.h,
23605: main/pa_globals.C, main/pa_request.C: z
23606:
23607: * src/: include/pa_array.h, include/pa_hash.h,
23608: include/pa_request.h, main/compile.y, main/pa_array.C,
23609: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23610: types/pa_vcookie.C: cyclic uses ignored. defaulted default
23611: content-type
23612:
23613: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
23614: sanity
23615:
23616: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
23617: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
23618: away freeze mech. no danger now for you can't do
23619: ^request:process[@new-method[] body] trick anymore. still
23620: remains $some_instance.process[@new-method[] possibility] but
23621: would leave it as a feature. see index for sample
23622:
23623: * src/: include/pa_common.h, main/pa_common.C,
23624: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
23625: monkey every target
23626:
23627: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23628: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
23629: types/pa_vform.C, types/pa_vform.h: auto.p monkey
23630:
23631: 2001-03-23 paf
23632:
23633: * src/: include/pa_pool.h, main/pa_request.C,
23634: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
23635: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23636: targets/isapi/pool_storage.h: isapi: dumb pool storage
23637:
23638: * src/targets/isapi/pa_pool.C: decided to continue with extension
23639:
23640: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
23641: it would be better to rewrite as filter then to deal with pool
23642:
23643: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
23644: now like in cgi, not from APPL_PHYSICAL_PATH
23645:
23646: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23647: include/pa_config_fixed.h, include/pa_config_includes.h,
23648: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
23649: include/pa_version.h, main/compile.y, main/execute.C,
23650: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23651: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23652: main/untaint.C, targets/cgi/parser3.C,
23653: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
23654: cgi: reinvent document_root and request_uri under iis. autoconf
23655: updated. introducing ap_config_includes
23656:
23657: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
23658:
23659: * src/targets/cgi/parser3.C: cgi: only one pool now
23660:
23661: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
23662: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23663: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23664: types/pa_venv.h, types/pa_vform.C: sapi made object
23665:
23666: * src/: include/pa_globals.h, main/pa_request.C,
23667: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23668: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23669: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
23670:
23671: * src/: main/pa_request.C, targets/cgi/parser3.C,
23672: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23673: isapi minor env beauty
23674:
23675: * src/: main/pa_request.C, targets/cgi/parser3.C,
23676: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23677: isapi document_root 0
23678:
23679: 2001-03-22 paf
23680:
23681: * src/targets/isapi/parser3isapi.C: isapi keep-alive
23682:
23683: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
23684: isapi/parser3isapi.C: z
23685:
23686: * src/: include/pa_pool.h, main/pa_request.C,
23687: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
23688:
23689: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
23690: kill.pl: isapi added utils
23691:
23692: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
23693: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23694: types/pa_vform.C: isapi 0
23695:
23696: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
23697: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23698: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
23699: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
23700: started isapi
23701:
23702: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
23703: some comments
23704:
23705: * src/: include/pa_globals.h, include/pa_request.h,
23706: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
23707: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
23708: parser_root_auto_path parser_site_auto_path
23709:
23710: * src/types/pa_vcookie.C: cookie attr decoded
23711:
23712: 2001-03-21 paf
23713:
23714: * src/targets/cgi/parser3.C: z
23715:
23716: * src/include/pa_globals.h: post. todo: config of auto.p path
23717:
23718: * src/: include/pa_globals.h, targets/cgi/parser3.C,
23719: types/pa_venv.h: in cookie & env. todo:post
23720:
23721: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
23722: classes/root.C, classes/table.C, include/pa_array.h,
23723: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
23724: include/pa_request.h, include/pa_string.h, main/Makefile.am,
23725: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
23726: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23727: main/pa_table.C, main/untaint.C, targets/Makefile.am,
23728: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23729: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
23730: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
23731: shifted apache branch on main trunc
23732:
23733: * src/: include/pa_common.h, include/pa_globals.h,
23734: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23735: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
23736: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
23737: starting mod_parser3
23738:
23739: * src/targets/cgi/parser3.C: starting mod_parser3
23740:
23741: 2001-03-20 paf
23742:
23743: * src/: main/pa_common.C, targets/cgi/Makefile.am,
23744: targets/cgi/parser3.C: automake compiled and works. todo:make
23745: win32 ifdefs work and add ifdef unistd
23746:
23747: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
23748: main/Makefile.am, main/pa_common.C, main/pa_request.C,
23749: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
23750: z
23751:
23752: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
23753: main/execute.C, main/pa_common.C, types/Makefile.am: removing
23754: locking
23755:
23756: * src/: classes/Makefile.am, types/Makefile.am: z
23757:
23758: * src/: Makefile.am, classes/file.C, classes/root.C,
23759: classes/table.C, include/pa_array.h, include/pa_request.h,
23760: include/pa_string.h, main/Makefile.am, main/execute.C,
23761: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23762: main/pa_string.C, main/untaint.C, targets/Makefile.am,
23763: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23764: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
23765:
23766: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23767: main/pa_request.C, types/pa_vfile.h: ^table:save
23768:
23769: * src/: classes/file.C, classes/table.C, include/pa_array.h,
23770: include/pa_common.h, include/pa_request.h, include/pa_string.h,
23771: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
23772: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
23773: types/pa_vform.h: z
23774:
23775: * src/include/pa_string.h: z
23776:
23777: * src/: classes/_request.h, classes/request.C, main/main.dsp,
23778: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
23779: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23780: :Value
23781:
23782: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
23783: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23784: :VStateless_object
23785:
23786: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
23787: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
23788: :VStateless_object
23789:
23790: * src/: main/main.dsp, targets/cgi/parser3.dsp,
23791: types/pa_valiased.C, types/pa_vform.h: commented VForm
23792:
23793: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
23794: types/pa_valiased.h, types/pa_value.h,
23795: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
23796: types/pa_vstateless_object.h: moved common get_element part from
23797: stateless object&class into VAliased
23798:
23799: * src/: classes/_env.h, classes/_table.h, classes/env.C,
23800: classes/table.C, main/execute.C, main/main.dsp,
23801: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
23802: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
23803: now :Value
23804:
23805: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
23806: main/execute.C, main/main.dsp, main/pa_globals.C,
23807: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
23808:
23809: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
23810: doxx
23811:
23812: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
23813: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23814: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
23815: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
23816: and ^file:save
23817:
23818: 2001-03-19 paf
23819:
23820: * src/types/pa_vfile.C: z
23821:
23822: * src/: classes/file.C, classes/request.C, classes/table.C,
23823: include/pa_string.h, main/main.dsp, main/pa_pool.C,
23824: main/pa_request.C, main/untaint.C, types/pa_value.h,
23825: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
23826:
23827: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
23828: include/pa_string.h, include/pa_table.h, main/main.dsp,
23829: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
23830: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
23831: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
23832: classes/_file.h, classes/file.C, types/pa_vfile.C,
23833: types/pa_vfile.h: file class just compiled
23834:
23835: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
23836: include/pa_table.h, include/pa_types.h, main/execute.C,
23837: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23838: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
23839: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
23840:
23841: * src/include/pa_pool.h: z
23842:
23843: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
23844: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
23845: Hash::Value to Val so to doxygen would finlly stop confusing
23846: those Value-s
23847:
23848: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
23849: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
23850: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23851: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23852: include/pa_types.h, main/compile.C, main/compile.y,
23853: main/compile_tools.C, main/compile_tools.h, main/execute.C,
23854: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
23855: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
23856: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23857: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
23858:
23859: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
23860: derivates somehow unlinked. don't know why yet
23861:
23862: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
23863: include/pa_string.h, include/pa_threads.h, main/compile.C,
23864: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23865: main/execute.C, main/pa_array.C, main/pa_common.C,
23866: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
23867: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23868: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
23869:
23870: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
23871: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
23872: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
23873: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
23874: types/pa_vrequest.h: doc: detected Value derivates prob
23875:
23876: * src/include/pa_globals.h: z
23877:
23878: * src/: classes/_request.h, classes/request.C, include/code.h,
23879: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
23880: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
23881: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
23882: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
23883: main/execute.C, main/pa_pool.C, main/pa_request.C,
23884: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23885: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
23886:
23887: 2001-03-18 paf
23888:
23889: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
23890: cookie: allowed access to hash-assigned
23891:
23892: * src/targets/cgi/parser3.C: z
23893:
23894: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
23895: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
23896: include/pa_types.h, main/main.dsp, main/pa_common.C,
23897: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23898: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23899: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
23900: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
23901: types/pa_vunknown.h: cookie class
23902:
23903: * src/main/pa_request.C: zero length output allowed
23904:
23905: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
23906: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
23907:
23908: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
23909: lang switch
23910:
23911: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
23912: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23913: types/pa_value.h, types/pa_vhash.h:
23914: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
23915:
23916: * src/main/execute.C: z
23917:
23918: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
23919: targets/cgi/parser3.C: taint[uri
23920:
23921: * src/: classes/request.C, classes/response.C, classes/root.C,
23922: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
23923: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
23924: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
23925:
23926: * src/: classes/root.C, classes/string.C, include/pa_string.h,
23927: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23928: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
23929: types/pa_vstateless_class.C: convinient string(pool, char *src,
23930: bool tainted) ctor
23931:
23932: * src/: include/pa_hash.h, include/pa_request.h,
23933: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
23934: main/pa_request.C, main/pa_string.C, main/untaint.C,
23935: targets/cgi/parser3.C: proper @exceptions params tainting
23936:
23937: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
23938: response fields to header
23939:
23940: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
23941: z
23942:
23943: * src/: classes/_response.h, classes/response.C,
23944: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
23945: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
23946: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23947: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
23948: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
23949: $response: 0 request::core exception rethrow
23950:
23951: 2001-03-16 paf
23952:
23953: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
23954: types/pa_vrequest.h: native method' class call with less params
23955: then needed error reporting
23956:
23957: * src/: classes/_request.h, classes/request.C,
23958: include/pa_globals.h, include/pa_request.h, main/execute.C,
23959: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23960: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
23961: types/pa_vrequest.h: $request : query :uri
23962:
23963: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
23964: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
23965: types/pa_wcontext.h: $result
23966:
23967: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
23968:
23969: * src/: classes/double.C, include/code.h, main/compile.y,
23970: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
23971: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
23972:
23973: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
23974: main/compile.y, main/execute.C, types/pa_value.h,
23975: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
23976: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
23977: wcontext conflict
23978:
23979: * src/: main/execute.C, types/pa_value.h,
23980: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
23981: $string.field
23982:
23983: 2001-03-15 paf
23984:
23985: * src/main/pa_request.C: news sample
23986:
23987: * src/: main/compile.y, main/execute.C, main/pa_request.C,
23988: targets/cgi/parser3.C, types/pa_vstring.h: @exception
23989:
23990: * src/main/: compile.y, execute.C: z
23991:
23992: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
23993: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
23994: pre pre works
23995:
23996: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23997: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
23998: fillfields just compiled
23999:
24000: 2001-03-14 paf
24001:
24002: * src/: include/pa_request.h, main/pa_request.C,
24003: targets/cgi/parser3.C: z
24004:
24005: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24006: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
24007: types/pa_vstring.h: limits -1
24008:
24009: * src/: include/pa_globals.h, include/pa_request.h,
24010: include/pa_types.h, main/main.dsp, main/pa_globals.C,
24011: main/pa_request.C, targets/cgi/parser3.C,
24012: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
24013: request_info -1
24014:
24015: * src/: include/pa_globals.h, main/pa_globals.C,
24016: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24017: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
24018: vform_fields_fill
24019:
24020: * src/targets/cgi/parser3.C: # if MSVC
24021:
24022: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
24023: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
24024:
24025: * src/targets/cgi/parser3.C: z
24026:
24027: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
24028: include/pa_string.h, include/pa_types.h, main/compile.y,
24029: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
24030: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
24031: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
24032: types/pa_vunknown.h: global handler, exceptions in parser3
24033:
24034: 2001-03-13 paf
24035:
24036: * src/: classes/form.C, main/compile.y, main/core.C,
24037: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
24038: types/pa_vform.h, types/pa_vstateless_class.C,
24039: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
24040: instead
24041:
24042: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24043: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
24044: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
24045: started cgi target
24046:
24047: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24048: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
24049: before error show with parser
24050:
24051: * src/: classes/_form.h, classes/form.C, include/core.h,
24052: include/pa_request.h, main/core.C, main/pa_request.C,
24053: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
24054:
24055: * src/targets/cgi/: parser.dsp, parser3.dsp: z
24056:
24057: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
24058: parser3.C: renamed targets/ parser to cgi
24059:
24060: * src/: classes/double.C, classes/env.C, classes/int.C,
24061: classes/root.C, classes/string.C, classes/table.C,
24062: include/pa_request.h, types/pa_vhash.h: z
24063:
24064: * src/: classes/_env.h, classes/env.C, classes/root.C,
24065: include/core.h, include/pa_pool.h, include/pa_request.h,
24066: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
24067: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24068: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
24069: [historical moment :)]
24070:
24071: * src/: include/code.h, include/pa_string.h, main/compile.y,
24072: main/execute.C, main/pa_string.C: 'value is type' expr operator
24073:
24074: * src/types/pa_venv.h: $ENV 1
24075:
24076: * src/main/execute.C: z
24077:
24078: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
24079: future methods of ENV constructor if
24080:
24081: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
24082: class
24083:
24084: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24085: classes/_root.h, classes/_string.h, classes/_table.h,
24086: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24087: classes/string.C, classes/table.C, include/pa_request.h,
24088: main/compile.C, main/compile_tools.h, main/core.C,
24089: main/execute.C, main/main.dsp, main/pa_request.C,
24090: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24091: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24092: types/pa_vobject.h, types/pa_vstateless_class.C,
24093: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24094: types/pa_wcontext.h: $ENV: re 0, stateless classes
24095:
24096: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24097: classes/_root.h, classes/_string.h, classes/_table.h,
24098: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24099: classes/string.C, classes/table.C, include/pa_request.h,
24100: main/compile.C, main/compile_tools.h, main/core.C,
24101: main/execute.C, main/main.dsp, main/pa_request.C,
24102: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24103: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24104: types/pa_vobject.h, types/pa_vstateless_class.C,
24105: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24106: types/pa_wcontext.h: $ENV: re 0, stateless classes
24107:
24108: * src/: include/pa_request.h, main/compile.C, main/execute.C,
24109: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
24110: yesterdays bad decision on execute_static_method
24111:
24112: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
24113:
24114: * src/: classes/double.C, classes/int.C, classes/root.C,
24115: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
24116:
24117: * src/main/pa_request.C: z
24118:
24119: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24120: include/pa_pool.h: skipped_restructure_exceptions_dead_end
24121:
24122: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24123: include/pa_pool.h, main/pa_request.C:
24124: restructure_exceptions_dead_end
24125:
24126: * src/: classes/root.C, main/compile.y: ^if required junctions.
24127: allowed ; inside {} to break params
24128:
24129: * src/classes/root.C: ^eval
24130:
24131: * src/: classes/_string.h, classes/double.C, classes/int.C,
24132: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
24133: string ^format
24134:
24135: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
24136: 'bad' but not 'enough'
24137:
24138: * src/: classes/double.C, classes/root.C, classes/table.C,
24139: include/pa_common.h, include/pa_types.h, main/compile.y,
24140: main/pa_common.C, main/pa_request.C, main/untaint.C,
24141: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
24142: types/pa_wwrapper.h: think constructing flag as is is bad
24143:
24144: * src/: classes/double.C, classes/int.C, classes/root.C,
24145: classes/string.C, classes/table.C, main/core.C, main/execute.C,
24146: types/pa_vint.h: ^for
24147:
24148: 2001-03-12 paf
24149:
24150: * src/classes/table.C: table ^empty
24151:
24152: * src/: classes/table.C, include/pa_table.h: table ^menu
24153:
24154: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
24155: ^offset ^line ^count
24156:
24157: * src/classes/root.C: ^round() ^floor() ^ceiling()
24158: ^abs() ^sign()
24159:
24160: * src/classes/: root.C, table.C: ^use
24161:
24162: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24163: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
24164: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
24165: ^while. switched off wcontext.constructing after write(value) or
24166: auto-vhash-constructing
24167:
24168: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24169: main/pa_request.C: fail_if_junction_ helper func
24170:
24171: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24172: include/pa_request.h, main/execute.C, main/main.dsp,
24173: main/pa_common.C, main/pa_request.C: ^process error point by
24174: actual method_name, not source. ^load
24175:
24176: * src/types/pa_vtable.h: table: no, better with string in cells...
24177:
24178: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
24179: classes/_table.h, classes/table.C, main/untaint.C: z
24180:
24181: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
24182: include/pa_table.h, main/core.C, main/execute.C,
24183: main/pa_common.C, main/pa_request.C, main/pa_table.C,
24184: types/pa_value.h: table:set 0
24185:
24186: * src/: classes/root.C, include/core.h, include/pa_array.h,
24187: include/pa_request.h, include/pa_table.h, main/core.C,
24188: main/main.dsp, main/pa_request.C, main/pa_table.C,
24189: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
24190: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
24191: types/pa_vstring.h: freeze, ^table:create[] -1
24192:
24193: * src/: classes/root.C, types/pa_value.h: z
24194:
24195: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
24196: get_method in couple places optimizing them
24197:
24198: * src/classes/root.C: z
24199:
24200: * src/: classes/root.C, types/pa_vclass.h: process temp main
24201: zeroing
24202:
24203: * src/: classes/double.C, classes/int.C, classes/root.C,
24204: classes/string.C, include/pa_common.h, include/pa_request.h,
24205: include/pa_string.h, include/pa_types.h, main/compile.C,
24206: main/compile.y, main/compile_tools.h, main/execute.C,
24207: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24208: types/pa_vmframe.h: ^process. actual names to store param and
24209: check_actual_numbered_params for better place diagnostics
24210:
24211: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
24212: method-junctions bug fixed
24213:
24214: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
24215: pa_vstateless_object.h, pa_vstring.h: stateless_object
24216:
24217: 2001-03-11 paf
24218:
24219: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
24220: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
24221: VDouble VInt base now VObject_base - without fields
24222:
24223: * src/: classes/root.C, include/core.h, main/core.C: z
24224:
24225: * src/: classes/double.C, classes/int.C, classes/root.C,
24226: classes/string.C, include/core.h, include/pa_hash.h,
24227: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
24228: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
24229:
24230: * src/: classes/double.C, classes/int.C, classes/root.C,
24231: include/pa_request.h, main/execute.C: intercept_string
24232:
24233: * src/: classes/double.C, classes/int.C, classes/root.C,
24234: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
24235:
24236: * src/: classes/double.C, classes/int.C, include/pa_request.h:
24237: ^inc-s(expr)
24238:
24239: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24240: classes/_root.h, classes/_string.h, classes/double.C,
24241: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24242: include/code.h, include/core.h, include/pa_array.h,
24243: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24244: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24245: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24246: include/pa_types.h, main/compile.C, main/compile.y,
24247: main/compile_tools.C, main/compile_tools.h, main/core.C,
24248: main/execute.C, main/pa_array.C, main/pa_common.C,
24249: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
24250: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24251: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24252: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24253: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24254: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24255: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24256: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
24257:
24258: * src/: main/pa_request.C, types/pa_vhash.h: z
24259:
24260: * src/: include/core.h, include/pa_request.h, main/core.C,
24261: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
24262:
24263: * src/: include/pa_valiased.h, include/pa_value.h,
24264: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24265: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24266: include/pa_vjunction.h, include/pa_vmframe.h,
24267: include/pa_vobject.h, include/pa_vstring.h,
24268: include/pa_vunknown.h, include/pa_wcontext.h,
24269: include/pa_wwrapper.h, main/compile.y, main/core.C,
24270: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
24271: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
24272: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24273: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24274: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24275: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24276: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24277: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
24278: include/
24279:
24280: 2001-03-10 paf
24281:
24282: * src/: include/core.h, include/pa_request.h, main/core.C,
24283: main/pa_request.C: run+auto=run
24284:
24285: * src/: classes/root.C, include/pa_request.h: minor if junction bug
24286:
24287: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24288: classes/_root.h, classes/_string.h, classes/double.C,
24289: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24290: include/code.h, include/core.h, include/pa_array.h,
24291: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24292: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24293: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24294: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
24295: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24296: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24297: include/pa_vjunction.h, include/pa_vmframe.h,
24298: include/pa_vobject.h, include/pa_vstring.h,
24299: include/pa_vunknown.h, include/pa_wcontext.h,
24300: include/pa_wwrapper.h, main/compile.C, main/compile.y,
24301: main/compile_tools.C, main/compile_tools.h, main/core.C,
24302: main/execute.C, main/pa_array.C, main/pa_cframe.C,
24303: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
24304: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24305: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
24306: main/pa_wcontext.C: sources header
24307:
24308: * src/main/pa_request.C: auto..
24309:
24310: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24311: main/pa_request.C: auto tree0
24312:
24313: * src/: include/core.h, include/pa_request.h, main/compile.y,
24314: main/core.C, main/pa_request.C: names to core.C
24315:
24316: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
24317: include/pa_request.h, main/core.C, main/execute.C,
24318: main/pa_common.C, main/pa_request.C: root auto.p loaded
24319:
24320: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
24321: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
24322: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24323: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
24324:
24325: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
24326: @auto[] realised. auto.p scan togo
24327:
24328: * src/: include/pa_request.h, main/execute.C: autocalc
24329: code-junctions result now have names
24330:
24331: * src/: classes/double.C, classes/int.C, classes/root.C,
24332: classes/string.C, include/pa_request.h, include/pa_string.h,
24333: include/pa_wcontext.h, main/compile.y, main/execute.C,
24334: main/pa_string.C, main/pa_wcontext.C: tainting 0
24335:
24336: * src/classes/env.C: env:file/line
24337:
24338: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
24339: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
24340: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
24341: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
24342: main/compile_tools.C, main/compile_tools.h, main/core.C,
24343: main/execute.C, main/main.dsp, main/pa_cframe.C,
24344: main/pa_request.C, main/pa_wcontext.C: const fight finished
24345:
24346: * src/include/pa_vclass.h: const fight to go
24347:
24348: * src/: classes/_env.h, classes/env.C, classes/root.C,
24349: include/pa_request.h, include/pa_vclass.h, main/core.C,
24350: main/main.dsp: env0
24351:
24352: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
24353: classes/_string.h, classes/double.C, classes/int.C,
24354: classes/root.C, classes/string.C, include/pa_request.h,
24355: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
24356: include/pa_wcontext.h, main/core.C, main/main.dsp,
24357: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
24358: main/pa_wcontext.C: ^lang prepare0
24359:
24360: 2001-03-09 paf
24361:
24362: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
24363: construct proper naming
24364:
24365: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
24366: classes/double.C, classes/int.C, classes/root.C,
24367: classes/string.C, include/code.h, include/pa_value.h,
24368: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
24369: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24370: main/compile.y, main/compile_tools.C, main/core.C,
24371: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
24372: and ^double[]. fixed expr type
24373:
24374: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24375: ^string.length[]
24376:
24377: 2001-03-08 paf
24378:
24379: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
24380:
24381: * src/: include/pa_vclass.h, include/pa_vstring.h,
24382: include/pa_wcontext.h, main/compile.y, main/core.C,
24383: main/execute.C, main/main.dsp: dead end: vstring can't be
24384: derivated from vobject
24385:
24386: * src/: include/pa_vclass.h, include/pa_vhash.h,
24387: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
24388:
24389: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
24390: remained clone conseqs
24391:
24392: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
24393:
24394: * src/main/pa_vclass.C: wow! vclass were out of vcs
24395:
24396: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
24397: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
24398: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
24399: include/pa_vobject.h, include/pa_vstring.h,
24400: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24401: main/execute.C: withoud cloning. didn't need it actually, params
24402: got passed from out unnamed ewpool
24403:
24404: * src/: include/pa_vdouble.h, include/pa_vhash.h,
24405: include/pa_vjunction.h, include/pa_vobject.h,
24406: include/pa_vunknown.h, main/compile.y: cloning dead end
24407:
24408: * src/: include/pa_bool.h, include/pa_double.h,
24409: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
24410: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
24411: include/pa_vjunction.h, include/pa_vmframe.h,
24412: include/pa_vobject.h, include/pa_vstring.h,
24413: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24414: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
24415: to give params proper names
24416:
24417: * src/main/pa_wcontext.C: z
24418:
24419: * src/: include/pa_vmframe.h, main/execute.C: added names to
24420: unknown values in get_element and unfilled params. removed wrong
24421: name change in get_element
24422:
24423: * src/main/execute.C: z
24424:
24425: * src/main/execute.C: fixed problems calling operators in
24426: constructors
24427:
24428: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
24429: detected problems calling operators in constructors
24430:
24431: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24432: autocalc def to string
24433:
24434: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
24435: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
24436:
24437: * src/classes/root.C: added root.c
24438:
24439: * src/: include/pa_request.h, include/pa_value.h,
24440: include/pa_vcframe.h, include/pa_vmframe.h,
24441: include/pa_wcontext.h, main/compile.C, main/compile.y,
24442: main/core.C, main/execute.C, main/pa_cframe.C,
24443: main/pa_wcontext.C: 'if' just compiled
24444:
24445: * src/: include/pa_vbool.h, include/pa_vdouble.h,
24446: include/pa_vjunction.h, include/pa_vmframe.h,
24447: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
24448: main/pa_wcontext.C: z
24449:
24450: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
24451: main/core.C, main/execute.C, main/main.dsp: z. detected probs
24452: with parameter names in operator methods
24453:
24454: * src/main/compile.y: minor renamings in .y
24455:
24456: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24457: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
24458: @BASE. changed 'RUN' assignment mech
24459:
24460: * src/main/execute.C: z
24461:
24462: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24463: main/compile_tools.h, main/execute.C: made class: dynamic, not
24464: static. so to enable runtime ^use
24465:
24466: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
24467:
24468: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24469: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
24470:
24471: * src/main/execute.C: root root in code-junction
24472:
24473: 2001-03-07 paf
24474:
24475: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
24476: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
24477:
24478: * src/: include/pa_stack.h, include/pa_value.h,
24479: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
24480: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
24481: fixed rwcontext of {} params up
24482:
24483: * src/main/: compile.y, compile_tools.h: ^func(params)
24484:
24485: * src/main/compile.y: .y priorities syntax shaped up a bit
24486:
24487: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
24488: include/pa_vunknown.h, main/compile.y, main/execute.C,
24489: main/pa_hash.C: expr def in -f
24490:
24491: * src/main/: compile.y, execute.C: expr calls
24492:
24493: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
24494: fixed
24495:
24496: * src/main/compile.y: expr quoted code
24497:
24498: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
24499: support0
24500:
24501: * src/main/compile.y: expr string comparisons 0
24502:
24503: * src/: include/pa_string.h, main/compile.y, main/execute.C,
24504: main/pa_string.C: just compiled lt&co
24505:
24506: * src/main/execute.C: ^var.menu{$field} problem detected. that
24507: $field not a $var.field
24508:
24509: 2001-03-06 paf
24510:
24511: * src/main/compile.y: .y expr visible-shorter
24512:
24513: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
24514: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
24515: logical
24516:
24517: * src/: include/pa_vstring.h, main/compile.y: problems with
24518: skipping whitespace in yylex
24519:
24520: * src/include/pa_vbool.h: forgot this
24521:
24522: * src/: include/code.h, main/compile.y, main/execute.C: without
24523: string ops in expressions 0
24524:
24525: * src/: include/pa_value.h, include/pa_vdouble.h,
24526: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
24527: main/execute.C, main/main.dsp: !~
24528:
24529: * src/: include/pa_vcframe.h, include/pa_vclass.h,
24530: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
24531: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24532: include/pa_vunknown.h, include/pa_wcontext.h,
24533: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24534: main/compile_tools.h, main/execute.C: +-*/
24535:
24536: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
24537: main/compile_tools.h: grammar-1.1 $a(z) $a=0
24538:
24539: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
24540: main/execute.C: expr grammar-1 2*2=4.000000 :)
24541:
24542: * src/main/compile.y: expr grammar-1
24543:
24544: * src/main/compile.y: expr lexx1
24545:
24546: * src/main/: compile.y, execute.C, main.dsp: z
24547:
24548: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
24549: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
24550: main/execute.C: expr lex0 exec-1
24551:
24552: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
24553:
24554: 2001-02-26 paf
24555:
24556: * src/main/compile.y: max_string in yyerror bug fix
24557:
24558: 2001-02-25 paf
24559:
24560: * src/: include/pa_value.h, include/pa_vmframe.h,
24561: include/pa_wcontext.h, main/execute.C: VAliased3
24562:
24563: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
24564:
24565: * src/main/execute.C: VAliased1
24566:
24567: * src/: include/pa_request.h, include/pa_value.h,
24568: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
24569: VAliased0
24570:
24571: * src/: include/pa_pool.h, include/pa_request.h,
24572: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
24573: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
24574: VAliased just compiled
24575:
24576: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
24577: include/pa_vobject.h, main/execute.C: alias dead end
24578:
24579: * src/: include/pa_value.h, include/pa_vclass.h,
24580: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24581: main/main.dsp: no not get fields into interm VFielded class.
24582: fields & staticfields 1
24583:
24584: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
24585: include/pa_vobject.h, include/pa_wcontext.h,
24586: include/pa_wwrapper.h, main/core.C, main/execute.C,
24587: main/main.dsp: would now get fields into interm VFielded class
24588:
24589: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24590: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24591: include/pa_wcontext.h, main/compile.y, main/core.C,
24592: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
24593: main/pa_wcontext.C: virtuals2
24594:
24595: * src/main/compile.y: : 1
24596:
24597: * src/main/compile.y: rethought to $class:static.field.subfield
24598:
24599: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
24600: $class:element
24601:
24602: * src/: include/pa_value.h, include/pa_vmframe.h,
24603: include/pa_wwrapper.h, main/compile.y, main/execute.C,
24604: main/pa_wcontext.C: before execute class calls rewrite
24605:
24606: * src/: include/pa_request.h, main/compile.C, main/core.C: default
24607: name RUN, also alias
24608:
24609: * src/main/compile.y: escaping bug
24610:
24611: * src/: include/pa_request.h, include/pa_value.h,
24612: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
24613: main/core.C, main/execute.C, main/pa_common.C: vobject1
24614:
24615: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24616: include/pa_vmframe.h, include/pa_vobject.h,
24617: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24618: main/compile_tools.h, main/execute.C: ^class:method() just
24619: compiled
24620:
24621: 2001-02-24 paf
24622:
24623: * src/main/main.dsp: no bison -d
24624:
24625: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
24626: class' err msg wrong
24627:
24628: * src/main/compile.y: z
24629:
24630: * src/main/: compile.y, core.C: yylex need some @special lines adj
24631:
24632: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
24633: main/compile.y, main/compile_tools.h, main/core.C: modules0
24634:
24635: * src/: include/pa_vclass.h, main/core.C: z
24636:
24637: * src/: include/pa_value.h, include/pa_vclass.h,
24638: include/pa_vobject.h, main/main.dsp: vobject00
24639:
24640: * src/main/pa_array.C: minor bug in expanding very small arrays.
24641: 60% from 1 were 0
24642:
24643: * src/: include/pa_value.h, include/pa_wcontext.h,
24644: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
24645: as bad as you've named it: wcontext.value() was not a perfect
24646: idea
24647:
24648: * src/main/execute.C: codeframe1
24649:
24650: * src/: include/pa_value.h, include/pa_vcframe.h,
24651: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
24652: include/pa_vjunction.h, include/pa_vmframe.h,
24653: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24654: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
24655: just compiled
24656:
24657: * src/: include/pa_vframe.h, main/compile.y: found junction
24658: ideology @: ^x{$a()) must construct current wcontext element, so
24659: smart wcontext handling needed
24660:
24661: * src/main/compile.y: fixed grammar bugs in constructor/params
24662: klinch
24663:
24664: * src/main/: compile.y, execute.C: fixed empty constructor
24665: optimized empty case. failed on calls - produced empty string
24666: param
24667:
24668: * src/main/compile.y: fixed last \n macrotemplate strip bug
24669:
24670: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
24671: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
24672: main/compile_tools.C, main/compile_tools.h, main/core.C,
24673: main/execute.C: code junctions0. something wrong with last \n
24674: macrotemplate strip
24675:
24676: * src/: include/pa_value.h, main/compile.C, main/core.C,
24677: main/pa_value.C: minor error reporting format beautifyings
24678:
24679: * src/: include/pa_value.h, include/pa_vclass.h,
24680: include/pa_vframe.h, main/core.C, main/execute.C,
24681: main/pa_value.C: get_method RIP. junctions everywhere. call with
24682: junctions0
24683:
24684: 2001-02-23 paf
24685:
24686: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
24687: pa_wwrapper.h: lara came, can't work, sorry :(
24688:
24689: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
24690: junction
24691:
24692: * src/: include/pa_vframe.h, include/pa_vunknown.h,
24693: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
24694: main/execute.C, main/main.dsp, main/pa_value.C: call0
24695:
24696: * src/: include/pa_hash.h, include/pa_value.h,
24697: include/pa_wcontext.h, main/core.C, main/execute.C,
24698: main/main.dsp, main/pa_hash.C: started call. store param, vframe
24699: done
24700:
24701: * src/include/pa_wcontext.h: z
24702:
24703: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
24704: wrong grammar in complex constructor case
24705:
24706: * src/main/: compile.y, execute.C: empty constructor bug fixed
24707:
24708: * src/main/execute.C: with result rwpool
24709:
24710: * src/: include/pa_value.h, main/core.C, main/execute.C,
24711: main/main.dsp: value named
24712:
24713: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
24714: strign 2 value in 2 places in execute
24715:
24716: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
24717: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
24718: wcontext.put_element when wcontext fvalue==0
24719:
24720: 2001-02-22 paf
24721:
24722: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24723: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
24724: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
24725:
24726: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
24727: erroreos checkout
24728:
24729: * src/: include/pa_request.h, main/compile.y: $self.put(val)
24730:
24731: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
24732: main/compile_tools.h, main/pa_array.C: $self.get
24733:
24734: * src/main/: compile.C, compile.y, compile_tools.C: z
24735:
24736: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
24737: bit. finished now.
24738:
24739: * src/main/compile.y: $: finished
24740:
24741: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
24742:
24743: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
24744: main/execute.C: OP_STRING better then some xxx _VALUE
24745:
24746: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
24747: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24748: string to vstring it .y all
24749:
24750: * src/: include/pa_request.h, include/pa_stack.h,
24751: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
24752: all
24753:
24754: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
24755: precise parse error line:col
24756:
24757: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
24758: main/pa_hash.C, main/pa_pool.C: TRY...
24759:
24760: * src/: include/pa_exception.h, include/pa_pool.h,
24761: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
24762: main/compile.C, main/compile.y, main/compile_tools.C,
24763: main/core.C, main/pa_array.C, main/pa_exception.C,
24764: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
24765: main/pa_table.C: removed exception from request
24766:
24767: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
24768: some forgotten
24769:
24770: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24771: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
24772: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
24773: get/put simple vars to VClass works0
24774:
24775: * src/: include/pa_array.h, include/pa_wcontext.h,
24776: main/pa_string.C: in process, but found that exceptions are too
24777: global
24778:
24779: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
24780: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
24781: main/execute.C, main/pa_string.C: write_value write_string 0 it
24782: seems wcontext must write strings regardles of fvalue!=0
24783:
24784: 2001-02-21 paf
24785:
24786: * src/main/execute.C: tired :)
24787:
24788: * src/main/: compile.C, compile.y, execute.C: store0
24789:
24790: * src/: include/compile.h, include/execute.h, include/pa_array.h,
24791: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
24792: include/pa_wcontext.h, main/compile.C, main/compile.y,
24793: main/execute.C, main/main.dsp, main/pa_array.C,
24794: main/pa_request.C: get put -1 [just compiled]
24795:
24796: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
24797: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
24798: main/main.dsp, main/pa_request.C: request core methods0
24799:
24800: * src/: include/compile.h, include/pa_array.h, main/compile.C,
24801: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
24802: execute
24803:
24804: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
24805: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
24806: methods and one_big_piece. now compile returns array<method*>
24807:
24808: * src/main/compile.y: more straightforward yylex[end]
24809:
24810: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
24811: string.operator==(char*)
24812:
24813: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
24814: main/execute.C, main/pa_array.C: after array.const get wonders
24815:
24816: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
24817: pa_string.h, pa_value.h: struck with const array.gets
24818:
24819: * src/main/: execute.C: z
24820:
24821: * src/main/: compile.y, execute.C: z
24822:
24823: * src/main/: compile.C, compile.y, compile_tools.h: error
24824: processing in eval & yyerror so it wouldn't cause memleaks.
24825:
24826: * src/main/: compile.C, compile.y: failed to add absolute precies
24827: parse error positions. leaving RIGHTMOST position as
24828: @file[line:col]
24829:
24830: * src/: include/compile.h, main/compile.C, main/compile.y,
24831: main/compile_tools.h: line numbers needed. would add them to .y
24832: now internally. externally it's not as precise as needed
24833:
24834: * src/: include/code.h, include/pa_types.h, main/compile.C,
24835: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24836: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
24837: compiler works ok
24838:
24839: 2001-02-20 paf
24840:
24841: * src/main/: compile.C, compile.y, compile_tools.C,
24842: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
24843: not perfect
24844:
24845: * src/: include/code.h, include/compile.h, include/execute.h,
24846: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
24847: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24848: main/compile.C, main/compile.y, main/compile_tools.C,
24849: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
24850: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24851: main/pa_string.C, main/pa_table.C: bison[yacc] first time
24852: compiled. execute=dump for now
24853:
24854: * src/main/core.C: core rewrite using yacc investigations now will
24855: be compile[yacc]/execute[opcodes]
24856:
24857: 2001-02-15 paf
24858:
24859: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
24860: rewrite as turing machine? for it seems it would be it's too many
24861: ifs with this syntax now
24862:
24863: 2001-02-14 paf
24864:
24865: * src/main/core.C: get_params 1
24866:
24867: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
24868: :( ]
24869:
24870: * src/main/core.C: varios breaks
24871:
24872: * src/main/core.C: get names 3
24873:
24874: * src/main/core.C: get names 2
24875:
24876: * src/main/core.C: get names 1
24877:
24878: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
24879: names 0
24880:
24881: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
24882: text repassing2 operator static vars
24883:
24884: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
24885: main/pa_string.C: process text repassing
24886:
24887: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24888: module:calls changes
24889:
24890: 2001-02-13 paf
24891:
24892: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24893: ^class:calls[] started
24894:
24895: * src/: include/pa_value.h, main/core.C: z
24896:
24897: * src/main/core.C: operators : and self. prefixes
24898:
24899: * src/main/core.C: z
24900:
24901: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24902: tested
24903:
24904: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24905: optimized
24906:
24907: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
24908: would change privates to better support optimization
24909:
24910: * src/: include/pa_string.h, main/pa_string.C:
24911: String_iterator::skip_to todo:optimize
24912:
24913: 2001-02-12 paf
24914:
24915: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
24916: String_iterator
24917:
24918: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
24919: comments
24920:
24921: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
24922: self/methodref joined
24923:
24924: 2001-02-11 paf
24925:
24926: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
24927: main/main.dsp: core started. core.C, context&value .h
24928:
24929: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24930: include/pa_string.h, main/main.dsp, main/pa_array.C,
24931: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
24932:
24933: 2001-01-30 paf
24934:
24935: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
24936: comments
24937:
24938: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
24939: main/pa_pool.C: moved pa_pool.C to be target specific
24940:
24941: * src/: include/pa_exception.h, include/pa_pool.h,
24942: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
24943: to & changes
24944:
24945: * src/: include/pa_exception.h, include/pa_pool.h,
24946: include/pa_request.h, include/pa_table.h, main/pa_array.C,
24947: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
24948: re-associated. that's much better even removed 'die' necessety
24949:
24950: * src/: include/pa_error.h, include/pa_exception.h,
24951: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24952: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
24953: targets/Makefile.am: lowered targets/parser into subdir, added
24954: parser_Pool(Pool) failed to add. would think..
24955:
24956: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
24957: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
24958: main/pa_string.C, main/pa_table.C: Table more like C++ style
24959: hence lots of 'const'
24960:
24961: * src/: include/pa_error.h, include/pa_request.h,
24962: include/pa_string.h, include/pa_table.h, main/pa_error.C,
24963: main/pa_table.C: Error fixed
24964:
24965: 2001-01-29 paf
24966:
24967: * src/: include/pa_array.h, include/pa_common.h,
24968: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
24969: include/pa_request.h, include/pa_string.h, include/pa_table.h,
24970: main/Makefile.am, main/pa_array.C, main/pa_common.C,
24971: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
24972:
24973: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24974: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24975: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
24976: main/pa_string.C, main/pa_table.C: Request Error Table
24977:
24978: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
24979: templates"
24980:
24981: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
24982: main/main.dsp, main/pa_array.C: templates failed no template
24983: specializations [VC6], no library auto instantation [VC6, GNU c++
24984: 2.95.2-6 from latest cygwin]
24985:
24986: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24987: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24988: main/main.dsp, main/pa_array.C, main/pa_string.C,
24989: main/pa_table.C: Table started would test template Array now
24990:
24991: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
24992: String originating
24993:
24994: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
24995: main/pa_hash.C: made local Hash-es not thread safe=quicker by
24996: SYNCHRONIZED(thread_safe)
24997:
24998: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
24999: parts to top
25000:
25001: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
25002: main/pa_threads.C: decided on one global_mutex, like PHP as I can
25003: see: needed only in global Hash now, made Hash:: put/get
25004: SYNCHRONIZED
25005:
25006: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
25007: main/pa_threads.C: added pa_threads
25008:
25009: Mutex
25010:
25011: * src/include/pa_hash.h: some comments
25012:
25013: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
25014: Array& operator += (Array& src)
25015:
25016: * src/main/pa_array.C: expand not convinient, would rewrite
25017:
25018: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
25019: (Array& src)
25020:
25021: rethought, would change now
25022:
25023: 2001-01-27 paf
25024:
25025: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
25026: caching
25027:
25028: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25029: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
25030: cache rethought to chunk caching
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_string.C: Array 0
25035:
25036: * src/main/pa_string.C: String::operator ==
25037:
25038: * src/main/pa_hash.C: String(&String)
25039:
25040: * src/main/pa_hash.C: added pa_hash.C [forgotten]
25041:
25042: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
25043: main/main.dsp, main/pa_string.C: uint, and added pa_types &
25044: pa_hash[forgotten]
25045:
25046: 2001-01-26 paf
25047:
25048: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25049: removed templates [vc++ suxx]
25050:
25051: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
25052: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
25053:
25054: * src/include/: pa_pool.h, pa_string.h: pa_pool split
25055:
1.119 moko 25056: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 25057:
1.119 moko 25058: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 25059: check
25060:
25061: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
25062: dynamic row_count
25063:
25064: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25065: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25066: targets/Makefile.am: Initial revision
25067:
25068: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25069: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25070: targets/Makefile.am: creating parser3 module
25071:
E-mail: